InDefero

Sign in or create your account | Project List | Help

InDefero Commit Details

Date:2009-06-22 21:08:33 (8 months 27 days ago)
Author:Loïc d'Anterroches
Commit:3848bd8d228e8155341fb3a3cec021890205e927
Message:Added longer description for the downloads.

Files: src/IDF/Form/UpdateUpload.php (2 diffs)
src/IDF/Form/Upload.php (2 diffs)
src/IDF/Migrations/12DownloadDesc.php (1 diff)
src/IDF/Upload.php (1 diff)
src/IDF/locale/fr/idf.po (48 diffs)
src/IDF/locale/idf.pot (43 diffs)
src/IDF/templates/idf/downloads/download-created-email.txt (1 diff)
src/IDF/templates/idf/downloads/submit.html (2 diffs)
src/IDF/templates/idf/downloads/view.html (3 diffs)
www/media/idf/css/style.css (1 diff)

Change Details

src/IDF/Form/UpdateUpload.php
4646                                                       'size' => 67,
4747                                                                    ),
4848                                            ));
49        $this->fields['changelog'] = new Pluf_Form_Field_Varchar(
50                                      array('required' => false,
51                                            'label' => __('Description'),
52                                            'initial' => $this->upload->changelog,
53                                            'widget' => 'Pluf_Form_Widget_TextareaInput',
54                                            'widget_attrs' => array(
55                                                       'cols' => 58,
56                                                       'rows' => 13,
57                                                                    ),
58                                            ));
4959        $tags = $this->upload->get_tags_list();
5060        for ($i=1;$i<7;$i++) {
5161            $initial = '';
...... 
132142        }
133143        // Create the upload
134144        $this->upload->summary = trim($this->cleaned_data['summary']);
145        $this->upload->changelog = trim($this->cleaned_data['changelog']);
135146        $this->upload->modif_dtime = gmdate('Y-m-d H:i:s');
136147        $this->upload->update();
137148        $this->upload->batchAssoc('IDF_Tag', $tags);
src/IDF/Form/Upload.php
4444                                                       'size' => 67,
4545                                                                    ),
4646                                            ));
47        $this->fields['changelog'] = new Pluf_Form_Field_Varchar(
48                                      array('required' => false,
49                                            'label' => __('Description'),
50                                            'initial' => '',
51                                            'widget' => 'Pluf_Form_Widget_TextareaInput',
52                                            'widget_attrs' => array(
53                                                       'cols' => 58,
54                                                       'rows' => 13,
55                                                                    ),
56                                            ));
4757        $this->fields['file'] = new Pluf_Form_Field_File(
4858                                      array('required' => true,
4959                                            'label' => __('File'),
...... 
155165        $upload->project = $this->project;
156166        $upload->submitter = $this->user;
157167        $upload->summary = trim($this->cleaned_data['summary']);
168        $upload->changelog = trim($this->cleaned_data['changelog']);
158169        $upload->file = $this->cleaned_data['file'];
159170        $upload->filesize = filesize(Pluf::f('upload_path').'/'.$this->project->shortname.'/files/'.$this->cleaned_data['file']);
160171        $upload->downloads = 0;
src/IDF/Migrations/12DownloadDesc.php
1<?php
2/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3/*
4# ***** BEGIN LICENSE BLOCK *****
5# This file is part of InDefero, an open source project management application.
6# Copyright (C) 2008 Céondo Ltd and contributors.
7#
8# InDefero is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# InDefero is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21#
22# ***** END LICENSE BLOCK ***** */
23
24/**
25 * Add the private column for the project.
26 */
27
28function IDF_Migrations_12DownloadDesc_up($params=null)
29{
30    $table = Pluf::factory('IDF_Upload')->getSqlTable();
31    $sql = array();
32    $sql['PostgreSQL'] = 'ALTER TABLE '.$table.' ADD COLUMN "changelog" TEXT DEFAULT \'\'';
33    $sql['MySQL'] = 'ALTER TABLE '.$table.' ADD COLUMN `changelog` LONGTEXT DEFAULT \'\'';
34    $db = Pluf::db();
35    $engine = Pluf::f('db_engine');
36    if (!isset($sql[$engine])) {
37        throw new Exception('SQLite complex migration not supported.');
38    }
39    $db->execute($sql[$engine]);
40}
41
42function IDF_Migrations_12DownloadDesc_down($params=null)
43{
44    $table = Pluf::factory('IDF_Upload')->getSqlTable();
45    $sql = array();
46    $sql['PostgreSQL'] = 'ALTER TABLE '.$table.' DROP COLUMN "changelog"';
47    $sql['MySQL'] = 'ALTER TABLE '.$table.' DROP COLUMN `changelog`';
48    $db = Pluf::db();
49    $engine = Pluf::f('db_engine');
50    if (!isset($sql[$engine])) {
51        throw new Exception('SQLite complex migration not supported.');
52    }
53    $db->execute($sql[$engine]);
54
55}
src/IDF/Upload.php
5656                                  'size' => 250,
5757                                  'verbose' => __('summary'),
5858                                  ),
59                            'changelog' =>
60                            array(
61                                  'type' => 'Pluf_DB_Field_Text',
62                                  'blank' => true,
63                                  'verbose' => __('changes'),
64                                  ),
5965                            'file' =>
6066                            array(
6167                                  'type' => 'Pluf_DB_Field_File',
src/IDF/locale/fr/idf.po
22msgstr ""
33"Project-Id-Version: InDefero\n"
44"Report-Msgid-Bugs-To: \n"
5"POT-Creation-Date: 2009-04-16 13:36+0200\n"
6"PO-Revision-Date: 2009-04-16 13:39+0100\n"
5"POT-Creation-Date: 2009-06-22 21:06+0200\n"
6"PO-Revision-Date: 2009-06-22 21:07+0100\n"
77"Last-Translator: Loïc d'Anterroches <titoo@users.sourceforge.net>\n"
88"Language-Team: Translation team <titoo@users.sourceforge.net>\n"
99"MIME-Version: 1.0\n"
...... 
3232#: IDF/IssueFile.php:57
3333#: IDF/Issue.php:67
3434#: IDF/Review.php:71
35#: IDF/Upload.php:79
35#: IDF/Upload.php:85
3636#: IDF/WikiPage.php:78
3737#: IDF/WikiRevision.php:79
3838#: IDF/Review/Comment.php:69
...... 
5959#: IDF/IssueFile.php:96
6060#: IDF/Issue.php:105
6161#: IDF/Review.php:99
62#: IDF/Upload.php:100
62#: IDF/Upload.php:106
6363#: IDF/WikiPage.php:100
6464#: IDF/WikiRevision.php:92
6565#: IDF/Review/Patch.php:83
...... 
6868msgid "creation date"
6969msgstr "date de création"
7070
71#: IDF/Commit.php:170
71#: IDF/Commit.php:172
7272#, php-format
7373msgid "New Commit %s - %s (%s)"
7474msgstr "Nouveau commit %s - %s (%s)"
7575
76#: IDF/Commit.php:205
77#: IDF/Commit.php:232
76#: IDF/Commit.php:239
77#, php-format
78msgid "Commit&nbsp;%s, by %s"
79msgstr "Commit&nbsp;%s, par %s"
80
81#: IDF/Commit.php:266
7882#: IDF/Form/ReviewCreate.php:74
7983#: IDF/gettexttemplates/idf/source/base.html.php:5
8084#: IDF/gettexttemplates/idf/source/changelog.html.php:5
8185msgid "Commit"
8286msgstr "Commit"
8387
84#: IDF/Commit.php:205
85#: IDF/IssueComment.php:173
86#: IDF/Issue.php:196
87#: IDF/Upload.php:186
88#: IDF/WikiPage.php:199
89#: IDF/WikiRevision.php:189
90#: IDF/Review/Comment.php:177
91#: IDF/gettexttemplates/idf/source/changelog.html.php:6
92msgid "by"
93msgstr "par"
94
9588#: IDF/Conf.php:61
9689msgid "key"
9790msgstr "clef"
...... 
113106msgstr "commentaire"
114107
115108#: IDF/IssueComment.php:72
109#: IDF/Upload.php:63
116110#: IDF/WikiRevision.php:85
117111#: IDF/Review/Comment.php:76
118112msgid "changes"
...... 
182176#: IDF/gettexttemplates/idf/issues/view.html.php:13
183177#: IDF/gettexttemplates/idf/issues/view.html.php:24
184178#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
185#: IDF/gettexttemplates/idf/downloads/view.html.php:15
179#: IDF/gettexttemplates/idf/downloads/view.html.php:16
186180#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
187181#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
188182msgid "Labels:"
189183msgstr "Étiquettes :"
190184
191185#: IDF/IssueComment.php:173
192#: IDF/Review/Comment.php:177
193186#, php-format
194msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
195msgstr "Commentaire sur le <a href=\"%s\" class=\"%s\">ticket&nbsp;%d</a>"
187msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>, by %s"
188msgstr "Commentaire sur le <a href=\"%s\" class=\"%s\">ticket&nbsp;%d</a>, par %s"
196189
197190#: IDF/IssueComment.php:195
198191#: IDF/Review/Comment.php:199
...... 
227220#: IDF/IssueFile.php:102
228221#: IDF/Issue.php:111
229222#: IDF/Review.php:105
230#: IDF/Upload.php:106
223#: IDF/Upload.php:112
231224#: IDF/WikiPage.php:106
232225msgid "modification date"
233226msgstr "date de modification"
...... 
247240
248241#: IDF/Issue.php:92
249242#: IDF/Review.php:86
250#: IDF/Upload.php:87
243#: IDF/Upload.php:93
251244#: IDF/WikiPage.php:94
252245msgid "labels"
253246msgstr "étiquettes"
...... 
259252
260253#: IDF/Issue.php:196
261254#, php-format
262msgid "Creation of <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
263msgstr "Création du <a href=\"%s\" class=\"%s\">ticket&nbsp;%d</a>"
255msgid "Creation of <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>, by %s"
256msgstr "Création du <a href=\"%s\" class=\"%s\">ticket&nbsp;%d</a>, par %s"
264257
265258#: IDF/Issue.php:215
266259#, php-format
...... 
330323msgid "Lower case version of the name for fast searching."
331324msgstr "Version minuscule du nom pour chercher rapidement."
332325
333#: IDF/Upload.php:64
326#: IDF/Upload.php:70
334327msgid "file"
335328msgstr "fichier"
336329
337#: IDF/Upload.php:65
330#: IDF/Upload.php:71
338331msgid "The path is relative to the upload path."
339332msgstr "Le chemin est relatif au répertoire de mise en ligne."
340333
341#: IDF/Upload.php:72
334#: IDF/Upload.php:78
342335msgid "file size in bytes"
343336msgstr "taille du fichier en octets"
344337
345#: IDF/Upload.php:94
338#: IDF/Upload.php:100
346339msgid "number of downloads"
347340msgstr "nombre de téléchargements"
348341
349#: IDF/Upload.php:183
342#: IDF/Upload.php:189
350343#, php-format
351344msgid "<a href=\"%1$s\" title=\"View download\">Download %2$d</a>, %3$s"
352345msgstr "<a href=\"%1$s\" title=\"Voir le téléchargement\">Téléchargement %2$d</a>, %3$s"
353346
354#: IDF/Upload.php:186
347#: IDF/Upload.php:192
355348#, php-format
356msgid "Addition of <a href=\"%s\">download&nbsp;%d</a>"
357msgstr "Création du <a href=\"%s\">téléchargement&nbsp;%d</a>"
349msgid "Addition of <a href=\"%s\">download&nbsp;%d</a>, by %s"
350msgstr "Création du <a href=\"%s\">téléchargement&nbsp;%d</a>, par %s"
358351
359#: IDF/Upload.php:204
352#: IDF/Upload.php:210
360353#, php-format
361354msgid "%s: Download %d added - %s"
362355msgstr "%s: Ajout du téléchargement %d - %s"
...... 
423416
424417#: IDF/WikiPage.php:199
425418#, php-format
426msgid "Creation of <a href=\"%s\">page&nbsp;%s</a>"
427msgstr "Création de la <a href=\"%s\">page&nbsp;%s</a>"
419msgid "Creation of <a href=\"%s\">page&nbsp;%s</a>, by %s"
420msgstr "Création de la <a href=\"%s\">page&nbsp;%s</a>, par %s"
428421
429422#: IDF/WikiPage.php:218
430423#, php-format
...... 
445438
446439#: IDF/WikiRevision.php:189
447440#, php-format
448msgid "Change of <a href=\"%s\">%s</a>"
449msgstr "Changement de <a href=\"%s\">%s</a>"
441msgid "Change of <a href=\"%s\">%s</a>, by %s"
442msgstr "Changement de <a href=\"%s\">%s</a>, par %s"
450443
451444#: IDF/WikiRevision.php:209
452445#, php-format
...... 
490483msgid "patch"
491484msgstr "patch"
492485
486#: IDF/Review/Comment.php:177
487#, php-format
488msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
489msgstr "Commentaire sur le <a href=\"%s\" class=\"%s\">ticket&nbsp;%d</a>"
490
491#: IDF/Review/Comment.php:177
492#: IDF/gettexttemplates/idf/source/changelog.html.php:6
493msgid "by"
494msgstr "par"
495
493496#: IDF/Plugin/SyncSvn.php:75
494497#: IDF/Plugin/SyncMercurial.php:75
495498#, php-format
...... 
523526#: IDF/Views/User.php:83
524527#: IDF/Views/Issue.php:61
525528#: IDF/Views/Issue.php:137
526#: IDF/Views/Issue.php:249
527#: IDF/Views/Issue.php:442
528#: IDF/Views/Issue.php:500
529#: IDF/Views/Issue.php:247
530#: IDF/Views/Issue.php:436
531#: IDF/Views/Issue.php:494
529532#: IDF/Views/Download.php:65
530533#: IDF/Views/Download.php:272
531534#: IDF/Form/Upload.php:40
...... 
592595msgstr "Suppression de la vieille version de %s"
593596
594597#: IDF/Views/Wiki.php:316
595#: IDF/Views/Admin.php:90
596#: IDF/Views/Admin.php:242
598#: IDF/Views/Admin.php:93
599#: IDF/Views/Admin.php:245
597600#, php-format
598601msgid "Update %s"
599602msgstr "Mise à jour de %s"
...... 
638641msgstr "Résumé du projet %s"
639642
640643#: IDF/Views/Project.php:221
641#: IDF/Views/Admin.php:98
644#: IDF/Views/Admin.php:101
642645msgid "The project has been updated."
643646msgstr "Le projet a été mis à jour."
644647
...... 
724727#: IDF/Views/User.php:81
725728#: IDF/Views/Issue.php:60
726729#: IDF/Views/Issue.php:136
727#: IDF/Views/Issue.php:248
728#: IDF/Views/Issue.php:441
729#: IDF/Views/Issue.php:499
730#: IDF/Views/Issue.php:246
731#: IDF/Views/Issue.php:435
732#: IDF/Views/Issue.php:493
730733msgid "Id"
731734msgstr "Id"
732735
...... 
734737#: IDF/Views/User.php:84
735738#: IDF/Views/Issue.php:62
736739#: IDF/Views/Issue.php:138
737#: IDF/Views/Issue.php:250
738#: IDF/Views/Issue.php:443
739#: IDF/Views/Issue.php:501
740#: IDF/Views/Issue.php:248
741#: IDF/Views/Issue.php:437
742#: IDF/Views/Issue.php:495
740743#: IDF/Form/IssueCreate.php:92
741744#: IDF/Form/IssueUpdate.php:88
742745#: IDF/Form/ReviewCreate.php:103
...... 
747750#: IDF/Views/User.php:85
748751#: IDF/Views/Issue.php:63
749752#: IDF/Views/Issue.php:139
750#: IDF/Views/Issue.php:251
751#: IDF/Views/Issue.php:444
752#: IDF/Views/Issue.php:502
753#: IDF/Views/Issue.php:249
754#: IDF/Views/Issue.php:438
755#: IDF/Views/Issue.php:496
753756msgid "Last Updated"
754757msgstr "Dernière mise à jour"
755758
...... 
835838msgid "Your new email address \"%s\" has been validated. Thank you!"
836839msgstr "Votre nouvelle adresse email \"%s\" a été validée. Merci !"
837840
838#: IDF/Views/Source.php:49
841#: IDF/Views/Source.php:50
839842#, php-format
840843msgid "%s Source Help"
841844msgstr "Aide des sources de %s"
842845
843#: IDF/Views/Source.php:64
846#: IDF/Views/Source.php:65
844847#, php-format
845848msgid "%1$s %2$s Change Log"
846849msgstr "Changements %2$s de %1$s"
847850
848#: IDF/Views/Source.php:105
849#: IDF/Views/Source.php:154
850#: IDF/Views/Source.php:316
851#: IDF/Views/Source.php:108
852#: IDF/Views/Source.php:152
853#: IDF/Views/Source.php:318
851854#, php-format
852855msgid "%1$s %2$s Source Tree"
853856msgstr "Arbre des sources %2$s de %1$s"
...... 
869872
870873#: IDF/Views/Issue.php:67
871874#: IDF/Views/Issue.php:143
872#: IDF/Views/Issue.php:255
873#: IDF/Views/Issue.php:448
874#: IDF/Views/Issue.php:506
875#: IDF/Views/Issue.php:253
876#: IDF/Views/Issue.php:442
877#: IDF/Views/Issue.php:500
875878msgid "No issues were found."
876879msgstr "Aucun ticket n'a été trouvé."
877880
...... 
899902msgid "Submit a new issue"
900903msgstr "Soumettre un nouveau ticket"
901904
902#: IDF/Views/Issue.php:178
903#, php-format
904msgid "<a href=\"%s\">Issue %d</a> has been created."
905msgstr "Le <a href=\"%s\">ticket %d</a> a été créé."
906
907#: IDF/Views/Issue.php:197
905#: IDF/Views/Issue.php:194
908906#, php-format
909907msgid "Issue %s - %s (%s)"
910908msgstr "Ticket %s - %s (%s)"
911909
912#: IDF/Views/Issue.php:232
910#: IDF/Views/Issue.php:201
911#, php-format
912msgid "<a href=\"%s\">Issue %d</a> has been created."
913msgstr "Le <a href=\"%s\">ticket %d</a> a été créé."
914
915#: IDF/Views/Issue.php:230
913916#, php-format
914917msgid "Search Issues - %s"
915918msgstr "Recherche de tickets - %s"
916919
917#: IDF/Views/Issue.php:244
920#: IDF/Views/Issue.php:242
918921msgid "This table shows the found issues."
919922msgstr "Ce tableau montre les tickets trouvés."
920923
921#: IDF/Views/Issue.php:274
924#: IDF/Views/Issue.php:272
922925#, php-format
923926msgid "Issue <a href=\"%s\">%d</a>: %s"
924927msgstr "Ticket <a href=\"%s\">%d</a> : %s"
925928
926#: IDF/Views/Issue.php:298
927#, php-format
928msgid "<a href=\"%s\">Issue %d</a> has been updated."
929msgstr "Le <a href=\"%s\">ticket %d</a> a été mis à jour."
930
931#: IDF/Views/Issue.php:329
929#: IDF/Views/Issue.php:322
932930#, php-format
933931msgid "Updated Issue %s - %s (%s)"
934932msgstr "Mise à jour ticket %s - %s (%s)"
935933
936#: IDF/Views/Issue.php:402
934#: IDF/Views/Issue.php:330
935#, php-format
936msgid "<a href=\"%s\">Issue %d</a> has been updated."
937msgstr "Le <a href=\"%s\">ticket %d</a> a été mis à jour."
938
939#: IDF/Views/Issue.php:396
937940#, php-format
938941msgid "View %s"
939942msgstr "Voir %s"
940943
941#: IDF/Views/Issue.php:422
944#: IDF/Views/Issue.php:416
942945#, php-format
943946msgid "%s Closed Issues"
944947msgstr "Tickets fermés de %s"
945948
946#: IDF/Views/Issue.php:432
949#: IDF/Views/Issue.php:426
947950msgid "This table shows the closed issues."
948951msgstr "Ce tableau montre les tickets fermés."
949952
950#: IDF/Views/Issue.php:474
953#: IDF/Views/Issue.php:468
951954#, php-format
952955msgid "%1$s Issues with Label %2$s"
953956msgstr "%1$s tickets avec l'étiquette %2$s"
954957
955#: IDF/Views/Issue.php:477
958#: IDF/Views/Issue.php:471
956959#, php-format
957960msgid "%1$s Closed Issues with Label %2$s"
958961msgstr "Tickets fermés de %1$s avec l'étiquette %2$s"
959962
960#: IDF/Views/Issue.php:490
963#: IDF/Views/Issue.php:484
961964#, php-format
962965msgid "This table shows the issues with label %s."
963966msgstr "Ce tableau montre les tickets avec l'étiquette %s."
964967
965#: IDF/Views/Issue.php:539
968#: IDF/Views/Issue.php:533
966969msgid "The issue has been removed from your watch list."
967970msgstr "Le ticket a été supprimé de votre liste de surveillance."
968971
969#: IDF/Views/Issue.php:542
972#: IDF/Views/Issue.php:536
970973msgid "The issue has been added to your watch list."
971974msgstr "Le ticket a été ajouté à votre liste de surveillance."
972975
973#: IDF/Views/Issue.php:620
976#: IDF/Views/Issue.php:614
974977msgid "On your watch list."
975978msgstr "Dans votre liste de surveillance."
976979
...... 
985988
986989#: IDF/Views/Download.php:64
987990#: IDF/Views/Download.php:271
988#: IDF/Form/Upload.php:49
991#: IDF/Form/Upload.php:59
989992#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
990993#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
991994#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
...... 
10671070msgstr "Nom court"
10681071
10691072#: IDF/Views/Admin.php:66
1070#: IDF/Views/Admin.php:203
1073#: IDF/Views/Admin.php:206
10711074#: IDF/Form/Admin/ProjectCreate.php:48
10721075#: IDF/Form/Admin/ProjectUpdate.php:42
10731076msgid "Name"
10741077msgstr "Nom"
10751078
1076#: IDF/Views/Admin.php:71
1079#: IDF/Views/Admin.php:67
1080msgid "Repository Size"
1081msgstr "Taille du dépôt"
1082
1083#: IDF/Views/Admin.php:73
10771084msgid "No projects were found."
10781085msgstr "Aucun projet n'a été trouvé."
10791086
1080#: IDF/Views/Admin.php:122
1087#: IDF/Views/Admin.php:125
10811088#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
10821089#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
10831090#: IDF/gettexttemplates/idf/index.html.php:5
10841091msgid "Create Project"
10851092msgstr "Créer un projet"
10861093
1087#: IDF/Views/Admin.php:128
1094#: IDF/Views/Admin.php:131
10881095msgid "The project has been created."
10891096msgstr "Le projet a été créé."
10901097
1091#: IDF/Views/Admin.php:154
1098#: IDF/Views/Admin.php:157
10921099#, php-format
10931100msgid "Delete %s Project"
10941101msgstr "Supprimer le projet %s"
10951102
1096#: IDF/Views/Admin.php:161
1103#: IDF/Views/Admin.php:164
10971104msgid "The project has been deleted."
10981105msgstr "Le projet a été supprimé."
10991106
1100#: IDF/Views/Admin.php:191
1107#: IDF/Views/Admin.php:194
11011108msgid "Not Validated User List"
11021109msgstr "Liste des utilisateurs non confirmés"
11031110
1104#: IDF/Views/Admin.php:194
1111#: IDF/Views/Admin.php:197
11051112#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
11061113msgid "User List"
11071114msgstr "Liste des utilisateurs"
11081115
1109#: IDF/Views/Admin.php:197
1116#: IDF/Views/Admin.php:200
11101117msgid "This table shows the users in the forge."
11111118msgstr "Ce tableau montre les utilisateurs de la forge."
11121119
1113#: IDF/Views/Admin.php:202
1120#: IDF/Views/Admin.php:205
11141121msgid "login"
11151122msgstr "identifiant"
11161123
1117#: IDF/Views/Admin.php:204
1124#: IDF/Views/Admin.php:207
11181125#: IDF/Form/Admin/UserUpdate.php:99
11191126msgid "Staff"
11201127msgstr "Staff"
11211128
1122#: IDF/Views/Admin.php:205
1129#: IDF/Views/Admin.php:208
11231130msgid "Admin"
11241131msgstr "Admin"
11251132
1126#: IDF/Views/Admin.php:206
1133#: IDF/Views/Admin.php:209
11271134#: IDF/Form/Admin/UserUpdate.php:110
11281135msgid "Active"
11291136msgstr "Actif"
11301137
1131#: IDF/Views/Admin.php:207
1138#: IDF/Views/Admin.php:210
11321139msgid "Last Login"
11331140msgstr "Dernier login"
11341141
1135#: IDF/Views/Admin.php:212
1142#: IDF/Views/Admin.php:215
11361143msgid "No users were found."
11371144msgstr "Aucun utilisateur trouvé."
11381145
1139#: IDF/Views/Admin.php:249
1146#: IDF/Views/Admin.php:252
11401147msgid "You do not have the rights to update this user."
11411148msgstr "Vous n'avez pas les droits pour mettre à jour cet utilisateur."
11421149
1143#: IDF/Views/Admin.php:265
1150#: IDF/Views/Admin.php:268
11441151msgid "The user has been updated."
11451152msgstr "L'utilisateur a été mis à jour."
11461153
1147#: IDF/Views/Admin.php:284
1154#: IDF/Views/Admin.php:287
11481155#: IDF/gettexttemplates/idf/login_form.html.php:7
11491156msgid "Yes"
11501157msgstr "Oui"
11511158
1152#: IDF/Views/Admin.php:284
1159#: IDF/Views/Admin.php:287
11531160msgid "No"
11541161msgstr "Non"
11551162
...... 
11641171msgstr "Nous sommes désolés mais cette clef de confirmation est invalide. Vous devriez peut-être faire directement un copier/coller depuis votre email de confirmation."
11651172
11661173#: IDF/Form/UserChangeEmail.php:80
1167#: IDF/Form/Upload.php:137
1174#: IDF/Form/Upload.php:147
11681175#: IDF/Form/Register.php:114
11691176#: IDF/Form/UserAccount.php:119
1170#: IDF/Form/Admin/ProjectCreate.php:205
1171#: IDF/Form/Admin/ProjectUpdate.php:67
1177#: IDF/Form/Admin/ProjectCreate.php:215
1178#: IDF/Form/Admin/ProjectUpdate.php:77
11721179#: IDF/Form/Admin/UserUpdate.php:129
11731180#: IDF/Form/Admin/ProjectDelete.php:78
1174#: IDF/Form/UpdateUpload.php:116
1181#: IDF/Form/UpdateUpload.php:126
11751182#: IDF/Form/WikiUpdate.php:178
1176#: IDF/Form/TabsConf.php:92
1183#: IDF/Form/TabsConf.php:97
11771184#: IDF/Form/ReviewCommentFile.php:166
11781185#: IDF/Form/IssueCreate.php:233
11791186#: IDF/Form/Password.php:61
...... 
11851192msgid "Cannot save the model from an invalid form."
11861193msgstr "Ne peut pas sauvegarder le modèle depuis un formulaire invalide."
11871194
1188#: IDF/Form/Upload.php:60
1189#: IDF/Form/UpdateUpload.php:61
1195#: IDF/Form/Upload.php:49
1196#: IDF/Form/UpdateUpload.php:51
1197#: IDF/Form/WikiUpdate.php:60
1198#: IDF/Form/ReviewCommentFile.php:69
1199#: IDF/Form/IssueCreate.php:59
1200#: IDF/Form/WikiCreate.php:70
1201#: IDF/Form/ReviewCreate.php:54
1202msgid "Description"
1203msgstr "Description"
1204
1205#: IDF/Form/Upload.php:70
1206#: IDF/Form/UpdateUpload.php:71
11901207#: IDF/Form/WikiUpdate.php:104
11911208#: IDF/Form/ReviewCommentFile.php:92
11921209#: IDF/Form/IssueCreate.php:120
...... 
11951212msgid "Labels"
11961213msgstr "Étiquettes"
11971214
1198#: IDF/Form/Upload.php:75
1215#: IDF/Form/Upload.php:85
11991216msgid "For security reason, you cannot upload a file with this extension."
12001217msgstr "Pour des raisons de sécurité, vous ne pouvez pas mettre en ligne un fichier avec cette extension."
12011218
1202#: IDF/Form/Upload.php:108
1203#: IDF/Form/UpdateUpload.php:99
1219#: IDF/Form/Upload.php:118
1220#: IDF/Form/UpdateUpload.php:109
12041221#: IDF/Form/IssueCreate.php:169
12051222#, php-format
12061223msgid "You cannot provide more than label from the %s class to an issue."
12071224msgstr "Vous ne pouvez pas fournir plus d'une étiquette de la classe %s à un ticket."
12081225
1209#: IDF/Form/Upload.php:109
1210#: IDF/Form/UpdateUpload.php:100
1226#: IDF/Form/Upload.php:119
1227#: IDF/Form/UpdateUpload.php:110
12111228#: IDF/Form/WikiUpdate.php:162
12121229#: IDF/Form/ReviewCommentFile.php:150
12131230#: IDF/Form/IssueCreate.php:163
...... 
12161233msgid "You provided an invalid label."
12171234msgstr "Vous avez donné une étiquette invalide."
12181235
1219#: IDF/Form/Upload.php:176
1236#: IDF/Form/Upload.php:187
12201237#, php-format
12211238msgid "New download - %s (%s)"
12221239msgstr "Nouveau téléchargement - %s (%s)"
...... 
13591376msgstr "L'adresse email \"%s\" est déjà utilisée."
13601377
13611378#: IDF/Form/UserAccount.php:240
1362#: IDF/Form/Admin/UserUpdate.php:211
1379#: IDF/Form/Admin/UserUpdate.php:214
13631380msgid "The passwords do not match. Please give them again."
13641381msgstr "Les mots de passe ne sont pas identiques, veuillez les donner de nouveau."
13651382
...... 
14271444msgid "Project members"
14281445msgstr "Membres du projet"
14291446
1430#: IDF/Form/Admin/ProjectCreate.php:144
1447#: IDF/Form/Admin/ProjectCreate.php:154
14311448msgid "Only a remote repository available throught http or https are allowed. For example \"http://somewhere.com/svn/trunk\"."
14321449msgstr "Only a remote repository available throught http or https are allowed. For example \"http://somewhere.com/svn/trunk\"."
14331450
1434#: IDF/Form/Admin/ProjectCreate.php:153
1451#: IDF/Form/Admin/ProjectCreate.php:163
14351452msgid "This shortname contains illegal characters, please use only letters, digits and dash (-)."
14361453msgstr "Ce nom court contient des caractères non autorisés, il ne doit être composé que de lettres, de chiffres et du tiret (-)."
14371454
1438#: IDF/Form/Admin/ProjectCreate.php:156
1455#: IDF/Form/Admin/ProjectCreate.php:166
14391456msgid "The shortname cannot start with the dash (-) character."
14401457msgstr "Le nom court ne doit pas démarrer avec un tiret (-)."
14411458
1442#: IDF/Form/Admin/ProjectCreate.php:159
1459#: IDF/Form/Admin/ProjectCreate.php:169
14431460msgid "The shortname cannot end with the dash (-) character."
14441461msgstr "Le nom court ne doit pas se terminer avec un tiret (-)."
14451462
1446#: IDF/Form/Admin/ProjectCreate.php:164
1463#: IDF/Form/Admin/ProjectCreate.php:174
14471464msgid "This shortname is already used. Please select another one."
14481465msgstr "Ce nom court est déjà utilisé, veuillez en sélectionner un autre."
14491466
1450#: IDF/Form/Admin/ProjectCreate.php:211
1467#: IDF/Form/Admin/ProjectCreate.php:221
14511468msgid "Click on the Administer tab to set the description of your project."
14521469msgstr "Cliquez sur l'onglet Administration pour définir la description du projet."
14531470
...... 
14791496msgid "If the user is not getting the confirmation email or is abusing the system, you can directly enable or disable his account here."
14801497msgstr "Si l'utilisateur ne reçoit pas l'email de confirmation ou s'il abuse du système, vous pouvez directement activer ou désactiver son compte ici."
14811498
1482#: IDF/Form/Admin/UserUpdate.php:196
1499#: IDF/Form/Admin/UserUpdate.php:183
1500msgid "--- is not a valid first name."
1501msgstr "--- n'est pas un prénom acceptable."
1502
1503#: IDF/Form/Admin/UserUpdate.php:199
14831504msgid "A user with this email already exists, please provide another email address."
14841505msgstr "Un utilisateur avec cet email existe déjà, merci de fournir une autre adresse email."
14851506
...... 
15111532msgid "The page name must contains only letters, digits and the dash (-) character."
15121533msgstr "Le nom de la page ne doit contenir que des lettres, chiffres et le tiret (-)."
15131534
1514#: IDF/Form/WikiUpdate.php:60
1515#: IDF/Form/ReviewCommentFile.php:69
1516#: IDF/Form/IssueCreate.php:59
1517#: IDF/Form/WikiCreate.php:70
1518#: IDF/Form/ReviewCreate.php:54
1519msgid "Description"
1520msgstr "Description"
1521
15221535#: IDF/Form/WikiUpdate.php:61
15231536#: IDF/Form/ReviewCommentFile.php:70
15241537#: IDF/Form/WikiCreate.php:71
...... 
17151728msgid "New Documentation Page %s - %s (%s)"
17161729msgstr "Nouvelle page de documentation %s - %s (%s)"
17171730
1731#: IDF/Form/MembersConf.php:104
1732#, php-format
1733msgid "The following login is invalid: %s."
1734msgid_plural "The following login are invalids: %s."
1735msgstr[0] "L'identifiant suivant n'est pas valide : %s."
1736msgstr[1] "Les identifiants suivants ne sont pas valides: %s."
1737
17181738#: IDF/Form/WikiConf.php:49
17191739msgid "Predefined documentation page labels"
17201740msgstr "Étiquettes prédéfinies des pages"
...... 
17601780msgid "New Code Review %s - %s (%s)"
17611781msgstr "Nouvelle revue de code %s - %s (%s)"
17621782
1763#: IDF/Scm/Mercurial.php:123
1764#: IDF/Scm/Git.php:137
1783#: IDF/Scm/Mercurial.php:125
1784#: IDF/Scm/Git.php:145
17651785#, php-format
17661786msgid "Folder %1$s not found in commit %2$s."
17671787msgstr "Répertoire %1$s non trouvé dans le commit %2$s."
17681788
1769#: IDF/Scm/Mercurial.php:140
1770#: IDF/Scm/Git.php:187
1789#: IDF/Scm/Mercurial.php:142
1790#: IDF/Scm/Git.php:245
17711791#, php-format
17721792msgid "Not a valid tree: %s."
17731793msgstr "Arbre non valide : %s."
...... 
19942014
19952015#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:8
19962016#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:15
2017#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
19972018#: IDF/gettexttemplates/idf/source/commit.html.php:13
19982019#: IDF/gettexttemplates/idf/source/git/file.html.php:8
19992020#: IDF/gettexttemplates/idf/source/git/tree.html.php:15
...... 
20782099
20792100#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
20802101#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
2102#: IDF/gettexttemplates/idf/source/commit.html.php:14
20812103#: IDF/gettexttemplates/idf/source/changelog.html.php:8
20822104msgid "Revision:"
20832105msgstr "Révision :"
20842106
20852107#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
20862108#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
2109#: IDF/gettexttemplates/idf/source/commit.html.php:15
20872110#: IDF/gettexttemplates/idf/source/changelog.html.php:9
20882111msgid "Go to revision"
20892112msgstr "Voir révision"
...... 
22082231#: IDF/gettexttemplates/idf/review/create.html.php:12
22092232#: IDF/gettexttemplates/idf/issues/view.html.php:18
22102233#: IDF/gettexttemplates/idf/issues/create.html.php:14
2211#: IDF/gettexttemplates/idf/downloads/view.html.php:7
2234#: IDF/gettexttemplates/idf/downloads/view.html.php:8
22122235#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
2213#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
2236#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
22142237msgid "Cancel"
22152238msgstr "Annuler"
22162239
...... 
23152338
23162339#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
23172340#: IDF/gettexttemplates/idf/wiki/view.html.php:11
2318#: IDF/gettexttemplates/idf/downloads/view.html.php:9
2341#: IDF/gettexttemplates/idf/downloads/view.html.php:10
23192342msgid "Trash"
23202343msgstr "Poubelle"
23212344
...... 
23812404msgid "Change Project Details"
23822405msgstr "Changer les détails du projet"
23832406
2407#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
2408msgid "Space Usage Statistics"
2409msgstr "Statistiques de l'utilisation"
2410
2411#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
2412msgid "Repositories:"
2413msgstr "Dépôts :"
2414
2415#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
2416#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
2417#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
2418msgid "Attachments:"
2419msgstr "Pièces jointes :"
2420
2421#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
2422#: IDF/gettexttemplates/idf/downloads/view.html.php:15
2423#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
2424msgid "Downloads:"
2425msgstr "Téléchargements :"
2426
2427#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
2428msgid "Database:"
2429msgstr "Base de données :"
2430
2431#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
2432msgid "Total Forge:"
2433msgstr "Total forge:"
2434
23842435#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
23852436msgid "You can select the type of repository you want. In the case of subversion, you can use optionally a remote repository instead of the local one."
23862437msgstr "Vous pouvez sélectionner le type de dépôt souhaité. Dans le cas d'un dépôt Subversion, vous pouvez aussi choisir un dépôt distant."
...... 
24112462msgstr "Bienvenue"
24122463
24132464#: IDF/gettexttemplates/idf/admin/members.html.php:13
2414#: IDF/gettexttemplates/idf/admin/source.html.php:7
2465#: IDF/gettexttemplates/idf/admin/source.html.php:8
24152466#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
24162467#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
24172468#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
...... 
24362487msgid "Repository access:"
24372488msgstr "Accès au dépôt :"
24382489
2490#: IDF/gettexttemplates/idf/admin/source.html.php:7
2491msgid "Repository size:"
2492msgstr "Taille des dépôts :"
2493
24392494#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
24402495msgid "You can configure here the project tabs access rights and notification emails."
24412496msgstr "Vous pouvez configurer ici les droits d'accès aux onglets et les emails de notification."
...... 
25622617#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
25632618#: IDF/gettexttemplates/idf/review/view.html.php:24
25642619#: IDF/gettexttemplates/idf/issues/view.html.php:20
2565#: IDF/gettexttemplates/idf/downloads/view.html.php:13
2620#: IDF/gettexttemplates/idf/downloads/view.html.php:14
25662621#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
25672622msgid "Updated:"
25682623msgstr "Mis à jour :"
...... 
27172772#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
27182773#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
27192774#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
2720#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
2775#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
27212776msgid "Instructions"
27222777msgstr "Instructions"
27232778
...... 
31283183
31293184#: IDF/gettexttemplates/idf/review/view.html.php:28
31303185#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
3186#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
31313187msgid "Description:"
31323188msgstr "Description :"
31333189
...... 
32603316msgid "(No comments were given for this change.)"
32613317msgstr "(Aucun commentaire n'a été donné pour ce changement.)"
32623318
3263#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
3264#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
3265msgid "Attachments:"
3266msgstr "Pièces jointes :"
3267
32683319#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
32693320#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
32703321msgid "Issue:"
...... 
34043455msgstr "<strong>Attention !</strong> Ce fichier est marqué comme obsolète, téléchargez ce fichier uniquement si vous avez besoin de cette version."
34053456
34063457#: IDF/gettexttemplates/idf/downloads/view.html.php:5
3458msgid "Changes"
3459msgstr "Changements"
3460
3461#: IDF/gettexttemplates/idf/downloads/view.html.php:6
34073462msgid "The form contains some errors. Please correct them to update the file."
34083463msgstr "Le formulaire contient des erreurs. Merci de les corriger pour mettre en ligne le fichier."
34093464
3410#: IDF/gettexttemplates/idf/downloads/view.html.php:6
3465#: IDF/gettexttemplates/idf/downloads/view.html.php:7
34113466msgid "Update File"
34123467msgstr "Mettre à jour le fichier"
34133468
3414#: IDF/gettexttemplates/idf/downloads/view.html.php:8
3415#: IDF/gettexttemplates/idf/downloads/view.html.php:10
3469#: IDF/gettexttemplates/idf/downloads/view.html.php:9
3470#: IDF/gettexttemplates/idf/downloads/view.html.php:11
34163471msgid "Remove this file"
34173472msgstr "Supprimer ce fichier"
34183473
3419#: IDF/gettexttemplates/idf/downloads/view.html.php:11
3474#: IDF/gettexttemplates/idf/downloads/view.html.php:12
34203475msgid "Delete this file"
34213476msgstr "Supprimer ce fichier"
34223477
3423#: IDF/gettexttemplates/idf/downloads/view.html.php:12
3478#: IDF/gettexttemplates/idf/downloads/view.html.php:13
34243479#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
34253480msgid "Uploaded:"
34263481msgstr "Mis en ligne :"
34273482
3428#: IDF/gettexttemplates/idf/downloads/view.html.php:14
3429#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
3430msgid "Downloads:"
3431msgstr "Téléchargements :"
3432
34333483#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
34343484msgid "<strong>Attention!</strong> If you want to delete a specific version of your software, maybe, someone is depending on this specific version to run his systems. Are you sure, you will not affect anybody when removing this file?"
34353485msgstr "<strong>Attention !</strong> Si vous voulez supprimer une version spécifique de votre logiciel, peut-être que quelqu'un dépend encore de cette version. Êtes-vous certain que supprimer ce fichier ne va pas importuner certaines personnes ?"
...... 
34603510msgstr "Chaque fichier doit avoir un nom différent et ce nom ne peut pas être changé. Faites attention de bien mettre le numéro de révision dans le nom du fichier."
34613511
34623512#: IDF/gettexttemplates/idf/downloads/submit.html.php:6
3513#, php-format
3514msgid "You can use the <a href=\"%%url%%\">Markdown syntax</a> for the changes."
3515msgstr "Vous pouvez utiliser la <a href=\"%%url%%\">syntaxe Markdown</a> pour la description."
3516
3517#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
34633518msgid "The form contains some errors. Please correct them to submit the file."
34643519msgstr "Le formulaire contient des erreurs. Merci de les corriger pour mettre en ligne le fichier."
34653520
3466#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
3521#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
34673522msgid "Submit File"
34683523msgstr "Mettre en ligne"
34693524
...... 
34953550msgid "Create this documentation page"
34963551msgstr "Créer cette page de documentation"
34973552
3553#: IDF/gettexttemplates/idf/downloads/submit.html.php:6
3554#, php-format
3555msgid "You can use the <a href=\"%%url%%\">Markdown syntax</a> for the description."
3556msgstr "Vous pouvez utiliser la <a href=\"%%url%%\">syntaxe Markdown</a> pour la description."
3557
src/IDF/locale/idf.pot
88msgstr ""
99"Project-Id-Version: PACKAGE VERSION\n"
1010"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2009-04-16 13:36+0200\n"
11"POT-Creation-Date: 2009-06-22 21:06+0200\n"
1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414"Language-Team: LANGUAGE <LL@li.org>\n"
...... 
2424msgstr ""
2525
2626#: IDF/Commit.php:62 IDF/IssueComment.php:65 IDF/IssueFile.php:57
27#: IDF/Issue.php:67 IDF/Review.php:71 IDF/Upload.php:79 IDF/WikiPage.php:78
27#: IDF/Issue.php:67 IDF/Review.php:71 IDF/Upload.php:85 IDF/WikiPage.php:78
2828#: IDF/WikiRevision.php:79 IDF/Review/Comment.php:69
2929#: IDF/Review/FileComment.php:69
3030msgid "submitter"
...... 
4040msgstr ""
4141
4242#: IDF/Commit.php:99 IDF/IssueComment.php:79 IDF/IssueFile.php:96
43#: IDF/Issue.php:105 IDF/Review.php:99 IDF/Upload.php:100 IDF/WikiPage.php:100
43#: IDF/Issue.php:105 IDF/Review.php:99 IDF/Upload.php:106 IDF/WikiPage.php:100
4444#: IDF/WikiRevision.php:92 IDF/Review/Patch.php:83 IDF/Review/Comment.php:83
4545#: IDF/Review/FileComment.php:76
4646msgid "creation date"
4747msgstr ""
4848
49#: IDF/Commit.php:170
49#: IDF/Commit.php:172
5050#, php-format
5151msgid "New Commit %s - %s (%s)"
5252msgstr ""
5353
54#: IDF/Commit.php:205 IDF/Commit.php:232 IDF/Form/ReviewCreate.php:74
54#: IDF/Commit.php:239
55#, php-format
56msgid "Commit&nbsp;%s, by %s"
57msgstr ""
58
59#: IDF/Commit.php:266 IDF/Form/ReviewCreate.php:74
5560#: IDF/gettexttemplates/idf/source/base.html.php:5
5661#: IDF/gettexttemplates/idf/source/changelog.html.php:5
5762msgid "Commit"
5863msgstr ""
5964
60#: IDF/Commit.php:205 IDF/IssueComment.php:173 IDF/Issue.php:196
61#: IDF/Upload.php:186 IDF/WikiPage.php:199 IDF/WikiRevision.php:189
62#: IDF/Review/Comment.php:177
63#: IDF/gettexttemplates/idf/source/changelog.html.php:6
64msgid "by"
65msgstr ""
66
6765#: IDF/Conf.php:61 IDF/Conf.php:61
6866msgid "key"
6967msgstr ""
...... 
8179msgid "comment"
8280msgstr ""
8381
84#: IDF/IssueComment.php:72 IDF/WikiRevision.php:85 IDF/Review/Comment.php:76
82#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85
83#: IDF/Review/Comment.php:76
8584msgid "changes"
8685msgstr ""
8786
...... 
138137#: IDF/gettexttemplates/idf/issues/view.html.php:13
139138#: IDF/gettexttemplates/idf/issues/view.html.php:24
140139#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
141#: IDF/gettexttemplates/idf/downloads/view.html.php:15
140#: IDF/gettexttemplates/idf/downloads/view.html.php:16
142141#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
143142#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
144143msgid "Labels:"
145144msgstr ""
146145
147#: IDF/IssueComment.php:173 IDF/Review/Comment.php:177
146#: IDF/IssueComment.php:173
148147#, php-format
149msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
148msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>, by %s"
150149msgstr ""
151150
152151#: IDF/IssueComment.php:195 IDF/Review/Comment.php:199
...... 
179178msgstr ""
180179
181180#: IDF/IssueFile.php:102 IDF/Issue.php:111 IDF/Review.php:105
182#: IDF/Upload.php:106 IDF/WikiPage.php:106
181#: IDF/Upload.php:112 IDF/WikiPage.php:106
183182msgid "modification date"
184183msgstr ""
185184
...... 
196195"Interested users will get an email notification when the issue is changed."
197196msgstr ""
198197
199#: IDF/Issue.php:92 IDF/Review.php:86 IDF/Upload.php:87 IDF/WikiPage.php:94
198#: IDF/Issue.php:92 IDF/Review.php:86 IDF/Upload.php:93 IDF/WikiPage.php:94
200199msgid "labels"
201200msgstr ""
202201
...... 
206205
207206#: IDF/Issue.php:196
208207#, php-format
209msgid "Creation of <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
208msgid "Creation of <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>, by %s"
210209msgstr ""
211210
212211#: IDF/Issue.php:215
...... 
277276msgid "Lower case version of the name for fast searching."
278277msgstr ""
279278
280#: IDF/Upload.php:64
279#: IDF/Upload.php:70
281280msgid "file"
282281msgstr ""
283282
284#: IDF/Upload.php:65
283#: IDF/Upload.php:71
285284msgid "The path is relative to the upload path."
286285msgstr ""
287286
288#: IDF/Upload.php:72
287#: IDF/Upload.php:78
289288msgid "file size in bytes"
290289msgstr ""
291290
292#: IDF/Upload.php:94
291#: IDF/Upload.php:100
293292msgid "number of downloads"
294293msgstr ""
295294
296#: IDF/Upload.php:183
295#: IDF/Upload.php:189
297296#, php-format
298297msgid "<a href=\"%1$s\" title=\"View download\">Download %2$d</a>, %3$s"
299298msgstr ""
300299
301#: IDF/Upload.php:186
300#: IDF/Upload.php:192
302301#, php-format
303msgid "Addition of <a href=\"%s\">download&nbsp;%d</a>"
302msgid "Addition of <a href=\"%s\">download&nbsp;%d</a>, by %s"
304303msgstr ""
305304
306#: IDF/Upload.php:204
305#: IDF/Upload.php:210
307306#, php-format
308307msgid "%s: Download %d added - %s"
309308msgstr ""
...... 
368367
369368#: IDF/WikiPage.php:199
370369#, php-format
371msgid "Creation of <a href=\"%s\">page&nbsp;%s</a>"
370msgid "Creation of <a href=\"%s\">page&nbsp;%s</a>, by %s"
372371msgstr ""
373372
374373#: IDF/WikiPage.php:218
...... 
390389
391390#: IDF/WikiRevision.php:189
392391#, php-format
393msgid "Change of <a href=\"%s\">%s</a>"
392msgid "Change of <a href=\"%s\">%s</a>, by %s"
394393msgstr ""
395394
396395#: IDF/WikiRevision.php:209
...... 
434433msgid "patch"
435434msgstr ""
436435
436#: IDF/Review/Comment.php:177
437#, php-format
438msgid "Comment on <a href=\"%s\" class=\"%s\">issue&nbsp;%d</a>"
439msgstr ""
440
441#: IDF/Review/Comment.php:177
442#: IDF/gettexttemplates/idf/source/changelog.html.php:6
443msgid "by"
444msgstr ""
445
437446#: IDF/Plugin/SyncSvn.php:75 IDF/Plugin/SyncMercurial.php:75
438447#, php-format
439448msgid "The repository %s already exists."
...... 
459468
460469#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150
461470#: IDF/Views/Review.php:58 IDF/Views/User.php:83 IDF/Views/Issue.php:61
462#: IDF/Views/Issue.php:137 IDF/Views/Issue.php:249 IDF/Views/Issue.php:442
463#: IDF/Views/Issue.php:500 IDF/Views/Download.php:65
471#: IDF/Views/Issue.php:137 IDF/Views/Issue.php:247 IDF/Views/Issue.php:436
472#: IDF/Views/Issue.php:494 IDF/Views/Download.php:65
464473#: IDF/Views/Download.php:272 IDF/Form/Upload.php:40
465474#: IDF/Form/UpdateUpload.php:42 IDF/Form/IssueCreate.php:50
466475#: IDF/Form/IssueUpdate.php:45 IDF/Form/ReviewCreate.php:45
...... 
518527msgid "Delete Old Revision of %s"
519528msgstr ""
520529
521#: IDF/Views/Wiki.php:316 IDF/Views/Admin.php:90 IDF/Views/Admin.php:242
530#: IDF/Views/Wiki.php:316 IDF/Views/Admin.php:93 IDF/Views/Admin.php:245
522531#, php-format
523532msgid "Update %s"
524533msgstr ""
...... 
562571msgid "%s Project Summary"
563572msgstr ""
564573
565#: IDF/Views/Project.php:221 IDF/Views/Admin.php:98
574#: IDF/Views/Project.php:221 IDF/Views/Admin.php:101
566575msgid "The project has been updated."
567576msgstr ""
568577
...... 
642651msgstr ""
643652
644653#: IDF/Views/Review.php:57 IDF/Views/User.php:81 IDF/Views/Issue.php:60
645#: IDF/Views/Issue.php:136 IDF/Views/Issue.php:248 IDF/Views/Issue.php:441
646#: IDF/Views/Issue.php:499
654#: IDF/Views/Issue.php:136 IDF/Views/Issue.php:246 IDF/Views/Issue.php:435
655#: IDF/Views/Issue.php:493
647656msgid "Id"
648657msgstr ""
649658
650659#: IDF/Views/Review.php:59 IDF/Views/User.php:84 IDF/Views/Issue.php:62
651#: IDF/Views/Issue.php:138 IDF/Views/Issue.php:250 IDF/Views/Issue.php:443
652#: IDF/Views/Issue.php:501 IDF/Form/IssueCreate.php:92
660#: IDF/Views/Issue.php:138 IDF/Views/Issue.php:248 IDF/Views/Issue.php:437
661#: IDF/Views/Issue.php:495 IDF/Form/IssueCreate.php:92
653662#: IDF/Form/IssueUpdate.php:88 IDF/Form/ReviewCreate.php:103
654663msgid "Status"
655664msgstr ""
656665
657666#: IDF/Views/Review.php:60 IDF/Views/User.php:85 IDF/Views/Issue.php:63
658#: IDF/Views/Issue.php:139 IDF/Views/Issue.php:251 IDF/Views/Issue.php:444
659#: IDF/Views/Issue.php:502
667#: IDF/Views/Issue.php:139 IDF/Views/Issue.php:249 IDF/Views/Issue.php:438
668#: IDF/Views/Issue.php:496
660669msgid "Last Updated"
661670msgstr ""
662671
...... 
739748msgid "Your new email address \"%s\" has been validated. Thank you!"
740749msgstr ""
741750
742#: IDF/Views/Source.php:49
751#: IDF/Views/Source.php:50
743752#, php-format
744753msgid "%s Source Help"
745754msgstr ""
746755
747#: IDF/Views/Source.php:64
756#: IDF/Views/Source.php:65
748757#, php-format
749758msgid "%1$s %2$s Change Log"
750759msgstr ""
751760
752#: IDF/Views/Source.php:105 IDF/Views/Source.php:154 IDF/Views/Source.php:316
761#: IDF/Views/Source.php:108 IDF/Views/Source.php:152 IDF/Views/Source.php:318
753762#, php-format
754763msgid "%1$s %2$s Source Tree"
755764msgstr ""
...... 
769778msgid "%s Open Issues"
770779msgstr ""
771780
772#: IDF/Views/Issue.php:67 IDF/Views/Issue.php:143 IDF/Views/Issue.php:255
773#: IDF/Views/Issue.php:448 IDF/Views/Issue.php:506
781#: IDF/Views/Issue.php:67 IDF/Views/Issue.php:143 IDF/Views/Issue.php:253
782#: IDF/Views/Issue.php:442 IDF/Views/Issue.php:500
774783msgid "No issues were found."
775784msgstr ""
776785
...... 
798807msgid "Submit a new issue"
799808msgstr ""
800809
801#: IDF/Views/Issue.php:178
810#: IDF/Views/Issue.php:194
802811#, php-format
803msgid "<a href=\"%s\">Issue %d</a> has been created."
812msgid "Issue %s - %s (%s)"
804813msgstr ""
805814
806#: IDF/Views/Issue.php:197
815#: IDF/Views/Issue.php:201
807816#, php-format
808msgid "Issue %s - %s (%s)"
817msgid "<a href=\"%s\">Issue %d</a> has been created."
809818msgstr ""
810819
811#: IDF/Views/Issue.php:232
820#: IDF/Views/Issue.php:230
812821#, php-format
813822msgid "Search Issues - %s"
814823msgstr ""
815824
816#: IDF/Views/Issue.php:244
825#: IDF/Views/Issue.php:242
817826msgid "This table shows the found issues."
818827msgstr ""
819828
820#: IDF/Views/Issue.php:274
829#: IDF/Views/Issue.php:272
821830#, php-format
822831msgid "Issue <a href=\"%s\">%d</a>: %s"
823832msgstr ""
824833
825#: IDF/Views/Issue.php:298
834#: IDF/Views/Issue.php:322
826835#, php-format
827msgid "<a href=\"%s\">Issue %d</a> has been updated."
836msgid "Updated Issue %s - %s (%s)"
828837msgstr ""
829838
830#: IDF/Views/Issue.php:329
839#: IDF/Views/Issue.php:330
831840#, php-format
832msgid "Updated Issue %s - %s (%s)"
841msgid "<a href=\"%s\">Issue %d</a> has been updated."
833842msgstr ""
834843
835#: IDF/Views/Issue.php:402
844#: IDF/Views/Issue.php:396
836845#, php-format
837846msgid "View %s"
838847msgstr ""
839848
840#: IDF/Views/Issue.php:422
849#: IDF/Views/Issue.php:416
841850#, php-format
842851msgid "%s Closed Issues"
843852msgstr ""
844853
845#: IDF/Views/Issue.php:432
854#: IDF/Views/Issue.php:426
846855msgid "This table shows the closed issues."
847856msgstr ""
848857
849#: IDF/Views/Issue.php:474
858#: IDF/Views/Issue.php:468
850859#, php-format
851860msgid "%1$s Issues with Label %2$s"
852861msgstr ""
853862
854#: IDF/Views/Issue.php:477
863#: IDF/Views/Issue.php:471
855864#, php-format
856865msgid "%1$s Closed Issues with Label %2$s"
857866msgstr ""
858867
859#: IDF/Views/Issue.php:490
868#: IDF/Views/Issue.php:484
860869#, php-format
861870msgid "This table shows the issues with label %s."
862871msgstr ""
863872
864#: IDF/Views/Issue.php:539
873#: IDF/Views/Issue.php:533
865874msgid "The issue has been removed from your watch list."
866875msgstr ""
867876
868#: IDF/Views/Issue.php:542
877#: IDF/Views/Issue.php:536
869878msgid "The issue has been added to your watch list."
870879msgstr ""
871880
872#: IDF/Views/Issue.php:620
881#: IDF/Views/Issue.php:614
873882msgid "On your watch list."
874883msgstr ""
875884
...... 
882891msgid "This table shows the files to download."
883892msgstr ""
884893
885#: IDF/Views/Download.php:64 IDF/Views/Download.php:271 IDF/Form/Upload.php:49
894#: IDF/Views/Download.php:64 IDF/Views/Download.php:271 IDF/Form/Upload.php:59
886895#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
887896#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
888897#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
...... 
959968msgid "Short Name"
960969msgstr ""
961970
962#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:203
971#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:206
963972#: IDF/Form/Admin/ProjectCreate.php:48 IDF/Form/Admin/ProjectUpdate.php:42
964973msgid "Name"
965974msgstr ""
966975
967#: IDF/Views/Admin.php:71
976#: IDF/Views/Admin.php:67
977msgid "Repository Size"
978msgstr ""
979
980#: IDF/Views/Admin.php:73
968981msgid "No projects were found."
969982msgstr ""
970983
971#: IDF/Views/Admin.php:122
984#: IDF/Views/Admin.php:125
972985#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
973986#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
974987#: IDF/gettexttemplates/idf/index.html.php:5
975988msgid "Create Project"
976989msgstr ""
977990
978#: IDF/Views/Admin.php:128
991#: IDF/Views/Admin.php:131
979992msgid "The project has been created."
980993msgstr ""
981994
982#: IDF/Views/Admin.php:154
995#: IDF/Views/Admin.php:157
983996#, php-format
984997msgid "Delete %s Project"
985998msgstr ""
986999
987#: IDF/Views/Admin.php:161
1000#: IDF/Views/Admin.php:164
9881001msgid "The project has been deleted."
9891002msgstr ""
9901003
991#: IDF/Views/Admin.php:191
1004#: IDF/Views/Admin.php:194
9921005msgid "Not Validated User List"
9931006msgstr ""
9941007
995#: IDF/Views/Admin.php:194
1008#: IDF/Views/Admin.php:197
9961009#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
9971010msgid "User List"
9981011msgstr ""
9991012
1000#: IDF/Views/Admin.php:197
1013#: IDF/Views/Admin.php:200
10011014msgid "This table shows the users in the forge."
10021015msgstr ""
10031016
1004#: IDF/Views/Admin.php:202
1017#: IDF/Views/Admin.php:205
10051018msgid "login"
10061019msgstr ""
10071020
1008#: IDF/Views/Admin.php:204 IDF/Form/Admin/UserUpdate.php:99
1021#: IDF/Views/Admin.php:207 IDF/Form/Admin/UserUpdate.php:99
10091022msgid "Staff"
10101023msgstr ""
10111024
1012#: IDF/Views/Admin.php:205
1025#: IDF/Views/Admin.php:208
10131026msgid "Admin"
10141027msgstr ""
10151028
1016#: IDF/Views/Admin.php:206 IDF/Form/Admin/UserUpdate.php:110
1029#: IDF/Views/Admin.php:209 IDF/Form/Admin/UserUpdate.php:110
10171030msgid "Active"
10181031msgstr ""
10191032
1020#: IDF/Views/Admin.php:207
1033#: IDF/Views/Admin.php:210
10211034msgid "Last Login"
10221035msgstr ""
10231036
1024#: IDF/Views/Admin.php:212
1037#: IDF/Views/Admin.php:215
10251038msgid "No users were found."
10261039msgstr ""
10271040
1028#: IDF/Views/Admin.php:249
1041#: IDF/Views/Admin.php:252
10291042msgid "You do not have the rights to update this user."
10301043msgstr ""
10311044
1032#: IDF/Views/Admin.php:265
1045#: IDF/Views/Admin.php:268
10331046msgid "The user has been updated."
10341047msgstr ""
10351048
1036#: IDF/Views/Admin.php:284 IDF/gettexttemplates/idf/login_form.html.php:7
1049#: IDF/Views/Admin.php:287 IDF/gettexttemplates/idf/login_form.html.php:7
10371050msgid "Yes"
10381051msgstr ""
10391052
1040#: IDF/Views/Admin.php:284
1053#: IDF/Views/Admin.php:287
10411054msgid "No"
10421055msgstr ""
10431056
...... 
10521065"email."
10531066msgstr ""
10541067
1055#: IDF/Form/UserChangeEmail.php:80 IDF/Form/Upload.php:137
1068#: IDF/Form/UserChangeEmail.php:80 IDF/Form/Upload.php:147
10561069#: IDF/Form/Register.php:114 IDF/Form/UserAccount.php:119
1057#: IDF/Form/Admin/ProjectCreate.php:205 IDF/Form/Admin/ProjectUpdate.php:67
1070#: IDF/Form/Admin/ProjectCreate.php:215 IDF/Form/Admin/ProjectUpdate.php:77
10581071#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/Admin/ProjectDelete.php:78
1059#: IDF/Form/UpdateUpload.php:116 IDF/Form/WikiUpdate.php:178
1060#: IDF/Form/TabsConf.php:92 IDF/Form/ReviewCommentFile.php:166
1072#: IDF/Form/UpdateUpload.php:126 IDF/Form/WikiUpdate.php:178
1073#: IDF/Form/TabsConf.php:97 IDF/Form/ReviewCommentFile.php:166
10611074#: IDF/Form/IssueCreate.php:233 IDF/Form/Password.php:61
10621075#: IDF/Form/IssueUpdate.php:232 IDF/Form/ReviewFileComment.php:77
10631076#: IDF/Form/WikiCreate.php:167 IDF/Form/MembersConf.php:64
...... 
10651078msgid "Cannot save the model from an invalid form."
10661079msgstr ""
10671080
1068#: IDF/Form/Upload.php:60 IDF/Form/UpdateUpload.php:61
1081#: IDF/Form/Upload.php:49 IDF/Form/UpdateUpload.php:51
1082#: IDF/Form/WikiUpdate.php:60 IDF/Form/ReviewCommentFile.php:69
1083#: IDF/Form/IssueCreate.php:59 IDF/Form/WikiCreate.php:70
1084#: IDF/Form/ReviewCreate.php:54
1085msgid "Description"
1086msgstr ""
1087
1088#: IDF/Form/Upload.php:70 IDF/Form/UpdateUpload.php:71
10691089#: IDF/Form/WikiUpdate.php:104 IDF/Form/ReviewCommentFile.php:92
10701090#: IDF/Form/IssueCreate.php:120 IDF/Form/IssueUpdate.php:117
10711091#: IDF/Form/WikiCreate.php:93
10721092msgid "Labels"
10731093msgstr ""
10741094
1075#: IDF/Form/Upload.php:75
1095#: IDF/Form/Upload.php:85
10761096msgid "For security reason, you cannot upload a file with this extension."
10771097msgstr ""
10781098
1079#: IDF/Form/Upload.php:108 IDF/Form/UpdateUpload.php:99
1099#: IDF/Form/Upload.php:118 IDF/Form/UpdateUpload.php:109
10801100#: IDF/Form/IssueCreate.php:169
10811101#, php-format
10821102msgid "You cannot provide more than label from the %s class to an issue."
10831103msgstr ""
10841104
1085#: IDF/Form/Upload.php:109 IDF/Form/UpdateUpload.php:100
1105#: IDF/Form/Upload.php:119 IDF/Form/UpdateUpload.php:110
10861106#: IDF/Form/WikiUpdate.php:162 IDF/Form/ReviewCommentFile.php:150
10871107#: IDF/Form/IssueCreate.php:163 IDF/Form/IssueCreate.php:170
10881108#: IDF/Form/WikiCreate.php:151
10891109msgid "You provided an invalid label."
10901110msgstr ""
10911111
1092#: IDF/Form/Upload.php:176
1112#: IDF/Form/Upload.php:187
10931113#, php-format
10941114msgid "New download - %s (%s)"
10951115msgstr ""
...... 
12371257msgid "The email \"%s\" is already used."
12381258msgstr ""
12391259
1240#: IDF/Form/UserAccount.php:240 IDF/Form/Admin/UserUpdate.php:211
1260#: IDF/Form/UserAccount.php:240 IDF/Form/Admin/UserUpdate.php:214
12411261msgid "The passwords do not match. Please give them again."
12421262msgstr ""
12431263
...... 
13011321msgid "Project members"
13021322msgstr ""
13031323
1304#: IDF/Form/Admin/ProjectCreate.php:144
1324#: IDF/Form/Admin/ProjectCreate.php:154
13051325msgid ""
13061326"Only a remote repository available throught http or https are allowed. For "
13071327"example \"http://somewhere.com/svn/trunk\"."
13081328msgstr ""
13091329
1310#: IDF/Form/Admin/ProjectCreate.php:153
1330#: IDF/Form/Admin/ProjectCreate.php:163
13111331msgid ""
13121332"This shortname contains illegal characters, please use only letters, digits "
13131333"and dash (-)."
13141334msgstr ""
13151335
1316#: IDF/Form/Admin/ProjectCreate.php:156
1336#: IDF/Form/Admin/ProjectCreate.php:166
13171337msgid "The shortname cannot start with the dash (-) character."
13181338msgstr ""
13191339
1320#: IDF/Form/Admin/ProjectCreate.php:159
1340#: IDF/Form/Admin/ProjectCreate.php:169
13211341msgid "The shortname cannot end with the dash (-) character."
13221342msgstr ""
13231343
1324#: IDF/Form/Admin/ProjectCreate.php:164
1344#: IDF/Form/Admin/ProjectCreate.php:174
13251345msgid "This shortname is already used. Please select another one."
13261346msgstr ""
13271347
1328#: IDF/Form/Admin/ProjectCreate.php:211
1348#: IDF/Form/Admin/ProjectCreate.php:221
13291349msgid "Click on the Administer tab to set the description of your project."
13301350msgstr ""
13311351
...... 
13611381"you can directly enable or disable his account here."
13621382msgstr ""
13631383
1364#: IDF/Form/Admin/UserUpdate.php:196
1384#: IDF/Form/Admin/UserUpdate.php:183
1385msgid "--- is not a valid first name."
1386msgstr ""
1387
1388#: IDF/Form/Admin/UserUpdate.php:199
13651389msgid ""
13661390"A user with this email already exists, please provide another email address."
13671391msgstr ""
...... 
13951419"The page name must contains only letters, digits and the dash (-) character."
13961420msgstr ""
13971421
1398#: IDF/Form/WikiUpdate.php:60 IDF/Form/ReviewCommentFile.php:69
1399#: IDF/Form/IssueCreate.php:59 IDF/Form/WikiCreate.php:70
1400#: IDF/Form/ReviewCreate.php:54
1401msgid "Description"
1402msgstr ""
1403
14041422#: IDF/Form/WikiUpdate.php:61 IDF/Form/ReviewCommentFile.php:70
14051423#: IDF/Form/WikiCreate.php:71
14061424msgid "This one line description is displayed in the list of pages."
...... 
15701588msgid "New Documentation Page %s - %s (%s)"
15711589msgstr ""
15721590
1591#: IDF/Form/MembersConf.php:104
1592#, php-format
1593msgid "The following login is invalid: %s."
1594msgid_plural "The following login are invalids: %s."
1595msgstr[0] ""
1596msgstr[1] ""
1597
15731598#: IDF/Form/WikiConf.php:49
15741599msgid "Predefined documentation page labels"
15751600msgstr ""
...... 
16161641msgid "New Code Review %s - %s (%s)"
16171642msgstr ""
16181643
1619#: IDF/Scm/Mercurial.php:123 IDF/Scm/Git.php:137
1644#: IDF/Scm/Mercurial.php:125 IDF/Scm/Git.php:145
16201645#, php-format
16211646msgid "Folder %1$s not found in commit %2$s."
16221647msgstr ""
16231648
1624#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:187
1649#: IDF/Scm/Mercurial.php:142 IDF/Scm/Git.php:245
16251650#, php-format
16261651msgid "Not a valid tree: %s."
16271652msgstr ""
...... 
18501875
18511876#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:8
18521877#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:15
1878#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
18531879#: IDF/gettexttemplates/idf/source/commit.html.php:13
18541880#: IDF/gettexttemplates/idf/source/git/file.html.php:8
18551881#: IDF/gettexttemplates/idf/source/git/tree.html.php:15
...... 
19361962
19371963#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
19381964#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
1965#: IDF/gettexttemplates/idf/source/commit.html.php:14
19391966#: IDF/gettexttemplates/idf/source/changelog.html.php:8
19401967msgid "Revision:"
19411968msgstr ""
19421969
19431970#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
19441971#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
1972#: IDF/gettexttemplates/idf/source/commit.html.php:15
19451973#: IDF/gettexttemplates/idf/source/changelog.html.php:9
19461974msgid "Go to revision"
19471975msgstr ""
...... 
20702098#: IDF/gettexttemplates/idf/review/create.html.php:12
20712099#: IDF/gettexttemplates/idf/issues/view.html.php:18
20722100#: IDF/gettexttemplates/idf/issues/create.html.php:14
2073#: IDF/gettexttemplates/idf/downloads/view.html.php:7
2101#: IDF/gettexttemplates/idf/downloads/view.html.php:8
20742102#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
2075#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
2103#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
20762104msgid "Cancel"
20772105msgstr ""
20782106
...... 
21752203
21762204#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
21772205#: IDF/gettexttemplates/idf/wiki/view.html.php:11
2178#: IDF/gettexttemplates/idf/downloads/view.html.php:9
2206#: IDF/gettexttemplates/idf/downloads/view.html.php:10
21792207msgid "Trash"
21802208msgstr ""
21812209
...... 
22412269msgid "Change Project Details"
22422270msgstr ""
22432271
2272#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:3
2273msgid "Space Usage Statistics"
2274msgstr ""
2275
2276#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
2277msgid "Repositories:"
2278msgstr ""
2279
2280#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5
2281#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
2282#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
2283msgid "Attachments:"
2284msgstr ""
2285
2286#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
2287#: IDF/gettexttemplates/idf/downloads/view.html.php:15
2288#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
2289msgid "Downloads:"
2290msgstr ""
2291
2292#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
2293msgid "Database:"
2294msgstr ""
2295
2296#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
2297msgid "Total Forge:"
2298msgstr ""
2299
22442300#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
22452301msgid ""
22462302"You can select the type of repository you want. In the case of subversion, "
...... 
22772333msgstr ""
22782334
22792335#: IDF/gettexttemplates/idf/admin/members.html.php:13
2280#: IDF/gettexttemplates/idf/admin/source.html.php:7
2336#: IDF/gettexttemplates/idf/admin/source.html.php:8
22812337#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
22822338#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
22832339#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
...... 
23042360msgid "Repository access:"
23052361msgstr ""
23062362
2363#: IDF/gettexttemplates/idf/admin/source.html.php:7
2364msgid "Repository size:"
2365msgstr ""
2366
23072367#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
23082368msgid ""
23092369"You can configure here the project tabs access rights and notification "
...... 
24382498#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
24392499#: IDF/gettexttemplates/idf/review/view.html.php:24
24402500#: IDF/gettexttemplates/idf/issues/view.html.php:20
2441#: IDF/gettexttemplates/idf/downloads/view.html.php:13
2501#: IDF/gettexttemplates/idf/downloads/view.html.php:14
24422502#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
24432503msgid "Updated:"
24442504msgstr ""
...... 
25942654#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6
25952655#: IDF/gettexttemplates/idf/user/changeemail.html.php:6
25962656#: IDF/gettexttemplates/idf/register/inputkey.html.php:6
2597#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
2657#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
25982658msgid "Instructions"
25992659msgstr ""
26002660
...... 
29793039
29803040#: IDF/gettexttemplates/idf/review/view.html.php:28
29813041#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
3042#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
29823043msgid "Description:"
29833044msgstr ""
29843045
...... 
31133174msgid "(No comments were given for this change.)"
31143175msgstr ""
31153176
3116#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
3117#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
3118msgid "Attachments:"
3119msgstr ""
3120
31213177#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
31223178#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
31233179msgid "Issue:"
...... 
32553311msgstr ""
32563312
32573313#: IDF/gettexttemplates/idf/downloads/view.html.php:5
3258msgid "The form contains some errors. Please correct them to update the file."
3314msgid "Changes"
32593315msgstr ""
32603316
32613317#: IDF/gettexttemplates/idf/downloads/view.html.php:6
3318msgid "The form contains some errors. Please correct them to update the file."
3319msgstr ""
3320
3321#: IDF/gettexttemplates/idf/downloads/view.html.php:7
32623322msgid "Update File"
32633323msgstr ""
32643324
3265#: IDF/gettexttemplates/idf/downloads/view.html.php:8
3266#: IDF/gettexttemplates/idf/downloads/view.html.php:10
3325#: IDF/gettexttemplates/idf/downloads/view.html.php:9
3326#: IDF/gettexttemplates/idf/downloads/view.html.php:11
32673327msgid "Remove this file"
32683328msgstr ""
32693329
3270#: IDF/gettexttemplates/idf/downloads/view.html.php:11
3330#: IDF/gettexttemplates/idf/downloads/view.html.php:12
32713331msgid "Delete this file"
32723332msgstr ""
32733333
3274#: IDF/gettexttemplates/idf/downloads/view.html.php:12
3334#: IDF/gettexttemplates/idf/downloads/view.html.php:13
32753335#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
32763336msgid "Uploaded:"
32773337msgstr ""
32783338
3279#: IDF/gettexttemplates/idf/downloads/view.html.php:14
3280#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
3281msgid "Downloads:"
3282msgstr ""
3283
32843339#: IDF/gettexttemplates/idf/downloads/delete.html.php:3
32853340msgid ""
32863341"<strong>Attention!</strong> If you want to delete a specific version of your "
...... 
33163371msgstr ""
33173372
33183373#: IDF/gettexttemplates/idf/downloads/submit.html.php:6
3319msgid "The form contains some errors. Please correct them to submit the file."
3374#, php-format
3375msgid ""
3376"You can use the <a href=\"%%url%%\">Markdown syntax</a> for the changes."
33203377msgstr ""
33213378
33223379#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
3380msgid "The form contains some errors. Please correct them to submit the file."
3381msgstr ""
3382
3383#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
33233384msgid "Submit File"
33243385msgstr ""
33253386
...... 
33503411#: IDF/Template/Markdown.php:61
33513412msgid "Create this documentation page"
33523413msgstr ""
3414
3415#: IDF/gettexttemplates/idf/downloads/submit.html.php:6
3416#, php-format
3417msgid ""
3418"You can use the <a href=\"%%url%%\">Markdown syntax</a> for the description."
3419msgstr ""
src/IDF/templates/idf/downloads/download-created-email.txt
1010{foreach $tags as $tag} {$tag.class|safe}:{$tag.name|safe}
1111{/foreach}{/if}
1212{trans 'Download:'} {$urlfile}
13{if $file.changelog}
14{trans 'Description:'}
15
16{$file.changelog}
17{/if}
src/IDF/templates/idf/downloads/submit.html
1919</td>
2020</tr>
2121<tr>
22<th>{$form.f.changelog.labelTag}:</th>
23<td>{if $form.f.changelog.errors}{$form.f.changelog.fieldErrors}{/if}
24{$form.f.changelog|unsafe}
25</td>
26</tr>
27<tr>
2228<th><strong>{$form.f.file.labelTag}:</strong></th>
2329<td>{if $form.f.file.errors}{$form.f.file.fieldErrors}{/if}
2430{$form.f.file|unsafe}
...... 
5056<p>{blocktrans}Each file must have a distinct name and file contents
5157cannot be changed, so be sure to include release numbers in each file
5258name.{/blocktrans}</p>
59{assign $url = 'http://daringfireball.net/projects/markdown/syntax'}
60<p>{blocktrans}You can use the <a href="{$url}">Markdown syntax</a> for the description.{/blocktrans}</p>
5361</div>
5462{/block}
5563{block javascript}
src/IDF/templates/idf/downloads/view.html
66{if $deprecated}<p class="smaller">{blocktrans}<strong>Attention!</strong> This file is marked as deprecated, download it only if you are sure you need this specific version.{/blocktrans}</p>{/if}
77<a href="{url 'IDF_Views_Download::download', array($project.shortname, $file.id)}">{$file}</a> - {$file.filesize|size}
88</div>
9{if $file.changelog}
10<h2 class="changes">{trans 'Changes'}</h2>
911
12{markdown $file.changelog, $request}
13{/if}
1014
1115{if $form}
1216{if $form.errors}
...... 
1923{/if}
2024
2125<form method="post" enctype="multipart/form-data" action=".">
22<table class="form" summary="">
26<table class="form download" summary="">
2327<tr>
2428<th><strong>{$form.f.summary.labelTag}:</strong></th>
2529<td>{if $form.f.summary.errors}{$form.f.summary.fieldErrors}{/if}
...... 
2731</td>
2832</tr>
2933<tr>
34<th>{$form.f.changelog.labelTag}:</th>
35<td>{if $form.f.changelog.errors}{$form.f.changelog.fieldErrors}{/if}
36{$form.f.changelog|unsafe}
37</td>
38</tr>
39<tr>
3040<th>{$form.f.label1.labelTag}:</th>
3141<td>
3242{if $form.f.label1.errors}{$form.f.label1.fieldErrors}{/if}{$form.f.label1|unsafe}
www/media/idf/css/style.css
626626  background-repeat: no-repeat;
627627  background-position: 1em 1em;
628628  font-size: 140%;
629  margin-bottom: 3em;
629  margin-bottom: 1.5em;
630630  background-color: #bbe394;
631631  width: 40%;
632632  -moz-border-radius: 5px;
633633  -webkit-border-radius: 5px;
634634}
635635
636table.download {
637  margin-top: 1.5em;
638}
639
636640/**
637641 * Wiki
638642 */

Archive Download the corresponding diff file

Branches:
dev
master
newdiff
svn