Merge branch 'develop' into feature.issue-due-date
This commit is contained in:
commit
9168a26a72
1
AUTHORS
1
AUTHORS
@ -40,6 +40,7 @@ Much appreciated contributors (in alphabetical order):
|
|||||||
Stewart Platt <stew@futurete.ch>
|
Stewart Platt <stew@futurete.ch>
|
||||||
Stéphane Baron <sbaron>
|
Stéphane Baron <sbaron>
|
||||||
Thomas Keller <me@thomaskeller.biz> - Monotone support
|
Thomas Keller <me@thomaskeller.biz> - Monotone support
|
||||||
|
Victor Quinault <victor.quinault@gmail.com> - French translation
|
||||||
Vladimir Solomatin <slash>
|
Vladimir Solomatin <slash>
|
||||||
William Martin <william.martin@lcpc.fr>
|
William Martin <william.martin@lcpc.fr>
|
||||||
Xavier Brochard <xavier@alternatif.org>
|
Xavier Brochard <xavier@alternatif.org>
|
||||||
|
@ -38,6 +38,10 @@ function IDF_Migrations_21WikiPageRevisionName_up($params=null)
|
|||||||
$db->execute('ALTER TABLE '.$db->pfx.'idf_wikirevisions RENAME TO '.$db->pfx.'idf_wikipagerevs');
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_wikirevisions RENAME TO '.$db->pfx.'idf_wikipagerevs');
|
||||||
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_Wiki_Page' WHERE model_class LIKE 'IDF_WikiPage'");
|
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_Wiki_Page' WHERE model_class LIKE 'IDF_WikiPage'");
|
||||||
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_Wiki_PageRevision' WHERE model_class LIKE 'IDF_WikiRevision'");
|
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_Wiki_PageRevision' WHERE model_class LIKE 'IDF_WikiRevision'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."idf_search_occs SET model_class='IDF_Wiki_Page' WHERE model_class LIKE 'IDF_WikiPage'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."idf_search_occs SET model_class='IDF_Wiki_PageRevision' WHERE model_class LIKE 'IDF_WikiRevision'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."pluf_search_stats SET model_class='IDF_Wiki_Page' WHERE model_class LIKE 'IDF_WikiPage'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."pluf_search_stats SET model_class='IDF_Wiki_PageRevision' WHERE model_class LIKE 'IDF_WikiRevision'");
|
||||||
}
|
}
|
||||||
|
|
||||||
function IDF_Migrations_21WikiPageRevisionName_down($params=null)
|
function IDF_Migrations_21WikiPageRevisionName_down($params=null)
|
||||||
@ -57,4 +61,8 @@ function IDF_Migrations_21WikiPageRevisionName_down($params=null)
|
|||||||
$db->execute('ALTER TABLE '.$db->pfx.'idf_wikipagerevs RENAME TO '.$db->pfx.'idf_wikirevisions');
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_wikipagerevs RENAME TO '.$db->pfx.'idf_wikirevisions');
|
||||||
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_WikiPage' WHERE model_class LIKE 'IDF_Wiki_Page'");
|
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_WikiPage' WHERE model_class LIKE 'IDF_Wiki_Page'");
|
||||||
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_WikiRevision' WHERE model_class LIKE 'IDF_Wiki_PageRevision'");
|
$db->execute("UPDATE ".$db->pfx."idf_timeline SET model_class='IDF_WikiRevision' WHERE model_class LIKE 'IDF_Wiki_PageRevision'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."idf_search_occs SET model_class='IDF_WikiPage' WHERE model_class LIKE 'IDF_Wiki_Page'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."idf_search_occs SET model_class='IDF_WikiRevision' WHERE model_class LIKE 'IDF_Wiki_PageRevision'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."pluf_search_stats SET model_class='IDF_WikiPage' WHERE model_class LIKE 'IDF_Wiki_Page'");
|
||||||
|
$db->execute("UPDATE ".$db->pfx."pluf_search_stats SET model_class='IDF_WikiRevision' WHERE model_class LIKE 'IDF_Wiki_PageRevision'");
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -6,14 +6,15 @@
|
|||||||
# Benjamin Danon <benjamin@sphax3d.org>, 2011.
|
# Benjamin Danon <benjamin@sphax3d.org>, 2011.
|
||||||
# Jean-Philippe Fleury <contact@jpfleury.net>, 2011.
|
# Jean-Philippe Fleury <contact@jpfleury.net>, 2011.
|
||||||
# tommyd <me@thomaskeller.biz>, 2011.
|
# tommyd <me@thomaskeller.biz>, 2011.
|
||||||
|
# <victor.quinault@gmail.com>, 2012.
|
||||||
# William MARTIN <wysman@gmail.com>, 2011.
|
# William MARTIN <wysman@gmail.com>, 2011.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Indefero\n"
|
"Project-Id-Version: Indefero\n"
|
||||||
"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
|
"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
|
||||||
"POT-Creation-Date: 2012-03-22 01:16+0100\n"
|
"POT-Creation-Date: 2012-03-22 01:16+0100\n"
|
||||||
"PO-Revision-Date: 2012-03-22 00:19+0000\n"
|
"PO-Revision-Date: 2012-03-30 10:41+0000\n"
|
||||||
"Last-Translator: tommyd <me@thomaskeller.biz>\n"
|
"Last-Translator: victorquinault <victor.quinault@gmail.com>\n"
|
||||||
"Language-Team: French (http://www.transifex.net/projects/p/indefero/language/fr/)\n"
|
"Language-Team: French (http://www.transifex.net/projects/p/indefero/language/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@ -91,7 +92,7 @@ msgstr "email"
|
|||||||
|
|
||||||
#: IDF/Form/Admin/ForgeConf.php:34
|
#: IDF/Form/Admin/ForgeConf.php:34
|
||||||
msgid "Custom forge page enabled"
|
msgid "Custom forge page enabled"
|
||||||
msgstr ""
|
msgstr "Page personnalisée de la forge activée"
|
||||||
|
|
||||||
#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
|
#: IDF/Form/Admin/ForgeConf.php:39 IDF/Form/WikiPageCreate.php:80
|
||||||
#: IDF/Form/WikiPageUpdate.php:72
|
#: IDF/Form/WikiPageUpdate.php:72
|
||||||
@ -100,7 +101,7 @@ msgstr "Contenu"
|
|||||||
|
|
||||||
#: IDF/Form/Admin/LabelConf.php:40
|
#: IDF/Form/Admin/LabelConf.php:40
|
||||||
msgid "Predefined project labels"
|
msgid "Predefined project labels"
|
||||||
msgstr ""
|
msgstr "Étiquettes prédéfinies des projets"
|
||||||
|
|
||||||
#: IDF/Form/Admin/LabelConf.php:55
|
#: IDF/Form/Admin/LabelConf.php:55
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -164,7 +165,7 @@ msgstr "Une description d'une ligne du projet."
|
|||||||
#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
|
#: IDF/Form/Admin/ProjectCreate.php:77 IDF/Form/Admin/ProjectUpdate.php:58
|
||||||
#: IDF/Form/ProjectConf.php:56
|
#: IDF/Form/ProjectConf.php:56
|
||||||
msgid "External URL"
|
msgid "External URL"
|
||||||
msgstr ""
|
msgstr "URL externe"
|
||||||
|
|
||||||
#: IDF/Form/Admin/ProjectCreate.php:84
|
#: IDF/Form/Admin/ProjectCreate.php:84
|
||||||
msgid "Repository type"
|
msgid "Repository type"
|
||||||
@ -425,7 +426,7 @@ msgstr "Gestionnaire"
|
|||||||
|
|
||||||
#: IDF/Form/Admin/UserUpdate.php:164
|
#: IDF/Form/Admin/UserUpdate.php:164
|
||||||
msgid "If you give staff rights to a user, you really need to trust him."
|
msgid "If you give staff rights to a user, you really need to trust him."
|
||||||
msgstr ""
|
msgstr "Si vous donnez des droits de gestionnaire à un utilisateur, vous devez lui faire confiance."
|
||||||
|
|
||||||
#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
|
#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:276
|
||||||
msgid "Active"
|
msgid "Active"
|
||||||
@ -509,7 +510,7 @@ msgstr "Vous avez fourni une étiquette invalide."
|
|||||||
#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
|
#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You cannot provide more than one label from the %s class to an issue."
|
msgid "You cannot provide more than one label from the %s class to an issue."
|
||||||
msgstr ""
|
msgstr "Vous ne pouvez pas fournir plus d'une étiquette de la classe %s à un ticket."
|
||||||
|
|
||||||
#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
|
#: IDF/Form/IssueCreate.php:228 IDF/Form/IssueUpdate.php:194
|
||||||
msgid "You need to provide a description of the issue."
|
msgid "You need to provide a description of the issue."
|
||||||
@ -578,7 +579,7 @@ msgstr "Les premières entrées «Type:» et «Priorité:» de cette liste sont
|
|||||||
|
|
||||||
#: IDF/Form/IssueTrackingConf.php:133
|
#: IDF/Form/IssueTrackingConf.php:133
|
||||||
msgid "Each issue may have at most one label with each of these classes."
|
msgid "Each issue may have at most one label with each of these classes."
|
||||||
msgstr ""
|
msgstr "Chaque ticket ne peut avoir qu'une seule étiquette pour chacune de ces classes."
|
||||||
|
|
||||||
#: IDF/Form/IssueTrackingConf.php:140
|
#: IDF/Form/IssueTrackingConf.php:140
|
||||||
msgid "Issue relations"
|
msgid "Issue relations"
|
||||||
@ -590,7 +591,7 @@ msgid ""
|
|||||||
"is blocked by\". For standard relations pre-configured translations exist, "
|
"is blocked by\". For standard relations pre-configured translations exist, "
|
||||||
"new relations should however be defined in a language that is understood by "
|
"new relations should however be defined in a language that is understood by "
|
||||||
"all project members."
|
"all project members."
|
||||||
msgstr ""
|
msgstr "ous pouvez définir des relations bidirectionnelles comme « est lié à » ou « bloque, est bloqué par ». Pour des relations standards pré-configurées, il exite des traductions. De nouvelles relations peuvent cependant être définies dans un vocabulaire compris par tous les membres du projets."
|
||||||
|
|
||||||
#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
|
#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
|
||||||
#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
|
#: IDF/Form/WikiPageUpdate.php:82 IDF/Form/WikiResourceUpdate.php:66
|
||||||
|
Loading…
Reference in New Issue
Block a user