Indefero

Indefero Commit Details


Date:2009-06-22 14:08:33 (15 years 5 months ago)
Author:Loic d'Anterroches
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:3848bd8d228e8155341fb3a3cec021890205e927
Parents: 0873d4416232e2170b29f8897a2cc23b5b55ac28
Message:Added longer description for the downloads.

Changes:

File differences

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

Archive Download the corresponding diff file

Page rendered in 0.19138s using 13 queries.