diff --git a/lib/Alchemy/Phrasea/Controller/Root/Login.php b/lib/Alchemy/Phrasea/Controller/Root/Login.php index 28cf757e98..67a6065e4a 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/Login.php +++ b/lib/Alchemy/Phrasea/Controller/Root/Login.php @@ -72,7 +72,7 @@ class Login implements ControllerProviderInterface 'meta_keywords' => $app['phraseanet.registry']->get('GV_metakeywords'), 'browser_name' => $app['browser']->getBrowser(), 'browser_version' => $app['browser']->getVersion(), - 'available_language' => $app->getAvailableLanguages(), + 'available_language' => $app['locales.available'], 'locale' => $app['locale'], 'current_url' => $app['request']->getUri(), 'flash_types' => $app->getAvailableFlashTypes(), diff --git a/lib/Alchemy/Phrasea/Core/Provider/LocaleServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/LocaleServiceProvider.php index 47954e8500..f2869b67a0 100644 --- a/lib/Alchemy/Phrasea/Core/Provider/LocaleServiceProvider.php +++ b/lib/Alchemy/Phrasea/Core/Provider/LocaleServiceProvider.php @@ -23,19 +23,19 @@ class LocaleServiceProvider implements ServiceProviderInterface return $app['phraseanet.registry']->get('GV_default_lng', 'en_GB'); }); - $app['locale.I18n'] = function (Application $app) { + $app['locale.I18n'] = $app->share(function (Application $app) { $data = explode('_', $app['locale']); return $data[0]; - }; + }); - $app['locale.l10n'] = function (Application $app) { + $app['locale.l10n'] = $app->share(function (Application $app) { $data = explode('_', $app['locale']); return $data[1]; - }; + }); - $app['locales.available'] = function (Application $app) { + $app['locales.available'] = $app->share(function (Application $app) { $availableLanguages = PhraseaApplication::getAvailableLanguages(); if ($app['phraseanet.configuration']->isSetup() @@ -65,9 +65,9 @@ class LocaleServiceProvider implements ServiceProviderInterface } else { return $availableLanguages; } - }; + }); - $app['locales.mapping'] = function (Application $app) { + $app['locales.mapping'] = $app->share(function (Application $app) { $codes = array(); foreach ($app['locales.available'] as $code => $language) { $data = explode('_', $code); @@ -75,7 +75,7 @@ class LocaleServiceProvider implements ServiceProviderInterface } return $codes; - }; + }); $app['locales.I18n.available'] = $app->share(function (Application $app) { $locales = array(); diff --git a/lib/classes/User/Adapter.php b/lib/classes/User/Adapter.php index d9734e2de8..dddc6a6c89 100644 --- a/lib/classes/User/Adapter.php +++ b/lib/classes/User/Adapter.php @@ -74,9 +74,9 @@ class User_Adapter implements User_Interface, cache_cacheableInterface 'images_per_page' => 20, 'images_size' => 120, 'editing_images_size' => 134, - 'editing_top_box' => '180px', - 'editing_right_box' => '400px', - 'editing_left_box' => '710px', + 'editing_top_box' => 30, + 'editing_right_box' => 48, + 'editing_left_box' => 33, 'basket_sort_field' => 'name', 'basket_sort_order' => 'ASC', 'warning_on_delete_story' => 'true', @@ -1057,11 +1057,27 @@ class User_Adapter implements User_Interface, cache_cacheableInterface } } + if (isset($this->app['phraseanet.configuration']['user-settings'])) { + $this->_prefs = array_replace( + $this->_prefs, + // remove keys that are not defined in default values + array_intersect_key( + $this->app['phraseanet.configuration']['user-settings'], + self::$def_values + ) + ); + } + $this->preferences_loaded = true; return $this; } + public function purgePreferences() + { + $this->notifications_preferences_loaded = $this->preferences_loaded = false; + } + protected function load_notifications_preferences(Application $app) { $this->load_preferences(); @@ -1075,7 +1091,7 @@ class User_Adapter implements User_Interface, cache_cacheableInterface } } } - $this->notification_preferences_loaded = true; + $this->notifications_preferences_loaded = true; } public function get_notifications_preference(Application $app, $notification_id) diff --git a/lib/classes/patch/381alpha4a.php b/lib/classes/patch/381alpha4a.php new file mode 100644 index 0000000000..645cb049d3 --- /dev/null +++ b/lib/classes/patch/381alpha4a.php @@ -0,0 +1,79 @@ +release; + } + + /** + * {@inheritdoc} + */ + public function require_all_upgrades() + { + return false; + } + + /** + * {@inheritdoc} + */ + public function concern() + { + return $this->concern; + } + + /** + * {@inheritdoc} + */ + public function apply(base $appbox, Application $app) + { + $sql = "SELECT usr_id, prop, value FROM usr_settings + WHERE prop = 'editing_top_box' + OR prop = 'editing_right_box' OR prop = 'editing_left_box'"; + + $stmt = $appbox->get_connection()->prepare($sql); + $stmt->execute(); + $rows = $stmt->fetchAll(\PDO::FETCH_ASSOC); + $stmt->closeCursor(); + + $sql = 'UPDATE usr_settings SET value = :value WHERE usr_id = :usr_id AND prop = :prop'; + $stmt = $appbox->get_connection()->prepare($sql); + + foreach ($rows as $row) { + $value = $row['value']; + + if ('px' === substr($value, -2)) { + $value = substr($value, 0, -2); + } elseif ('%' === substr($value, -1)) { + $value = substr($value, 0, -1); + } + + $stmt->execute(array(':value' => $value, ':usr_id' => $row['usr_id'], ':prop' => $row['prop'])); + } + + $stmt->closeCursor(); + + return true; + } +} diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.mo b/locale/de_DE/LC_MESSAGES/phraseanet.mo index 4fa38e5242..ce55b92dc8 100644 Binary files a/locale/de_DE/LC_MESSAGES/phraseanet.mo and b/locale/de_DE/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.po b/locale/de_DE/LC_MESSAGES/phraseanet.po index 3a7416976b..722cb99754 100644 --- a/locale/de_DE/LC_MESSAGES/phraseanet.po +++ b/locale/de_DE/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-24 11:11+0100\n" -"PO-Revision-Date: 2013-09-24 15:56+0100\n" +"POT-Creation-Date: 2013-11-12 16:57+0100\n" +"PO-Revision-Date: 2013-11-14 14:08+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 13:42+0000\n" +"X-Launchpad-Export-Date: 2013-11-14 12:56+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -24,69 +24,74 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 +#: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" msgstr "Cache wird geleert" -#: lib/classes/appbox.php:305 +#: lib/classes/appbox.php:306 msgid "Creating new tables" msgstr "Neue Tabellen erstellen" -#: lib/classes/appbox.php:319 +#: lib/classes/appbox.php:320 msgid "Purging directories" msgstr "Verzeichnisse werden gereinigt" -#: lib/classes/appbox.php:342 +#: lib/classes/appbox.php:343 msgid "Copying files" msgstr "Dateien werden kopiert" -#: lib/classes/appbox.php:361 +#: lib/classes/appbox.php:362 msgid "Upgrading appbox" msgstr "Appbox wird aktualisiert" -#: lib/classes/appbox.php:369 +#: lib/classes/appbox.php:370 #, php-format msgid "Upgrading %s" msgstr "%s wird aktualisiert" -#: lib/classes/appbox.php:377 +#: lib/classes/appbox.php:378 msgid "Post upgrade" msgstr "Nach der Aktualisierung" -#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 +#: lib/classes/appbox.php:392 lib/classes/appbox.php:394 msgid "" "Your install requires data migration, please execute the following command" msgstr "" "Ihre Installation erfordert Datenmigration, bitte führen Sie folgenden " "Befehl aus." -#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 +#: lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "" "Ihre Installation erfordert vielleicht, technische Daten nochmal zu lesen." -#: lib/classes/base.php:287 +#: lib/classes/appbox.php:399 +msgid "Your install might need to build some sub-definitions" +msgstr "" +"Ihre Installation könnte benötigen, einige Unterauflösungen zu erstellen." + +#: lib/classes/base.php:288 #, php-format msgid "Updating table %s" msgstr "Tabellen %s werden aktualisiert" -#: lib/classes/base.php:300 lib/classes/base.php:522 lib/classes/base.php:736 -#: lib/classes/base.php:749 +#: lib/classes/base.php:301 lib/classes/base.php:523 lib/classes/base.php:737 +#: lib/classes/base.php:750 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Fehler beim Versuch ; Fehler : %s" -#: lib/classes/base.php:319 +#: lib/classes/base.php:320 #, php-format msgid "Creating table %s" msgstr "Tabellen %s werden erstellt" -#: lib/classes/base.php:325 lib/classes/base.php:802 +#: lib/classes/base.php:326 lib/classes/base.php:808 #, php-format msgid "Applying patches on %s" msgstr "Patches zu %s werden angewendet" -#: lib/classes/base.php:766 +#: lib/classes/base.php:767 msgid "Looking for patches" msgstr "Patches werden gesucht" @@ -111,12 +116,14 @@ msgstr "" #: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:30 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "Prod" #: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:40 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "Client" @@ -124,6 +131,8 @@ msgstr "Client" #: lib/classes/phrasea.php:114 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:50 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:139 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "Admin" @@ -131,6 +140,8 @@ msgstr "Admin" #: lib/classes/phrasea.php:115 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:60 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:166 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "Report" @@ -138,12 +149,15 @@ msgstr "Report" #: lib/classes/phrasea.php:116 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:70 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:111 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" #: lib/classes/phrasea.php:117 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:80 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "Lightbox" @@ -151,6 +165,8 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:118 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:90 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 @@ -160,6 +176,7 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:119 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:225 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "Upload" @@ -192,9 +209,13 @@ msgstr "gestern" #: lib/classes/queries.php:168 lib/classes/queries.php:181 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:197 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1402 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:202 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:197 #: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:104 msgid "boutton::chercher" msgstr "suchen" @@ -212,15 +233,22 @@ msgstr "Dieser Wert kann nicht leer sein" msgid "Url non valide" msgstr "URL nicht gültig" -#: lib/classes/API/V1/adapter.php:1100 lib/classes/API/V1/adapter.php:1146 -#: lib/classes/API/V1/adapter.php:1196 lib/classes/API/V1/adapter.php:1220 +#: lib/classes/API/V1/adapter.php:1103 lib/classes/API/V1/adapter.php:1149 +#: lib/classes/API/V1/adapter.php:1199 lib/classes/API/V1/adapter.php:1223 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:58 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:860 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:228 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:331 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:53 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:46 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:860 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:65 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 @@ -242,7 +270,7 @@ msgstr "URL nicht gültig" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 @@ -258,11 +286,11 @@ msgstr "URL nicht gültig" msgid "An error occured" msgstr "Ein Fehler ist aufgetreten" -#: lib/classes/API/V1/adapter.php:1194 +#: lib/classes/API/V1/adapter.php:1197 msgid "Record Not Found" msgstr "Datensatz wurde nicht gefunden" -#: lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1221 msgid "Story Not Found" msgstr "Bericht wurde nicht gefunden" @@ -292,6 +320,7 @@ msgstr "Kodierungsfehler" #: lib/classes/Bridge/Api/Dailymotion.php:546 #: lib/classes/Bridge/Api/Youtube.php:511 +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:136 #: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:136 msgid "En cours d'encodage" msgstr "Kodierung läuft" @@ -362,6 +391,7 @@ msgid "Photos" msgstr "Bilder" #: lib/classes/Bridge/Api/Flickr.php:613 +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:43 #: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:43 msgid "Photosets" msgstr "Fotosets" @@ -474,7 +504,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "YouTube Service nicht gefunden" -#: lib/classes/caption/record.php:279 +#: lib/classes/caption/record.php:313 msgid "Open the URL in a new window" msgstr "URL in einem neuen Fenster öffnen" @@ -503,6 +533,7 @@ msgstr "Zielgerät" #: lib/classes/deprecated/inscript.api.php:193 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:91 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:91 msgid "login::register: acces authorise sur la collection " msgstr "Zugriff auf folgende Kollektion gewährt : " @@ -518,31 +549,42 @@ msgstr "Zugriff auf folgende Kollektion gewährt : " #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:247 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:291 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:336 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:101 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:154 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:202 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:247 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:291 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:336 msgid "login::register::CGU: lire les CGU" msgstr "die ANB lesen" #: lib/classes/deprecated/inscript.api.php:203 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:144 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:144 msgid "login::register: acces refuse sur la collection " msgstr "Zugriff auf folgende Kollektion abgelehnt " #: lib/classes/deprecated/inscript.api.php:213 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:191 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:191 msgid "login::register: en attente d'acces sur" msgstr "schwebende Zugriffanfrage auf" #: lib/classes/deprecated/inscript.api.php:223 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:236 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:236 msgid "login::register: acces temporaire sur" msgstr "vorübergehender Zugriff auf" #: lib/classes/deprecated/inscript.api.php:233 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:281 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:281 msgid "login::register: acces temporaire termine sur " msgstr "vorübergehender Zugriff auf beendet: " #: lib/classes/deprecated/inscript.api.php:243 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:325 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:325 msgid "login::register: acces supendu sur" msgstr "Zugriff beendet auf" @@ -552,6 +594,8 @@ msgstr "Zugriff beendet auf" #: lib/classes/deprecated/inscript.api.php:383 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:367 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:430 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:367 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:430 msgid "" "login::register: L'acces aux bases ci-dessous implique l'acceptation des " "Conditions Generales d'Utilisation (CGU) suivantes" @@ -565,6 +609,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:395 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:400 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:454 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:400 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:454 msgid "login::register: Faire une demande d'acces" msgstr "Eine Zugriffanfrage machen" @@ -584,13 +630,13 @@ msgstr "Zugriffanfrage bestätigen" #: lib/classes/deprecated/inscript.api.php:355 #: lib/classes/deprecated/inscript.api.php:384 msgid "login::register::CGU: ouvrir dans une nouvelle fenetre" -msgstr "drucken" +msgstr "Drucken" #: lib/classes/eventsmanager/broker.php:178 msgid "charger d'avantages de notifications" msgstr "Mehr Benachrichtigungen laden" -#: lib/classes/eventsmanager/broker.php:302 +#: lib/classes/eventsmanager/broker.php:305 msgid "Notifications globales" msgstr "Allgemeine Benachrichtigungen" @@ -609,34 +655,49 @@ msgid "" msgstr "Benutzer Anmeldung" #: lib/classes/eventsmanager/notify/autoregister.php:195 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:843 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:670 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:163 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:670 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:290 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "Name" #: lib/classes/eventsmanager/notify/autoregister.php:196 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:829 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:683 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:313 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:176 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:683 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "Vorname" #: lib/classes/eventsmanager/notify/autoregister.php:197 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:857 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:327 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:696 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:323 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:327 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:189 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:696 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:314 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 msgid "admin::compte-utilisateur email" msgstr "E-Mail" @@ -673,16 +734,16 @@ msgstr "Email Export schlägt fehl" msgid "Get a notification when a mail export fails" msgstr "Eine Nachricht erhalten wenn ein Email Export fehlschlägt" -#: lib/classes/eventsmanager/notify/feed.php:149 +#: lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "%1$s has published %2$s" -#: lib/classes/eventsmanager/notify/feed.php:165 +#: lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "Feeds" -#: lib/classes/eventsmanager/notify/feed.php:174 +#: lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "" "Eine Benachrichtigung bekommen, wenn eine Veröffentlichung verfügbar ist" @@ -694,6 +755,7 @@ msgstr "%1$s hat eine %2$sBestellung%3$s aufgenommen" #: lib/classes/eventsmanager/notify/order.php:161 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:265 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:265 msgid "Orders manager" msgstr "Bestellungen Manager" @@ -741,7 +803,7 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "%1$s hat Ihnen einen %2$s Sammelkorb%3$s zugesandt" #: lib/classes/eventsmanager/notify/push.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Push" msgstr "Push" @@ -790,6 +852,7 @@ msgstr "" #: lib/classes/eventsmanager/notify/validationreminder.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:177 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:179 msgid "Validation" msgstr "Bestätigung" @@ -848,14 +911,22 @@ msgid "report:: collections" msgstr "Kollektionen" #: lib/classes/module/report.php:663 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:61 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:143 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:83 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:83 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:44 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:44 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:83 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:83 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:115 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:259 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:44 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:115 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:259 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:61 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:143 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:44 msgid "report:: Connexion" msgstr "Verbindungen" @@ -890,6 +961,8 @@ msgstr "Datum" #: lib/classes/module/report.php:668 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:183 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:287 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:183 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:287 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:239 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:313 @@ -899,6 +972,8 @@ msgstr "Beruf" #: lib/classes/module/report.php:669 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:191 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:295 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:191 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:295 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:313 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:240 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:314 @@ -908,6 +983,8 @@ msgstr "Aktivität" #: lib/classes/module/report.php:670 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:195 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:299 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:195 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:299 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:314 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:241 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:315 @@ -917,6 +994,8 @@ msgstr "Staat" #: lib/classes/module/report.php:671 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:187 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:291 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:187 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:291 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:315 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:242 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:316 @@ -1076,6 +1155,7 @@ msgstr "Anfragen" #: lib/classes/module/report/activity.php:213 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:448 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:448 msgid "report:: questions sans reponses" msgstr "Anfragen ohne Ergebnis" @@ -1111,6 +1191,8 @@ msgstr "Verbindungsdetails" #: lib/classes/module/report/question.php:100 #: lib/classes/module/report/sent.php:120 #: lib/classes/module/report/validate.php:120 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:50 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:68 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:50 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:68 msgid "report:: non-renseigne" @@ -1130,7 +1212,9 @@ msgstr "Verbindungen" #: lib/classes/module/report/download.php:48 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:48 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:48 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:48 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:48 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:381 msgid "report:: telechargements" msgstr "Download" @@ -1169,7 +1253,7 @@ msgstr "Module" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "Informationen über die Benutzer entsprechend %s" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1388 msgid "phraseanet::utilisateur inconnu" msgstr "unbekannter Benutzer" @@ -1263,7 +1347,7 @@ msgstr "Hot Folder" #: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 #: lib/classes/task/period/ftpPull.php:226 #: lib/classes/task/period/RecordMover.php:288 -#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/subdef.php:222 #: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "Periodizität" @@ -1272,7 +1356,7 @@ msgstr "Periodizität" #: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 #: lib/classes/task/period/ftpPull.php:229 #: lib/classes/task/period/RecordMover.php:291 -#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/subdef.php:225 #: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "Sekunden" @@ -1476,29 +1560,29 @@ msgstr "Record Mover" msgid "Log changes" msgstr "Protokolle Änderungen" -#: lib/classes/task/period/subdef.php:47 +#: lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "Erstellung von Unterauflösungen" -#: lib/classes/task/period/subdef.php:58 +#: lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" msgstr "Erstellung der Unterauflösungen" -#: lib/classes/task/period/subdef.php:233 +#: lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "Anzahl von Datensätzen per Stapel zu verarbeiten" -#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/subdef.php:235 #: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "Starten Sie die Aufgabe alle n Datensätze noch einmal" -#: lib/classes/task/period/subdef.php:245 +#: lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "Starten Sie die Aufgabe noch einmal, wenn der Speicher erreicht" -#: lib/classes/task/period/subdef.php:252 +#: lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "Versuchen, eingebettete Miniaturansichten zu entnehmen" @@ -1521,144 +1605,149 @@ msgstr "Strukturfehlende Metadaten löschen" msgid "task::_common_:records, ou si la memoire depasse" msgstr "Datensätze, oder wenn die Speicherplatz überschritten wird" -#: lib/classes/User/Adapter.php:432 +#: lib/classes/User/Adapter.php:440 #, php-format msgid "A user already exists with email addres %s" msgstr "Ein Benutzer existiert schon mit dem Email %s" -#: lib/classes/User/Adapter.php:1369 +#: lib/classes/User/Adapter.php:1382 #, php-format msgid "modele %s" msgstr "Vorlage %s" -#: lib/conf.d/_GV_template.inc.php:38 +#: lib/conf.d/_GV_template.php:38 msgid "HTTP Server" msgstr "HTTP Server" -#: lib/conf.d/_GV_template.inc.php:43 +#: lib/conf.d/_GV_template.php:43 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:34 msgid "Default language" msgstr "Standardsprache" -#: lib/conf.d/_GV_template.inc.php:52 +#: lib/conf.d/_GV_template.php:52 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:39 msgid "Static URL" msgstr "statische URL" -#: lib/conf.d/_GV_template.inc.php:53 +#: lib/conf.d/_GV_template.php:53 msgid "optional" msgstr "optional" -#: lib/conf.d/_GV_template.inc.php:58 +#: lib/conf.d/_GV_template.php:58 msgid "Maintenance state" msgstr "Wartungszustand" -#: lib/conf.d/_GV_template.inc.php:64 +#: lib/conf.d/_GV_template.php:64 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:31 msgid "Maintenance message" msgstr "Wartungsmeldung" -#: lib/conf.d/_GV_template.inc.php:70 +#: lib/conf.d/_GV_template.php:70 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:36 msgid "Enable maintenance message broadcast" msgstr "Aussendung von Wartungsmeldungen aktivieren" -#: lib/conf.d/_GV_template.inc.php:76 +#: lib/conf.d/_GV_template.php:76 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:40 msgid "Log errors" msgstr "Protokolle Fehler" -#: lib/conf.d/_GV_template.inc.php:81 +#: lib/conf.d/_GV_template.php:81 msgid "Webservices connectivity" msgstr "Webservices Konnektivität" -#: lib/conf.d/_GV_template.inc.php:86 +#: lib/conf.d/_GV_template.php:86 msgid "Use Google API" msgstr "Benutzen Sie Google API" -#: lib/conf.d/_GV_template.inc.php:93 +#: lib/conf.d/_GV_template.php:93 msgid "Geonames server address" msgstr "GeoNames Serveradresse" -#: lib/conf.d/_GV_template.inc.php:101 +#: lib/conf.d/_GV_template.php:101 msgid "Use recaptcha API" msgstr "Benutzen Sie ReCaptcha API" -#: lib/conf.d/_GV_template.inc.php:109 +#: lib/conf.d/_GV_template.php:109 msgid "Recaptcha public key" msgstr "öffentlicher Schlüssel für ReCaptcha" -#: lib/conf.d/_GV_template.inc.php:115 +#: lib/conf.d/_GV_template.php:115 msgid "Recaptcha private key" msgstr "geheimer Schlüssel für ReCaptcha" -#: lib/conf.d/_GV_template.inc.php:120 +#: lib/conf.d/_GV_template.php:120 msgid "Youtube connectivity" msgstr "Youtube Konnektivität" -#: lib/conf.d/_GV_template.inc.php:125 +#: lib/conf.d/_GV_template.php:125 msgid "Use youtube API" msgstr "Benutzen Sie Youtube API" -#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 -#: lib/conf.d/_GV_template.inc.php:181 +#: lib/conf.d/_GV_template.php:126 lib/conf.d/_GV_template.php:157 +#: lib/conf.d/_GV_template.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "API Konto bei %s erstellen, dann benutzen Sie %s als Rückruf-URL Wert" -#: lib/conf.d/_GV_template.inc.php:133 +#: lib/conf.d/_GV_template.php:133 msgid "Youtube public key" msgstr "öffentlicher Schlüssel für Youtube" -#: lib/conf.d/_GV_template.inc.php:139 +#: lib/conf.d/_GV_template.php:139 msgid "Youtube secret key" msgstr "geheimer Schlüssel für Youtube" -#: lib/conf.d/_GV_template.inc.php:145 +#: lib/conf.d/_GV_template.php:145 msgid "Youtube developer key" msgstr "Entwicklerschlüssel für Youtube" -#: lib/conf.d/_GV_template.inc.php:146 +#: lib/conf.d/_GV_template.php:146 #, php-format msgid "See %s" msgstr "%s sehen" -#: lib/conf.d/_GV_template.inc.php:151 +#: lib/conf.d/_GV_template.php:151 msgid "FlickR connectivity" msgstr "Flickr Konnektivität" -#: lib/conf.d/_GV_template.inc.php:156 +#: lib/conf.d/_GV_template.php:156 msgid "Use Flickr API" msgstr "Benutzen Sie Flickr API" -#: lib/conf.d/_GV_template.inc.php:164 +#: lib/conf.d/_GV_template.php:164 msgid "Flickr public key" msgstr "öffentlicher Schlüssel für Flickr" -#: lib/conf.d/_GV_template.inc.php:170 +#: lib/conf.d/_GV_template.php:170 msgid "Flickr secret key" msgstr "geheimer Schlüssel für Flickr" -#: lib/conf.d/_GV_template.inc.php:175 +#: lib/conf.d/_GV_template.php:175 msgid "Dailymotion connectivity" msgstr "Dailymotion Konnektivität" -#: lib/conf.d/_GV_template.inc.php:180 +#: lib/conf.d/_GV_template.php:180 msgid "Use Dailymotion API" msgstr "Benutzen Sie Dailymotion API" -#: lib/conf.d/_GV_template.inc.php:188 +#: lib/conf.d/_GV_template.php:188 msgid "Dailymotion public key" msgstr "öffentlicher Schlüssel für Dailymotion" -#: lib/conf.d/_GV_template.inc.php:194 +#: lib/conf.d/_GV_template.php:194 msgid "Dailymotion secret key" msgstr "geheimer Schlüssel für Dailymotion" -#: lib/conf.d/_GV_template.inc.php:199 +#: lib/conf.d/_GV_template.php:199 msgid "Phraseanet client API" msgstr "Phraseanet Kunde API" -#: lib/conf.d/_GV_template.inc.php:204 +#: lib/conf.d/_GV_template.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "*Phraseanet Navigator* aktivieren" -#: lib/conf.d/_GV_template.inc.php:205 +#: lib/conf.d/_GV_template.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" @@ -1666,27 +1755,27 @@ msgstr "" "*Phraseanet Navigator* ist eine Smartphone Anwendung, die dem Benutzer " "ermöglicht, sich auf diese Instanz zu verbinden." -#: lib/conf.d/_GV_template.inc.php:212 +#: lib/conf.d/_GV_template.php:212 msgid "Authorize Microsoft Office Plugin to connect." msgstr "Verbindung mit Microsoft Office Plugin erlauben" -#: lib/conf.d/_GV_template.inc.php:218 +#: lib/conf.d/_GV_template.php:218 msgid "Documents storage" msgstr "Dokumente Speicherung" -#: lib/conf.d/_GV_template.inc.php:224 +#: lib/conf.d/_GV_template.php:224 msgid "Default path for datas" msgstr "Default-Pfad für Daten" -#: lib/conf.d/_GV_template.inc.php:230 +#: lib/conf.d/_GV_template.php:230 msgid "Executables settings" msgstr "Einstellungen von ausführbaren Programme" -#: lib/conf.d/_GV_template.inc.php:235 +#: lib/conf.d/_GV_template.php:235 msgid "Enable H264 stream mode" msgstr "H264 Stream Modus aktivieren" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1694,321 +1783,332 @@ msgstr "" "Mit mod_token benutzen. Vorsicht, benötigt die folgende Module: Apache und " "mod_h264_streaming mod_auth_token" -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.php:243 msgid "Auth_token mount point" msgstr "Auth_token Mount-Punkt" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.php:250 msgid "Auth_token directory path" msgstr "Auth_token Verzeichnispfad" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.php:256 msgid "Auth_token passphrase" msgstr "Auth_token Passphrase" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.php:257 msgid "Defined in Apache configuration" msgstr "in der Apache Konfiguration definiert" -#: lib/conf.d/_GV_template.inc.php:263 +#: lib/conf.d/_GV_template.php:263 msgid "php.ini path" msgstr "php.ini Pfad" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.php:264 msgid "Empty if not used" msgstr "leer, wenn nicht benutzt" -#: lib/conf.d/_GV_template.inc.php:271 +#: lib/conf.d/_GV_template.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/_GV_template.inc.php:283 +#: lib/conf.d/_GV_template.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Anzahl von Fäden für FFMpeg zu benutzen" -#: lib/conf.d/_GV_template.inc.php:289 +#: lib/conf.d/_GV_template.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Seitenhöchstzahl aus PDF extrahiert" -#: lib/conf.d/_GV_template.inc.php:294 +#: lib/conf.d/_GV_template.php:294 msgid "Main configuration" msgstr "Hauptkonfiguration" -#: lib/conf.d/_GV_template.inc.php:299 +#: lib/conf.d/_GV_template.php:299 msgid "Admin email" msgstr "Admin-E-Mailadresse" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.php:305 msgid "Display the name of databases and collections" msgstr "Zeigen Sie den Name der Datenbanken und Kollektionen an" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.php:312 msgid "Choose the title of the document to export" msgstr "Wählen Sie den Titel des Dokuments zu exportieren" -#: lib/conf.d/_GV_template.inc.php:319 +#: lib/conf.d/_GV_template.php:319 msgid "Default export title" msgstr "Standard Export Titel" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.php:322 msgid "Document title" msgstr "Titel des Dokuments" -#: lib/conf.d/_GV_template.inc.php:323 +#: lib/conf.d/_GV_template.php:323 msgid "Original name" msgstr "ursprünglicher Name" -#: lib/conf.d/_GV_template.inc.php:329 +#: lib/conf.d/_GV_template.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "" "Aktivieren Sie diese Einstellung, um Dateien auf Facebook und Twitter zu " "teilen" -#: lib/conf.d/_GV_template.inc.php:331 +#: lib/conf.d/_GV_template.php:331 msgid "Disabled" msgstr "Deaktiviert" -#: lib/conf.d/_GV_template.inc.php:332 +#: lib/conf.d/_GV_template.php:332 msgid "Publishers" msgstr "Veröffentlicher" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.php:333 msgid "Enabled" msgstr "Aktiviert" -#: lib/conf.d/_GV_template.inc.php:340 +#: lib/conf.d/_GV_template.php:340 msgid "Homepage" msgstr "Homeseite" -#: lib/conf.d/_GV_template.inc.php:346 +#: lib/conf.d/_GV_template.php:346 msgid "Homepage slideshow" msgstr "Homeseite Diashow" -#: lib/conf.d/_GV_template.inc.php:349 +#: lib/conf.d/_GV_template.php:349 msgid "Single image" msgstr "Einzelbild" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.php:350 msgid "Slide show" msgstr "Diashow" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.php:352 +msgid "Carousel" +msgstr "Karussell" + +#: lib/conf.d/_GV_template.php:353 +msgid "Gallery" +msgstr "Gallery" + +#: lib/conf.d/_GV_template.php:359 msgid "Search engine" msgstr "Suchmaschine" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.php:365 msgid "Minimum number of letters before truncation" msgstr "Mindestzeichenzahl vor der Kürzung" -#: lib/conf.d/_GV_template.inc.php:364 +#: lib/conf.d/_GV_template.php:366 msgid "Used in search engine" msgstr "im Suchmaschine benutzt" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.php:372 msgid "Default query" msgstr "Standardsuche" -#: lib/conf.d/_GV_template.inc.php:376 +#: lib/conf.d/_GV_template.php:378 msgid "Default searched type" msgstr "Standard Suchoptionen" -#: lib/conf.d/_GV_template.inc.php:377 +#: lib/conf.d/_GV_template.php:379 msgid "Used when opening the application" msgstr "wird benutzt beim Eröffnen der Anwendung" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.php:381 msgid "Documents" msgstr "Dokumente" -#: lib/conf.d/_GV_template.inc.php:380 +#: lib/conf.d/_GV_template.php:382 msgid "Stories" msgstr "Berichte" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.php:388 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:312 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Report" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.php:394 msgid "Anonymous report" msgstr "anonymer Bericht" -#: lib/conf.d/_GV_template.inc.php:393 +#: lib/conf.d/_GV_template.php:395 msgid "Hide information about users" msgstr "Informationen über die Benutzer ausblenden" -#: lib/conf.d/_GV_template.inc.php:399 +#: lib/conf.d/_GV_template.php:401 msgid "Additionnal modules" msgstr "Zusatzmodule" -#: lib/conf.d/_GV_template.inc.php:405 +#: lib/conf.d/_GV_template.php:407 msgid "Enable thesaurus" msgstr "Thesaurus aktivieren" -#: lib/conf.d/_GV_template.inc.php:410 +#: lib/conf.d/_GV_template.php:412 msgid "Enable multi-doc mode" msgstr "MultiDoc modus aktivieren" -#: lib/conf.d/_GV_template.inc.php:415 +#: lib/conf.d/_GV_template.php:417 msgid "Enable HD substitution" msgstr "HD Ersetzung aktivieren" -#: lib/conf.d/_GV_template.inc.php:420 +#: lib/conf.d/_GV_template.php:422 msgid "Enable thumbnail substitution" msgstr "Miniaturansicht Ersetzung aktivieren" -#: lib/conf.d/_GV_template.inc.php:426 +#: lib/conf.d/_GV_template.php:428 msgid "Emails" msgstr "E-Mail Adressen" -#: lib/conf.d/_GV_template.inc.php:431 +#: lib/conf.d/_GV_template.php:433 msgid "Default mail sender address" msgstr "Standard E-Mail Absenderadresse" -#: lib/conf.d/_GV_template.inc.php:437 +#: lib/conf.d/_GV_template.php:439 msgid "Prefix for notification emails" msgstr "Präfix für Benachrichtigungs-E-Mails" -#: lib/conf.d/_GV_template.inc.php:443 +#: lib/conf.d/_GV_template.php:445 msgid "Use a SMTP server" msgstr "Benutzen Sie einen SMTP Server" -#: lib/conf.d/_GV_template.inc.php:449 +#: lib/conf.d/_GV_template.php:451 msgid "Enable SMTP authentication" msgstr "SMTP Authentifizierung aktivieren" -#: lib/conf.d/_GV_template.inc.php:455 +#: lib/conf.d/_GV_template.php:457 msgid "SMTP host" msgstr "SMTP Host" -#: lib/conf.d/_GV_template.inc.php:461 +#: lib/conf.d/_GV_template.php:463 msgid "SMTP port" msgstr "SMTP Port" -#: lib/conf.d/_GV_template.inc.php:467 +#: lib/conf.d/_GV_template.php:469 msgid "SMTP encryption" msgstr "SMTP Verschlüsselung" -#: lib/conf.d/_GV_template.inc.php:470 +#: lib/conf.d/_GV_template.php:472 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:171 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:466 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:171 msgid "None" msgstr "Keine" -#: lib/conf.d/_GV_template.inc.php:478 +#: lib/conf.d/_GV_template.php:480 msgid "SMTP user" msgstr "SMTP Benutzer" -#: lib/conf.d/_GV_template.inc.php:484 +#: lib/conf.d/_GV_template.php:486 msgid "SMTP password" msgstr "SMTP Passwort" -#: lib/conf.d/_GV_template.inc.php:489 +#: lib/conf.d/_GV_template.php:491 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.php:496 msgid "Enable FTP export" msgstr "FTP Export aktivieren" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.php:497 msgid "Available in multi-export tab" msgstr "In der Mehrfachexport Registerkarte verfügbar" -#: lib/conf.d/_GV_template.inc.php:501 +#: lib/conf.d/_GV_template.php:503 msgid "Enable FTP for users" msgstr "FTP für die Benutzer aktivieren" -#: lib/conf.d/_GV_template.inc.php:502 +#: lib/conf.d/_GV_template.php:504 msgid "By default it is available for admins" msgstr "Standardmässig ist es für die Administratoren verfügbar" -#: lib/conf.d/_GV_template.inc.php:507 +#: lib/conf.d/_GV_template.php:509 msgid "Client" msgstr "Kunde" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.php:514 msgid "Maximum megabytes allowed for download" msgstr "genehmigte Menge in Megabytes für Download" -#: lib/conf.d/_GV_template.inc.php:513 +#: lib/conf.d/_GV_template.php:515 msgid "If request is bigger, then mail is still available" msgstr "Wenn die Anfrage ist grösser, können Sie durch E-Mail senden" -#: lib/conf.d/_GV_template.inc.php:519 +#: lib/conf.d/_GV_template.php:521 msgid "Search tab position" msgstr "Lage von der Registerkarte \"Suchen\"" -#: lib/conf.d/_GV_template.inc.php:525 +#: lib/conf.d/_GV_template.php:527 msgid "Advanced search tab position" msgstr "Lage von der Registerkarte \"Erweiterte Suche\"" -#: lib/conf.d/_GV_template.inc.php:531 +#: lib/conf.d/_GV_template.php:533 msgid "Topics tab position" msgstr "Lage von der Registerkarte \"Themen\"" -#: lib/conf.d/_GV_template.inc.php:537 +#: lib/conf.d/_GV_template.php:539 msgid "Active tab position" msgstr "Lage von der Registerkarte \"Aktiv\"" -#: lib/conf.d/_GV_template.inc.php:543 +#: lib/conf.d/_GV_template.php:545 msgid "Topics display mode" msgstr "Themen Anzeigemodus" -#: lib/conf.d/_GV_template.inc.php:545 +#: lib/conf.d/_GV_template.php:547 msgid "Trees" msgstr "Bäume" -#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.php:548 lib/conf.d/_GV_template.php:570 msgid "Drop-down" msgstr "Dropdown" -#: lib/conf.d/_GV_template.inc.php:553 +#: lib/conf.d/_GV_template.php:555 msgid "Enable roll-over on stories" msgstr "Rollover auf die Berichte aktivieren" -#: lib/conf.d/_GV_template.inc.php:559 +#: lib/conf.d/_GV_template.php:561 msgid "Enable roll-over on basket elements" msgstr "Rollover auf die Sammelkorb Elemente" -#: lib/conf.d/_GV_template.inc.php:565 +#: lib/conf.d/_GV_template.php:567 msgid "Collections display mode" msgstr "Anzeigemodus der Kollektionen" -#: lib/conf.d/_GV_template.inc.php:569 +#: lib/conf.d/_GV_template.php:571 msgid "Check-box" msgstr "Kontrollkästchen" -#: lib/conf.d/_GV_template.inc.php:575 +#: lib/conf.d/_GV_template.php:577 msgid "Display the total size of the document basket" msgstr "Gesamtgröße des Sammelkorbes anzeigen" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.php:583 msgid "Display proposals tab" msgstr "Registerkarte der Vorschläge anzeigen" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.php:589 msgid "Require authentication to download documents" msgstr "Authentifizierung benötigen, um Dokumente zu herunterladen" -#: lib/conf.d/_GV_template.inc.php:588 +#: lib/conf.d/_GV_template.php:590 msgid "Used for guest account" msgstr "Für Gastkonto benutzt" -#: lib/conf.d/_GV_template.inc.php:594 +#: lib/conf.d/_GV_template.php:596 msgid "Users must accept Terms of Use for each export" msgstr "" "Die Benutzer müssen die Nutzungsbedingungen für jeden Export akzeptieren" -#: lib/conf.d/_GV_template.inc.php:599 +#: lib/conf.d/_GV_template.php:601 msgid "Registration" msgstr "Anmeldung" -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.php:606 msgid "Auto select databases" msgstr "automatische Wahl von Datenbanken" -#: lib/conf.d/_GV_template.inc.php:605 +#: lib/conf.d/_GV_template.php:607 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -2017,87 +2117,127 @@ msgstr "" "Benutzer sich selbst anmelden kann und Anmeldung wird auf alle gewährte " "Datenbanken gehandelt." -#: lib/conf.d/_GV_template.inc.php:611 +#: lib/conf.d/_GV_template.php:613 msgid "Enable auto registration" msgstr "Automatische Anmeldung aktivieren" -#: lib/conf.d/_GV_template.inc.php:616 +#: lib/conf.d/_GV_template.php:618 msgid "Push configuration" msgstr "Push Konfiguration" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.php:623 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Anzahl von Tagen vor der Ende der Validierung, um eine E-Mail Errinerung zu " "senden" -#: lib/conf.d/_GV_template.inc.php:627 +#: lib/conf.d/_GV_template.php:629 msgid "Default validation links duration" msgstr "Standarddauer für die Validierungslinke" -#: lib/conf.d/_GV_template.inc.php:628 +#: lib/conf.d/_GV_template.php:630 msgid "If set to 0, duration is permanent" msgstr "Ist es auf null gestellt, ist die Zeitdauer bleibend" -#: lib/conf.d/_GV_template.inc.php:633 +#: lib/conf.d/_GV_template.php:635 msgid "Robot indexing" msgstr "Roboter Indexierung" -#: lib/conf.d/_GV_template.inc.php:638 +#: lib/conf.d/_GV_template.php:640 msgid "Application title" msgstr "Anwendung Titel" -#: lib/conf.d/_GV_template.inc.php:644 +#: lib/conf.d/_GV_template.php:646 msgid "Keywords used for indexing purposes by search engines robots" msgstr "" "Schlüsselwörter, die für Indexierung Zwecke von Suchroboter benutzt werden" -#: lib/conf.d/_GV_template.inc.php:650 +#: lib/conf.d/_GV_template.php:652 msgid "Application description" msgstr "Anwendung Bezeichnung" -#: lib/conf.d/_GV_template.inc.php:656 +#: lib/conf.d/_GV_template.php:658 msgid "Google Analytics identifier" msgstr "Google Analytics Bezeichner" -#: lib/conf.d/_GV_template.inc.php:662 +#: lib/conf.d/_GV_template.php:664 msgid "Allow the website to be indexed by search engines like Google" msgstr "" "Die Website ermöglichen, von Suchmaschinen wie Google indexiert zu werden." #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:192 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:120 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:118 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:120 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:25 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:120 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:192 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:25 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:120 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:118 msgid "preview:: demarrer le diaporama" msgstr "Dia-Schau" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:196 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:124 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:122 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:124 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:29 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:124 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:196 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:29 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:124 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:122 msgid "preview:: arreter le diaporama" msgstr "stoppen" +#: tmp/cache_twig/00/8b/0fb28f8bb8d0a14368015c09b484797bfd569c40fc293a81c2c9a759de95.php:77 +#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 +msgid "No matches found" +msgstr "Keine Übereinstimmung gefunden" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:29 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:29 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:29 +msgid "%nb_view% vue" +msgstr "%nb_view% Ansicht" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:35 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:35 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:35 +msgid "%nb_view% vues" +msgstr "%nb_view% Ansichten" + #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:36 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:36 msgid "List Name" msgstr "Name der Liste" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:44 +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:102 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:120 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:44 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:99 #: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:102 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:120 #: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:99 msgid "Save" msgstr "Speichern" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:65 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:65 msgid "Share the list" msgstr "Die Liste teilen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:70 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:70 msgid "Set sharing permission" msgstr "Legen sie die sharing Berechtigungen fest" @@ -2105,77 +2245,107 @@ msgstr "Legen sie die sharing Berechtigungen fest" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:85 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:415 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:419 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:72 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:147 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 msgid "Delete" msgstr "Löschen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:107 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:107 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:273 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:273 msgid "%length% peoples" msgstr "%length% Leute" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:113 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:129 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 msgid "Edit" msgstr "Bearbeiten" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:155 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:155 msgid "View" msgstr "Ansehen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:121 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:161 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:121 msgid "Push::filter on login" msgstr "Benutzername" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:167 msgid "Push::filter on name" msgstr "Nachname/Vorname" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:137 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:173 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:137 msgid "Push::filter on countries" msgstr "Land" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:145 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:179 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:145 msgid "Push::filter on companies" msgstr "Unternehmensname" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:153 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:185 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:153 msgid "Push::filter on emails" msgstr "E-Mail" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:191 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:191 msgid "Push::filter on templates" msgstr "Letzte Vorlage" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:158 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:197 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:158 msgid "Push::filter starts" msgstr "beginnt mit" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:211 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:211 msgid "Activite" msgstr "Aktivität" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:217 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:217 msgid "Template" msgstr "Schablone" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:223 +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:75 #: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:75 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:223 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:89 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:89 msgid "Company" msgstr "Unternehmen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:229 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:229 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:125 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:125 msgid "Country" msgstr "Land" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:235 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:235 msgid "Position" msgstr "Funktion" @@ -2184,98 +2354,306 @@ msgstr "Funktion" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:294 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:319 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:344 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:244 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:269 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:294 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:319 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:344 #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:42 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:42 msgid "All" msgstr "Alle" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:24 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:25 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 +msgid "Reordonner automatiquement" +msgstr "automatisch neu anordnen" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:29 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:30 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:475 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:605 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 +msgid "Choisir" +msgstr "wählen" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:33 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:34 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:687 +msgid "Re-initialiser" +msgstr "Zurücksetzen" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:37 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:133 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:38 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:49 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:44 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:139 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:67 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:67 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:119 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:95 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:49 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:95 +msgid "Titre" +msgstr "Titel" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:42 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:379 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:385 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:513 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:519 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:43 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 +msgid "Re-ordonner" +msgstr "wieder ordnen" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:46 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:47 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 +msgid "Inverser" +msgstr "umkehren" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:117 +#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:990 +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:221 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:67 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:67 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:74 +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:195 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:125 +#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:231 +#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 +#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:180 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:134 +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:71 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:103 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:734 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:78 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:233 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:103 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:74 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:74 +#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:63 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 +#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:127 +#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:109 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:152 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:42 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:453 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:180 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:103 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:181 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:75 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:503 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:103 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:74 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:480 +#: tmp/cache_twig/b7/01/ac2e3db2f9ba29baaa8de97bd6bf202362051d3b5262c049c62f87947b66.php:81 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:76 +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:315 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:509 +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:129 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:178 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1946 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:131 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:168 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:245 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:462 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:485 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:305 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:120 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:74 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:171 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:160 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:113 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:137 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:111 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 +#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:74 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "Bestätigen" + #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:36 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:36 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 msgid "The records have been properly ordered" msgstr "Datensäzte wurden richtig bestellt" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:42 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:51 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:51 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:42 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 msgid "Order has been sent" msgstr "Bestellung wurde gesendet" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:48 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:57 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:57 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:48 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 msgid "Order has been denied" msgstr "Bestellung wurde verweigert" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:61 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:70 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:70 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:61 msgid "An error occured, please retry or contact an admin if problem persists" msgstr "" "Ein Fehler ist aufgetreten, bitte wiederholen Sie oder wenden Sie sich an " "Ihren Systemadministrator" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:75 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:75 msgid "Page %page%" msgstr "Seite %page%" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:84 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:84 msgid "Utilisateur" msgstr "Benutzer" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:88 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:88 msgid "Date de demande" msgstr "Abfrage Datum" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:92 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:104 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:104 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:92 msgid "Deadline" msgstr "Termin" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:96 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:114 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:114 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:96 msgid "Utilisation prevue" msgstr "Verwendungszweck" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:100 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:100 msgid "Statut" msgstr "Zustand" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:139 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:139 msgid "Aucune" msgstr "Kein" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:175 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:281 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:281 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:175 msgid "Previous" msgstr "Zurück" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:188 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:298 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:298 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:188 msgid "Next" msgstr "Weiter" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:213 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:213 -msgid "You are using an outdated browser." -msgstr "Sie benutzen einen veralteten Webbrowser" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:217 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:217 -msgid "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." -msgstr "" -"Bitte aktualisieren Sie %browserLink% oder aktivieren Sie %GCFLink%, um " -"Ihre Erfahrung zu verbessern" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:237 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:237 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:215 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:215 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:215 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:215 msgid "" "Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." msgstr "" "Aktualisieren Sie Ihr Webbrowser oder herunterladen Sie die neueste Version " "eines Webbrowsers." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:243 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:243 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:221 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:221 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:221 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:221 msgid "" "Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " "Frame." @@ -2283,1087 +2661,368 @@ msgstr "" "Wenn Sie nicht ein anderes Webbrowser installieren können, benutzen Sie " "Google Chrome Frame" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:250 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:250 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:228 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:228 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:228 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:228 msgid "Installer Google Chrome" msgstr "Google Chrome installieren" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:256 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:256 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:234 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:234 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:234 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:234 msgid "Installer Google Chrome Frame" msgstr "Google Chrome Frame installieren" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:324 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:324 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:324 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:324 +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:25 #: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 #: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 #: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 msgid "Home" msgstr "Home" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:336 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:336 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:330 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:330 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 msgid "Help" msgstr "Hilfe" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:370 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:364 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:364 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:364 #: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:370 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:364 +#: tmp/cache_twig/74/72/ce1e36331d2c6d8e030e5849e6d9faa747b01380bf11dd14a9fb8681b878.php:34 #: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 msgid "Terms of use" msgstr "Nutzungsbedingungen" #: tmp/cache_twig/02/c8/9619136fa97ec62dab06dc28c380.php:30 +#: tmp/cache_twig/8e/c2/d739949fe6a6c8c6d3c4e91956d989a3adbd869aac5c54c923235f3bbfa3.php:30 msgid "Guest access" msgstr "Gast Zugriff" +#: tmp/cache_twig/02/cd/7590eeab80480f95c0887ddc6417fc86f51cab505909c6259f10f11a2e95.php:61 +#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 +#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 +#: tmp/cache_twig/e7/33/fe2890c3af702e61833b0a50667171c7bc225a50e195eb486fba6917e751.php:55 +msgid "%nb_records% records" +msgstr "%nb_records% Datensätze" + #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:35 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:35 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:35 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:35 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:35 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:35 msgid "Deplacement %n_element% elements" msgstr "Bewegung von %n_element% Elemente" #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:51 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:51 msgid "Which photosets you want to put you %number% photos into ?" msgstr "Welche Fotosets möchten Sie benutzen, für die %number% Fotos?" -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 -#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "Bestätigen" - #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:107 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:996 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:107 #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:78 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:421 #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:107 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:142 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:82 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:107 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:78 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:78 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:78 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:67 #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:78 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:119 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:107 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:421 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:223 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:78 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:213 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:119 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:324 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:188 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:78 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:131 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:78 msgid "boutton::retour" msgstr "Zurück" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:28 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:83 #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:381 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:231 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:28 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:144 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:335 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:1024 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:381 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:343 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:29 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:88 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:228 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:488 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1080 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2113 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 msgid "action : exporter" -msgstr "exportieren" +msgstr "Exportieren" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:69 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:155 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:35 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:105 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:498 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1090 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:105 msgid "action : print" -msgstr "drucken" +msgstr "Drucken" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 +#: tmp/cache_twig/9e/7a/714c406cc01b2ef18eaa625a977077a4b2b2545345b30f9715aa3ab4ca50.php:34 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:45 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1109 msgid "action : editer" -msgstr "bearbeiten" +msgstr "Bearbeiten" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:57 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:58 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1127 msgid "action : status" msgstr "Eigenschaften" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:70 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:71 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1145 msgid "action : collection" -msgstr "verschieben" +msgstr "Verschieben" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:83 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:84 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1324 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1369 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:96 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:97 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1334 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1379 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:107 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:108 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1344 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1394 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2104 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:114 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1354 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1404 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2109 msgid "action : publier" msgstr "Veröffentlichen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:126 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:127 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1424 msgid "action : outils" msgstr "Werkzeuge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:370 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:134 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:129 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:325 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1440 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:370 msgid "action : supprimer" -msgstr "löschen" +msgstr "Löschen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:147 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:147 msgid "Certaines donnees du reportage ont change" msgstr "Einige Daten von dem Bericht wurden verändert" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:152 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:49 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:152 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:145 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:47 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:62 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:145 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:47 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:62 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:49 msgid "rafraichir" msgstr "aktualisieren" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 -msgid "VALIDATION" -msgstr "Bestätigung" +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:35 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:95 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 +msgid "report:: activite par jour" +msgstr "Aktivität pro Tag" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 -msgid "lightbox::recaptitulatif" -msgstr "Übersicht" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:38 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:36 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 +msgid "Renew password" +msgstr "Passwort erneuern" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:100 -msgid "validation:: OUI" -msgstr "Ja" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:51 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:49 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 +msgid "Choose a new password" +msgstr "Wählen Sie ein neues Passwort aus" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 -msgid "validation:: NON" -msgstr "Nein" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:27 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:27 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 +msgid "thesaurus:: Lier la branche de thesaurus" +msgstr "die Verzweigung verbinden?" -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "Welche Playlist möchten Sie für Ihre %number% Elemente benutzen?" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:48 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 +msgid "thesaurus:: suppression du lien du champ %field%" +msgstr "Löschen von der Verbindung des Feldes %field%" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 -msgid "admin:: demandes en cours" -msgstr "schwebende Anfragen" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 -msgid "Requests for the application registrations were recorded successfully" -msgstr "" -"Anforderungen für die Anwendungs-Registrierungen wurden erfolgreich " -"verzeichnet" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -msgid "admin:: refuser l'acces" -msgstr "Zugriff verboten" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "Ansicht und Herunterladen der Voransichten erlauben" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "Herunterladen der Voransichten und Dokumente erlauben" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 -msgid "admin:: watermarquer les documents" -msgstr "Wasserzeichen auf Voransichten anwenden" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 -msgid "Informations" -msgstr "Informationen" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 -msgid "admin::collection" -msgstr "Kollektion" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 -msgid "Models" -msgstr "Vorlage" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "Benutzername" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -msgid "admin::compte-utilisateur societe" -msgstr "Firma" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -msgid "admin::compte-utilisateur poste" -msgstr "Beruf" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -msgid "admin::compte-utilisateur activite" -msgstr "Tätigkeit" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 -msgid "admin::compte-utilisateur telephone" -msgstr "Telefon" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -msgid "admin::compte-utilisateur adresse" -msgstr "Adresse" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 -msgid "admin:: appliquer le modele" -msgstr "Vorlage anwenden" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 -msgid "No application for registration has been recorded" -msgstr "Keine Anmeldung für Registrierung wurde verzeichnet" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -msgid "%nb_view% vue" -msgstr "%nb_view% Ansicht" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 -msgid "%nb_view% vues" -msgstr "%nb_view% Ansichten" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 -msgid "%nb_rating% like" -msgstr "%nb_rating% « Gefällt mir »" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 -msgid "%nb_rating% likes" -msgstr "%nb_rating% « Gefällt mir »" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 -msgid "notice" -msgstr "Beschreibung" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 -msgid "Validations" -msgstr "Bestätigung" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 -msgid "Paniers" -msgstr "Sammelkörbe" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 -msgid "boutton::telecharger tous les documents" -msgstr "Alle Dokumente herunterladen" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 -#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 -msgid "Do you want to send your report ?" -msgstr "Möchten Sie Ihren Bericht senden ?" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 -msgid "Type texte" -msgstr "Typ Text" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 -msgid "Type nombre" -msgstr "Typ Zahl" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 -msgid "Type date" -msgstr "Typ Datum" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 -msgid "Source" -msgstr "Quelle" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 -msgid "Ce champ n'est pas indexe" -msgstr "Dieses Feld ist nicht indiziert" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 -msgid "Ce champ est multivalue" -msgstr "Dieses Feld ist ein mehrwertiges Feld" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 -msgid "Ce champ est en lecture seule" -msgstr "Dieses Feld ist schreibgeschützt" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "Dieses Feld ist mit einem Thesaurus Zweig verbunden" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "Dieses Feld wird bei der Anzeige als Titel benutzt" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 -msgid "Ce champ est requis" -msgstr "Dieses Feld wird benötigt" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "Dieses Feld wird als Element der %DublinCoreElementSet% beschrieben." - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 -msgid "Par %author%" -msgstr "Von %author%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 -msgid "boutton::editer" -msgstr "bearbeiten" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -msgid "boutton::supprimer" -msgstr "löschen" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 -msgid "Derniere mise a jour le %updated_on%" -msgstr "letztes Update am %updated_on%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 -msgid "dans %feed_name%" -msgstr "in %feed_name%" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 -msgid "Suppression de %n_element% photosets" -msgstr "Löschen von %n_element% Fotosets" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "Sind Sie sicher, %number% Fotosets zu löschen?" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:81 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 msgid "" -"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "Push zu %n_user% Benutzer ab ApplicationBox %appbox%" +"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" +msgstr "Löschen von dem Sprung von möglichen Begriffe für das Feld %field%" -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:96 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 +msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." +msgstr "Datensatz der veränderte Liste von möglichen Begriffen" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:110 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 msgid "" -"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " -"box %appbox%" -msgstr "Validierung Abfrage zu %n_user% Benutzer ab ApplicationBox %appbox%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 -msgid "report::Edition des meta-donnees" -msgstr "Metadaten Bearbeitung" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 -msgid "report::Changement de collection vers : %coll_name%" -msgstr "Kollektion Verschiebung zu : %coll_name%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 -msgid "report::Edition des status" -msgstr "Status Bearbeitung" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 -msgid "report::Impression des formats : %format%" -msgstr "Format Drucken : %format%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 -msgid "report::Substitution de %dest%" -msgstr "Ersatz von %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 -msgid "report::Publication de %dest%" -msgstr "Veröffentlichung von %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 -msgid "report::Telechargement de %dest%" -msgstr "Download von %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 -msgid "Envoi par mail a %dest% de %content%" -msgstr "durch Email zu %dest% von %content% senden" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "durch ftp zu %dest% von %content%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 -msgid "report::supression du document" -msgstr "Dokument löschen" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 -msgid "report::ajout du documentt" -msgstr "Dokument hinzugefügt" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "unbekannte Handlung auf das Dokument" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 -msgid "report:: par %user_infos%" -msgstr "von %user_infos%" - -#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 -msgid "" -"Le connecteur API requis n'est pas configure correctement, veuillez " -"contacter un administrateur" -msgstr "" -"Der benötigte API Connector wurde falsch konfiguriert. Bitte kontaktieren " -"Sie einen Administrator." - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 -msgid "Acces" -msgstr "Zugriff" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 -msgid "Sessions" -msgstr "Sessions" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 -msgid "Applications" -msgstr "Anwendungen" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 -msgid "Developpeur" -msgstr "Entwickler" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 -msgid "Suppression de %n_element% videos" -msgstr "Löschen von %n_element% Videos" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "Sind Sie sicher, %number% Videos zu löschen?" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 -msgid "Rights" -msgstr "Rechte" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 -msgid "Infos" -msgstr "Informationen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 -msgid "Reglages:: reglages d acces guest" -msgstr "Gast Zugriff Einstellungen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "Auto Register Einstellungen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 -msgid "Edition des droits de %display_name%" -msgstr "Bearbeitung von %display_name% Rechten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "Bearbeitung von %number% Benutzer Rechten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 -msgid "Apply a template" -msgstr "Eine Schablone anwenden" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 -msgid "boutton::choisir" -msgstr "Auswählen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 -msgid "Delete all users rights" -msgstr "Alle Nutzerrechte löschen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 -msgid "Allowed to publish" -msgstr "Veröffentlichen wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 -msgid "Manage Thesaurus" -msgstr "Thesaurus verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 -msgid "Manage Database" -msgstr "Datenbank verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 -msgid "Manage DB fields" -msgstr "Datenbank Felder verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 -msgid "Access" -msgstr "Viewer" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 -msgid "Active" -msgstr "Aktiv" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 -msgid "Allowed to add in basket" -msgstr "Erlaubt, Dokumente in Sammelkörbe hinzuzufügen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 -msgid "Access to preview" -msgstr "Zugriff auf Vorschaubild" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 -msgid "Remove watermark" -msgstr "Wasserzeichen entfernen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 -msgid "Access to HD" -msgstr "Zugriff auf HD" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 -msgid "Allowed to order" -msgstr "Ordnen wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 -msgid "Set download quotas" -msgstr "Download Quoten festlegen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 -msgid "Set time restrictions" -msgstr "Zeitliche Beschränkungen festlegen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 -msgid "Set statuses restrictions" -msgstr "Status Beschränkungen festlegen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 -msgid "Allowed to add" -msgstr "Hinzufügen wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 -msgid "Allowed to edit" -msgstr "Verarbeitung wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 -msgid "Allowed to change statuses" -msgstr "Status Veränderungen werden erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 -msgid "Allowed to delete" -msgstr "Löschen wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 -msgid "Access to image tools" -msgstr "Zugriff auf Bild Werkzeug wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 -msgid "Manage users" -msgstr "Benutzer verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 -msgid "Allowed to access report" -msgstr "Zugriff auf Report wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 -msgid "Allowed to push" -msgstr "Push wird erlaubt" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 -msgid "Manage collection" -msgstr "Kollektion verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 -msgid "Manage values lists" -msgstr "Wertelisten verwalten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "Anrede" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "Fräulein" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "Frau" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "Herr" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -msgid "admin::compte-utilisateur code postal" -msgstr "PLZ" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -msgid "admin::compte-utilisateur ville" -msgstr "Ort" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -msgid "admin::compte-utilisateur fax" -msgstr "Fax" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "Sind Sie sicher, die Rechte zurückzusetzen?" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 -msgid "No results" -msgstr "Keine Ergebnisse" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 -msgid "1 result" -msgstr "1 Ergebnis" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 -msgid "%Total% results" -msgstr "%Total% Ergebnisse" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 -msgid "Delete basket" -msgstr "Sammelkorb löschen" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 -msgid "Received from %user_name%" -msgstr "Von %user_name% bekommen" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 -msgid "Sent for validation to %list_participants%" -msgstr "Für die Bestätigung zu %list_participants% gesendet" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:40 -msgid "Grant rights" -msgstr "Rechte gewähren" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:51 -msgid "Contributor" -msgstr "Benutzer" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:59 -msgid "See others" -msgstr "Andere sehen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:70 -msgid "HD Download" -msgstr "HD Download" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:79 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 -msgid "Lists" -msgstr "Liste" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:85 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:452 -msgid "List Manager" -msgstr "Liste Manager" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:93 -msgid "Save this list" -msgstr "Diese Liste speichern" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "Benutzer" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:156 -msgid "Select a user in the list" -msgstr "Einen Benutzer in der Liste wählen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:163 -msgid "or" -msgstr "oder" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:168 -msgid "Add user" -msgstr "Benutzer hinzufügen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:252 -msgid "and %n% more peoples" -msgstr "und %n% mehr Leute" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:275 -msgid "" -"Please consider send this push to the following users : %recommendation%" -msgstr "" -"Vorschläge: Sie können auch diesen Push zu den folgenden Benutzern senden: " -"%recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:281 -msgid "" -"Please consider send this validation to the following users : %recommendation" -"%" -msgstr "" -"Bitte prüfen Sie, ob Sie dieseBewertung zu folgenden Benutzern senden " -"möchten: %recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:293 -msgid "Users suggestion" -msgstr "Benutzer Vorschlag" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:319 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 -msgid "Add" -msgstr "Hinzufügen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:340 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" -"Das Modul Push ermöglicht es einen Stapel Bilder an Emfänger zu senden. " -"Diese erhalten eine E-Mail mit einem link, der das Modul Phraseanet Lightbox " -"startet. In diesem Modul kann man die Dokumente anschauen und bei " -"Berechtigung auch downloaden. Für registrierte Benutze rerscheinen die mit " -"Push gesendeten Daten im Modul Prod als \"Sammelkorb erhalten\"" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:346 -msgid "" -"Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" -"\"Bewertung\" erlaubt es Dokumente an Empfänger zu senden. In einem E-Mai " -"ist ein link, der das Modul Phraseanet Lightbox startet. In diesem können " -"Sie die Dokumente mittels 3 verschieden Symbolen bewerten und bei " -"Berechtigung auch downloaden. Für eingeloggte Benutzer ist die \"Bewertung\" " -"im Modul Prod als Sammelkorb verfügbar." - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:367 -msgid "Select all" -msgstr "Alle auswählen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 -msgid "Deselect all" -msgstr "Alle abwählen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Send" -msgstr "Senden" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:437 -msgid "Back to Push" -msgstr "Zurück zum Push" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:443 -msgid "Back to Feedback" -msgstr "Zurück zum Feedback" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:470 -msgid "Welcome to the ListManager !" -msgstr "Herzlich Willkommen beim Liste Manager !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:479 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" -"Beginnen Sie mit der Erstellung: Klicken sie auf \"Hinzufügen\" links !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:488 -msgid "Select a list on the left and edit it !" -msgstr "" -"Wählen Sie eine Liste auf der linken Seite aus und bearbeiten Sie diese." - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 -msgid "You do not have rights to remove all selected documents. Are you sure ?" -msgstr "" -"Sie besitzen nicht genügend Zugriffsrechte, alle ausgewählte Dokumente zu " -"löschen. Sind Sie sicher?" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 -msgid "These records will be definitely deleted and can not be recovered" -msgstr "" -"Diese Datensätze werden endgültig gelöscht und können nicht " -"wiederhergestellt werden" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 -msgid "Also delete records that rely on groupings." -msgstr "Auch Datensätze, die auf Geschichten angewiesen sind, löschen" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 -msgid "Cancel" -msgstr "Abbrechen" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 -msgid "No document selected" -msgstr "Kein ausgewähltes Dokument" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 -msgid "You do not have rights to remove selected documents" -msgstr "" -"Sie besitzen nicht genügend Zugriffsrechte, um die ausgewählte Dokumente zu " -"löschen" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 -msgid "Creer" -msgstr "erstellen" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 -msgid "Actions" -msgstr "Handlungen" - -#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 -#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 -msgid "Voulez-vous dire %link% ?" -msgstr "Meinen Sie %link%?" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:45 -msgid "report:: Du (date)" -msgstr "von" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:57 -msgid "report:: Au (date)" -msgstr "bis" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 -#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 -#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 -msgid "report:: Dashboard" -msgstr "Dashboard" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 -msgid "validation:: votre note" -msgstr "Kommentare" - +"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" +msgstr "Löschen von Indexen zum Thesaurus für das Feld %field%" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:125 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 +msgid "thesaurus:: reindexer tous les enregistrements" +msgstr "Alle Datensätze wieder indexieren" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:135 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:79 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:79 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:43 #: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:74 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:968 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:283 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:86 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:43 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2019 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:74 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:54 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:516 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:524 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:196 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:225 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 @@ -3372,41 +3031,770 @@ msgstr "Kommentare" msgid "boutton::fermer" msgstr "schliessen" -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 -msgid "boutton::enregistrer" -msgstr "speichern" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:69 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 +msgid "Rights" +msgstr "Rechte" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 -msgid "Reorder collections" -msgstr "Kollektionen neu anzuordnen" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:79 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 +msgid "Infos" +msgstr "Informationen" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 -msgid "admin::base:collorder: monter" -msgstr "aufsteigend" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:111 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:89 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "Gast Zugriff Einstellungen" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 -msgid "admin::base:collorder: descendre" -msgstr "absteigend" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:117 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:97 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "Auto Register Einstellungen" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "in alphabetischer Reihenfolge sortieren" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:129 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 +msgid "Edition des droits de %display_name%" +msgstr "Bearbeitung von %display_name% Rechten" -#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 -#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 -msgid "%nb_records% records" -msgstr "%nb_records% Datensätze" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:141 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "Bearbeitung von %number% Benutzer Rechten" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:150 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:209 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:209 +msgid "Apply a template" +msgstr "Eine Schablone anwenden" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:155 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:214 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:214 +msgid "boutton::choisir" +msgstr "Auswählen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:177 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:249 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:249 +msgid "Delete all users rights" +msgstr "Alle Nutzerrechte löschen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:461 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 +msgid "Allowed to publish" +msgstr "Veröffentlichen wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:470 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 +msgid "Manage Thesaurus" +msgstr "Thesaurus verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:479 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 +msgid "Manage Database" +msgstr "Datenbank verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:488 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 +msgid "Manage DB fields" +msgstr "Datenbank Felder verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:509 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:113 +#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 +msgid "Access" +msgstr "Viewer" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:518 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 +msgid "Active" +msgstr "Aktiv" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:527 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 +msgid "Allowed to add in basket" +msgstr "Erlaubt, Dokumente in Sammelkörbe hinzuzufügen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:536 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 +msgid "Access to preview" +msgstr "Zugriff auf Vorschaubild" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:545 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 +msgid "Remove watermark" +msgstr "Wasserzeichen entfernen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:554 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 +msgid "Access to HD" +msgstr "Zugriff auf HD" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:563 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 +msgid "Allowed to order" +msgstr "Ordnen wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:572 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 +msgid "Set download quotas" +msgstr "Download Quoten festlegen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:599 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 +msgid "Set time restrictions" +msgstr "Zeitliche Beschränkungen festlegen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:626 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 +msgid "Set statuses restrictions" +msgstr "Status Beschränkungen festlegen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:656 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 +msgid "Allowed to add" +msgstr "Hinzufügen wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:665 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 +msgid "Allowed to edit" +msgstr "Verarbeitung wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:674 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 +msgid "Allowed to change statuses" +msgstr "Status Veränderungen werden erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:683 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 +msgid "Allowed to delete" +msgstr "Löschen wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:692 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 +msgid "Access to image tools" +msgstr "Zugriff auf Bild Werkzeug wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:701 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 +msgid "Manage users" +msgstr "Benutzer verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:710 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 +msgid "Allowed to access report" +msgstr "Zugriff auf Report wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:719 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 +msgid "Allowed to push" +msgstr "Push wird erlaubt" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:728 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 +msgid "Manage collection" +msgstr "Kollektion verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:737 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 +msgid "Manage values lists" +msgstr "Wertelisten verwalten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:779 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:279 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 +#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:67 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1558 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:303 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:279 +#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:112 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:105 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:429 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1558 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "Benutzername" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:793 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:118 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "Anrede" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:804 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:645 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:131 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:645 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "Fräulein" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:812 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:653 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:142 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:653 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "Frau" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:820 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:661 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:153 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:661 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "Herr" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:871 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:748 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:363 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:220 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:748 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:301 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +msgid "admin::compte-utilisateur adresse" +msgstr "Adresse" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:885 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:761 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:233 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:761 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:303 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +msgid "admin::compte-utilisateur code postal" +msgstr "PLZ" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:899 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:774 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:246 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:774 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:302 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +msgid "admin::compte-utilisateur ville" +msgstr "Ort" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:913 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:735 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:339 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:259 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:735 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +msgid "admin::compte-utilisateur poste" +msgstr "Beruf" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:927 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:311 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:722 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:331 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:272 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:722 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:298 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +msgid "admin::compte-utilisateur societe" +msgstr "Firma" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:941 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:347 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:285 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +msgid "admin::compte-utilisateur activite" +msgstr "Tätigkeit" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:956 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:709 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:355 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:298 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:709 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:306 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:305 +msgid "admin::compte-utilisateur telephone" +msgstr "Telefon" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:970 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:787 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:787 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:306 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +msgid "admin::compte-utilisateur fax" +msgstr "Fax" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:1022 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "Sind Sie sicher, die Rechte zurückzusetzen?" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:26 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:238 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:27 +msgid "VALIDATION" +msgstr "Bestätigung" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:32 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:265 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:33 +msgid "lightbox::recaptitulatif" +msgstr "Übersicht" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:115 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:123 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:115 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:129 +msgid "validation:: OUI" +msgstr "Ja" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:129 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:138 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:129 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:144 +msgid "validation:: NON" +msgstr "Nein" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:31 +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:68 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:508 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 +msgid "action : ajouter au panier" +msgstr "Zum Sammelkorb hinzufügen" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:54 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 +msgid "Remove from basket" +msgstr "aus dem Sammelkorb entfernen" + +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:51 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:51 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 +msgid "Which playlist you want to put you %number% elements into ?" +msgstr "Welche Playlist möchten Sie für Ihre %number% Elemente benutzen?" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:202 +msgid "admin:: demandes en cours" +msgstr "schwebende Anfragen" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:214 +msgid "Requests for the application registrations were recorded successfully" +msgstr "" +"Anforderungen für die Anwendungs-Registrierungen wurden erfolgreich " +"verzeichnet" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:232 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:405 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:409 +msgid "admin:: refuser l'acces" +msgstr "Zugriff verboten" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:238 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:416 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:420 +msgid "admin:: donner les droits de telechargement et consultation de previews" +msgstr "Ansicht und Herunterladen der Voransichten erlauben" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:244 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:427 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:431 +msgid "admin:: donner les droits de telechargements de preview et hd" +msgstr "Herunterladen der Voransichten und Dokumente erlauben" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:250 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:438 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:442 +msgid "admin:: watermarquer les documents" +msgstr "Wasserzeichen auf Voransichten anwenden" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:358 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:260 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:116 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:116 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 +msgid "Informations" +msgstr "Informationen" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:264 +msgid "admin::collection" +msgstr "Kollektion" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:268 +msgid "Models" +msgstr "Vorlage" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:456 +msgid "admin:: appliquer le modele" +msgstr "Vorlage anwenden" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:511 +msgid "No application for registration has been recorded" +msgstr "Keine Anmeldung für Registrierung wurde verzeichnet" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:25 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:25 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:25 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 +msgid "Ajouter a" +msgstr "Hinzufügen zu" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:58 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:38 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:58 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:58 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:38 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:38 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 +msgid "Actions" +msgstr "Handlungen" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:73 +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:172 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1535 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:328 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:73 +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:314 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:78 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:86 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:73 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:248 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:53 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:53 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:344 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:378 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:434 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:490 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:494 +msgid "boutton::supprimer" +msgstr "Löschen" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:57 +msgid "%nb_rating% like" +msgstr "%nb_rating% « Gefällt mir »" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:63 +msgid "%nb_rating% likes" +msgstr "%nb_rating% « Gefällt mir »" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:169 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:195 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:168 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:154 +msgid "notice" +msgstr "Beschreibung" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:73 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:71 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:275 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:251 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 +msgid "Validations" +msgstr "Bestätigung" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:199 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:197 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:308 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:284 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 +msgid "Paniers" +msgstr "Sammelkörbe" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:202 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:344 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:318 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:200 +msgid "boutton::telecharger tous les documents" +msgstr "Alle Dokumente herunterladen" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:391 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 +#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 +msgid "Do you want to send your report ?" +msgstr "Möchten Sie Ihren Bericht senden ?" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:36 +msgid "Type texte" +msgstr "Typ Text" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:42 +msgid "Type nombre" +msgstr "Typ Zahl" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:48 +msgid "Type date" +msgstr "Typ Datum" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:67 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:96 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:160 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 +msgid "Source" +msgstr "Quelle" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:82 +msgid "Ce champ n'est pas indexe" +msgstr "Dieses Feld ist nicht indiziert" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:94 +msgid "Ce champ est multivalue" +msgstr "Dieses Feld ist ein mehrwertiges Feld" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:106 +msgid "Ce champ est en lecture seule" +msgstr "Dieses Feld ist schreibgeschützt" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:118 +msgid "Ce champ est relie a une branche de thesaurus" +msgstr "Dieses Feld ist mit einem Thesaurus Zweig verbunden" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:130 +msgid "Ce champ est utilise en titre a l'affichage" +msgstr "Dieses Feld wird bei der Anzeige als Titel benutzt" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:142 +msgid "Ce champ est requis" +msgstr "Dieses Feld wird benötigt" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:160 +msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" +msgstr "Dieses Feld wird als Element der %DublinCoreElementSet% beschrieben." + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:31 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 +msgid "First Name" +msgstr "Vorname" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:42 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 +msgid "Last Name" +msgstr "Nachname" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:53 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 +msgid "Email Name" +msgstr "Email Adresse" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:64 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 +msgid "Job" +msgstr "Beruf" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:86 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 +msgid "City" +msgstr "Stadt" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:98 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:350 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:113 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:32 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:406 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:410 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:350 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 +msgid "Add" +msgstr "Hinzufügen" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:102 +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:117 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:346 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:78 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:346 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:135 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:151 +msgid "Cancel" +msgstr "Abbrechen" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:63 +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 +msgid "Par %author%" +msgstr "Von %author%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:77 +msgid "boutton::editer" +msgstr "Bearbeiten" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:117 +msgid "Derniere mise a jour le %updated_on%" +msgstr "letztes Update am %updated_on%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:135 +msgid "dans %feed_name%" +msgstr "in %feed_name%" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:35 +msgid "Suppression de %n_element% photosets" +msgstr "Löschen von %n_element% Fotosets" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:51 +msgid "Etes vous sur de supprimer %number% photosets ?" +msgstr "Sind Sie sicher, %number% Fotosets zu löschen?" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:35 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:35 msgid "Suggested values" msgstr "Vorschlagswerte" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:48 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:36 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:55 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 @@ -3419,41 +3807,75 @@ msgstr "Vorschlagswerte" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 msgid "Successful update" msgstr "Erfolgreiches Update" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:72 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:72 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:111 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:311 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:111 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:311 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 msgid "phraseanet::chargement" msgstr "ladend" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:95 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:95 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Vorschlagswerte - Kollektion Einstellungen" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:111 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:104 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 msgid "boutton::vue xml" msgstr "XML Ansicht" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:115 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:108 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 msgid "boutton::vue graphique" msgstr "grafische Ansicht" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:130 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:130 msgid "admin::sugval: champs" msgstr "Felder" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:164 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:53 +msgid "admin::base:collorder: monter" +msgstr "aufsteigend" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:168 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:57 +msgid "admin::base:collorder: descendre" +msgstr "absteigend" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:176 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:61 +msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +msgstr "in alphabetischer Reihenfolge sortieren" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:196 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:196 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:246 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:473 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:246 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:473 msgid "boutton::ajouter" msgstr "hinzufügen" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:1062 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:1062 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des " @@ -3464,136 +3886,428 @@ msgstr "" "XML voraus, wenn Sie vorher die Änderungen nicht gespeichert haben. " "Trotzdem fortfahren?" -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 -msgid "report:: activite du site" -msgstr "Tätigkeit der Webseite" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:66 +msgid "" +"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +msgstr "Push zu %n_user% Benutzer ab ApplicationBox %appbox%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 -msgid "Tableau de bord" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:81 +msgid "" +"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " +"box %appbox%" +msgstr "Validierung Abfrage zu %n_user% Benutzer ab ApplicationBox %appbox%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:87 +msgid "report::Edition des meta-donnees" +msgstr "Metadaten Bearbeitung" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:99 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "Kollektion Verschiebung zu : %coll_name%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:105 +msgid "report::Edition des status" +msgstr "Status Bearbeitung" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:114 +msgid "report::Impression des formats : %format%" +msgstr "Format Drucken : %format%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:123 +msgid "report::Substitution de %dest%" +msgstr "Ersatz von %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:132 +msgid "report::Publication de %dest%" +msgstr "Veröffentlichung von %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:141 +msgid "report::Telechargement de %dest%" +msgstr "Download von %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:153 +msgid "Envoi par mail a %dest% de %content%" +msgstr "durch Email zu %dest% von %content% senden" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:165 +msgid "Envoi par ftp a %dest% de %content%" +msgstr "durch ftp zu %dest% von %content%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:171 +msgid "report::supression du document" +msgstr "Dokument löschen" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:177 +msgid "report::ajout du documentt" +msgstr "Dokument hinzugefügt" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:183 +msgid "report::Modification du document -- je ne me souviens plus de quoi..." +msgstr "unbekannte Handlung auf das Dokument" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:200 +msgid "report:: par %user_infos%" +msgstr "von %user_infos%" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:34 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:43 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:43 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:46 +msgid "report:: Du (date)" +msgstr "von" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:44 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:55 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:55 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:56 +msgid "report:: Au (date)" +msgstr "bis" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:76 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:40 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 +#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:40 +#: tmp/cache_twig/b0/68/8df402b56c39d510a9d6d04c179a52d90fa80d9fd6ad5c68b5c21ea0076f.php:32 +#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 +#: tmp/cache_twig/f0/c8/dec944507ec91ef867d854c9718175767c72a41c78536d7f086c60b949be.php:32 +msgid "report:: Dashboard" msgstr "Dashboard" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 -msgid "Setup" -msgstr "Aufstellung" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:44 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 +msgid "The user has been created." +msgstr "Der Benutzer wurde erstellt" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 -msgid "SearchEngine settings" -msgstr "Suchmaschine Einstellungen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:50 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "%user_count% benutzer wurden erstellt" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "eingeloggte Benutzer" - -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 -msgid "admin::utilisateurs: utilisateurs" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:63 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:182 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:63 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:182 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:91 +#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" msgstr "Benutzer" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 -msgid "admin::utilisateurs: demandes en cours" -msgstr "Anfragen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "Neuer Benutzer" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 -msgid "Publications" -msgstr "Veröffentlichungen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:75 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:75 +msgid "admin::user: nouveau template" +msgstr "Neue Vorlage" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "Aufgabe-Scheduler" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:81 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "Import" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 -msgid "admin::utilisateurs: bases de donnees" -msgstr "Datenbanken" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:85 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "Export" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 -msgid "admin::structure: reglage de la structure" -msgstr "Struktur Einstellung" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:112 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:112 +msgid "Filter" +msgstr "Filtern" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 -msgid "CHAMPS" -msgstr "Felder" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:129 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:295 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:71 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:129 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:295 +msgid "First/Last Name" +msgstr "Vorname / Nachname" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 -msgid "SUBDEFS" -msgstr "Unterauflösungen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:166 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:166 +msgid "Last applied template" +msgstr "letzte angewandte Vorlage" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 -msgid "admin::status: reglage des status" -msgstr "Status Einstellungen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:236 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:236 +msgid "boutton::appliquer" +msgstr "Anwenden" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 -msgid "admin:: CGUs" -msgstr "ANB" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:265 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "Benutzername" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 -msgid "admin::collection: ordre des collections" -msgstr "Kollektionen Ordnung" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:343 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:343 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:304 +msgid "admin::compte-utilisateur pays" +msgstr "Land" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 -msgid "admin::base: preferences de collection" -msgstr "Kollektionseinstellungen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:359 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "Letzte angewendete Vorlage" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 -msgid "Chercher" -msgstr "Suchen" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:375 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "Erstellungsdatum" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 -msgid "thesaurus:: le terme" -msgstr "Begriff" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:420 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:420 +msgid "This is a template" +msgstr "Hier ist eine Schablone" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 -msgid "thesaurus:: est egal a " -msgstr "gleich " +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:429 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:429 +msgid "This user has no rights" +msgstr "Dieser Benutzer besitzt keine Rechte" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 -msgid "thesaurus:: commence par" -msgstr "beginnt mit" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:638 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:649 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:660 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:638 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:649 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:660 +msgid "%n_par_page% par page" +msgstr "%n_par_page% pro Seite" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 -msgid "thesaurus:: contient" -msgstr "beinhaltet" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:665 +#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 +#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 +#: tmp/cache_twig/73/37/e3b20793b38fb7ab75acd68e87009654ea726d191453f251f2de1b8ef1fd.php:22 +#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:665 +#: tmp/cache_twig/b8/3f/87a926d83151a23e51c94f5bc6b4e980c11a5b5fc693fcb89b5131dfeac5.php:22 +#: tmp/cache_twig/d4/25/a94dbfc016b6e0064d671b20c9ba4a0db1cffe147d3fde0340190faef0b2.php:22 +msgid "boutton::modifier" +msgstr "ändern" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:669 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:669 +msgid "Supprimer" +msgstr "Löschen" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:807 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:807 +msgid "boutton::exporter" +msgstr "Exportieren" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:831 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:831 +msgid "select at least one user" +msgstr "Einen user auswählen" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:843 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "Sind Sie sicher, dass Sie die Benutzerzugriffe löschen möchten?" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:867 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:867 +msgid "users rights have been reseted" +msgstr "Nutzerrechte wurden zurückgesetzt" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:53 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 +msgid "Vous avez recu un nouveau panier" +msgstr "Sie haben einen neuen Sammelkorb erhalten" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:111 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "Sie können eine Bewertung der Bilder in diesem Sammelkorb abgeben" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:134 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:301 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:480 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 +msgid "action::exporter" +msgstr "Exportieren" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:145 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:491 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 +msgid "action::editer" +msgstr "Bearbeiten" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:170 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:341 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 +msgid "action::Valider" +msgstr "Bestätigen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:253 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "Sie haben eine Bewertung von Dokumenten angefordert" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:274 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 +msgid "paniers:: panier recu de %pusher%" +msgstr "Sammelkorb von %pusher% bekommen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:317 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:323 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 +msgid "action::renommer" +msgstr "umbenennen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:358 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 +msgid "Archive" +msgstr "Archivieren" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:504 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 +msgid "action::detacher" +msgstr "entfernen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:720 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 +msgid "delete" +msgstr "Löschen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:809 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 +msgid "panier:: ordre du panier" +msgstr "Sammelkorb Reihenfolge" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:817 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 +msgid "panier:: ordre Validation ascendante" +msgstr "gut bewertet" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:825 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 +msgid "panier:: ordre Validation descendante" +msgstr "weniger gut bewertet" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:873 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 +msgid "L'utilisateur approuve ce document" +msgstr "Benutzer genehmigt dieses Dokument" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:879 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "Benutzer hat seine Meinung nocht nicht gegeben" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:885 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 +msgid "L'utilisateur desapprouve ce document" +msgstr "Benutzer lehnt dieses Dokument ab" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:894 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 +msgid "This user does not participate to the validation but is only viewer." +msgstr "Dieser Benutzer darf nicht teilnehmen, nur ansehen." + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:71 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:71 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 +msgid "veuillez choisir au minimum une collection" +msgstr "Mindestens eine Kollektion muss ausgewählt werden" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:75 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:75 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:190 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:130 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:99 +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:213 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:237 #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:228 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:47 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:184 #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:119 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:75 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:113 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:75 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:190 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:228 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:108 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:113 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:148 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:828 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1055 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:47 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:184 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:184 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:47 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:107 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:186 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:237 #: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:130 #: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:186 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:148 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:310 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:334 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:188 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:155 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 #: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:99 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:324 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:163 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:240 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:270 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:486 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:828 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1055 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:250 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:489 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:310 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:334 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:108 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:155 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:132 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:213 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 @@ -3601,49 +4315,830 @@ msgstr "beinhaltet" msgid "boutton::annuler" msgstr "abbrechen" +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:87 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:87 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 +#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:111 +msgid "report::Heures" +msgstr "Module" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:105 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:105 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 +msgid "report::Nombre de connexions" +msgstr "Verbindungen" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:109 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:109 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 +#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 +msgid "report:: jour" +msgstr "Tag" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:113 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:113 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 +msgid "report:: Heures" +msgstr "Stunden" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:117 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:117 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 +msgid "report::Nombre de document ajoute" +msgstr "Anzahl von hinzugefügten Dokumenten" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:121 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:121 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 +msgid "report::Nombre de document edite" +msgstr "Anzahl von bearbeiteten Dokumenten" + +#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 +#: tmp/cache_twig/2e/c8/6a8b65962285cc957b4f1cb0a6d3c6cfcece8142ec2c2d9bcd51db856e63.php:25 +msgid "" +"Le connecteur API requis n'est pas configure correctement, veuillez " +"contacter un administrateur" +msgstr "" +"Der benötigte API Connector wurde falsch konfiguriert. Bitte kontaktieren " +"Sie einen Administrator." + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:35 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:35 +msgid "Suppression de %n_element% playlists" +msgstr "Löschen von %n_element% Playlisten" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:51 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:51 +msgid "Etes vous sur de supprimer %number% playlists ?" +msgstr "Sind Sie sicher, %number% Playlisten zu löschen?" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:126 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:126 +msgid "Acces" +msgstr "Zugriff" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:136 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:136 +msgid "Sessions" +msgstr "Sessions" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:146 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:146 +msgid "Applications" +msgstr "Anwendungen" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:156 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:156 +msgid "Developpeur" +msgstr "Entwickler" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:79 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:77 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 +msgid "Voici vos validations en cours" +msgstr "Hier sind Ihre aktuellen Bewertungen" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:133 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:131 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 +msgid "(validation) session terminee" +msgstr "Session beendet" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:139 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:137 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 +msgid "(validation) envoyee" +msgstr "gesendet" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:145 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:143 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 +msgid "(validation) a envoyer" +msgstr "zu senden" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:154 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:256 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:152 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:254 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 +#, php-format +msgid "%basket_length% documents" +msgstr "%basket_length% dokument(e)" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:205 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:203 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 +msgid "Voici vos paniers" +msgstr "Ihre Sammelkörbe" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:35 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:35 +msgid "Suppression de %n_element% videos" +msgstr "Löschen von %n_element% Videos" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:51 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:51 +msgid "Etes vous sur de supprimer %number% videos ?" +msgstr "Sind Sie sicher, %number% Videos zu löschen?" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:27 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:139 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 +#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 +#: tmp/cache_twig/fa/6c/5a1478433bb48ba074484fbf8f310f00024e6b7e19d6c1fde38d05b22b30.php:27 +msgid "thesaurus:: export au format texte" +msgstr "Text" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:124 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 +msgid "thesaurus:: options d'export : " +msgstr "Export " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:128 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 +msgid "thesaurus:: example" +msgstr "Beispiel" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:147 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 +msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" +msgstr "Synonyme(n) auf die selbe Zeile" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:154 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 +msgid "thesaurus:: exporter avec une ligne par synonyme" +msgstr "Eine Zeile nach Synonym" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:161 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 +msgid "thesaurus:: export : numeroter les lignes " +msgstr "Zeilen nummern " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:168 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 +msgid "thesaurus:: export : inclure la langue" +msgstr "die Sprache beinhalten" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:175 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 +msgid "thesaurus:: export : inclure les hits" +msgstr "Anzahl der Ergebnisse beinhalten" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:124 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 +msgid "En attente" +msgstr "schwebend" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:130 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 +msgid "En cours d'envoi" +msgstr "wird gesendet" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:124 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "Ersatz von Kandidat \"%(von)s\" mit \"%(to)s\"" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:259 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "Ersetzung..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:322 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "Annahme..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:415 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "Löschen..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:489 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "als möglicher Begriff \"%s\" annehmen?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:498 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "die %d möglichen Begriffe annehmen?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:607 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "Rechtsclick / \"%s\" möglichen Begriff annehmen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:616 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "Rechtsclick / %s mögliche Begriffe annehmen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:654 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "Begriff \"%s\" von der Beschreibung ersetzen durch:" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:663 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "%d Begriffe von der Beschreibung ersetzen durch:" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:703 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "Begriff \"%s\" von der Beschreibung(en) löschen?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:712 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "%d Begriffe von der Beschreibung(en) löschen?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:776 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:781 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1035 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 +msgid "prod::thesaurusTab:tree:loading" +msgstr "wird geladen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1412 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "als bestimmter Begriff annehmen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1422 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "als Synonym annehmen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1504 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "in %lng_code% annehmen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1524 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "ersetzen durch" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:31 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:282 +msgid "No results" +msgstr "Keine Ergebnisse" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:37 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:288 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:121 +msgid "1 result" +msgstr "1 Ergebnis" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:43 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:294 +msgid "%Total% results" +msgstr "%Total% Ergebnisse" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:116 +msgid "Delete basket" +msgstr "Sammelkorb löschen" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:191 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:93 +msgid "Received from %user_name%" +msgstr "Von %user_name% bekommen" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:242 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:144 +msgid "Sent for validation to %list_participants%" +msgstr "Für die Bestätigung zu %list_participants% gesendet" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:27 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 +msgid "thesaurus:: Lier la branche de thesaurus au champ" +msgstr "die Verzweigung mit dem Feld %s verbinden" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:90 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 +msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +msgstr "Den Thesaurus-Sprung mit dem Feld %branch% verbinden" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:28 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:28 +msgid "None of the selected records can be pushed." +msgstr "Keines der ausgewählten Datensätze können via Push gesendet werden." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:34 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:34 +msgid "None of the selected records can be sent for feedback." +msgstr "" +"Keines der ausgewählten Datensätze können für das Feedback gesendet werden." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:71 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:71 +msgid "Grant rights" +msgstr "Rechte gewähren" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:82 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:82 +msgid "Contributor" +msgstr "Benutzer" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:90 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:90 +msgid "See others" +msgstr "Andere sehen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:101 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:101 +msgid "HD Download" +msgstr "HD Download" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:110 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:23 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:110 +msgid "Lists" +msgstr "Liste" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:116 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:535 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:116 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:535 +msgid "List Manager" +msgstr "Liste Manager" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:124 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:124 +msgid "Save this list" +msgstr "Diese Liste speichern" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:187 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:187 +msgid "Select a user in the list" +msgstr "Einen Benutzer in der Liste wählen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:194 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:194 +msgid "or" +msgstr "oder" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:199 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:199 +msgid "Add user" +msgstr "Benutzer hinzufügen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:283 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:283 +msgid "and %n% more peoples" +msgstr "und %n% mehr Leute" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:306 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:306 +msgid "" +"Please consider send this push to the following users : %recommendation%" +msgstr "" +"Vorschläge: Sie können auch diesen Push zu den folgenden Benutzern senden: " +"%recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:312 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:312 +msgid "" +"Please consider send this validation to the following users : %recommendation" +"%" +msgstr "" +"Bitte prüfen Sie, ob Sie dieseBewertung zu folgenden Benutzern senden " +"möchten: %recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:324 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:324 +msgid "Users suggestion" +msgstr "Benutzer Vorschlag" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:371 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "" +"Das Modul Push ermöglicht es einen Stapel Bilder an Emfänger zu senden. " +"Diese erhalten eine E-Mail mit einem link, der das Modul Phraseanet Lightbox " +"startet. In diesem Modul kann man die Dokumente anschauen und bei " +"Berechtigung auch downloaden. Für registrierte Benutze rerscheinen die mit " +"Push gesendeten Daten im Modul Prod als \"Sammelkorb erhalten\"" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:377 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:377 +msgid "" +"Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "" +"\"Bewertung\" erlaubt es Dokumente an Empfänger zu senden. In einem E-Mai " +"ist ein link, der das Modul Phraseanet Lightbox startet. In diesem können " +"Sie die Dokumente mittels 3 verschieden Symbolen bewerten und bei " +"Berechtigung auch downloaden. Für eingeloggte Benutzer ist die \"Bewertung\" " +"im Modul Prod als Sammelkorb verfügbar." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:405 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:405 +msgid "You are about to push %nb_push_items% records." +msgstr "Sie sind dabei, %nb_push_items% Datensätze via Push zu senden" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:414 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:414 +msgid "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." +msgstr "" +"Sie sind dabei, %nb_push_items% Datensätze via Push zu senden, " +"%nb_not_available% Datensätze können nicht verarbeitet werden." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:429 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:429 +msgid "You are about to ask for feedback for %nb_push_items% records." +msgstr "" +"Sie sind dabei, um Rückmeldung für %nb_push_items% Datensätze zu bitten" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:438 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:438 +msgid "" +"You are about to ask for feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." +msgstr "" +"Sie sind dabei, um Rückmeldung für %nb_push_items% Datensätze zu bitten, " +"%nb_not_available% Datensätze können nicht verarbeitet werden" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:450 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:80 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:80 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:450 +msgid "Select all" +msgstr "Alle auswählen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:454 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:86 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:454 +msgid "Deselect all" +msgstr "Alle abwählen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:502 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:175 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:307 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:312 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:262 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 +#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:502 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:107 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +msgid "Send" +msgstr "Senden" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:520 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:520 +msgid "Back to Push" +msgstr "Zurück zum Push" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:526 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:526 +msgid "Back to Feedback" +msgstr "Zurück zum Feedback" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:553 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:553 +msgid "Welcome to the ListManager !" +msgstr "Herzlich Willkommen beim Liste Manager !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:562 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:562 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "" +"Beginnen Sie mit der Erstellung: Klicken sie auf \"Hinzufügen\" links !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:571 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:571 +msgid "Select a list on the left and edit it !" +msgstr "" +"Wählen Sie eine Liste auf der linken Seite aus und bearbeiten Sie diese." + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:34 +msgid "You do not have rights to remove all selected documents. Are you sure ?" +msgstr "" +"Sie besitzen nicht genügend Zugriffsrechte, alle ausgewählte Dokumente zu " +"löschen. Sind Sie sicher?" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:53 +msgid "These records will be definitely deleted and can not be recovered" +msgstr "" +"Diese Datensätze werden endgültig gelöscht und können nicht " +"wiederhergestellt werden" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:63 +msgid "Also delete records that rely on groupings." +msgstr "Auch Datensätze, die auf Geschichten angewiesen sind, löschen" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:150 +msgid "No document selected" +msgstr "Kein ausgewähltes Dokument" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:159 +msgid "You do not have rights to remove selected documents" +msgstr "" +"Sie besitzen nicht genügend Zugriffsrechte, um die ausgewählte Dokumente zu " +"löschen" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:42 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 +msgid "Oups ! something went wrong !" +msgstr "Hoppla! Etwas ist schiefgegangen" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:70 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 +msgid "boutton::retry" +msgstr "Wiederholen" + +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:27 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:27 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:27 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 +msgid "Creer" +msgstr "erstellen" + +#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 +#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 +#: tmp/cache_twig/7e/d7/fc11a3521d90d05479b8e9e5b7a637086675de8b1e83c76016239918b8f0.php:54 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:57 +#: tmp/cache_twig/ec/97/b5b5bcb1a77a1178342e9aadece33928490fd66f74bf94ac4961513eafd6.php:54 +#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 +msgid "Voulez-vous dire %link% ?" +msgstr "Meinen Sie %link%?" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:27 +msgid "validation:: votre note" +msgstr "Kommentare" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:83 +msgid "boutton::enregistrer" +msgstr "speichern" + +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:22 +msgid "Reorder collections" +msgstr "Kollektionen neu anzuordnen" + +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:52 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:52 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:458 +msgid "report:: activite du site" +msgstr "Tätigkeit der Webseite" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:34 +msgid "Tableau de bord" +msgstr "Dashboard" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:22 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:63 +msgid "Setup" +msgstr "Aufstellung" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:74 +msgid "SearchEngine settings" +msgstr "Suchmaschine Einstellungen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:95 +msgid "admin::utilisateurs: utilisateurs connectes" +msgstr "eingeloggte Benutzer" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:116 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:394 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:461 +msgid "admin::utilisateurs: utilisateurs" +msgstr "Benutzer" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "Anfragen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:23 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:23 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1919 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:153 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:247 +msgid "Publications" +msgstr "Veröffentlichungen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "Aufgabe-Scheduler" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "Datenbanken" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "Struktur Einstellung" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:300 +msgid "CHAMPS" +msgstr "Felder" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:312 +msgid "SUBDEFS" +msgstr "Unterauflösungen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:324 +msgid "admin::status: reglage des status" +msgstr "Status Einstellungen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:335 +msgid "admin:: CGUs" +msgstr "ANB" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:347 +msgid "admin::collection: ordre des collections" +msgstr "Kollektionen Ordnung" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:438 +msgid "admin::base: preferences de collection" +msgstr "Kollektionseinstellungen" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:27 +msgid "Chercher" +msgstr "Suchen" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:70 +msgid "thesaurus:: le terme" +msgstr "Begriff" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:74 +msgid "thesaurus:: est egal a " +msgstr "gleich " + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:81 +msgid "thesaurus:: commence par" +msgstr "beginnt mit" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:88 +msgid "thesaurus:: contient" +msgstr "beinhaltet" + #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:99 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:99 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:99 msgid "Erreur de login / mot de passe" msgstr "Benutzername / Passwort Fehler" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:107 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:107 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:107 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "Guten Tag! Bitte melden Sie sich auf %home_title% an :" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:845 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:79 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1574 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:116 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:442 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1574 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 msgid "admin::compte-utilisateur mot de passe" msgstr "Passwort" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:120 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:120 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:120 msgid "Se connecter" msgstr "Sich einloggen" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:126 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:126 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:126 msgid "Problèmes de connexion ?" msgstr "Anmeldungsprobleme ?" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:143 #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:95 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:95 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:95 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:143 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:143 msgid "Hello %username%" msgstr "Hallo %username%" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:157 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:157 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:157 msgid "Autorisation d'accès" msgstr "Zugriffsberechtigung" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:168 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:168 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:168 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" @@ -3653,23 +5148,28 @@ msgstr "" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:198 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:198 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:198 msgid "Autoriser" msgstr "Berechtigen" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:222 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:222 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:222 msgid "Ne pas autoriser" msgstr "Nicht berechtigen" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:37 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:37 msgid "Authorization code" msgstr "Autorisierungscode" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:60 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:60 msgid "Access code" msgstr "Zugangscode" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:66 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:66 msgid "" "Copy the code below, return to your application and paste the code to the " "right place." @@ -3678,14 +5178,17 @@ msgstr "" "fügen Sie die Kode am richtigen Ort ein." #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:46 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:46 msgid "Erreur lors de votre authentification" msgstr "Anmeldungsfehler" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:61 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:61 msgid "Vous etes authentifie avec succes" msgstr "Sie haben sich erfolgreich angemeldet." #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:67 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:67 msgid "" "Si cette fenetre ne se ferme pas automatiquement, fermez la, et " "raffraichissez votre compte" @@ -3694,31 +5197,252 @@ msgstr "" "aktualisieren Sie Ihr Konto." #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:57 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:57 msgid "Ce champ est decrit comme l'element DublinCore %element_name%" msgstr "Dieses Feld wird wie das DublinCore %element_name% Element beschrieben" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:63 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:63 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:83 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:147 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:63 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:63 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:128 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:83 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:127 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:63 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:83 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:83 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:147 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:127 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:63 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:83 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:93 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:93 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:128 msgid "Description" msgstr "Beschreibung" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:74 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:74 msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "Für weitere Informationen klicken Sie folgenden link %lien%" -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:55 -msgid "Return to login page" -msgstr "Zurück zum Login" +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:95 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:95 +msgid "Notify users about this publication" +msgstr "Die Benutzer über diese Veröffentlichung informieren" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:99 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:69 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:99 +msgid "publication : titre" +msgstr "Titel" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:107 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:77 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:107 +msgid "publication : sous titre" +msgstr "Untertitel" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:115 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:85 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:115 +msgid "publication : autheur" +msgstr "Autor" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:123 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:93 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:123 +msgid "publication : email autheur" +msgstr "Autor E-Mail" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:135 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:105 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:135 +msgid "Fils disponibles" +msgstr "verfügbare Threads" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:174 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:232 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:174 +msgid "This feed is public" +msgstr "Dieses Feed ist öffentlich" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:209 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:209 +msgid "boutton::publier" +msgstr "veröffentlichen" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:47 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 +msgid "Edition" +msgstr "Bearbeitung" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:145 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:57 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 +msgid "Sous-titre" +msgstr "Untertitel" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:150 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:62 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 +msgid "Short description" +msgstr "Kurzbeschreibung" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:159 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:69 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 +msgid "Etendue de la publication" +msgstr "Erweiterung der Veröffentlichung" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:170 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:75 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 +msgid "Non-Restreinte (publique)" +msgstr "Nicht eingeschränkt (öffentlich)" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:223 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:119 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 +msgid "Publique" +msgstr "öffentliche" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:245 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 +msgid "Liste des personnes habilitees a publier sur ce fil" +msgstr "Liste der Personen, die auf diesen Thread veröffentlichen dürfen" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:252 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 +msgid "Id" +msgstr "ID" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:257 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:171 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 +msgid "Email" +msgstr "Email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:261 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 +msgid "Owner" +msgstr "Besitzer" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:360 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 +msgid "Ajouter un publisher" +msgstr "einen Veröffentlicher hinzufügen" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:365 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 +msgid "Name or email" +msgstr "Name oder Email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:416 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 +msgid "You are not the feed owner" +msgstr "Sie sind nicht der Besitzer von diesem Feed" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:38 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:38 +msgid "report:: 1 - Periode" +msgstr "1 - Zeit" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:72 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:72 +msgid "report:: 2 - Bases" +msgstr "2 - Datenbanken" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:20 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:20 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 +msgid "Limite temporelle" +msgstr "zeitliche Beschränkung" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:27 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:27 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:125 +msgid "Base %base%" +msgstr "Datenbank %base%" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:50 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:488 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:58 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 +msgid "Activer" +msgstr "aktivieren" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:58 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:66 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 +msgid "De" +msgstr "von" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:73 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:81 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 +msgid "A" +msgstr "zu" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:52 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 +msgid "Le champ doit contenir %minLength% caracteres minimum." +msgstr "Dieses Feld muss min. %minLength% Zeichen beinhalten." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:65 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 +msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +msgstr "Dieses Feld muss max. %maxLength% Zeichen beinhalten." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:78 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 +msgid "Les indications donnees ci dessous sont a titre informatif." +msgstr "Diese Informationen dienen nur zur Orientierung." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:82 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 +msgid "" +"Si vous ne les respectez pas, les documents seront correctement indexes, " +"mais les metadonnees inscrites risquent d'etre erronnees" +msgstr "" +"Wenn Sie sie nicht beachten werden die Dokumente korrekt indiziert aber die " +"Metadaten könnten eventuell falsch sein." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:89 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 +msgid "" +"Ces informations sont directement fournies par la norme de metadonnees de ce " +"champ : %norm_name%" +msgstr "" +"Diese Informationen werden direkt von Metadaten Norm von diesem Feld: " +"%norm_name%" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:24 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:24 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:24 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:24 msgid "Details" msgstr "Details" @@ -3726,27 +5450,36 @@ msgstr "Details" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:381 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:41 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:25 msgid "Collection" msgstr "Kollektion" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:55 msgid "Subdef" msgstr "Unterauflösung" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:61 msgid "Number" msgstr "Anzahl" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:65 msgid "Weight" msgstr "Gewicht" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:111 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:163 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 msgid "Total" msgstr "Gesamt" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:194 msgid "Cumulative total" msgstr "Gesamtzahl" @@ -3764,147 +5497,284 @@ msgstr "Abmeldung" msgid "Back" msgstr "Zurück" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 -msgid "Voici vos validations en cours" -msgstr "Hier sind Ihre aktuellen Bewertungen" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:93 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:204 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:93 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:204 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:51 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:154 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:51 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:178 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:151 +msgid "Connection" +msgstr "Verbindung" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 -msgid "Voici vos paniers" -msgstr "Ihre Sammelkörbe" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:114 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:114 +msgid "Your account is locked, please follow the following link to unlock it" +msgstr "" +"Ihr Konto ist gesperrt, bitte folgen Sie das Link, um es freizuschalten" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:122 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:122 +msgid "login:: Envoyer a nouveau le mail de confirmation" +msgstr "Bitte senden Sie mir nochmals eine E-Mail Bestätigung" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:179 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:179 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:125 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:149 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:121 +msgid "Forgot password?" +msgstr "Passwort vergessen ?" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:234 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:82 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:234 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:177 +msgid "Or login with" +msgstr "Oder Anmeldung mit" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:54 msgid "%value% like" msgstr "%value% « Gefällt mir »" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:60 msgid "%value% likes" msgstr "%value% « Gefällt mir »" +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:46 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 +msgid "Download of documents" +msgstr "Download von Dokumenten" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:57 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 +msgid "" +"Please wait while your files are being gathered for the download, this " +"operation may take a few minutes." +msgstr "" +"Bitte warten Sie, während Dateien, die für den Download versammelt sind, " +"kann dieser Vorgang einige Minuten dauern." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:75 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 +msgid "" +"Your documents are ready. If the download does not start, %before_link%click " +"here%after_link%" +msgstr "" +"Ihre Dokumente sind fertig. Falls das Herunterladen nicht startet, bitte " +"%before_link%klicken Sie hier%after_link%" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:88 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 +msgid "The file contains the following elements" +msgstr "Die Datei enthält folgende Elemente" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:95 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 +msgid "Base" +msgstr "Datenbank" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:99 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:86 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:49 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:227 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +msgid "Name" +msgstr "Name" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:103 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 +msgid "Sub definition" +msgstr "Unterauflösung" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:107 +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:80 +msgid "Size" +msgstr "Grösse" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:111 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 +msgid "Thumbnail" +msgstr "Miniaturansicht" + #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:27 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:27 msgid "thesaurus:: export en topics" msgstr "Themen" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:118 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:118 msgid "thesaurus:: exporter" -msgstr "exportieren" +msgstr "Exportieren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:124 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:124 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "für alle Sprachen exportieren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:131 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:131 msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" msgstr "Export auf den Bildschirm für die Sprache %piv%" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:141 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:141 msgid "phraseanet:: tri" msgstr "Sortierung" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:147 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:147 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:533 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:537 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:533 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:537 msgid "phraseanet:: tri par date" msgstr "nach Datum sortieren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:157 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:157 msgid "thesaurus:: recherche" msgstr "Suche" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:163 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:163 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thesaurus:*\"Anfrage\"" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:170 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:170 msgid "thesaurus:: recherche fulltext" msgstr "volltext" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:177 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:177 msgid "thesaurus:: question complete (avec operateurs)" msgstr "vollständige Anfrage (mit Operators)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:187 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:187 msgid "thesaurus:: presentation" msgstr "Anzeigeoptionen" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:193 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:193 msgid "thesaurus:: presentation : branches refermables" msgstr "aktuelle Ansicht wiedergeben (verschliessene Verzweigungen)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:200 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:200 msgid "thesaurus:: presentation : branche ouvertes" msgstr "aktuelle Ansicht wiedergeben (geöffnete Verzweigungen)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:207 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:207 msgid "thesaurus:: tout deployer - refermable" msgstr "Alle aufklappen (verschliessbar)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:214 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:214 msgid "thesaurus:: tout deployer - statique" msgstr "Alle aufklappen (statisch)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:221 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:221 msgid "thesaurus:: tout fermer" msgstr "Alle zuklappen (mit Browsen)" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:104 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:104 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Gesamtzahl der einzelnen Benutzer " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:125 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:125 msgid "admin::monitor: utilisateur" msgstr "Benutzer" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:129 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:129 msgid "admin::monitor: modules" msgstr "Module" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:831 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1528 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:416 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1528 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:85 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:133 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 msgid "phraseanet:: adresse" msgstr "Adresse" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:137 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:137 msgid "admin::monitor: date de connexion" msgstr "Verbindungsdatum" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:141 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:141 msgid "admin::monitor: dernier access" msgstr "Letzter Zugriff" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:322 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:322 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "eingeloggte Datenbanken " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:358 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:358 msgid "Session persistente" msgstr "anhaltende Session" #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:35 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:35 msgid "Granted bases" msgstr "gewährte Datenbanken" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:31 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:35 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:31 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:35 msgid "Empty quarantine" msgstr "Quarantäne leeren" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:64 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:64 msgid "No document in quarantine" msgstr "Kein Dokument in der Quarantäne" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:73 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:73 msgid "You do not have enough rights to access quarantine" msgstr "Kein Zugriff auf die Quarantäne : fehlende Rechte" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:135 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:135 msgid "" "Empty quarantine will remove all items, are you sure you want to continue ?" msgstr "" @@ -3912,39 +5782,52 @@ msgstr "" "Fortfahren?" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:342 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:342 msgid "Last uploaded version" msgstr "zuletzte geladene Version" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:354 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:354 msgid "Filename" msgstr "Dateiname" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:360 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:360 msgid "Date" msgstr "Datum" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:374 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:374 msgid "Uploaded by : %username%" msgstr "von: %username% hochgeladen" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:427 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:431 msgid "Substitute" msgstr "Ersatz" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:466 msgid "A record matches the unique identifier :" msgstr "Ein Datensatz entspricht dem eindeutigen Bezeichner :" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:472 msgid "%record_count% records match the unique identifier :" msgstr "%record_count% Datensätze entsprechen dem eindeutigen Bezeichner :" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:26 msgid "No account yet?" msgstr "Noch keinen Zugang ?" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:36 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:38 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:36 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:35 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:36 #: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:35 #: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:36 #: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:38 @@ -3952,332 +5835,48 @@ msgid "Register" msgstr "Registrieren" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:39 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:39 msgid "reportage" msgstr "Reportage" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:45 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:45 msgid "image" msgstr "Bild" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:51 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:244 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:397 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:244 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:397 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:51 msgid "document" msgstr "Dokument" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:57 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:57 msgid "animation flash" msgstr "Flash Animation" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:63 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:63 msgid "video" msgstr "Video" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:69 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:69 msgid "audio" msgstr "Audio" -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 -msgid "thesaurus has been updated" -msgstr "Thesaurus wurde aktualisiert" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 -msgid "phraseanet:: thesaurus" -msgstr "Thesaurus" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 -msgid "" -"Thesaurus ou CTerms invalide\n" -" effacer (OK) ou quitter (Annuler) ?" -msgstr "" -"Thesaurus oder möglichen Begriffe ungültig\n" -"Löschen (OK) oder Beenden (abbrechen) ?" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 -msgid "First Name" -msgstr "Vorname" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 -msgid "Last Name" -msgstr "Nachname" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 -msgid "Email Name" -msgstr "Email Adresse" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 -msgid "Job" -msgstr "Beruf" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 -msgid "City" -msgstr "Stadt" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 -msgid "report:: 3 - Type de report" -msgstr "3 - Bericht Typ" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 -msgid "report:: (connexions) Par utilisateurs" -msgstr "pro Benutzer" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 -msgid "report:: Grouper par" -msgstr "von" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 -msgid "report:: (connexions) Globales" -msgstr "Allgemeine" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 -msgid "report:: (connexions) OS et navigateurs" -msgstr "pro Plattform und Webbrowser" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 -msgid "report:: par utilisateurs" -msgstr "Allgemein" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 -msgid "report:: (telechargement) Global" -msgstr "Allgemeine" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 -msgid "report:: (telechargement) Par jours base par base" -msgstr "täglich" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "pro Dokument, auf der Datenbank" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 -msgid "report::aucune precision" -msgstr "keine Filter" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 -msgid "report::la description contient" -msgstr "Die Beschreibung beinhaltet" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 -msgid "report:: recordid" -msgstr "recordid" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 -msgid "report:: toutes les questions" -msgstr "häufigsten Suchabfragen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 -msgid "report:: Les questions les plus posees" -msgstr "häufigsten gestellten Fragen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 -msgid "report:: document" -msgstr "Dokument" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 -msgid "report:: pushe" -msgstr "Pushed" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 -msgid "report:: ajoute" -msgstr "hinzugefügt" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 -msgid "report:: edite" -msgstr "bearbeitet" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 -msgid "report:: valide" -msgstr "Bestätigt" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 -msgid "Sent" -msgstr "gesendet" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "Ansicht Statistiken" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 -msgid "preview::statistiques de telechargement" -msgstr "Herunterladen Statistiken" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 -msgid "admin::base:collection: Creer une collection" -msgstr "eine Kollektion erstellen" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 -msgid "" -"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " -"collection" -msgstr "Kollektion wurde nicht erstellt: sie müssen einen Namen eingeben" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 -msgid "An error occured, please retry or contact an admin if problem persist" -msgstr "" -"Ein Fehler ist aufgetreten, bitte bitte wiederholen Sie oder wenden Sie sich " -"an Ihren Systemadministrator" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "Name : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 -msgid "" -"admin::base:collection: Vous pouvez choisir une collection de reference pour " -"donenr des acces " -msgstr "Benutzer und Rechte von der Kollektion anwenden : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 -msgid "choisir" -msgstr "wählen" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 -msgid "" -"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " -"pour continuer" -msgstr "" -"Sie sind zur Zeit abgemeldet. Loggen Sie sich bitte zuerst ein um " -"fortzusetzen zu können." - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 -msgid "login:: connexion" -msgstr "Einloggen" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 -msgid "boutton::refresh" -msgstr "Aktualisieren" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 -msgid "Suppression de %n_element% playlists" -msgstr "Löschen von %n_element% Playlisten" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "Sind Sie sicher, %number% Playlisten zu löschen?" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 -msgid "status:: numero de bit" -msgstr "Status Nummer" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 -msgid "admin::status: case A" -msgstr "Off" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 -msgid "admin::status: texte a afficher" -msgstr "Text angezeigt" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 -msgid "Labels" -msgstr "Labels" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 -msgid "Symbolized by" -msgstr "symbolisiert durch" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 -msgid "Select files..." -msgstr "Dateien auswählen..." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 -msgid "admin::status:: aucun symbole" -msgstr "Bildzeichen löschen" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 -msgid "admin::status: case B" -msgstr "On" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 -msgid "" -"status:: Afficher le status dans les feuilles de reponses pour tous les " -"utilisateurs" -msgstr "" -"Bildzeichen des Status oben der Miniaturansichten anzeigen, für alle " -"Benutzer (wenn ungewählt, werden nur die Benutzer, die die Status bearbeiten " -"können, die Status sehen)" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "Status Suche in der erweiterten Suche aktivieren" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 -msgid "" -"Invalid file type, only (%supported_file_types%) file formats are supported" -msgstr "" -"ungültiger Dateityp, nur (%supported_file_types%) Dateitypen werden " -"unterstützt" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 -msgid "veuillez choisir au minimum une collection" -msgstr "Mindestens eine Kollektion muss ausgewählt werden" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 -msgid "report::Heures" -msgstr "Module" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 -msgid "report::Nombre de connexions" -msgstr "Verbindungen" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 -#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 -msgid "report:: jour" -msgstr "Tag" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 -msgid "report:: Heures" -msgstr "Stunden" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 -msgid "report::Nombre de document ajoute" -msgstr "Anzahl von hinzugefügten Dokumenten" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 -msgid "report::Nombre de document edite" -msgstr "Anzahl von bearbeiteten Dokumenten" - +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:25 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:31 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:25 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:31 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:649 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:781 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:944 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1025 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1196 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:25 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:31 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:649 @@ -4287,27 +5886,48 @@ msgstr "Anzahl von bearbeiteten Dokumenten" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1196 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:25 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:31 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:25 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:31 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:25 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:31 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:25 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:31 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:25 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:31 msgid "boutton::precedent" msgstr "vorherige" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:37 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:37 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:37 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:37 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:37 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:37 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:37 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:37 msgid "boutton::demarrer" msgstr "Dia Show" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:43 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:43 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:43 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:43 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:43 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:43 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:43 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:43 msgid "boutton::pause" msgstr "Pause" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:49 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:55 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:49 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:55 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:539 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:655 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:787 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:950 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1031 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:49 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:55 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:539 @@ -4317,185 +5937,912 @@ msgstr "Pause" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1031 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:49 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:55 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:49 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:55 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:49 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:55 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:49 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:55 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:49 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:55 msgid "boutton::suivant" msgstr "folgende" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:61 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:61 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:61 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:61 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:266 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:61 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:61 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:266 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:61 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:61 msgid "boutton::telecharger" msgstr "download" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 -msgid "client::answers: rapport de questions par bases" -msgstr "Suchabfragen Bericht" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:27 +msgid "thesaurus has been updated" +msgstr "Thesaurus wurde aktualisiert" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 -msgid "client::answers: %available_results% reponses" -msgstr "%available_results% Ergebnisse" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:46 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:247 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:30 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:267 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:29 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:310 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 +msgid "phraseanet:: thesaurus" +msgstr "Thesaurus" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 -msgid "action : ajouter au panier" -msgstr "Zum Sammelkorb hinzufügen" - -#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 -msgid "Security" -msgstr "Sicherheit" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 -msgid "Client application" -msgstr "Client Anwendung" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 -msgid "Application" -msgstr "Anwendung" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 -msgid "settings OAuth" -msgstr "OAuth Einstellungen" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 -msgid "Les parametres oauth de votre application." -msgstr "Die oauth Parameter Ihrer Applikation" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 -msgid "URL de callback" -msgstr "Callback URL" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 -msgid "Modify" -msgstr "verändern" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 -msgid "Activer le grant_type de type password pour votre application" -msgstr "Passwort Typgenehmigung für Ihre Anwendung aktivieren" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 -msgid "Votre token d'access" -msgstr "Ihr Zugriff Token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 -msgid "Les paramétres oauth de votre application." -msgstr "Ihre Anwendung OAuth Parameter" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 -msgid "Token" -msgstr "Token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 -msgid "Le token n'a pas encore ete genere" -msgstr "das Token wurde nicht noch erstellt" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 -msgid "boutton::generer" -msgstr "erstellen" - -#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "häufigsten Suchabfragen in %home_title%" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:101 +msgid "" +"Thesaurus ou CTerms invalide\n" +" effacer (OK) ou quitter (Annuler) ?" +msgstr "" +"Thesaurus oder möglichen Begriffe ungültig\n" +"Löschen (OK) oder Beenden (abbrechen) ?" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:60 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:30 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:37 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:211 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:30 #: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:30 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:35 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:263 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:35 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:233 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:220 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:37 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:35 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:233 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:30 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:60 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:35 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:263 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:220 msgid "Upload" msgstr "upload" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:136 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 +msgid "nouveau" +msgstr "neu" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:146 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 +msgid "Vers quel API voulez vous vous connecter ?" +msgstr "Mit welchem API möchten Sie sich verbinden ?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:203 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 +msgid "Aucun bridge disponible. Veuillez contacter un administrateur." +msgstr "Bridge unverfügbar. Bitte kontaktieren Sie einen Administrator." + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:320 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 +msgid "You are about to delete this account. Would you like to continue ?" +msgstr "Der Zugang wird gelöscht. Möchten Sie fortfahren?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:463 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:376 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:376 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 +msgid "Loading" +msgstr "Ladend" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:558 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:54 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:52 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:52 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:54 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:52 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:558 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:52 msgid "Vous n'avez selectionne aucun element" msgstr "Sie haben kein Element ausgewählt." +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:567 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 +msgid "Vous n'avez pas assez de droits sur les elements selectionnes" +msgstr "Sie haben nicht genügende Rechte auf die ausgewählte Elemente." + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:576 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 +msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" +msgstr "Sie haben nicht genügende Rechte auf einige ausgewählte Elemente." + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:152 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:269 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:411 +msgid "report:: 3 - Type de report" +msgstr "3 - Bericht Typ" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:165 +msgid "report:: (connexions) Par utilisateurs" +msgstr "pro Benutzer" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:178 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:282 +msgid "report:: Grouper par" +msgstr "von" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:209 +msgid "report:: (connexions) Globales" +msgstr "Allgemeine" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:219 +msgid "report:: (connexions) OS et navigateurs" +msgstr "pro Plattform und Webbrowser" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:313 +msgid "report:: par utilisateurs" +msgstr "Allgemein" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:326 +msgid "report:: (telechargement) Global" +msgstr "Allgemeine" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:336 +msgid "report:: (telechargement) Par jours base par base" +msgstr "täglich" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:346 +msgid "report:: (telechargement) Par documents sur la base" +msgstr "pro Dokument, auf der Datenbank" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:351 +msgid "report::aucune precision" +msgstr "keine Filter" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:355 +msgid "report::la description contient" +msgstr "Die Beschreibung beinhaltet" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:359 +msgid "report:: recordid" +msgstr "recordid" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:428 +msgid "report:: toutes les questions" +msgstr "häufigsten Suchabfragen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:438 +msgid "report:: Les questions les plus posees" +msgstr "häufigsten gestellten Fragen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:468 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 +msgid "report:: document" +msgstr "Dokument" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:475 +msgid "report:: pushe" +msgstr "Pushed" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:481 +msgid "report:: ajoute" +msgstr "hinzugefügt" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:487 +msgid "report:: edite" +msgstr "bearbeitet" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:493 +msgid "report:: valide" +msgstr "Bestätigt" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:499 +msgid "Sent" +msgstr "gesendet" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:51 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:48 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 +msgid "Inscription" +msgstr "Anmeldung" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:57 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 +msgid "Complete the fields below to register on %instance_title%!" +msgstr "" +"Füllen Sie die Felder unten aus, um auf %instance_title% zu registrieren !" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:153 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:149 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 +msgid "I have read the terms of use" +msgstr "Ich habe die Nutzungsbedingungen gelesen" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:210 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:210 +msgid "Request access" +msgstr "Zugriff anfordern" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:41 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:41 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:41 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 +msgid "Edition de 1 element" +msgstr "Bearbeitung von 1 Element" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:99 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:132 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:178 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:159 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:197 +msgid "Tags" +msgstr "Tags" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:115 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:99 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:160 +msgid "Categorie" +msgstr "Kategorie" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:148 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:148 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:204 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:234 +msgid "Confidentialite" +msgstr "Vertraulichkeit" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:158 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:158 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 +msgid "privé" +msgstr "privat" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:168 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:168 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:221 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:251 +msgid "public" +msgstr "öffentlich" + +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:43 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:43 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 +msgid "Playlist" +msgstr "Playlist" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:66 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 +msgid "General settings" +msgstr "Allgemeine Einstellungen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:68 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 +msgid "your configuration" +msgstr "Ihre Konfiguration" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:79 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 +msgid "all caches services have been flushed" +msgstr "Alle Cache Dienste wurden gespüllt" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:94 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 +msgid "setup:: administrateurs de l'application" +msgstr "Anwendung Administratoren" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:130 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 +msgid "Add an admin" +msgstr "einen Administrator hinzufügen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:147 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 +msgid "setup:: Reinitialisation des droits admins" +msgstr "die Rechte von Administratoren zurücksetzen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:151 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 +msgid "boutton::reinitialiser" +msgstr "Zurücksetzen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:166 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 +msgid "setup::Tests d'envois d'emails" +msgstr "Test E-Mail Überprüfungen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:184 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 +msgid "Email test result : %email_status%" +msgstr "E-Mail Test Ergebnis: %email_status%" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:206 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 +msgid "Reset cache" +msgstr "Den Cache zurücksetzen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:258 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 +msgid "Requirements" +msgstr "Anforderungen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:308 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 +msgid "Recommendations" +msgstr "Empfehlungen" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:27 +msgid "preview::statistiques de visualisation pour le lien" +msgstr "Ansicht Statistiken" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:58 +msgid "preview::statistiques de telechargement" +msgstr "Herunterladen Statistiken" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:285 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:22 +msgid "admin::base:collection: Creer une collection" +msgstr "eine Kollektion erstellen" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:34 +msgid "" +"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " +"collection" +msgstr "Kollektion wurde nicht erstellt: sie müssen einen Namen eingeben" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:45 +msgid "An error occured, please retry or contact an admin if problem persist" +msgstr "" +"Ein Fehler ist aufgetreten, bitte bitte wiederholen Sie oder wenden Sie sich " +"an Ihren Systemadministrator" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:61 +msgid "admin::base:collection: Nom de la nouvelle collection : " +msgstr "Name : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:406 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:70 +msgid "" +"admin::base:collection: Vous pouvez choisir une collection de reference pour " +"donenr des acces " +msgstr "Benutzer und Rechte von der Kollektion anwenden : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:411 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1871 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:85 +msgid "choisir" +msgstr "wählen" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:24 +msgid "" +"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " +"pour continuer" +msgstr "" +"Sie sind zur Zeit abgemeldet. Loggen Sie sich bitte zuerst ein um " +"fortzusetzen zu können." + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:35 +msgid "login:: connexion" +msgstr "Einloggen" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:69 +msgid "boutton::refresh" +msgstr "Aktualisieren" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:56 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:56 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 +msgid "Vous devez remplir les champs requis" +msgstr "Sie müssen die erforderlichen Felder ausfüllen" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:35 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:35 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 +msgid "status:: numero de bit" +msgstr "Status Nummer" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:49 +msgid "admin::status: case A" +msgstr "Off" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:55 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:175 +msgid "admin::status: texte a afficher" +msgstr "Text angezeigt" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:93 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:213 +msgid "Labels" +msgstr "Labels" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:124 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:244 +msgid "Symbolized by" +msgstr "symbolisiert durch" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:412 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:69 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:132 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:252 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:399 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:455 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:511 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:567 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:123 +msgid "Select files..." +msgstr "Dateien auswählen..." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:154 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:274 +msgid "admin::status:: aucun symbole" +msgstr "Bildzeichen löschen" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:169 +msgid "admin::status: case B" +msgstr "On" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:294 +msgid "" +"status:: Afficher le status dans les feuilles de reponses pour tous les " +"utilisateurs" +msgstr "" +"Bildzeichen des Status oben der Miniaturansichten anzeigen, für alle " +"Benutzer (wenn ungewählt, werden nur die Benutzer, die die Status bearbeiten " +"können, die Status sehen)" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:304 +msgid "status:: retrouver sous forme de filtre dans la recherche" +msgstr "Status Suche in der erweiterten Suche aktivieren" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:696 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:350 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:594 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:146 +msgid "" +"Invalid file type, only (%supported_file_types%) file formats are supported" +msgstr "" +"ungültiger Dateityp, nur (%supported_file_types%) Dateitypen werden " +"unterstützt" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:43 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:43 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 +msgid "Quarantine" +msgstr "Quarantäne" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:70 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:77 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 +msgid "maximum : %maxFileSizeReadable%" +msgstr "Maximum : %maxFileSizeReadable%" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:77 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:84 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 +msgid "You are using the Flash uploader." +msgstr "Sie benutzen den Flash Uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:87 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 +msgid "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" +msgstr "" +"Diese Version erlaubt nicht einen Zugriff auf alle HTML5 Uploader Funktionen." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:94 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 +msgid "Use the HTML5 uploader" +msgstr "Benutzen Sie den HTML5 Uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:104 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:118 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 +msgid "upload:: Destination (collection) :" +msgstr "Kollektion" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:191 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:202 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 +msgid "upload:: Status :" +msgstr "Status" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:287 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:354 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 +msgid "You can not upload files" +msgstr "Sie dürfen Dateien nicht hochladen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:299 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 +msgid "Selected files" +msgstr "ausgewählte Dateien" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:303 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:308 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 +msgid "Clear list" +msgstr "Liste löschen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:318 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:324 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 +msgid "Transmited files" +msgstr "Übermittelte Dateien" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:324 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:336 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 +msgid "Cancel all" +msgstr "Alle abbrechen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:457 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 +msgid "You have attempted to queue too many files" +msgstr "Sie haben versucht, zuviele Dateien anzustehen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:464 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 +msgid "Unknow Error" +msgstr "Unbekannter Fehler" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:474 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 +msgid "Cannot upload Zero Byte files" +msgstr "Kann nicht Null-Byte Dateien hochladen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:480 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:584 +msgid "Invalid file type" +msgstr "Ungültiger Dateityp" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:487 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 +msgid "Unhandled Error" +msgstr "Unbehandelte Fehler" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:520 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 +msgid "Unknow reason" +msgstr "Unbekannter Grund" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:527 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 +msgid "Bad request, please contact an admin" +msgstr "Bad Request. Bitte kontaktieren Sie einen Administrator." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:533 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 +msgid "Upload URL is not set, please contact an admin" +msgstr "" +"Upload URL wurde nicht gesetzt, bitte kontaktieren Sie einen Administrator." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:539 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 +msgid "Connection terminates unexpetecdly, please retry" +msgstr "Verbindung beendet unerwartet. Bitte wiederholen." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:545 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 +msgid "The upload violates a security restriction, please retry" +msgstr "Upload verletzt eine Sicherheitseinschränkung, bitte wiederholen." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:551 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 +msgid "File upload limit (%maxFileSizeReadable%) has been reached" +msgstr "Datei-Upload Begrenzung (%maxFileSizeReadable%) wurde erreicht." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:557 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 +msgid "Could not initiate upload, please retry" +msgstr "Upload konnte nicht initialisieren werden. Bitte wiederholen." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:563 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 +msgid "" +"Could not retrieve the file ID, please retry or contact an admin if problem " +"persist" +msgstr "" +"Datei-ID konnte nicht abgerufen werden. Bitte versuchen Sie es einmal oder " +"kontaktieren Sie\r\n" +"einen Administrator, wenn das Problem bestehen bleibt." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:569 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 +msgid "File validation failed" +msgstr "Dateivalidierung ist fehlgeschlagen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:575 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 +msgid "File upload has been cancelled" +msgstr "Datei-Upload wurde abgebrochen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:581 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 +msgid "File upload has been stopped" +msgstr "Datei-Upload wurde gestoppt" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:588 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 +msgid "Error while uploading" +msgstr "Fehler beim Hochladen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:682 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 +msgid "Please select at least one valid file" +msgstr "Bitte wählen Sie mindestens eine gültige Datei aus." + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:80 +msgid "client::answers: rapport de questions par bases" +msgstr "Suchabfragen Bericht" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:101 +msgid "client::answers: %available_results% reponses" +msgstr "%available_results% Ergebnisse" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:50 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 +msgid "Completion of your registration" +msgstr "Ausfüllen von Ihrer Registrierung" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:69 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 +msgid "Please complete the information to complete your registration" +msgstr "" +"Bitte füllen Sie die Information aus, um Ihre Registrierung abzuschliessen" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:134 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 +msgid "Mandatory fields" +msgstr "Pflichtfelder" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:173 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 +msgid "Resquest access" +msgstr "Zugangsanforderung" + +#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 +#: tmp/cache_twig/aa/4e/eb6c877afea8239b78d4f3a1e02a6a5341ad8ea4fef1456ffc2c5532dae9.php:23 +msgid "Security" +msgstr "Sicherheit" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:35 +msgid "Client application" +msgstr "Client Anwendung" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:46 +msgid "Application" +msgstr "Anwendung" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:68 +msgid "settings OAuth" +msgstr "OAuth Einstellungen" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:72 +msgid "Les parametres oauth de votre application." +msgstr "Die oauth Parameter Ihrer Applikation" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:94 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:157 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 +msgid "URL de callback" +msgstr "Callback URL" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:126 +msgid "Modify" +msgstr "verändern" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:151 +msgid "Activer le grant_type de type password pour votre application" +msgstr "Passwort Typgenehmigung für Ihre Anwendung aktivieren" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:173 +msgid "Votre token d'access" +msgstr "Ihr Zugriff Token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:177 +msgid "Les paramétres oauth de votre application." +msgstr "Ihre Anwendung OAuth Parameter" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:186 +msgid "Token" +msgstr "Token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:202 +msgid "Le token n'a pas encore ete genere" +msgstr "das Token wurde nicht noch erstellt" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:212 +msgid "boutton::generer" +msgstr "erstellen" + +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:62 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 +msgid "Create an account manually" +msgstr "Ein Konto manuell erstellen" + +#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 +#: tmp/cache_twig/b7/0f/7aa39ae06305bf2523f0b48646f315a3568a7f17c1336ef36524a7646498.php:169 +msgid "report:: Volumetrie des questions posees sur %home_title%" +msgstr "häufigsten Suchabfragen in %home_title%" + #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:58 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:56 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:56 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:58 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:56 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:56 msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" msgstr "" "Die Elemente können nicht hochgeladen werden (Typ oder Rechte Problem)." #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:61 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:61 msgid "Le bridge FlickR ne prend en charge que les photos" msgstr "Flickr Bridge unterstützt nur Fotos" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:71 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:71 msgid "%n_elements% elements ne peuvent etre uploades" msgstr "%n_elements% Elemente können nicht hochgeladen werden" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:83 #, php-format msgid "Upload sur Flickr de %elements_length% elements" msgstr "Upload on Flickr of %elements_length% elements" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 -msgid "Titre" -msgstr "Titel" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 -msgid "Tags" -msgstr "Tags" - #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:197 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:197 msgid "2000 caracteres maximum, separe par des espaces" msgstr "2000 Zeichen max., durch Leerzeichen getrennt" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:40 -msgid "report:: 1 - Periode" -msgstr "1 - Zeit" - -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:70 -msgid "report:: 2 - Bases" -msgstr "2 - Datenbanken" +#: tmp/cache_twig/40/63/092bad36e7ddb1be21251c76b7ae07f9bd347b7e0a473d74c9344f5ae86c.php:54 +#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 +msgid "Incorrect please try again" +msgstr "Falsch, bitte versuchen Sie es erneut" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:39 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:39 msgid "Change my email address" msgstr "meine E-Mail Adresse verändern" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:89 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:89 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Neue E-Mail Adresse" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:99 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:99 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "E-mail Adresse bestätigen" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:120 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:120 msgid "" "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " "changer mon adresse email ?" msgstr "Warum brauche ich mein Passwort um meine E-mail Adresse zu ändern?" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:125 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:125 msgid "" "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " "perte de votre mot de passe afin de pouvoir le reinitialiser, il est " @@ -4505,31 +6852,69 @@ msgstr "" "Passwort vergessen haben und zurücksetzen wollen. Nur der E-mail Besitzer " "kannmit seinem account das Passwort ändern" +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:84 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:91 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 +msgid "You are using the HTML5 uploader." +msgstr "Sie benutzen den HTML5 Uploader" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:97 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 +msgid "Your browser does not support all HTML5 features properly." +msgstr "Ihr Browser unterstützt nicht alle HTML5 Funktionen richtig." + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:107 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 +msgid "Use the Flash uploader" +msgstr "Benutzen Sie den Flash Uploader" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:304 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 +msgid "%quantity%selected files" +msgstr "%quantity% ausgewählte Dateien" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:33 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 +msgid "admin::base: objet" +msgstr "Objekt" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:37 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 +msgid "admin::base: nombre" +msgstr "Anzahl" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:41 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:45 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 +msgid "admin::base: poids" +msgstr "Größe" + #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:33 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:33 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:33 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:33 msgid "Creer une playlist" msgstr "eine neue Playlist erstellen" #: tmp/cache_twig/43/8b/3aebe83dca4c51e99b80c87c269b.php:26 +#: tmp/cache_twig/5a/95/cbfb14ffec5d45fdbe9e888e221cfd3d5c2185e3d55529cf005d7b2069b8.php:26 msgid "Technical Informations" msgstr "technische Informationen" -#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 -#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 -#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 -msgid "boutton::modifier" -msgstr "ändern" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:213 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:213 msgid "Create new subdef" msgstr "Neuen subdef erstellen" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:217 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:217 msgid "Delete the subdef ?" -msgstr "subdef löschen?" +msgstr "Subdef löschen?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:223 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:223 msgid "" "These subdef will be permanently deleted and cannot be recovered. Are you " "sure?" @@ -4538,88 +6923,106 @@ msgstr "" "werden. Fortfahren?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:234 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:234 msgid "Subdef name" msgstr "Subdef Name" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:239 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:239 msgid "classe d'acces" msgstr "Zugriff Klasse" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:248 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:405 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:248 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:405 msgid "preview" msgstr "Voransicht" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:252 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:413 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:252 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:413 msgid "tout le monde" msgstr "Alle" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:359 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:359 msgid "Telechargeable" msgstr "Herunterladbar" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:377 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:389 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:377 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:389 msgid "classe" msgstr "Klasse" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:439 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:439 msgid "Write Metas" msgstr "Meta schreiben" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:460 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:460 msgid "mediatype" msgstr "Media Typ" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 -msgid "Choisir" -msgstr "wählen" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:639 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:207 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:178 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:178 msgid "yes" msgstr "Ja" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:648 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:213 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:174 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:174 #: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:61 msgid "no" msgstr "Nein" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:29 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:29 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:29 msgid "Fail" msgstr "Fehler" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1359 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:35 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1359 msgid "Success" msgstr "Erfolg" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:110 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:110 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:110 msgid "Erreur" msgstr "Fehler" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:117 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:117 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:117 msgid "%error%" msgstr "%error%" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:133 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:133 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:133 msgid "Code d'acces" msgstr "Zugangscode" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:140 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:140 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:140 msgid "" "Copiez le code ci-dessous, retournez dans votre application et collez-le " "à l'endroit requis :" @@ -4627,577 +7030,124 @@ msgstr "" "Kopieren Sie bitte einfach den untenstehenden Code, gehen Sie in Ihrer " "Anwendung zurück und fügen Sie ihn am angeforderten Ort ein :" -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 -#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 -msgid "thesaurus:: export au format texte" -msgstr "Text" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 -msgid "thesaurus:: options d'export : " -msgstr "Export " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 -msgid "thesaurus:: example" -msgstr "Beispiel" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "Synonyme(n) auf die selbe Zeile" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "Eine Zeile nach Synonym" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "Zeilen nummern " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 -msgid "thesaurus:: export : inclure la langue" -msgstr "die Sprache beinhalten" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 -msgid "thesaurus:: export : inclure les hits" -msgstr "Anzahl der Ergebnisse beinhalten" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 -msgid "Do not forget to restart the tasks scheduler" -msgstr "Vergessen Sie nicht, den Aufgabe Scheduler neuzustarten" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 -msgid "version" -msgstr "Version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 -msgid "admin::base: Version" -msgstr "Version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "Ihre Anwendung erfordert eine Aktualiserung zu: " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 -msgid "update::Votre version est a jour : " -msgstr "Ihre Version ist aktuell " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 -msgid "Propositions de modifications des tables" -msgstr "Vorschläge für die Veränderungen der Tabellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 -msgid "update::Verifier els tables" -msgstr "Tabellen wiederherstellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 -msgid "admin::base: creer une base" -msgstr "eine neue Datenbank erstellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -msgid "" -"phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "eine neue Datenbank auf einem anderen Server erstellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 -msgid "phraseanet:: hostname" -msgstr "Host Name" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 -msgid "phraseanet:: port" -msgstr "Schnittstelle" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 -msgid "phraseanet:: user" -msgstr "Benutzer" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 -msgid "phraseanet:: password" -msgstr "Passwort" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 -msgid "phraseanet:: dbname" -msgstr "Datenbank Name" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 -msgid "phraseanet:: Modele de donnees" -msgstr "XML Struktur Vorlage" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "boutton::creer" -msgstr "suchen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 -msgid "admin::base: Monter une base" -msgstr "eine Datenbank erstellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 -msgid "" -"phraseanet:: Monter une base provenant d'un serveur different de " -"l'application box" -msgstr "Datenbank von entferntem Host erstellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 -msgid "boutton::monter" -msgstr "erstellen" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 -msgid "Inscription" -msgstr "Anmeldung" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 -msgid "Create an account manually" -msgstr "Ein Konto manuell erstellen" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 -msgid "Or login with" -msgstr "Oder Anmeldung mit" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 -msgid "Connection" -msgstr "Verbindung" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 -msgid "Your account is locked, please follow the following link to unlock it" -msgstr "" -"Ihr Konto ist gesperrt, bitte folgen Sie das Link, um es freizuschalten" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "Bitte senden Sie mir nochmals eine E-Mail Bestätigung" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 -msgid "Forgot password?" -msgstr "Passwort vergessen ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 -msgid "element(s)" -msgstr "Element(e)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 -msgid "User contribute to the feedback" -msgstr "Benutzer darf Feedback geben" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 -msgid "User can see others choices" -msgstr "Benutzer darf die andere Auswahlen sehen" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 -msgid "User can download HD" -msgstr "Benutzer darf HD herunterladen" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "New list name ?" -msgstr "Neuer Name der Liste?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Are you sure you want to delete this list ?" -msgstr "Wollen Sie diese Liste sicher löschen?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "Time for feedback (days)" -msgstr "Zeit für Feedback (Tage)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Name" -msgstr "Name" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Message" -msgstr "Nachricht" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Accuse de reception" -msgstr "Empfangsbestätigung" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 -msgid "Apparait aussi dans ces reportages" -msgstr "ercheint auch in diesen Reportagen" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 -msgid "Apparait aussi dans ces paniers" -msgstr "erscheint auch in diesen Sammelkörben" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 -msgid "%displayName% wants to place an order" -msgstr "%displayName% möchtet, eine Bestellung aufzugeben" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 -msgid "Destinataire" -msgstr "Empfänger" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 -msgid "Date de commande" -msgstr "Bestelldatum" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 -msgid "Nombre total d'element commandes" -msgstr "Gesamtanzahl von bestellten Dokumenten" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 -msgid "" -"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " -"elements correspondants aux collections sur lesquelles vous gerez les " -"commandes" -msgstr "" -"Es ist möglich, dass Sie nicht alle Dokumente sehen können. Sie sehen nur " -"die Bestandteile der Kollektionen in denen Sie Bestellungen verwalten können." - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 -msgid "Document refuse par %name%" -msgstr "Dokument wurde von %name% abgelehnt" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 -msgid "Forcer l'envoi du document" -msgstr "Senden des Dokumentes außer Kraft setzen" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 -msgid "Document envoye par %name%" -msgstr "Dokument wurde von %name% gesendet" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 -msgid "Selectionnez des documents et " -msgstr "Wählen sie Dokumente und " - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "verweigern" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 -msgid "Retour aux commandes" -msgstr "Zurück zur Bestellung" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 -msgid "Story_id" -msgstr "Bericht_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 -msgid "Record_id" -msgstr "Record_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 -msgid "Nom Original" -msgstr "Originaler Name" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 -msgid "Size" -msgstr "Grösse" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 -msgid "Camera Model" -msgstr "Kameramodell" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 -msgid "Color space" -msgstr "Farbraum" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 -msgid "Channels" -msgstr "Kanäle" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 -msgid "Color Depth" -msgstr "Farbtiefe" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 -msgid "ISO sensibility" -msgstr "ISO Empfindlichkeit" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 -msgid "Flash" -msgstr "Flash" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 -msgid "Shutter speed" -msgstr "Verschlusszeit" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 -msgid "Aperture" -msgstr "Blende" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 -msgid "Focal length" -msgstr "Brennweite" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 -msgid "Hyperfocal distance" -msgstr "Hyperfokale Entfernung" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 -msgid "Light Value" -msgstr "Lichtwert" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 -msgid "Duree" -msgstr "Dauer" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 -msgid "Images par secondes" -msgstr "Bilder pro Sekunde" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 -msgid "Codec Audio" -msgstr "Audio Codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 -msgid "Codec Video" -msgstr "Video Codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 -msgid "Frequence d'echantillonage" -msgstr "Abtastfrequenz" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 -msgid "Back to basket list" -msgstr "Zurück zur Sammelkörbe Liste" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 -msgid "No records" -msgstr "Keine Datensätze" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 -msgid "1 record" -msgstr "1 Datensatz" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 -msgid "%ElementsCount% records" -msgstr "%ElementsCount% Datensätze" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 -msgid "Fichiers envoyes" -msgstr "Dateien gesendet" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 -msgid "phraseanet:: deconnection" -msgstr "Abmeldung" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 -msgid "Terms of service" -msgstr "Nutzungsbedingungen" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 -msgid "Quarantine" -msgstr "Quarantäne" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 -msgid "maximum : %maxFileSizeReadable%" -msgstr "Maximum : %maxFileSizeReadable%" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 -msgid "You are using the HTML5 uploader." -msgstr "Sie benutzen den HTML5 Uploader" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 -msgid "Your browser does not support all HTML5 features properly." -msgstr "Ihr Browser unterstützt nicht alle HTML5 Funktionen richtig." - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 -msgid "Use the Flash uploader" -msgstr "Benutzen Sie den Flash Uploader" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 -msgid "upload:: Destination (collection) :" -msgstr "Kollektion" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 -msgid "upload:: Status :" -msgstr "Status" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 -msgid "%quantity%selected files" -msgstr "%quantity% ausgewählte Dateien" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 -msgid "Clear list" -msgstr "Liste löschen" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 -msgid "Transmited files" -msgstr "Übermittelte Dateien" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 -msgid "Cancel all" -msgstr "Alle abbrechen" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 -msgid "You can not upload files" -msgstr "Sie dürfen Dateien nicht hochladen" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 -msgid "Limite temporelle" -msgstr "zeitliche Beschränkung" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 -msgid "Base %base%" -msgstr "Datenbank %base%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 -msgid "Collection %collection%" -msgstr "%collection% Kollektion" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 -msgid "Activer" -msgstr "aktivieren" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 -msgid "De" -msgstr "von" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 -msgid "A" -msgstr "zu" - +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:65 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:65 msgid "Erreur lors du contact avec le serveur WEB" msgstr "Fehler beim Kontakt mit WebServer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:69 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:69 msgid "Delai depasse lors du contact avec le serveur WEB" msgstr "Zeit überschritten beim Kontakt mit Web Server" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:73 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:73 msgid "Required" msgstr "erforderlich" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:77 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:77 msgid "forms::merci d'entrer une adresse e-mail valide" msgstr "Bitte geben Sie eine gültige E-Mail Adresse ein" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:81 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:85 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:81 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:85 msgid "forms::ce champ est requis" msgstr "Dieses Feld ist erforderlich" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:89 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:89 msgid "forms::les mots de passe ne correspondent pas" msgstr "Die Passwörter sind nicht gleich" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:93 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:93 msgid "Vous devez specifier une adresse email et un mot de passe valides" msgstr "Sie müssen eine gültige E-Mail Adresse und Passwort eingeben" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:97 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:97 msgid "Le nom de base de donnee est incorrect" msgstr "falsche Datenbankname" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:101 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:101 msgid "Il y a des erreurs, merci de les corriger avant de continuer" msgstr "" "Fehler bei der Eingabe. Bitte korrigieren Sie diese bevor Sie fortfahren" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:108 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:108 msgid "forms::le mot de passe est trop similaire a l'identifiant" msgstr "Ihr Passwort ist Ihrem Benutzernamen zu ähnlich" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:112 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:112 msgid "forms::la valeur donnee est trop courte" msgstr "zu kurz" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:116 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:120 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:116 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:120 msgid "forms::le mot de passe est trop simple" msgstr "Zu einfach" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:124 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:124 msgid "forms::le mot de passe est bon" msgstr "Gut" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:128 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:128 msgid "forms::le mot de passe est tres bon" msgstr "Sehr gut" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:174 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:174 msgid "Veuillez corriger les erreurs avant de poursuivre" msgstr "Bitte korrigieren Sie die Fehler bevor Sie fortsetzen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:319 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:319 msgid "Successfull connection" msgstr "Erfolgreiche Verbindung" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:325 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:325 msgid "Warning, this database is not empty" msgstr "Achtung: Diese Datenbank ist nicht leer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:338 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:338 msgid "Connection is OK but database does not exists or can not be accessed" msgstr "" "Verbindung ist OK aber die Datenbank existiert nicht oder es kann nicht " "zugegriffen werden" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:345 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:357 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:365 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:345 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:357 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:365 msgid "Unable to connect to MySQL server" msgstr "Es ist nicht möglich eine Verbindung zum MySQL-Server aufzubauen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:417 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:417 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Hallo! Sie sind im Begriff Phraseanet IV zu installieren." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:423 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:423 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "" "Bitte lesen Sie Online die Voraussetzungen und die Web-Server Konfiguration" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:429 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:429 msgid "" "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage " @@ -5208,6 +7158,7 @@ msgstr "" "Sie müssen auch Ihre Web Server einstellen, um einige Ablageordner zu " "veröffentlichen." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:439 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:439 msgid "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " @@ -5216,26 +7167,32 @@ msgstr "" "Bevor Sie fortfahren, lesen Sie die folgenden Punkte. Sie können ohne " "Korrektur dieser Probleme fortsetzen." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:499 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:499 msgid "Review system configuration" msgstr "Systemkonfiguration prüfen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:521 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:521 msgid "Prerequisite and Configuration" msgstr "Voraussetzungen und Konfiguration" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:555 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:555 msgid "Executables externes" msgstr "externe ausführbare Programme" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:598 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:598 msgid "Required field" msgstr "Pflichtfeld" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:622 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:622 msgid "Phraseanet may require many binaries." msgstr "Phraseanet kann mehrere Binärprogramme erfordern" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:628 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:628 msgid "" "Some of them are required, like the indexer, Exiftool or ImageMagick " @@ -5245,30 +7202,37 @@ msgstr "" "Einige sind benötigt, wie den Indizierer, Exiftool oder ImageMagick. Einige " "sind fakultativ, wie FFmpeg (benutzt, um Videodateien anzusehen)." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:634 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:634 msgid "Don't worry, You can modify your configuration later" msgstr "Keine Sorge: Sie können die Konfiguration später verändern." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:673 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:673 msgid "Creation de votre compte" msgstr "Erstellung Ihres Benutzerkontos" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:685 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:685 msgid "Votre adresse email" msgstr "Ihre Email Adresse" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:692 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:692 msgid "Votre mot de passe" msgstr "Ihr Passwort" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:711 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:711 msgid "Confirmation de votre mot de passe" msgstr "Passwort Bestätigung" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:721 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:721 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "über die Sicherheit den Passwörtern" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:725 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:725 msgid "" "admin::compte-utilisateur Les mots de passe doivent etre clairement " @@ -5278,55 +7242,79 @@ msgstr "" "Passwörter müssen eindeutig von Benutzernamen sein und mindestens zwei " "Zeichen enthalten, unter diesen :" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:730 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:730 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Sonderzeichen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:734 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:734 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Grossbuchstaben" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:738 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:738 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Kleinbuchstaben" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:742 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:742 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Digitale" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:762 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:762 msgid "Your email will be used to log in the application." msgstr "Ihre Email wird für Ihre Anmeldung benötigt" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:766 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:766 msgid "Please be sure it is still valid and you can access it" msgstr "" "Bitte beachten Sie, dass sie immer noch gültig ist und das Sie einen Zugriff " "darauf haben" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:811 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:811 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "Konfiguration der ApplicationBox Konto-Datenbank" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:824 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1060 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:824 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1060 msgid "MySQL database connection parameters" msgstr "MySQL Datenbank Verbindungsparameter" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:838 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:838 msgid "Database user" msgstr "Datenbank Benutzer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:852 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 +#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:247 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:328 +msgid "phraseanet:: port" +msgstr "Schnittstelle" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:859 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1075 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:859 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1075 msgid "Database" msgstr "Datenbank" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:867 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1083 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:867 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1083 msgid "boutton::tester" msgstr "Prüfen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:887 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:887 msgid "" "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage " @@ -5335,10 +7323,12 @@ msgstr "" "Sollten Sie noch mehrere Parameter benötigen, %debut_lien%mehr Optionen " "anzeigen%fin_lien%" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:906 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:906 msgid "ApplicationBox is a Mysql database." msgstr "ApplicationBox ist eine MySQL Datenbank" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:912 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:912 msgid "" "It stores users datas, rights, and references to DataBoxes where records are " @@ -5347,6 +7337,7 @@ msgstr "" "Es speichert Benutzer Daten, Rechte und Referenzen zu DataBoxes, wo " "Datensätze gespeichert werden." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:924 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:924 msgid "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " @@ -5355,14 +7346,17 @@ msgstr "" "Phraseanet empfiehlt dringend die Benutzung von %link_start%MariaDB%link_end" "%, um MySQL zu ersetzen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:968 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:968 msgid "setup::Configuration des repertoires de stockage" msgstr "Konfiguration von den Ablageordnern" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:980 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:980 msgid "Repertoire de stockage des fichiers" msgstr "Ablageordner der Dateien" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:998 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:998 msgid "" "Your medias and their subdefinitions (previews, thumbnails..) will be stored " @@ -5371,6 +7365,7 @@ msgstr "" "Ihre Media und Unterauflösungen (Voransichten, Miniaturansichten..) werden " "in diese Verzeichnisse gespeichert." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1004 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1004 msgid "" "Thumbnails directory is mounted to be accessible via HTTP, while other files " @@ -5379,6 +7374,7 @@ msgstr "" "Miniaturansichtenverzeichnis wird befestigt, um durch HTTP erreichbar zu " "werden, aber andere Dateien nicht." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1010 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1010 msgid "" "If you plan to store large files, be sure it will fit in these directories." @@ -5386,22 +7382,27 @@ msgstr "" "Wenn Sie vorhaben, grossen Dateien zu speichern, bitte vergewissern Sie, " "dass sie in diese Verzeichnisse einpassen werden." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1048 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1048 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Konfiguration der DataBox SpeicherDatenbank" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1067 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1067 msgid "Ne pas creer de DataBox maintenant" msgstr "Databox nicht nun erstellen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1095 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1095 msgid "Modele de donnees" msgstr "Daten-Templates" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1126 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1126 msgid "Creation des taches" msgstr "Erstellung von Aufgaben" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1131 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1131 msgid "" "Phraseanet embarque un moteur de taches pour la lecture / ecriture des " @@ -5410,18 +7411,22 @@ msgstr "" "Phraseanet hat eine Aufgabe Suchmaschine für das Lesen/Schreiben der " "Metadaten und andere Arbeitsgänge" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1142 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1142 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Aufgabe erstellen für das Schreiben der Metadaten" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1151 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1151 msgid "Creer la tache de creation des sous-definitions" msgstr "Aufgabe erstellen für die Unterauflösungen Erstellungen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1160 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1160 msgid "Creer la tache d'indexation" msgstr "Indexierung Aufgabe erstellen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1177 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1177 msgid "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " @@ -5430,39 +7435,649 @@ msgstr "" "Phraseanet DataBoxes sind MySQL Datenbanken, die von Phraseanet " "ApplicationBox abgefragt werden können." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1181 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1181 msgid "Databoxes store records, metadatas and their classifications" msgstr "Databoxes speichern Datensätze, Metadaten und ihre Klassifizierungen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1202 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1202 msgid "button::Install" msgstr "Installation" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1212 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1212 msgid "Install in progess" msgstr "Installation wird durchgeführt" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1218 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1218 msgid "Installation is currenlty processing, please wait..." msgstr "Installation wird derzeit bearbeitet, bitte warten Sie..." +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:76 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 +msgid "%nb_elements% elements" +msgstr "%nb_elements% Bestandteile" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:158 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 +msgid "Imagette indisponible" +msgstr "Vorschaubild nicht verfügbar" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:207 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 +msgid "Aucune description." +msgstr "Keine Beschreibung" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:229 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 +msgid "dans %category%" +msgstr "in %category%" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:245 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 +msgid "Confidentialite : privee" +msgstr "Datenschutz: privat" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:251 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 +msgid "Confidentialite : publique" +msgstr "Datenschutz: öffentlich" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:71 +msgid "Do not forget to restart the tasks scheduler" +msgstr "Vergessen Sie nicht, den Aufgabe Scheduler neuzustarten" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:101 +msgid "version" +msgstr "Version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:132 +msgid "admin::base: Version" +msgstr "Version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:140 +msgid "update::Votre application necessite une mise a jour vers : " +msgstr "Ihre Anwendung erfordert eine Aktualiserung zu: " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:148 +msgid "update::Votre version est a jour : " +msgstr "Ihre Version ist aktuell " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:189 +msgid "Propositions de modifications des tables" +msgstr "Vorschläge für die Veränderungen der Tabellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:217 +msgid "update::Verifier els tables" +msgstr "Tabellen wiederherstellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:225 +msgid "admin::base: creer une base" +msgstr "eine neue Datenbank erstellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 +msgid "" +"phraseanet:: Creer une base sur un serveur different de l'application box" +msgstr "eine neue Datenbank auf einem anderen Server erstellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 +msgid "phraseanet:: hostname" +msgstr "Host Name" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:252 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:333 +msgid "phraseanet:: user" +msgstr "Benutzer" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:257 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:338 +msgid "phraseanet:: password" +msgstr "Passwort" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:263 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:344 +msgid "phraseanet:: dbname" +msgstr "Datenbank Name" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:268 +msgid "phraseanet:: Modele de donnees" +msgstr "XML Struktur Vorlage" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:297 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 +msgid "boutton::creer" +msgstr "suchen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:306 +msgid "admin::base: Monter une base" +msgstr "eine Datenbank erstellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:317 +msgid "" +"phraseanet:: Monter une base provenant d'un serveur different de " +"l'application box" +msgstr "Datenbank von entferntem Host erstellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 +msgid "boutton::monter" +msgstr "erstellen" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:27 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 +msgid "%displayName% wants to place an order" +msgstr "%displayName% möchtet, eine Bestellung aufzugeben" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:82 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 +msgid "Destinataire" +msgstr "Empfänger" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:94 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 +msgid "Date de commande" +msgstr "Bestelldatum" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:124 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 +msgid "Nombre total d'element commandes" +msgstr "Gesamtanzahl von bestellten Dokumenten" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:136 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 +msgid "" +"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " +"elements correspondants aux collections sur lesquelles vous gerez les " +"commandes" +msgstr "" +"Es ist möglich, dass Sie nicht alle Dokumente sehen können. Sie sehen nur " +"die Bestandteile der Kollektionen in denen Sie Bestellungen verwalten können." + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:179 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 +msgid "Document refuse par %name%" +msgstr "Dokument wurde von %name% abgelehnt" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:188 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 +msgid "Forcer l'envoi du document" +msgstr "Senden des Dokumentes außer Kraft setzen" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:211 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 +msgid "Document envoye par %name%" +msgstr "Dokument wurde von %name% gesendet" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:259 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 +msgid "Selectionnez des documents et " +msgstr "Wählen sie Dokumente und " + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:266 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:95 +#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 +msgid "Deny" +msgstr "verweigern" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:270 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 +msgid "Retour aux commandes" +msgstr "Zurück zur Bestellung" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:37 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 +msgid "you are about to change the representation thumbnail of your video" +msgstr "Sie werden jetzt die Darstellung der Video Miniaturansicht verändern" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:47 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 +msgid "do you want to validate" +msgstr "Möchten Sie bestätigen?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:69 +msgid "element(s)" +msgstr "Element(e)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:111 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:115 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 +msgid "User contribute to the feedback" +msgstr "Benutzer darf Feedback geben" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:122 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:126 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +msgid "User can see others choices" +msgstr "Benutzer darf die andere Auswahlen sehen" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:133 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:137 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:279 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:283 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 +msgid "User can download HD" +msgstr "Benutzer darf HD herunterladen" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:157 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +msgid "New list name ?" +msgstr "Neuer Name der Liste?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:167 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +msgid "Are you sure you want to delete this list ?" +msgstr "Wollen Sie diese Liste sicher löschen?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +msgid "Time for feedback (days)" +msgstr "Zeit für Feedback (Tage)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:234 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +msgid "Message" +msgstr "Nachricht" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:243 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +msgid "Accuse de reception" +msgstr "Empfangsbestätigung" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:27 +msgid "Apparait aussi dans ces reportages" +msgstr "ercheint auch in diesen Reportagen" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:73 +msgid "Apparait aussi dans ces paniers" +msgstr "erscheint auch in diesen Sammelkörben" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:28 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 +msgid "Save all changes" +msgstr "Alle Änderungen speichern" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:40 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 +msgid "Close" +msgstr "schliessen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:44 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 +msgid "Ok" +msgstr "OK" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:56 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 +msgid "Live search" +msgstr "Live Suche" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:74 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:80 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 +msgid "Add a new field" +msgstr "ein neues Feld hinzufügen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:108 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:189 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 +msgid "Multivalued" +msgstr "mehrwertiges" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:133 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 +msgid "Order" +msgstr "bestellen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:174 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 +msgid "DCES" +msgstr "DCES" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:197 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 +msgid "Advanced field parameters" +msgstr "erweiterte Felder Parameter" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:203 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 +msgid "Thesaurus branch" +msgstr "Thesaurus Sprung" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:210 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 +msgid "Type" +msgstr "Typ" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:225 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 +msgid "Vocabulary type" +msgstr "Wortschatz Typ" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:243 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 +msgid "Limited vocabulary" +msgstr "begrenzter Wortschatz" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:255 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 +msgid "Business Fields" +msgstr "Geschäftsfelder" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:263 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 +msgid "Separator" +msgstr "Trennzeichen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:270 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 +msgid "Display & action settings" +msgstr "Anzeige und Aktions-Einstellungen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:279 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 +msgid "Mandatory" +msgstr "erforderlich" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:290 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 +msgid "Indexable" +msgstr "indizierbar" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:301 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 +msgid "Read-only" +msgstr "schreibgeschützt" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:320 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 +msgid "Display thumbnails" +msgstr "Vorschaubilder anschauen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:326 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 +msgid "Tous" +msgstr "Alle" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:330 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 +msgid "Aucun" +msgstr "Kein(e)" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:395 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 +msgid "Current configuration contains some errors" +msgstr "Die aktuelle Konfiguration beinhaltet einige Fehler" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:22 +msgid "Story_id" +msgstr "Bericht_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:30 +msgid "Record_id" +msgstr "Record_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:50 +msgid "Nom Original" +msgstr "Originaler Name" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:130 +msgid "Camera Model" +msgstr "Kameramodell" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:144 +msgid "Color space" +msgstr "Farbraum" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:158 +msgid "Channels" +msgstr "Kanäle" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:172 +msgid "Color Depth" +msgstr "Farbtiefe" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:186 +msgid "ISO sensibility" +msgstr "ISO Empfindlichkeit" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:200 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:651 +msgid "Flash" +msgstr "Flash" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:226 +msgid "Shutter speed" +msgstr "Verschlusszeit" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:240 +msgid "Aperture" +msgstr "Blende" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:254 +msgid "Focal length" +msgstr "Brennweite" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:268 +msgid "Hyperfocal distance" +msgstr "Hyperfokale Entfernung" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:282 +msgid "Light Value" +msgstr "Lichtwert" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:298 +msgid "Duree" +msgstr "Dauer" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:312 +msgid "Images par secondes" +msgstr "Bilder pro Sekunde" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:326 +msgid "Codec Audio" +msgstr "Audio Codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:340 +msgid "Codec Video" +msgstr "Video Codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:354 +msgid "Frequence d'echantillonage" +msgstr "Abtastfrequenz" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:28 +msgid "Back to basket list" +msgstr "Zurück zur Sammelkörbe Liste" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:171 +msgid "No records" +msgstr "Keine Datensätze" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:177 +msgid "1 record" +msgstr "1 Datensatz" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:183 +msgid "%ElementsCount% records" +msgstr "%ElementsCount% Datensätze" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:152 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:152 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 +msgid "Fichiers envoyes" +msgstr "Dateien gesendet" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:169 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:169 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:418 +msgid "phraseanet:: deconnection" +msgstr "Abmeldung" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:234 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:234 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 +msgid "Terms of service" +msgstr "Nutzungsbedingungen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:35 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 +msgid "Client applications" +msgstr "Client Anwendungen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:48 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 +msgid "Mes applications" +msgstr "meine Anwendungen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:83 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 +msgid "button::supprimer" +msgstr "Löschen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:101 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 +msgid "Are you sure you want to delete this application?" +msgstr "Sind Sie sicher, diese Anwendung zu löschen?" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:107 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 +msgid "No" +msgstr "Nein" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:113 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:55 +msgid "Yes" +msgstr "Ja" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:156 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 +msgid "Aucune application creee." +msgstr "keine Anwendung erstellt" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:168 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 +msgid "Decouvrez la documentation" +msgstr "Lesen Sie die Dokumentation" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:173 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 +msgid "Demarrer avec l'API Phraseanet" +msgstr "Mit dem Phraseanet API beginnen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:180 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 +msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +msgstr "" +"Erstellen Sie zuerst eine Applikation, um das Phraseanet API danach zu " +"benutzen." + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:188 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 +msgid "Creer une nouvelle applications" +msgstr "eine neue Anwendung erstellen" + +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:35 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:133 +msgid "Collection %collection%" +msgstr "%collection% Kollektion" + #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:44 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:44 msgid "Votre recherche ne retourne aucun resultat" msgstr "Ihre Suche gibt kein Ergebnis zurück." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:76 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:76 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "Die Suche wird mit dem Dialogfenster links oben vorgeführt" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:79 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:79 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "Sie dürfen die folgende Operator- und Sonderzeichen benutzen:" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:83 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:83 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" @@ -5471,42 +8086,52 @@ msgstr "" "LAST , ALL)" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:88 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:88 msgid "Caractères de troncature" msgstr "abgeschnittene Zeichen" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:95 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:95 msgid "auto*" msgstr "auto*" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:99 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:99 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "gibt \"automatisch\", \"autobahn\", \"automobilverkäufer\", ..." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:105 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:105 msgid "dé?it" msgstr "Na?e" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:109 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:109 msgid "retourne \"délit\", \"débit\", ..." msgstr "gibt \"Name\" , \"Nase\"" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:116 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:116 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "Alle / die letzten Datensätze ansehen" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:122 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:122 msgid "TOUT" msgstr "ALLES" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:126 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:126 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "gibt die Datensätze der ausgewählte Kollektionen" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:132 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:132 msgid "LAST 20" msgstr "LETZTE 20" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:136 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:136 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" @@ -5515,10 +8140,12 @@ msgstr "" "sind" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:143 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:143 msgid "Recherche multicritères" msgstr "Multikriterien Suche" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:147 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:147 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" @@ -5527,40 +8154,49 @@ msgstr "" "ODER, OHNE oder IN verfeinern" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:153 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:153 msgid "sport" msgstr "Sport" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:155 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:155 msgid "automobile" msgstr "Automobil" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:159 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:159 msgid "retourne les documents comprenant les deux mots." msgstr "gibt die Dokumente, die die 2 Wörter beinhalten" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:165 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:165 msgid "journal OU jt" msgstr "Hauptbahnhof ODER hbf" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:169 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:169 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "gibt die Dokumente, die ein Wort und/oder das andere beinhaltet" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:175 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:175 msgid "cannes SAUF festival" msgstr "Oktoberfest OHNE Bier" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:179 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:179 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "" "gibt die Dokumente, die das Wort \"Oktoberfest\" ohne das Wort \"Bier\" " "beinhaltet" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:185 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:185 msgid "thalassa DANS titre" msgstr "Wiesn IN Titel" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:189 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:189 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." @@ -5569,12 +8205,15 @@ msgstr "" "Beispiel vermeidet er diese, wo der Begriff nur im Beschreibung ist." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:120 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:197 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:120 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "Vorsicht" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:201 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:201 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" @@ -5583,557 +8222,700 @@ msgstr "" "Sie die Anführungszeichen :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:205 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:205 msgid "C dans l'air" msgstr "Tagesschau" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:209 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:209 msgid "Et Dieu créa la femme" msgstr "Das Leben der Anderen" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:213 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:213 msgid "bijou en or" msgstr "in einem solchen Fall" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:217 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:217 msgid "tout le sport" msgstr "alle vier Jahre" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:36 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:36 msgid "Forgotten password" msgstr "vergessenes Passwort" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:49 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:49 msgid "Forgot your password?" msgstr "Passwort vergessen?" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:55 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:55 msgid "Enter your e-mail address to retrieve your password" msgstr "Geben Sie bitte Ihre E-Mail Adresse ein, um Ihr Passwort abzurufen" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:70 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:70 msgid "report :: configurer le tableau" msgstr "Tabelle konfigurieren" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:79 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:79 msgid "report :: imprimer le tableau" msgstr "Tabelle drucken" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:127 msgid "%total_count% results" msgstr "%total_count% Ergebnisse" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:173 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:177 msgid "Trier" msgstr "Ordnen" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:204 msgid "Filtrer" msgstr "Filtern" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:208 msgid "report :: filtrer" msgstr "filter" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:219 msgid "Grouper" msgstr "Gruppieren" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:223 msgid "report :: grouper" msgstr "Gruppe" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:389 msgid "report :: aucun resultat trouve" msgstr "keine Filter" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:188 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:188 msgid "Chargement" msgstr "Ladend" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:452 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:235 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:239 msgid "phraseanet:: propositions" msgstr "Vorschläge" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:258 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:258 msgid "Close the WorkZone" msgstr "WorkZone schliessen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:284 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:284 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:291 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:291 msgid "prod::thesaurusTab:candidats" msgstr "mögliche Begriffe" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:306 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:306 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "mögliche Begriffe annehmen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:312 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:312 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "ersetzen durch den Begriff" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:419 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:320 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:588 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 msgid "boutton::rechercher" msgstr "suchen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:368 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:436 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:368 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:436 msgid "chargement" msgstr "Verladung" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:477 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:483 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:487 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:483 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:487 msgid "action:: nouveau panier" msgstr "Neuer" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:494 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:500 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:494 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:500 msgid "Browse Baskets" msgstr "Sammelkörbe durchsuchen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:511 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:517 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:521 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:511 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:517 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:521 msgid "action:: nouveau reportage" msgstr "Neuer Bericht" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:545 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:549 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:545 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:549 msgid "phraseanet:: tri par nom" msgstr "alphabetische Sortierung" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:557 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1658 msgid "Preferences" msgstr "Einstellungen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:583 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:583 msgid "Advanced Search" msgstr "Erweiterte Suche" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:397 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:606 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1049 msgid "phraseanet::type:: documents" msgstr "Dokumente" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:405 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:618 msgid "phraseanet::type:: reportages" msgstr "Berichte" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:631 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:631 msgid "Tout type" msgstr "Bildschirmtyp" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:635 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:635 msgid "Image" msgstr "Bild" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:639 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:639 msgid "Video" msgstr "Video" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:643 msgid "Audio" msgstr "Audio" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:647 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:647 msgid "Document" msgstr "Dokument" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:478 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:668 msgid "boutton:: selectionner toutes les bases" msgstr "Alle" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:482 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:673 msgid "boutton:: selectionner aucune base" msgstr "Keine" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 -msgid "Re-initialiser" -msgstr "Zurücksetzen" - #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:693 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:693 msgid "Trier par " msgstr "Sortieren nach " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:745 msgid "rechercher par stemme" msgstr "nach Theme suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:755 msgid "Les termes apparaissent dans le(s) champs" msgstr "Die Begriffe befinden sich in Feld(er):" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:760 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:941 msgid "rechercher dans tous les champs" msgstr "Alle Felder" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:801 msgid "Status des documents a rechercher" msgstr "Zustand der Dokumente zu suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:913 msgid "Rechercher dans un champ date" msgstr "im Feld \"Datum\" suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:703 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:950 msgid "phraseanet::time:: de" msgstr "von" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:709 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:960 msgid "phraseanet::time:: a" msgstr "zu" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1022 msgid "reponses:: selectionner tout" msgstr "alles" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1031 msgid "reponses:: selectionner rien" msgstr "nichts" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1040 msgid "phraseanet::type:: images" msgstr "Bilder" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1058 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1067 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1538 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Über Abkürzungen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1543 msgid "Raccourcis claviers en cours de recherche : " msgstr "Hauptfenster Abkürzungen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1548 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1584 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : alles auswählen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1552 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1588 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : drucken " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1556 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1592 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : Auswahl bearbeiten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1560 msgid "Raccourcis::fleche gauche : page precedente " msgstr "Linkspfeil: vorherige Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1564 msgid "Raccourcis::fleche droite : page suivante " msgstr "Rechtspfeil: nächste Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1568 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "Pfeil oben: vertikal scrollen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1572 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "Abwärtspfeil: vertikal scrollen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1579 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Sammelkörbe und Funktionen Abkürzungen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1599 msgid "Raccourcis claviers en cours de editing : " msgstr "Fenster Abkürzungen bearbeiten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1604 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : Feld ändern " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1611 msgid "Raccourcis claviers en cours de preview : " msgstr "Fenster Abkürzungen, Detailansicht " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1616 msgid "Raccourcis::fleche gauche : en avant " msgstr "Rechtspfeil: nächstes Dokument " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1620 msgid "Raccourcis::fleche gauche : en arriere " msgstr "Abwärtspfeil: letztes Dokument " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1624 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "Dia-Schau starten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1632 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : Sie können die meiste Teile der Overlay Fenster schliessen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1643 msgid "raccourcis :: ne plus montrer cette aide" msgstr "diese Hilfe nicht mehr anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1664 msgid "Affichage" msgstr "Anzeige" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1668 msgid "Configuration" msgstr "Konfiguration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1676 msgid "Mode de presentation" msgstr "Anzeigemodus" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1691 msgid "reponses:: mode vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1703 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1710 msgid "Theme" msgstr "Thema" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1719 msgid "Selecteur de theme" msgstr "Thema Selektor" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1741 msgid "Presentation de vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1752 msgid "Iconographe (description au rollover)" msgstr "Bildredakteur (Beschreibung mit Rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1764 msgid "Graphiste (preview au rollover)" msgstr "Grafiker (Voransicht mit Rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1774 msgid "Informations techniques" msgstr "Technische Informationen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1785 msgid "Afficher" msgstr "zeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1797 msgid "Afficher dans la notice" msgstr "in Beschreibung zeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1809 msgid "Ne pas afficher" msgstr "verstecken" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1819 msgid "Type de documents" msgstr "Dokumenttyp" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1830 msgid "Afficher une icone" msgstr "eine Ikone anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1839 msgid "reponses:: images par pages : " msgstr "Suchergebnisse nach Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1852 msgid "reponses:: taille des images : " msgstr "Miniaturansichtengrösse " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1866 msgid "Couleur de selection" msgstr "Farbauswahl" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1881 msgid "Affichage au demarrage" msgstr "beim Start anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1897 msgid "Ma derniere question" msgstr "meine letzte Suchabfrage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1908 msgid "Une question personnelle" msgstr "eine persönliche Frage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1930 msgid "Aide" msgstr "die Hilfe" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:987 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1977 msgid "preview:: Description" msgstr "Beschreibung" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:991 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1981 msgid "preview:: Historique" msgstr "Historie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:995 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1988 msgid "preview:: Popularite" msgstr "Beliebtheit" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2037 msgid "Presentation de vignettes de panier" msgstr "Vorstellung der Voransichten des Sammelkorbes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2055 msgid "Afficher les status" msgstr "die Zustände anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2075 msgid "Afficher la fiche descriptive" msgstr "das beschriftliche Blatt anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2095 msgid "Afficher le titre" msgstr "den Titel anzeigen" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 -msgid "%nb_elements% elements" -msgstr "%nb_elements% Bestandteile" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:38 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:53 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:38 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:40 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +msgid "Login" +msgstr "Benutzername" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 -msgid "Imagette indisponible" -msgstr "Vorschaubild nicht verfügbar" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 -msgid "Aucune description." -msgstr "Keine Beschreibung" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 -msgid "dans %category%" -msgstr "in %category%" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 -msgid "Confidentialite : privee" -msgstr "Datenschutz: privat" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 -msgid "Confidentialite : publique" -msgstr "Datenschutz: öffentlich" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:70 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:94 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 +msgid "Login to link your account" +msgstr "Einloggen, um Ihr Konto zu verknüpfen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:43 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:43 msgid "forms::operation effectuee OK" msgstr "Änderungen wurden hergestellt" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:81 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:81 msgid "admin::base: Alias" msgstr "Alias" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:99 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:99 msgid "Rename" msgstr "umbenennen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:112 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Anzahl von Datensätzen auf der Datenbank" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:122 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:107 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:122 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:107 msgid "phraseanet:: details" msgstr "Einzelheiten" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:133 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:133 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "einzelne Wörter : " #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:142 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:142 msgid "admin::base: nombre de mots indexes sur la base" msgstr "indexierte Wörter :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:155 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:155 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "indexierte Thesaurus-Begriffe:" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:174 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:174 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Volltext indexierte Dokumente" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:185 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:185 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Thesaurus indexierte Dokumente" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:210 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:210 msgid "admin::base: Cette base est indexable" msgstr "Indexierung in dieser Datenbank möglich" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:268 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:271 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:268 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:271 msgid "Set labels" msgstr "Labels einstellen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:296 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:296 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "das Löschen aller Logdateien bestätigen?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:301 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:301 msgid "admin::base: supprimer tous les logs" msgstr "Alle Logdateien löschen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:312 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:312 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Ende der Datenbankveröffentlichung bestätigen?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:317 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:317 msgid "admin::base: arreter la publication de la base" msgstr "Veröffentlichung stoppen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:328 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:328 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Ganze Leerung der Datenbank bestätigen?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:333 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:333 msgid "admin::base: vider la base" msgstr "Datenbank leeren" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:344 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:344 msgid "admin::base: Confirmer la suppression de la base" msgstr "Löschen der Datenbank bestätigen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:349 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:349 msgid "admin::base: supprimer la base" msgstr "Datenbank löschen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:361 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:361 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Bestätigen Sie die Re- Indizierung der Datenbank?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:365 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:365 msgid "base:: re-indexer" msgstr "" "Jetzt die Datenbank neu indexieren (Dieser Vorgang kann bei vielen " @@ -6141,22 +8923,28 @@ msgstr "" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:379 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:438 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:379 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:438 msgid "admin::base:collection: Monter une collection" msgstr "eine Kollektion erstellen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:397 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:397 msgid "Monter" msgstr "erstellen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:466 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:466 msgid "Activer une collection" msgstr "eine Kollektion aktivieren" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:510 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:510 msgid "admin::base: logo impression PDF" msgstr "Logo für das PDF-Drucken" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:526 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:526 msgid "admin::base:collection: supprimer le logo" msgstr "Logo löschen" @@ -6165,129 +8953,107 @@ msgstr "Logo löschen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:536 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:389 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:445 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:501 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:557 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Keine Datei" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:546 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:546 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Ein Logo senden (Höhe ist 35 px max., JPEG)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:569 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 msgid "admin::base: aucun alias" msgstr "Kein Alias" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 -msgid "Download of documents" -msgstr "Download von Dokumenten" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:107 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 +msgid "E-Mail" +msgstr "Email" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 -msgid "" -"Please wait while your files are being gathered for the download, this " -"operation may take a few minutes." -msgstr "" -"Bitte warten Sie, während Dateien, die für den Download versammelt sind, " -"kann dieser Vorgang einige Minuten dauern." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:143 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 +msgid "Last Template" +msgstr "Letzte Schablone" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 -msgid "" -"Your documents are ready. If the download does not start, %before_link%click " -"here%after_link%" -msgstr "" -"Ihre Dokumente sind fertig. Falls das Herunterladen nicht startet, bitte " -"%before_link%klicken Sie hier%after_link%" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:161 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 +msgid "Creation date" +msgstr "Erstellungsdatum" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 -msgid "The file contains the following elements" -msgstr "Die Datei enthält folgende Elemente" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 -msgid "Base" -msgstr "Datenbank" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 -msgid "Sub definition" -msgstr "Unterauflösung" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 -msgid "Thumbnail" -msgstr "Miniaturansicht" - -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 -msgid "Login" -msgstr "Benutzername" +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:22 +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:27 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:22 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:27 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 +msgid "validation::envoyer mon rapport" +msgstr "Meinen Bericht senden" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:60 msgid "Your %provider_name% account matchs a Phraseanet account" msgstr "Ihr %provider_name% Konto entspricht einem vorhandenen Konto" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 -msgid "Login to link your account" -msgstr "Einloggen, um Ihr Konto zu verknüpfen" - #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:192 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:192 msgid "These informations do not match?" msgstr "Daten stimmen nicht überein?" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:204 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:204 msgid "Use my Phraseanet account" msgstr "Mein Phraseanet Konto benutzen" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:59 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:59 msgid "Le bridge Youtube ne prend en charge que les videos" msgstr "YouTube Bridge unterstützt nur Videos" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:63 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:63 msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" msgstr "Auf YouTube dürfen Sie nur ein Element gleichzeitig hochladen." #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:100 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:100 msgid "100 caracteres maximum" msgstr "100 Zeichen max." #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:133 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:133 msgid "2000 caracteres maximum" msgstr "2000 Zeichen max." -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 -msgid "Categorie" -msgstr "Kategorie" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:203 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:203 msgid "500 caracteres maximum" msgstr "500 Zeichen max." #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:207 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:207 msgid "separe par un espace" msgstr "durch Leerzeichen getrennt" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 -msgid "Confidentialite" -msgstr "Vertraulichkeit" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:241 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:211 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:241 msgid "prive" msgstr "privat" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 -msgid "public" -msgstr "öffentlich" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:279 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:279 msgid "" "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " "le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " @@ -6301,127 +9067,160 @@ msgstr "" "Nutzungsbedingungen entspricht: %lien_term_youtube%." #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:299 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:299 msgid "Retour" msgstr "Zurück" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:24 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:24 msgid "Nom du nouveau panier" msgstr "Titel" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:30 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:30 msgid "paniers::description du nouveau panier" msgstr "Beschreibung" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:38 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:59 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:38 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:59 msgid "Ajouter ma selection courrante" msgstr "Meine aktuelle Auswahl hinzufügen" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:34 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:34 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:277 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:277 msgid "phraseanet:: preview" msgstr "Voransicht" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:41 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:41 msgid "print:: image de choix seulement" msgstr "Voransicht" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:48 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:48 msgid "print:: image de choix et description" msgstr "Voransicht und Bildunterschrift" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:55 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:55 msgid "print:: image de choix et description avec planche contact" msgstr "Voransicht und Bildunterschrift mit Mosaikansicht" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:66 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:66 msgid "print:: imagette" msgstr "Miniaturansicht" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:73 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:73 msgid "print:: liste d'imagettes" msgstr "Miniaturansichten Liste" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:80 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:80 msgid "print:: planche contact (mosaique)" msgstr "Mosaikansicht" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:99 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:99 msgid "boutton::imprimer" -msgstr "drucken" +msgstr "Drucken" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:109 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:109 msgid "None of the selected records can be printed" msgstr "Keine der ausgewählte Datensätze können gedruckt werden" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:115 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:115 msgid "export:: erreur : aucun document selectionne" msgstr "Fehler: kein ausgewähltes Dokument" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:118 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:118 msgid "Quotas" msgstr "Quoten" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:139 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:139 msgid "Restrictions de telechargement" msgstr "Download Einschränkungen" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:153 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:147 #: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:147 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:153 msgid "Restriction" msgstr "Einschränkung" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:161 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:161 msgid "Droits" msgstr "Rechte" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:169 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:169 msgid "par mois" msgstr "pro Monat" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:173 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:173 msgid "Reste" msgstr "Rückstand" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:35 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:35 msgid "Granted third party applications" msgstr "gewährte Drittanwendungen" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:47 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:47 msgid "Vous avez autorise ces applications a acceder a votre compte" msgstr "" "Sie haben dieser Applikationen eine Zugriffsberechtigung auf Ihr Konto " "erteilt" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:77 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:77 msgid "Revoquer l'access" msgstr "Zugriff widerrufen" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:89 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:89 msgid "Authoriser l'access" msgstr "Zugriff genehmigen" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:111 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:111 msgid "par %user_name%" msgstr "von %user_name%" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:125 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:125 msgid "Not Allowed" msgstr "Nicht erlaubt" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:133 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:133 msgid "Allowed" msgstr "Erlaubt" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:155 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:155 msgid "Aucune application n'a accés à vos données." msgstr "Keine Anwendung hat einen Zugriff auf Ihre Daten" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:167 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:167 msgid "Third-party applications" msgstr "Drittanwendungen" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:172 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:172 msgid "" "A third-party application is a product developed apart from Phraseanet and " "that would access Phraseanet data." @@ -6430,10 +9229,12 @@ msgstr "" "und das auf Phraseanet Daten einen Zugriff haben kann." #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:180 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:180 msgid "Developpeurs" msgstr "Entwickler" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:185 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:185 msgid "" "Les developpeurs peuvent editer l'enregistrement de leurs application grace " "a l'onglet 'developpeurs' ci-dessus" @@ -6442,217 +9243,294 @@ msgstr "" "Tab \"Entwickler\" unten benutzen." #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:20 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:20 msgid "SphinxSearch search-engine configuration" msgstr "Sphinx Search Suchmachine Konfiguration" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:29 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:29 msgid "Sphinx Search connection configuration" msgstr "Sphinx Search Anschlusskonfiguration" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:34 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:34 msgid "Sphinx Search server" msgstr "Sphinx Search Server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:46 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:46 msgid "Sphinx Search RealTime server" msgstr "Sphinx Search RealTime Server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:59 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:59 msgid "Charset to use for indexation" msgstr "Zeichensatz für die Indexierung zu benutzen" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:85 msgid "Date fields available for search" msgstr "verfügbare Datumsfelder für die Suche" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:35 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:364 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 +msgid "paniers:: %nb_basket_elements% documents dans le panier" +msgstr "%nb_basket_elements% Dokumente im Sammekorb" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:62 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 +msgid "paniers::categories: mes paniers" +msgstr "Meine Sammelkörbe" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:91 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 +msgid "paniers::categories: paniers recus" +msgstr "Sammelkörben erhalten" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:168 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 +msgid "action : ouvrir dans le comparateur" +msgstr "im Lightbox öffnen" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:188 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 +msgid "paniers:: panier emis par %pusher_name%" +msgstr "Sammelkorb wurde von %pusher_name% gesendet" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:380 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 +msgid "paniers:: vous avez de nouveaux paniers non consultes" +msgstr "neue(n) Sammelkorb(e) erhalten" + #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:29 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:29 msgid "Search baskets" msgstr "Sammelkörbe suchen" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:34 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:34 msgid "See" msgstr "Sehen" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:54 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:54 msgid "My baskets" msgstr "Meine Sammelkörbe" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:66 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:66 msgid "Received baskets" msgstr "Erhaltene Sammelkörbe" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:78 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:78 msgid "Validations sent" msgstr "Gesendete Bestätigungen" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:90 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:90 msgid "Validations received" msgstr "Erhaltene Bestätigungen" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:97 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:97 msgid "When" msgstr "Wann" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:105 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:105 msgid "Any time" msgstr "Jederzeit" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:121 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:121 msgid "This year" msgstr "In diesem Jahr" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:137 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:137 msgid "Past year" msgstr "Letztes Jahr" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:321 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:321 msgid "Something wrong happened, please retry or contact an admin." msgstr "" "Ein Fehler ist aufgetreten, bitte bitte wiederholen Sie oder wenden Sie sich " "an Ihren Systemadministrator" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:336 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:336 msgid "You are about to delete this basket. Would you like to continue ?" msgstr "Sie sind bereits, diesen Sammekork zu löschen. Möchten Sie fortfahren?" -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 -msgid "Edition de 1 element" -msgstr "Bearbeitung von 1 Element" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:142 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:142 +msgid "validation:: editer ma note" +msgstr "mein Kommentar verändern" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:35 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:35 msgid "Suppression de %n_element% photos" msgstr "Löschen von %n_element% Fotos" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:51 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:51 msgid "Etes vous sur de supprimer %number% photos ?" msgstr "Sind Sie sicher, %number% Fotos zu löschen?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:40 msgid "phraseanet:: collection" msgstr "Kollektion" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "entfernte ID Kollektion" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:97 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:97 msgid "admin::base:collection: etat de la collection" msgstr "Kollektion Status" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: activer la collection" msgstr "Kollektion aktivieren" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: descativer la collection" msgstr "Kollektion deaktivieren" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:118 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Bestellungen Manager" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:166 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "einen Manager für die Bestellungen hinzufügen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:180 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "Vorstellung von Elementen bei externen Veröffentlichungen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:193 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "standardmässig" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:203 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "Wasserzeichen Datei" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:213 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stempel" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:291 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:291 msgid "admin::base:collection: renommer la collection" msgstr "umbenennen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "Ende der Kollektionveröffentlichung bestätigen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Veröffentlichung dieser Kollektion bestätigen?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:323 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Sind Sie sicher, dass Sie die Kollektion leeren möchten?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:328 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:328 msgid "admin::base:collection: vider la collection" msgstr "leeren" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:339 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Löschen der Kollektion bestätigen?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:358 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "aktuelles Mini Logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:414 msgid "Watermark" msgstr "Wasserzeichen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:470 msgid "Stamp logo" msgstr "Stempel Logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:526 msgid "admin::base:collection: image de presentation : " msgstr "Kollektion Bildvorstellung " -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "Ungültiger Dateityp" - #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:118 msgid "regeneration of sub-definitions" msgstr "Neuerstellung von Unterauflösungen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:138 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:138 msgid "video tool" msgstr "Video Werkzeug" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:161 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:161 msgid "image tool" msgstr "Bild Werkzeug" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:175 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:175 msgid "substitution" msgstr "Ersatz" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:189 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:189 msgid "meta-datas" msgstr "Metadaten" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:208 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:208 msgid "Reconstruire les sous definitions" msgstr "Unterauflösungen wiederaufbauen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:217 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "Vorsicht, einige Dokumente haben ersetzte Unterauflösungen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:224 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" @@ -6660,10 +9538,12 @@ msgstr "" "Wiederaufbau auf Datensätze, die ersetzte Miniaturansichten haben, zwingen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:240 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:240 msgid "recreer aucune sous-definitions" msgstr "Keine Unterauflösungen neuerstellen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:246 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:246 msgid "recreer toutes les sous-definitions" msgstr "Alle Unterauflösungen neuerstellen" @@ -6673,6 +9553,12 @@ msgstr "Alle Unterauflösungen neuerstellen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:531 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:610 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:659 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:260 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:429 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:459 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:531 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:610 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:659 msgid "validate" msgstr "bestätigen" @@ -6680,115 +9566,371 @@ msgstr "bestätigen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:535 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:614 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:663 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:264 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:535 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:614 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:663 msgid "cancel" msgstr "abbrechen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:287 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:287 msgid "screenshot video" msgstr "Video Screenshot" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:353 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:353 msgid "No preview available" msgstr "Keine Voransicht verfügbar" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:364 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:475 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:364 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:475 msgid "take a screenshot" msgstr "einen Screenshot erstellen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:380 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:380 msgid "To take a screenshot click on camera" msgstr "Klicken Sie auf die Kamera, um einen Screenshot zu erstellen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:410 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:410 msgid "brightness settings" msgstr "Helligkeit Einstellungen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:440 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:440 msgid "contrast settings" msgstr "Kontrast Einstellungen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:504 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:504 msgid "image rotation" msgstr "Bilddrehung" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:510 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:510 msgid "rotation 90 degres horaire" msgstr "90° im Uhrzeigersinn drehen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:518 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:518 msgid "rotation 90 degres anti-horaires" msgstr "90° entgegen dem Uhrzeigersinn drehen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:561 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:561 msgid "Substitution is not possible for this kind of record" msgstr "Für diesen Typ von Aufnahme ist der Ersatz nicht verfügbar" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:583 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:583 msgid "substitution HD" msgstr "HD Ersetzung" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:592 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "ursprüngliche Dateiname nach Ersetzung aktualisieren" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:641 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:641 msgid "substitution SD" msgstr "SD Ersetzung" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:988 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:988 msgid "alert" msgstr "Vorsicht" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:999 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:999 msgid "no image selected" msgstr "Kein Bild wurde ausgewählt" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1055 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1055 msgid "processing" msgstr "verarbeitend" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1070 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "Ein Fehler ist aufgetreten" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1084 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1084 msgid "thumbnail validation" msgstr "Miniaturansicht Bestätigung" +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:51 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:51 +msgid "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." +msgstr "" +"Wenn diese Email nicht anklickbare Links enthält, bitte kopieren und fügen " +"Sie sie in Ihrem Webbrowser ein." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:198 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:198 +msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." +msgstr "Der Inhalt von dieser Email ist geheim, bitte nicht enthüllen" + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:210 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:210 +msgid "Message automatique de Phraseanet" +msgstr "Phraseanet Automatische Meldung" + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:228 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:228 +msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" +msgstr "Bitte besuchen Sie %link%, um automatisierte Meldungen zu verwalten" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:39 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 +msgid "Ajouter une publication" +msgstr "eine Veröffentlichung hinzufügen" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:49 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 +msgid "Feed name" +msgstr "Feed Name" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:143 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 +msgid "Date Creation" +msgstr "Erstellungsdatum" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:151 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 +msgid "Public" +msgstr "Öffentlich" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:278 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 +msgid "" +"Une fois la publication supprimee, les donnees publiees seront " +"definitivement perdues. Continuer ?" +msgstr "" +"Nachdem Sie die Veröffentlichung gelöscht haben, gehen die veröffentlichen " +"Daten eingültig verloren. Fortsetzen?" + #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:143 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:143 msgid "Certaines donnees du panier ont change" msgstr "Einige Daten des Sammelkorbs wurden verändert" +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:80 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:80 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 +msgid "" +"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " +"contactez le support technique" +msgstr "" +"Leider ist ein Fehler aufgetreten. Sollte sich dieser Fehler wiederholen " +"kontaktieren Sie bitte den Administrator" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:84 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:84 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 +msgid "" +"phraseanet::erreur: La connection au serveur Phraseanet semble etre " +"indisponible" +msgstr "Die Verbindung mit Phraseanet Server ist derzeit nich verfügbar" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:88 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:88 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 +msgid "" +"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" +msgstr "Sie sind nun abgemeldet. Bitte loggen Sie sich wieder ein" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:92 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:92 +msgid "Cocher toute la colonne" +msgstr "die ganze Spalte markieren" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:96 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:96 +msgid "Decocher toute la colonne" +msgstr "die ganze Spalte unmarkieren" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:100 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:100 +msgid "Creer un model" +msgstr "eine Vorlage erstellen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:104 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:104 +msgid "Creer un utilisateur" +msgstr "einen Benutzer erstellen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:112 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +msgid "This file is too big" +msgstr "Datei ist zu gross" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:116 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:116 +msgid "This field is required" +msgstr "Dieses Feld ist erforderlich" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:124 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:124 +msgid "Reset and apply" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:128 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "" +"Zurücksetzung von Benutzerrechten bestätigen, bevor Sie die Vorlage anwenden" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:132 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "" +"Benutzerrechte werden gelöscht, bevor Sie die Vorlage anwenden. Bestätigen?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:136 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:136 +msgid "Reset and apply template" +msgstr "Zurücksetzen und Vorlage anwenden" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:140 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:140 +msgid "Apply template" +msgstr "Vorlage anwenden" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:144 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:144 +msgid "Reset rights before applying template?" +msgstr "" +"Möchten Sie die Benutzerrechte zurücksetzen, bevor Sie die Vorlage anwenden?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:148 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:148 +msgid "Would you like to reset rights before applying the template?" +msgstr "" +"Möchten Sie die Benutzerrechte zurücksetzen, bevor Sie die Vorlage anwenden?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:328 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:328 +msgid "Successful install" +msgstr "Erfolgreiche Installation" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:346 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:346 +msgid "Ajouter un nouvel utilisateur" +msgstr "einen neuen Benutzer hinzufügen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:351 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:351 +msgid "Adresse email du nouvel utilisateur" +msgstr "Email Adresse der neuen Benutzer" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:358 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:358 +msgid "Send an email to the user to setup his password" +msgstr "Eine Email zum Benutzer senden, um sein Passwort festzulegen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:365 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:365 +msgid "Require email validation to activate the account" +msgstr "Email Validierung erfordern, um Konto zu aktivieren" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:373 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:373 +msgid "Creer un modele" +msgstr "eine Vorlage erstellen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:378 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:378 +msgid "Nom du nouveau modele" +msgstr "Name der neue Vorlage" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:38 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 +msgid "Records Statut" +msgstr "Datensätze Status" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:45 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 +msgid "Records type" +msgstr "Datensätze Typ" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:57 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 +msgid "You have selected one record." +msgstr "Sie haben einen Datensatz ausgewählt" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:63 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 +msgid "You have selected %nbReceivedDocuments% records." +msgstr "Sie haben %nbReceivedDocuments% Datensätze ausgewählt" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:74 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 +msgid "None of the records can be modified." +msgstr "Kein Datensatz kann geändert werden" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:86 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 +msgid "Only one record can be modified." +msgstr "Nur einen Datensatz kann geändert werden" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:92 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 +msgid "Only %nbEditableDocuments% records can be modified." +msgstr "Nur %nbEditableDocuments% Datensätze können nicht geändert werden" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:151 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 +msgid "Stories status edition" +msgstr "Berichtestatus Bearbeitung" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:157 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 +msgid "Records status edition" +msgstr "Datensätzestatus Bearbeitung" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:310 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:310 +msgid "Apply status on stories children." +msgstr "Status auf die Kinder Berichte anwenden" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:316 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:316 +msgid "Apply status on story children." +msgstr "Status auf den Kinder Bericht anwenden" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:340 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:340 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:147 +msgid "Apply changes" +msgstr "Änderungen anwenden" + #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:26 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:26 msgid "panier:: nom" msgstr "Name" #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:34 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:34 msgid "panier:: description" msgstr "Beschreibung" -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 -msgid "Reordonner automatiquement" -msgstr "automatisch neu anordnen" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 -msgid "Re-ordonner" -msgstr "wieder ordnen" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 -msgid "Inverser" -msgstr "umkehren" - #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:33 msgid "" "prod::Les enregistrements ne provienent pas tous de la meme base et ne " "peuvent donc etre traites ensemble" @@ -6797,33 +9939,40 @@ msgstr "" "Datenbank und können nicht zusammen bearbeitet werden" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:42 msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "" "Sie haben keine Berechtigung, diesen Vorgang auf diese Dokumente " "durchzuführen" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:51 msgid "erreur : Vous n'avez pas les droits" msgstr "Sie haben keinen Zugriff darauf" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:74 msgid "One document can not be modified." msgstr "Ein Dokument kann nicht geändert werden" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:80 #, php-format msgid "%countable% documents can not be modified." msgstr "%countable% dokumente können nicht geändert werden" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:99 msgid "Move one record to the chosen collection in the list." msgstr "Einen Datensatz zur ausgewählten Kollektion verschieben" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:105 msgid "Move %countable% records to the chosen collection in the list." msgstr "%countable% Datensätze zur ausgewählten Kollektion verschieben" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:142 msgid "" "prod::collection deplacer egalement les documents rattaches a ce(s) " "regroupement(s)" @@ -6832,41 +9981,50 @@ msgstr "" "verschieben?" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:59 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:59 msgid "Le bridge Dailymotion ne prend en charge que les videos" msgstr "Dailymotion Bridge unterstüzt nur Videos" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:63 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:63 msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" msgstr "Auf Dailymotion dürfen Sie nur ein Element gleichzeitig hochladen." #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:100 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:100 msgid "255 caracteres maximum" msgstr "255 Zeichen max." #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:132 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:132 msgid "1000 caracteres maximum" msgstr "1000 Zeichen max." #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:165 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:165 msgid "250 caracteres maximum" msgstr "250 Zeichen max." #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:169 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:169 msgid "10 tags maximum" msgstr "10 Tags maximal" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:173 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:173 msgid "Séparez les tags par un espace: Paris vacances restaurant" msgstr "" "Bitte trennen Sie die Tags durch ein Leerzeichen: Paris Urlaub Restaurant" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:177 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:177 msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" msgstr "" "Gruppieren Sie 2 oder mehrere Wörter mit Anführungszeichen: \"Michael Jackson" "\"" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:245 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:245 msgid "" "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " "contenu de la vidéo que vous allez mettre en ligne est conforme aux " @@ -6877,79 +10035,102 @@ msgstr "" "diese Videos" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:28 msgid "Aucune notification" msgstr "keine Benachrichtigungen" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:37 msgid "toutes les notifications" msgstr "Alle Benachrichtigungen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:203 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:243 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:203 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:243 msgid "thesaurus::menu: proprietes" msgstr "Eigenschaften" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:207 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:207 msgid "thesaurus::menu: refuser" msgstr "ablehnen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:211 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:211 msgid "thesaurus::menu: accepter" msgstr "annehmen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:216 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:255 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:111 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:111 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:216 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:255 msgid "thesaurus::menu: supprimer" -msgstr "löschen" +msgstr "Löschen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:220 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:220 msgid "thesaurus::menu: supprimer les candidats a 0 hits" -msgstr "die mögliche Begriffe löschen, die ergebnislos sind?" +msgstr "Die mögliche Begriffe löschen, die ergebnislos sind?" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:225 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:260 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:225 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:260 msgid "thesaurus::menu: chercher" msgstr "suchen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:229 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:264 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:229 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:264 msgid "thesaurus::menu: exporter" -msgstr "exportieren" +msgstr "Exportieren" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:236 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:236 msgid "thesaurus::menu: importer" msgstr "Importieren" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:247 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:247 msgid "thesaurus::menu: Nouveau terme" msgstr "Neuer Begriff" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:251 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:251 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Neuer Synonym" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:268 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:268 msgid "thesaurus::menu: export topics" -msgstr "exportieren als Themen" +msgstr "Exportieren als Themen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:273 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:273 msgid "thesaurus::menu: lier au champ" msgstr "mit dem Feld verbinden" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:321 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:321 msgid "thesaurus:: onglet stock" msgstr "mögliche Begriffe" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:327 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:327 msgid "thesaurus:: afficher les termes refuses" msgstr "abgelehnte Begriffe anzeigen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:341 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:341 msgid "thesaurus:: onglet thesaurus" msgstr "Thesaurus" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:546 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:546 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" @@ -6958,6 +10139,7 @@ msgstr "" "mögliche Begriffe beim nächsten Indexierung erscheinen)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:551 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:551 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " @@ -6968,10 +10150,12 @@ msgstr "" "Begriffe beim nächsten Indexierung erscheinen)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:605 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:605 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Alle Begriffe verweisen auf Ergebnisse" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:614 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:614 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" @@ -6980,47 +10164,161 @@ msgstr "" "Begriffe löschen?" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:1217 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:1217 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Begriffe zum Stock verschieben" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:58 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:66 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 +msgid "admin::tasks: nom de la tache" +msgstr "Name" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:73 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 +msgid "admin::tasks: lancer au demarrage du scheduler" +msgstr "zum Scheduler Anlauf starten" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:85 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 +msgid "admin::tasks: Nombre de crashes : " +msgstr "Fehler " + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:93 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 +msgid "admin::tasks: reinitialiser el compteur de crashes" +msgstr "den Fehlerzähler zurücksetzen" + #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:33 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:33 msgid "Creer un Photoset" msgstr "ein Fotoset erstellen" #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:82 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:82 msgid "Photo principale" msgstr "Hauptbild" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 -msgid "paniers:: %nb_basket_elements% documents dans le panier" -msgstr "%nb_basket_elements% Dokumente im Sammekorb" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:146 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 +msgid "client:: recherche" +msgstr "Suche" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 -msgid "paniers::categories: mes paniers" -msgstr "Meine Sammelkörbe" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:165 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 +msgid "client:: recherche avancee" +msgstr "erweiterte Suche" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 -msgid "paniers::categories: paniers recus" -msgstr "Sammelkörben erhalten" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:184 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 +msgid "client:: topics" +msgstr "Themen" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 -msgid "action : ouvrir dans le comparateur" -msgstr "im Lightbox öffnen" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:219 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:221 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:242 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:244 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:533 +msgid "phraseanet::technique:: et" +msgstr "und" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 -msgid "paniers:: panier emis par %pusher_name%" -msgstr "Sammelkorb wurde von %pusher_name% gesendet" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:225 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:227 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:248 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:250 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 +msgid "phraseanet::technique:: or" +msgstr "oder" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "neue(n) Sammelkorb(e) erhalten" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:231 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:233 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:254 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:256 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 +msgid "phraseanet::technique:: except" +msgstr "ohne" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:269 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 +msgid "client::recherche: rechercher dans les bases :" +msgstr "Suchen" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:279 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 +msgid "client::recherche: rechercher dans toutes les bases" +msgstr "Alle Datenbanken" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:343 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 +msgid "phraseanet:: presentation des resultats" +msgstr "Anzeige-Einstellungen" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:434 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 +msgid "phraseanet:: collections" +msgstr "Kollektionen" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:436 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " +"base" +msgstr "Hier klicken um alle Filter in allen Datenbanken zu deaktivieren" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:463 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 +msgid "phraseanet:: historique" +msgstr "Historie" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:521 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" +msgstr "Hier klicken, um alle Filter dieser Datenbank zu deaktivieren" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:793 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 +msgid "client::recherche: filter sur" +msgstr "filtern" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:806 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 +msgid "client::recherche: filtrer par dates" +msgstr "nach Datum" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:819 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 +msgid "client::recherche: filtrer par status" +msgstr "Nach Status" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:832 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 +msgid "client::recherche: filtrer par champs" +msgstr "nach Feld" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:841 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 +msgid "client::recherche: filtrer par champs : tous les champs" +msgstr "Alle Felder" #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:63 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:63 msgid "Hi, Please log in" msgstr "Hallo, Bitte loggen Sie sich ein" #: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:53 +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:48 #: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:48 msgid "Erreur !" msgstr "Fehler !" @@ -7033,60 +10331,122 @@ msgstr "Sammelkorb existiert nicht mehr" msgid "Retour a l'accueil" msgstr "Zurück zur Startseite" +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:247 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:298 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 +msgid "erreur avec la valeur %name%" +msgstr "Fehler mit %name% Wert" + #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:22 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:22 msgid "Terms Of Use" msgstr "Nutzungsbedingungen" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:35 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:35 msgid "" "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" msgstr "ANB: Die Benutzer müssen unbedingt die ANB noch einmal bestätigen" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:40 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:40 msgid "Mettre a jour" msgstr "aktualisieren" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:30 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 +msgid "" +"Cochez les cases correspondantes aux colonnes que vous desirez voire " +"apparaitre dans le report" +msgstr "Markieren Sie die Felder, die Sie im Report sehen möchten" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:36 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 +msgid "cocher tout" +msgstr "Alles aktivieren" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:43 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 +msgid "tout decocher" +msgstr "Alles deaktivieren" + +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:62 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 +msgid "language" +msgstr "Sprache" + +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:33 +#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 +msgid "report:: Enlever le filtre" +msgstr "Titel" + +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:62 +#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 +msgid "Retour a laccueil" +msgstr "Zurück zur Startseite" + #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:50 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:191 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:50 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:191 msgid "Les documents ne peuvent pas etre exportes" msgstr "Dokumente können nicht heruntergeladen werden" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:68 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:104 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:68 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:104 msgid "export:: telechargement" msgstr "Download" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:72 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:280 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:72 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:280 msgid "export:: envoi par mail" msgstr "E-Mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:81 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:81 msgid "export:: commande" msgstr "bestellen" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:843 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:90 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:843 msgid "export:: FTP" msgstr "FTP" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:559 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:952 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:172 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:385 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:559 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:952 msgid "Documents indisponibles" msgstr "Dokument(e) nicht verfügbar" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1012 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:230 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:445 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1012 msgid "Include Business-fields in caption" msgstr "Geschäftsfelder in Beschriftung enthalten" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1035 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:256 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:471 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:812 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1035 msgid "" "By checking this box, you accept %beginning_link% Terms of Use %end_link%" msgstr "" @@ -7094,14 +10454,17 @@ msgstr "" "Nutzeungsbedingungen %end_link%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:297 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:297 msgid "export::mail: destinataire" msgstr "zu" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:311 msgid "Recevoir un accuse de reception a %my_email%" msgstr "Empfangsbestätigung zu %my_email% bekommen" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:320 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:320 msgid "" "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" msgstr "" @@ -7109,100 +10472,130 @@ msgstr "" "fehlende E-Mail Adresse" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:328 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:328 msgid "Entrez plusieurs adresses email en les separant par des points-virgules" msgstr "" "Trennen Sie die E-Mail Adressen mit Strichpunkten wenn sie an mehrere " "Empfänger gleichzeitig Dokumente senden wollen" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:334 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:334 msgid "export::mail: contenu du mail" msgstr "Textinhalt" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:908 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:341 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:908 msgid "export::mail: fichiers joint" msgstr "E-Mail Anhänge" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:570 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:971 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:404 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:570 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:971 msgid "La sous resolution n'est pas disponible pour les documents suivants" msgstr "Unterauflösung für die folgende Dokumente ist nicht verfügbar" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1050 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:481 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1050 msgid "boutton::envoyer" msgstr "senden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:517 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:517 msgid "Un document commande" msgstr "Ein bestelltes Dokument" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:523 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:523 #, php-format msgid "%docs_orderable% documents commandes" msgstr "%docs_orderable% bestellte Dokumente" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:538 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:538 msgid "Un document ne peut etre commande" msgstr "Ein Dokument kann nicht bestellt werden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:544 #, php-format msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" msgstr "%docs_not_orderable% dokumente können nicht bestellt werden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:615 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:615 msgid "commande::utilisation prevue" msgstr "Verwendungszweck" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:625 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:625 msgid "commande::deadline" msgstr "Termin" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:635 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:635 msgid "Civility" msgstr "Anrede" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:823 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:823 msgid "boutton::commander" msgstr "bestellen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:861 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:861 msgid "phraseanet:: prereglages" msgstr "Voreinstellungen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1045 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1045 msgid "boutton::essayer" msgstr "probieren" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1098 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1098 msgid "You must agree to the Terms of Use to continue." msgstr "Sie müssen die Nutzungsbedingungen akzeptieren, um fortzufahren" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1110 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1166 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1196 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1364 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1421 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1448 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1110 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1166 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1196 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1364 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1421 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1448 msgid "Warning !" msgstr "Warnung !" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1154 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1154 msgid "Certains champs sont obligatoires, veuillez les remplir" msgstr "Bitte füllen Sie die erforderlichen Felder aus" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1184 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1184 msgid "Vous devez selectionner un type de sous definitions" msgstr "Sie müssen einen Typ von Unterauflösungen auswählen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1216 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1216 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 msgid "Terms of Use" msgstr "Nutzungsbedingungen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1285 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1285 msgid "" "You can not directly download more than %max_download% Mo ; time to package " "all documents is too long" @@ -7210,86 +10603,110 @@ msgstr "" "You can not download more than %max_download% Mo ; time to package all " "documents is too long" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1294 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1294 msgid "You can alternatively receive an email when the download is ready." msgstr "" "Sie können zur Bestätigung eine Email erhalten wenn Ihr Download " "abgeschlossen ist." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1303 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1303 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Möchten Sie eine Email erhalten wenn Ihr Download abgeschlossen ist ?" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1544 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1590 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:483 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1590 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Passiv Mode benutzen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1608 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:497 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1608 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "maximale Anzahl von Versuchen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1624 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:455 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1624 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "FTP Zielordner" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1640 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1640 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Directory erstellen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1668 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1668 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "eine Log Datei schreiben" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1710 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1710 msgid "Nom des fichiers a l'export" msgstr "Name der Dateien für den download" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1727 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1727 msgid "export::titre: titre du documument" msgstr "Titel" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1744 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1744 msgid "export::titre: nom original du document" msgstr "ursprüngliche Name" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:28 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:28 msgid "thesaurus:: Nouveau terme specifique" msgstr "Neuer bestimmte Begriff" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:30 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:29 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:30 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:29 msgid "thesaurus:: Nouveau synonyme" msgstr "Neuer Synonym" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:68 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:68 msgid "thesaurus:: le terme %term% avec contexte %context%" msgstr "Der Begriff %term% mit Kontext %context%" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:80 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:80 msgid "thesaurus:: le terme %term% sans contexte" msgstr "Der Begriff %term% ohne Kontext" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:97 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:97 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "ist schon ein möglicher Begriff und stammt aus dem zulässigen Feld : " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:103 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:103 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "ist schon ein möglicher Begriff und stammt aus zulässigen Feldern : " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:155 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:155 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Ursprung zu akzeptieren markieren" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:184 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:190 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:184 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:190 msgid "" "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " "a cet emplacement du thesaurus" @@ -7298,760 +10715,118 @@ msgstr "" "des Thesaurus akzeptiert werden" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:201 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:201 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "ist fehlend bei den möglichen Begriffen" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:209 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:209 msgid "thesaurus:: attention :" msgstr "Vorsicht :" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:229 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:229 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Begriff hinzufügen, ohne ihn zu wieder indexieren" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:234 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:234 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Begriff hinzufügen und wieder indexieren" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:27 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 +msgid "No preview available." +msgstr "Keine Voransicht verfügbar" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:33 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 +msgid "No permalink available." +msgstr "Kein Permalink verfügbar" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:62 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 +msgid "Send to Twitter" +msgstr "Auf Twitter teilen" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:74 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 +msgid "Send to Facebook" +msgstr "Auf Facebook teilen" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:83 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 +msgid "Resource URL" +msgstr "Resource URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:91 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 +msgid "Detailed view URL" +msgstr "Detailansicht URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:102 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 +msgid "Embed code" +msgstr "Embed-Code" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:138 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 +msgid "No URL available" +msgstr "keine verfügbare URL" + #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:47 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:47 msgid "admin::monitor: Ancienne version (client)" msgstr "Classic" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:66 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:66 msgid "admin::monitor: Nouvelle version (prod)" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:79 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:79 msgid "admin::monitor: production" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:270 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:270 msgid "Commandes" msgstr "Bestellungen" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:297 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:297 msgid "Notifications" msgstr "Benachrichtigungen" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:334 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:334 msgid "Guest" msgstr "Gast" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:78 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:343 msgid "login:: Mon compte" msgstr "Mein Benutzerkonto" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:364 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:364 msgid "phraseanet:: aide" msgstr "Hilfe" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:382 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:382 msgid "phraseanet:: raccourcis clavier" msgstr "Abkürzungen" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:398 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:398 msgid "phraseanet:: a propos" msgstr "Über" -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 -msgid "report:: activite par jour" -msgstr "Aktivität pro Tag" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 -msgid "Apply to all selected documents" -msgstr "auf alle ausgewählte Dokumente anwenden" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 -msgid "Apply changes" -msgstr "Änderungen anwenden" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 -msgid "Refresh" -msgstr "Aktualisieren" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 -msgid "(%length%)" -msgstr "(%length%)" - -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 -msgid "privé" -msgstr "privat" - -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 -msgid "Vous devez remplir les champs requis" -msgstr "Sie müssen die erforderlichen Felder ausfüllen" - -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 -msgid "validation::envoyer mon rapport" -msgstr "Meinen Bericht senden" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 -msgid "First/Last Name" -msgstr "Vorname / Nachname" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 -msgid "E-Mail" -msgstr "Email" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 -msgid "Last Template" -msgstr "Letzte Schablone" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 -msgid "Creation date" -msgstr "Erstellungsdatum" - -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 -msgid "More" -msgstr "Mehr" - -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 -msgid "Remove from basket" -msgstr "aus dem Sammelkorb entfernen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 -msgid "Client applications" -msgstr "Client Anwendungen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 -msgid "Mes applications" -msgstr "meine Anwendungen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 -msgid "button::supprimer" -msgstr "Löschen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 -msgid "Are you sure you want to delete this application?" -msgstr "Sind Sie sicher, diese Anwendung zu löschen?" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 -msgid "No" -msgstr "Nein" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 -msgid "Yes" -msgstr "Ja" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 -msgid "Aucune application creee." -msgstr "keine Anwendung erstellt" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 -msgid "Decouvrez la documentation" -msgstr "Lesen Sie die Dokumentation" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 -msgid "Demarrer avec l'API Phraseanet" -msgstr "Mit dem Phraseanet API beginnen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "" -"Erstellen Sie zuerst eine Applikation, um das Phraseanet API danach zu " -"benutzen." - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 -msgid "Creer une nouvelle applications" -msgstr "eine neue Anwendung erstellen" - -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 -msgid "Story name" -msgstr "Bericht Name" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 -msgid "Toutes les publications" -msgstr "Alle Veröffentlichungen" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 -msgid "publications:: s'abonner aux publications" -msgstr "anmelden" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 -msgid "Aller a" -msgstr "Gehen Sie zu" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 -msgid "Aucune entree pour le moment" -msgstr "Keine Angaben zur Zeit" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 -msgid "charger d'avantage de publications" -msgstr "mehr Veröffentlichungen hochladen" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 -msgid "thesaurus:: Editer le thesaurus" -msgstr "Thesaurus bearbeiten" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 -msgid "phraseanet:: choisir" -msgstr "wählen" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 -msgid "thesaurus:: langue pivot" -msgstr "Sprachdatei auswählen" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "Sie haben keinen Zugriff auf die Datenbanken" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 -msgid "Renew password" -msgstr "Passwort erneuern" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 -msgid "Choose a new password" -msgstr "Wählen Sie ein neues Passwort aus" - -#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 -msgid "No matches found" -msgstr "Keine Übereinstimmung gefunden" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 -msgid "Edition" -msgstr "Bearbeitung" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 -msgid "Sous-titre" -msgstr "Untertitel" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 -msgid "Short description" -msgstr "Kurzbeschreibung" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 -msgid "Etendue de la publication" -msgstr "Erweiterung der Veröffentlichung" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 -msgid "Non-Restreinte (publique)" -msgstr "Nicht eingeschränkt (öffentlich)" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 -msgid "Publique" -msgstr "öffentliche" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "Liste der Personen, die auf diesen Thread veröffentlichen dürfen" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 -msgid "Id" -msgstr "ID" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 -msgid "Email" -msgstr "Email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 -msgid "Owner" -msgstr "Besitzer" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 -msgid "Ajouter un publisher" -msgstr "einen Veröffentlicher hinzufügen" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 -msgid "Name or email" -msgstr "Name oder Email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 -msgid "You are not the feed owner" -msgstr "Sie sind nicht der Besitzer von diesem Feed" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 -msgid "client:: recherche" -msgstr "Suche" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 -msgid "client:: recherche avancee" -msgstr "erweiterte Suche" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 -msgid "client:: topics" -msgstr "Themen" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 -msgid "phraseanet::technique:: et" -msgstr "und" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 -msgid "phraseanet::technique:: or" -msgstr "oder" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 -msgid "phraseanet::technique:: except" -msgstr "ohne" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 -msgid "client::recherche: rechercher dans les bases :" -msgstr "Suchen" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "Alle Datenbanken" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 -msgid "phraseanet:: presentation des resultats" -msgstr "Anzeige-Einstellungen" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 -msgid "phraseanet:: collections" -msgstr "Kollektionen" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " -"base" -msgstr "Hier klicken um alle Filter in allen Datenbanken zu deaktivieren" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 -msgid "phraseanet:: historique" -msgstr "Historie" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "Hier klicken, um alle Filter dieser Datenbank zu deaktivieren" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 -msgid "client::recherche: filter sur" -msgstr "filtern" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 -msgid "client::recherche: filtrer par dates" -msgstr "nach Datum" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 -msgid "client::recherche: filtrer par status" -msgstr "Nach Status" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 -msgid "client::recherche: filtrer par champs" -msgstr "nach Feld" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "Alle Felder" - -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 -msgid "validation:: editer ma note" -msgstr "mein Kommentar verändern" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 -msgid "publications:: dernieres publications" -msgstr "Letzte Veröffentlichungen" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 -msgid "publications:: derniere mise a jour" -msgstr "Letzte Aktualisierung" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 -msgid "The user has been created." -msgstr "Der Benutzer wurde erstellt" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#, php-format -msgid "%user_count% users have been created." -msgstr "%user_count% benutzer wurden erstellt" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 -msgid "admin::user: nouvel utilisateur" -msgstr "Neuer Benutzer" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 -msgid "admin::user: nouveau template" -msgstr "Neue Vorlage" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 -msgid "admin::user: import d'utilisateurs" -msgstr "Import" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 -msgid "admin::user: export d'utilisateurs" -msgstr "Export" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 -msgid "Filter" -msgstr "Filtern" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 -msgid "Last applied template" -msgstr "letzte angewandte Vorlage" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 -msgid "boutton::appliquer" -msgstr "Anwenden" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "Benutzername" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 -msgid "admin::compte-utilisateur pays" -msgstr "Land" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "Letzte angewendete Vorlage" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 -msgid "admin::compte-utilisateur date de creation" -msgstr "Erstellungsdatum" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 -msgid "This is a template" -msgstr "Hier ist eine Schablone" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 -msgid "This user has no rights" -msgstr "Dieser Benutzer besitzt keine Rechte" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 -msgid "%n_par_page% par page" -msgstr "%n_par_page% pro Seite" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 -msgid "Supprimer" -msgstr "löschen" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 -msgid "boutton::exporter" -msgstr "exportieren" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 -msgid "select at least one user" -msgstr "Einen user auswählen" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 -msgid "Are you sure you want delete users rights ?" -msgstr "Sind Sie sicher, dass Sie die Benutzerzugriffe löschen möchten?" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 -msgid "users rights have been reseted" -msgstr "Nutzerrechte wurden zurückgesetzt" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 -msgid "" -"%name% est momentanement indisponible a cause d'un trop grand nombre de " -"requetes" -msgstr "%name% wird jetzt unverfügbar, zu viele Anfragen" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "Die Dienstleistung wird in einige Minuten wieder verfügbar sein." - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "die Verzweigung mit dem Feld %s verbinden" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 -msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" -msgstr "Den Thesaurus-Sprung mit dem Feld %branch% verbinden" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "die Verzweigung verbinden?" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" -msgstr "Dieses Feld wurde verändert ; alter Sprung : %old_branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 -msgid "thesaurus:: nouvelle branche" -msgstr "Neue Verzweigung" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 -msgid "" -"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " -"candidats seront supprimes" -msgstr "" -"Dieses Feld wird nicht mehr zum Thesaurus verknüpft. Die mögliche und " -"indexierte Begriffe werden gelöscht" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 -msgid "" -"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " -"est necessaire" -msgstr "" -"Dieses Feld muss zum Thesaurus verknüpft werden. Wieder Indexierung der " -"Datenbank erforderlich" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 -msgid "" -"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " -"base est necessaire" -msgstr "" -"Das Link mit dem Thesaurus soll verändert werden, die Wieder Indexierung ist " -"erforderlich" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 -msgid "thesaurus:: reindexation necessaire" -msgstr "wieder Indexierung erforderlich" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 -msgid "thesaurus:: pas de reindexation" -msgstr "Keine Wieder Indexierung" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 -msgid "thesaurus:: suppression du lien du champ %field%" -msgstr "Löschen von der Verbindung des Feldes %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 -msgid "" -"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" -msgstr "Löschen von dem Sprung von möglichen Begriffe für das Feld %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "Datensatz der veränderte Liste von möglichen Begriffen" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 -msgid "" -"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" -msgstr "Löschen von Indexen zum Thesaurus für das Feld %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "Alle Datensätze wieder indexieren" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 -msgid "En attente" -msgstr "schwebend" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 -msgid "En cours d'envoi" -msgstr "wird gesendet" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 -msgid "Oups ! something went wrong !" -msgstr "Hoppla! Etwas ist schiefgegangen" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 -msgid "boutton::retry" -msgstr "Wiederholen" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 -msgid "admin::tasks: nom de la tache" -msgstr "Name" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "zum Scheduler Anlauf starten" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 -msgid "admin::tasks: Nombre de crashes : " -msgstr "Fehler " - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "den Fehlerzähler zurücksetzen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 -msgid "You are using the Flash uploader." -msgstr "Sie benutzen den Flash Uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 -msgid "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" -msgstr "" -"Diese Version erlaubt nicht einen Zugriff auf alle HTML5 Uploader Funktionen." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 -msgid "Use the HTML5 uploader" -msgstr "Benutzen Sie den HTML5 Uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "ausgewählte Dateien" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 -msgid "You have attempted to queue too many files" -msgstr "Sie haben versucht, zuviele Dateien anzustehen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 -msgid "Unknow Error" -msgstr "Unbekannter Fehler" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 -msgid "Cannot upload Zero Byte files" -msgstr "Kann nicht Null-Byte Dateien hochladen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 -msgid "Unhandled Error" -msgstr "Unbehandelte Fehler" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 -msgid "Unknow reason" -msgstr "Unbekannter Grund" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 -msgid "Bad request, please contact an admin" -msgstr "Bad Request. Bitte kontaktieren Sie einen Administrator." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 -msgid "Upload URL is not set, please contact an admin" -msgstr "" -"Upload URL wurde nicht gesetzt, bitte kontaktieren Sie einen Administrator." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 -msgid "Connection terminates unexpetecdly, please retry" -msgstr "Verbindung beendet unerwartet. Bitte wiederholen." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 -msgid "The upload violates a security restriction, please retry" -msgstr "Upload verletzt eine Sicherheitseinschränkung, bitte wiederholen." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 -msgid "File upload limit (%maxFileSizeReadable%) has been reached" -msgstr "Datei-Upload Begrenzung (%maxFileSizeReadable%) wurde erreicht." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 -msgid "Could not initiate upload, please retry" -msgstr "Upload konnte nicht initialisieren werden. Bitte wiederholen." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 -msgid "" -"Could not retrieve the file ID, please retry or contact an admin if problem " -"persist" -msgstr "" -"Datei-ID konnte nicht abgerufen werden. Bitte versuchen Sie es einmal oder " -"kontaktieren Sie\r\n" -"einen Administrator, wenn das Problem bestehen bleibt." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 -msgid "File validation failed" -msgstr "Dateivalidierung ist fehlgeschlagen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 -msgid "File upload has been cancelled" -msgstr "Datei-Upload wurde abgebrochen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 -msgid "File upload has been stopped" -msgstr "Datei-Upload wurde gestoppt" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 -msgid "Error while uploading" -msgstr "Fehler beim Hochladen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 -msgid "Please select at least one valid file" -msgstr "Bitte wählen Sie mindestens eine gültige Datei aus." - -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 -msgid "report:: Enlever le filtre" -msgstr "Titel" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 -msgid "thesaurus:: accepter..." -msgstr "annehmen" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 -msgid "thesaurus:: removed_src" -msgstr "removed_src" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 -msgid "thesaurus:: refresh" -msgstr "aktualiseren" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 -msgid "thesaurus:: removed tgt" -msgstr "removed tgt" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 -msgid "thesaurus:: Accepter le terme comme" -msgstr "Begriff akzeptieren als :" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 -msgid "thesaurus:: comme terme specifique" -msgstr "als bestimmter Begriff" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 -msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" -msgstr "als Synonym von %fullpath_tgt_raw%" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 -msgid "thesaurus:: Accepter la branche comme" -msgstr "Verzweigung akzeptieren als :" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 -msgid "" -"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " -"ne peut etre accepte" -msgstr "" -"Hier im Thesaurus, ein möglicher Begriff des Feldes %cfield% kann nicht " -"angenommen werden" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 -msgid "(validation) session terminee" -msgstr "Session beendet" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 -msgid "(validation) envoyee" -msgstr "gesendet" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 -msgid "(validation) a envoyer" -msgstr "zu senden" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 -#, php-format -msgid "%basket_length% documents" -msgstr "%basket_length% dokument(e)" - +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:22 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:22 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:320 @@ -8063,823 +10838,138 @@ msgstr "%basket_length% dokument(e)" msgid "You are not authorized to do this" msgstr "Sie haben dafür keine Zugriffsrechte" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:29 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:29 msgid "About Roles : " msgstr "Über die Funktionen : " +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:34 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:34 msgid "Admin can edit shares, modify content" msgstr "Admin kann Anteile bearbeiten und Inhalte verändern" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:40 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:40 msgid "Editor can modify content" msgstr "Editor kann Inhalte verändern" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:46 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:46 msgid "Access user have readonly access" msgstr "Viewer haben nur einen - Lese Zugriff" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:54 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:54 msgid "Find a user" msgstr "Einen Benutzer suchen" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:91 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:91 msgid "You are Admin" msgstr "Sie sind Admin" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:100 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:100 msgid "Role" msgstr "Funktion" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:126 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:126 msgid "Editor" msgstr "Editor" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:139 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:139 msgid "Admin" msgstr "Admin" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:155 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:155 msgid "Remove" msgstr "Löschen" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:164 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:164 msgid "Notify" msgstr "Benachrichtigen" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 -msgid "Records Statut" -msgstr "Datensätze Status" +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:35 +msgid "Apply to all selected documents" +msgstr "auf alle ausgewählte Dokumente anwenden" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 -msgid "Records type" -msgstr "Datensätze Typ" +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:41 +msgid "Refresh" +msgstr "Aktualisieren" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 -msgid "You have selected one record." -msgstr "Sie haben einen Datensatz ausgewählt" +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:77 +msgid "(%length%)" +msgstr "(%length%)" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 -msgid "You have selected %nbReceivedDocuments% records." -msgstr "Sie haben %nbReceivedDocuments% Datensätze ausgewählt" +#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 +#: tmp/cache_twig/9a/af/a1037f8c999f73036a656301976bf104ace3fbd735257245a01214edc010.php:122 +#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 +#: tmp/cache_twig/b0/d1/517f30cd82f5d4ead4063de4342d258e96da49577fc507c20e2018163776.php:122 +msgid "More" +msgstr "Mehr" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 -msgid "None of the records can be modified." -msgstr "Kein Datensatz kann geändert werden" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:90 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 +msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +msgstr "Dieses Feld wurde verändert ; alter Sprung : %old_branch%" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 -msgid "Only one record can be modified." -msgstr "Nur einen Datensatz kann geändert werden" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:97 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 +msgid "thesaurus:: nouvelle branche" +msgstr "Neue Verzweigung" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 -msgid "Only %nbEditableDocuments% records can be modified." -msgstr "Nur %nbEditableDocuments% Datensätze können nicht geändert werden" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 -msgid "Stories status edition" -msgstr "Berichtestatus Bearbeitung" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 -msgid "Records status edition" -msgstr "Datensätzestatus Bearbeitung" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 -msgid "Loading" -msgstr "Ladend" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 -msgid "Access history" -msgstr "auf Geschichte zugreifen" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:110 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 msgid "" -"If you notice any unfamiliar devices or locations, click 'End Activity' to " -"end the session." +"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " +"candidats seront supprimes" msgstr "" -"Wenn Sie ungewohnte Geräte oder Orten bemerken, klicken Sie auf \"Aktivität " -"beenden\", um die Session zu schliessen" +"Dieses Feld wird nicht mehr zum Thesaurus verknüpft. Die mögliche und " +"indexierte Begriffe werden gelöscht" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 -msgid "Date de connexion" -msgstr "Verbindungsdatum" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 -msgid "Dernier access" -msgstr "Letzter Zugriff" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 -msgid "IP" -msgstr "IP" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 -msgid "Browser" -msgstr "Browser" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 -msgid "End Activity" -msgstr "Aktivität beenden" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 -msgid "End session activity" -msgstr "Session Aktivität beenden" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 -msgid "Do you really want to end the activity of this session?" -msgstr "Möchten Sie wirklich, die Aktivität von dieser Session beenden?" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 -msgid "thesaurus:: Nouveau terme" -msgstr "Neuer Begriff" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 -msgid "thesaurus:: terme" -msgstr "Begriff" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 -msgid "thesaurus:: synonyme" -msgstr "Synonym" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 -msgid "thesaurus:: contexte" -msgstr "Kontext" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 -msgid "phraseanet:: language" -msgstr "Sprache" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 -msgid "The following errors have been detected" -msgstr "Die folgende Fehler wurden festgestellt" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 -msgid "Would you like to continue ?" -msgstr "Möchten Sie, fortzufahren?" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 -msgid "Apply a model" -msgstr "eine Vorlage anwenden" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 -msgid "You need define a model before importing a list of users" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:129 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 +msgid "" +"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " +"est necessaire" msgstr "" -"Sie müssen zuerst eine Vorlage festlegen, um eine Liste von Benutzern zu " -"importieren" +"Dieses Feld muss zum Thesaurus verknüpft werden. Wieder Indexierung der " +"Datenbank erforderlich" -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 -msgid "There is no user to add." -msgstr "Kein Benutzer zu hinzufügen" - -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 -msgid "Ajouter a" -msgstr "Hinzufügen zu" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 -msgid "nouveau" -msgstr "neu" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "Mit welchem API möchten Sie sich verbinden ?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 -msgid "Aucun bridge disponible. Veuillez contacter un administrateur." -msgstr "Bridge unverfügbar. Bitte kontaktieren Sie einen Administrator." - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 -msgid "You are about to delete this account. Would you like to continue ?" -msgstr "Der Zugang wird gelöscht. Möchten Sie fortfahren?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "Sie haben nicht genügende Rechte auf die ausgewählte Elemente." - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "Sie haben nicht genügende Rechte auf einige ausgewählte Elemente." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:137 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" -msgstr "Ersatz von Kandidat \"%(von)s\" mit \"%(to)s\"" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "Ersetzung..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "Annahme..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "Löschen..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "als möglicher Begriff \"%s\" annehmen?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "die %d möglichen Begriffe annehmen?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 -#, php-format -msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "Rechtsclick / \"%s\" möglichen Begriff annehmen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "Rechtsclick / %s mögliche Begriffe annehmen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "Begriff \"%s\" von der Beschreibung ersetzen durch:" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "%d Begriffe von der Beschreibung ersetzen durch:" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "Begriff \"%s\" von der Beschreibung(en) löschen?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "%d Begriffe von der Beschreibung(en) löschen?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 -msgid "prod::thesaurusTab:tree:loading" -msgstr "wird geladen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "als bestimmter Begriff annehmen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "als Synonym annehmen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "in %lng_code% annehmen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "ersetzen durch" - -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 -msgid "Playlist" -msgstr "Playlist" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:93 -msgid "publication : titre" -msgstr "Titel" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:101 -msgid "publication : sous titre" -msgstr "Untertitel" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:109 -msgid "publication : autheur" -msgstr "Autor" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:117 -msgid "publication : email autheur" -msgstr "Autor E-Mail" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:129 -msgid "Fils disponibles" -msgstr "verfügbare Threads" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 -msgid "boutton::mettre a jour" -msgstr "updaten" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 -msgid "you are about to change the representation thumbnail of your video" -msgstr "Sie werden jetzt die Darstellung der Video Miniaturansicht verändern" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 -msgid "do you want to validate" -msgstr "Möchten Sie bestätigen?" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" -msgstr "Objekt" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" -msgstr "Anzahl" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" -msgstr "Größe" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 -msgid "Updated structure" -msgstr "aktualisierte Struktur" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 -msgid "Structure has been successfully updated" -msgstr "Struktur wurde erfolgreich aktualisiert" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 -msgid "Structure errors" -msgstr "Strukturfehler" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "XML ungültig, die Änderungen werden nicht angewendet" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 -msgid "admin::base: structure" -msgstr "Struktur" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 -msgid "new client application" -msgstr "Neue Client Anwendung" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 -msgid "Nom" -msgstr "Name" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 -msgid "Site web" -msgstr "Webseite" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 -msgid "Type d'application" -msgstr "Anwendungstyp" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 -msgid "Application web" -msgstr "Webanwendung" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 -msgid "Application desktop" -msgstr "Desktopanwendung" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 -msgid "" -"Cochez les cases correspondantes aux colonnes que vous desirez voire " -"apparaitre dans le report" -msgstr "Markieren Sie die Felder, die Sie im Report sehen möchten" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 -msgid "cocher tout" -msgstr "Alles aktivieren" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 -msgid "tout decocher" -msgstr "Alles deaktivieren" - -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 -msgid "language" -msgstr "Sprache" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 -msgid "Save all changes" -msgstr "Alle Änderungen speichern" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 -msgid "Close" -msgstr "schliessen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 -msgid "Ok" -msgstr "OK" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 -msgid "Live search" -msgstr "Live Suche" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 -msgid "Add a new field" -msgstr "ein neues Feld hinzufügen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 -msgid "Multivalued" -msgstr "mehrwertiges" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 -msgid "Order" -msgstr "bestellen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 -msgid "DCES" -msgstr "DCES" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 -msgid "Advanced field parameters" -msgstr "erweiterte Felder Parameter" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 -msgid "Thesaurus branch" -msgstr "Thesaurus Sprung" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 -msgid "Type" -msgstr "Typ" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 -msgid "Vocabulary type" -msgstr "Wortschatz Typ" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 -msgid "Limited vocabulary" -msgstr "begrenzter Wortschatz" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 -msgid "Business Fields" -msgstr "Geschäftsfelder" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 -msgid "Separator" -msgstr "Trennzeichen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 -msgid "Display & action settings" -msgstr "Anzeige und Aktions-Einstellungen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 -msgid "Mandatory" -msgstr "erforderlich" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 -msgid "Indexable" -msgstr "indizierbar" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 -msgid "Read-only" -msgstr "schreibgeschützt" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 -msgid "Display thumbnails" -msgstr "Vorschaubilder anschauen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 -msgid "Tous" -msgstr "Alle" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 -msgid "Aucun" -msgstr "Kein(e)" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 -msgid "Current configuration contains some errors" -msgstr "Die aktuelle Konfiguration beinhaltet einige Fehler" - -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 -msgid "reponses:: partager" -msgstr "Teilen" - -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 -#, php-format -msgid "%entry_length% documents" -msgstr "%entry_length% documents" - -#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 -msgid "Loading database documentary structure ..." -msgstr "Laden der dokumentarischen Datenbankstruktur…" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 -msgid "Upload a csv file for users creation" -msgstr "Hochladen Sie eine csv Datei, um Benutzer zu erstellen" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 -msgid "An error occured while upload the file. Please retry" +"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " +"base est necessaire" msgstr "" -"Ein Fehler ist aufgetreten beim Datei Hochladen. Bitte versuchen Sie es " -"erneut." +"Das Link mit dem Thesaurus soll verändert werden, die Wieder Indexierung ist " +"erforderlich" -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 -msgid "Row login is missing, script has stopped" -msgstr "Row Login fehlt, Skript wurde gestoppt." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:167 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 +msgid "thesaurus:: reindexation necessaire" +msgstr "wieder Indexierung erforderlich" -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 -msgid "Row password is missing, script has stopped" -msgstr "Row Passwort fehlt, Skript wurde gestoppt." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 -msgid "Row mail is missing, script has stopped" -msgstr "Mail Zeile fehlt, Skript wurde gestoppt" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 -msgid "The file does not contains any user to add" -msgstr "Diese Datei beinhaltet keine Benutzer zu hinzufügen" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 -msgid "You can download an example by clicking here" -msgstr "Sie können ein Vorbild hier herunterladen" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 -msgid "You can download the documentation here" -msgstr "Sie können die Dokumentation hier herunterladen" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 -msgid "Ajouter une publication" -msgstr "eine Veröffentlichung hinzufügen" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 -msgid "Feed name" -msgstr "Feed Name" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 -msgid "Date Creation" -msgstr "Erstellungsdatum" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 -msgid "Public" -msgstr "Öffentlich" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:168 -msgid "This feed is public" -msgstr "Dieses Feed ist öffentlich" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 -msgid "" -"Une fois la publication supprimee, les donnees publiees seront " -"definitivement perdues. Continuer ?" -msgstr "" -"Nachdem Sie die Veröffentlichung gelöscht haben, gehen die veröffentlichen " -"Daten eingültig verloren. Fortsetzen?" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 -msgid "thesaurus:: Proprietes" -msgstr "Eigenschaften" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 -msgid "thesaurus:: remplacer" -msgstr "ersetzen" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 -msgid "thesaurus:: %hits% reponses retournees" -msgstr "%hits% Ergebnisse geliefert" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 -msgid "thesaurus:: synonymes" -msgstr "Synonyme" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 -msgid "thesaurus:: hits" -msgstr "Ergebnisse" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 -msgid "thesaurus:: ids" -msgstr "Benutzernamen" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "das Löschen des Begriffes \"%s\" bestätigen" - -#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 -msgid "Incorrect please try again" -msgstr "Falsch, bitte versuchen Sie es erneut" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 -msgid "No preview available." -msgstr "Keine Voransicht verfügbar" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 -msgid "No permalink available." -msgstr "Kein Permalink verfügbar" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 -msgid "Send to Twitter" -msgstr "Auf Twitter teilen" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 -msgid "Send to Facebook" -msgstr "Auf Facebook teilen" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 -msgid "Resource URL" -msgstr "Resource URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 -msgid "Detailed view URL" -msgstr "Detailansicht URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 -msgid "Embed code" -msgstr "Embed-Code" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 -msgid "No URL available" -msgstr "keine verfügbare URL" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 -msgid "admin::tasks: planificateur de taches" -msgstr "Aufgaben-Scheduler" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 -msgid "Last update at" -msgstr "Letzte Aktualisierung um" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 -msgid "admin::tasks: statut de la tache" -msgstr "Status" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 -msgid "admin::tasks: process_id de la tache" -msgstr "Prozess id" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 -msgid "admin::tasks: etat de progression de la tache" -msgstr "im Gange" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 -msgid "Start" -msgstr "Start" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 -msgid "Stop" -msgstr "Stop" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 -msgid "Logs" -msgstr "Logs" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 -msgid "admin::tasks: Nouvelle tache" -msgstr "Neue Aufgabe" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 -msgid "admin::tasks: supprimer la tache ?" -msgstr "Aufgabe löschen?" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 -msgid "phraseanet::status bit" -msgstr "Status" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 -msgid "status:: nom" -msgstr "Synonym" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 -msgid "status:: cherchable par tous" -msgstr "suchbar" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 -msgid "status:: Affichable pour tous" -msgstr "angezeigte Bildzeichen" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "oui" -msgstr "Ja" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "non" -msgstr "Nein" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 -msgid "An error occurred" -msgstr "Ein Fehler ist aufgetreten" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 -msgid "" -"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " -"contactez le support technique" -msgstr "" -"Leider ist ein Fehler aufgetreten. Sollte sich dieser Fehler wiederholen " -"kontaktieren Sie bitte den Administrator" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 -msgid "" -"phraseanet::erreur: La connection au serveur Phraseanet semble etre " -"indisponible" -msgstr "Die Verbindung mit Phraseanet Server ist derzeit nich verfügbar" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 -msgid "" -"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "Sie sind nun abgemeldet. Bitte loggen Sie sich wieder ein" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 -msgid "Cocher toute la colonne" -msgstr "die ganze Spalte markieren" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 -msgid "Decocher toute la colonne" -msgstr "die ganze Spalte unmarkieren" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 -msgid "Creer un model" -msgstr "eine Vorlage erstellen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 -msgid "Creer un utilisateur" -msgstr "einen Benutzer erstellen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "This file is too big" -msgstr "Datei ist zu gross" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 -msgid "This field is required" -msgstr "Dieses Feld ist erforderlich" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 -msgid "Successful install" -msgstr "Erfolgreiche Installation" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 -msgid "Ajouter un nouvel utilisateur" -msgstr "einen neuen Benutzer hinzufügen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 -msgid "Adresse email du nouvel utilisateur" -msgstr "Email Adresse der neuen Benutzer" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 -msgid "Send an email to the user to setup his password" -msgstr "Eine Email zum Benutzer senden, um sein Passwort festzulegen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 -msgid "Require email validation to activate the account" -msgstr "Email Validierung erfordern, um Konto zu aktivieren" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 -msgid "Creer un modele" -msgstr "eine Vorlage erstellen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 -msgid "Nom du nouveau modele" -msgstr "Name der neue Vorlage" - -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 -msgid "erreur avec la valeur %name%" -msgstr "Fehler mit %name% Wert" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 -msgid "Completion of your registration" -msgstr "Ausfüllen von Ihrer Registrierung" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 -msgid "Please complete the information to complete your registration" -msgstr "" -"Bitte füllen Sie die Information aus, um Ihre Registrierung abzuschliessen" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 -msgid "Mandatory fields" -msgstr "Pflichtfelder" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 -msgid "I have read the terms of use" -msgstr "Ich habe die Nutzungsbedingungen gelesen" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 -msgid "Resquest access" -msgstr "Zugangsanforderung" - -#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 -msgid "Page" -msgstr "Seite" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:173 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 +msgid "thesaurus:: pas de reindexation" +msgstr "Keine Wieder Indexierung" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:37 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:60 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:37 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:60 msgid "Authorization Access" msgstr "Zugangsberechtigung" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:77 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:77 msgid "" "Do you authorize the application %application_name% to access to your " @@ -8888,103 +10978,630 @@ msgstr "" "Erlauben Sie, die %application_name% Anwendung, zu Ihrem Phraseanet Inhalt " "zu zugreifen?" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:89 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:89 msgid "Authorize" msgstr "berechtigen" -#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 -msgid "validation:: note" -msgstr "Kommentare" +#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:51 +msgid "Story name" +msgstr "Bericht Name" +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:40 +msgid "Toutes les publications" +msgstr "Alle Veröffentlichungen" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:76 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:84 +msgid "publications:: s'abonner aux publications" +msgstr "anmelden" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:97 +msgid "Aller a" +msgstr "Gehen Sie zu" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:165 +msgid "Aucune entree pour le moment" +msgstr "Keine Angaben zur Zeit" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:188 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:199 +msgid "charger d'avantage de publications" +msgstr "mehr Veröffentlichungen hochladen" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:57 +msgid "thesaurus:: Editer le thesaurus" +msgstr "Thesaurus bearbeiten" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:62 +msgid "phraseanet:: choisir" +msgstr "wählen" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:99 +msgid "thesaurus:: langue pivot" +msgstr "Sprachdatei auswählen" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:138 +msgid "thesaurus:: Vous n'avez acces a aucune base" +msgstr "Sie haben keinen Zugriff auf die Datenbanken" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:23 +msgid "publications:: dernieres publications" +msgstr "Letzte Veröffentlichungen" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:86 +msgid "publications:: derniere mise a jour" +msgstr "Letzte Aktualisierung" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:28 +msgid "" +"%name% est momentanement indisponible a cause d'un trop grand nombre de " +"requetes" +msgstr "%name% wird jetzt unverfügbar, zu viele Anfragen" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:33 +msgid "le service sera de nouveau disponible dans quelques minutes" +msgstr "Die Dienstleistung wird in einige Minuten wieder verfügbar sein." + +#: tmp/cache_twig/ad/f2/729310ca9a232e57a4b9b0a8712f22ac9f3beed123d66108eb967410eb92.php:35 +#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 +msgid "Loading database documentary structure ..." +msgstr "Laden der dokumentarischen Datenbankstruktur…" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:37 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 +msgid "thesaurus:: Proprietes" +msgstr "Eigenschaften" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:115 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 +msgid "thesaurus:: remplacer" +msgstr "ersetzen" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:138 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 +msgid "thesaurus:: %hits% reponses retournees" +msgstr "%hits% Ergebnisse geliefert" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:160 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 +msgid "thesaurus:: synonymes" +msgstr "Synonyme" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:164 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 +msgid "thesaurus:: hits" +msgstr "Ergebnisse" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:168 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 +msgid "thesaurus:: ids" +msgstr "Benutzernamen" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:438 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 +#, php-format +msgid "thesaurus:: Confirmer la suppression du terme %s" +msgstr "Das Löschen des Begriffes \"%s\" bestätigen" + +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:126 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 +msgid "reponses:: partager" +msgstr "Teilen" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:37 +msgid "thesaurus:: accepter..." +msgstr "annehmen" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:181 +msgid "thesaurus:: removed_src" +msgstr "removed_src" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:187 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:216 +msgid "thesaurus:: refresh" +msgstr "aktualiseren" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:210 +msgid "thesaurus:: removed tgt" +msgstr "removed tgt" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:261 +msgid "thesaurus:: Accepter le terme comme" +msgstr "Begriff akzeptieren als :" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:269 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:292 +msgid "thesaurus:: comme terme specifique" +msgstr "als bestimmter Begriff" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:278 +msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +msgstr "als Synonym von %fullpath_tgt_raw%" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:289 +msgid "thesaurus:: Accepter la branche comme" +msgstr "Verzweigung akzeptieren als :" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:323 +msgid "" +"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " +"ne peut etre accepte" +msgstr "" +"Hier im Thesaurus, ein möglicher Begriff des Feldes %cfield% kann nicht " +"angenommen werden" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:35 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 +msgid "Access history" +msgstr "auf Geschichte zugreifen" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:47 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +msgid "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." +msgstr "" +"Wenn Sie ungewohnte Geräte oder Orten bemerken, klicken Sie auf \"Aktivität " +"beenden\", um die Session zu schliessen" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:57 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +msgid "Date de connexion" +msgstr "Verbindungsdatum" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:63 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +msgid "Dernier access" +msgstr "Letzter Zugriff" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:69 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +msgid "IP" +msgstr "IP" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:75 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 +msgid "Browser" +msgstr "Browser" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:101 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:103 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +msgid "End Activity" +msgstr "Aktivität beenden" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:109 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:109 +msgid "Current session" +msgstr "Aktuelle Session" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:162 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +msgid "End session activity" +msgstr "Session Aktivität beenden" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:168 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +msgid "Do you really want to end the activity of this session?" +msgstr "Möchten Sie wirklich, die Aktivität von dieser Session beenden?" + +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:184 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 +msgid "boutton::mettre a jour" +msgstr "updaten" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:22 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 +msgid "Phrasea search-engine configuration" +msgstr "Phrasea Suchmaschine Konfiguration" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:33 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemming" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:37 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Stemming erlauben" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:47 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 +msgid "Default sort" +msgstr "Standard-Sortierung" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:22 +msgid "thesaurus:: Nouveau terme" +msgstr "Neuer Begriff" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:25 +msgid "thesaurus:: terme" +msgstr "Begriff" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:32 +msgid "thesaurus:: synonyme" +msgstr "Synonym" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:103 +msgid "thesaurus:: contexte" +msgstr "Kontext" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:111 +msgid "phraseanet:: language" +msgstr "Sprache" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:29 +msgid "The following errors have been detected" +msgstr "Die folgende Fehler wurden festgestellt" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:50 +msgid "Would you like to continue ?" +msgstr "Möchten Sie, fortzufahren?" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:87 +msgid "Apply a model" +msgstr "eine Vorlage anwenden" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:146 +msgid "You need define a model before importing a list of users" +msgstr "" +"Sie müssen zuerst eine Vorlage festlegen, um eine Liste von Benutzern zu " +"importieren" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:155 +msgid "There is no user to add." +msgstr "Kein Benutzer zu hinzufügen" + +#: tmp/cache_twig/cf/3e/e1d89f6514485729bfa2ba6dc3be1d53c29c1d22dce9eee2e2b2faacbf67.php:35 +#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 +msgid "Page" +msgstr "Seite" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:22 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 +msgid "admin::tasks: planificateur de taches" +msgstr "Aufgaben-Scheduler" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:27 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 +msgid "Last update at" +msgstr "Letzte Aktualisierung um" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:54 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 +msgid "admin::tasks: statut de la tache" +msgstr "Status" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:58 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 +msgid "admin::tasks: process_id de la tache" +msgstr "Prozess id" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:62 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 +msgid "admin::tasks: etat de progression de la tache" +msgstr "im Gange" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:135 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +msgid "Start" +msgstr "Start" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:141 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +msgid "Stop" +msgstr "Stop" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:153 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +msgid "Logs" +msgstr "Logs" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:216 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 +msgid "admin::tasks: Nouvelle tache" +msgstr "Neue Aufgabe" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:468 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 +msgid "admin::tasks: supprimer la tache ?" +msgstr "Aufgabe löschen?" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:100 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 +msgid "Informations personnelles" +msgstr "vertrauliche Informationen" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:198 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 +msgid "login:: Changer mon adresse email" +msgstr "meine E-Mail Adresse ändern" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:206 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 +msgid "Password" +msgstr "Passwort" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:213 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 +msgid "admin::compte-utilisateur changer mon mot de passe" +msgstr "mein Passwort ändern" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:324 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 +msgid "Notification par email" +msgstr "E-Mail Benachrichtigungen" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:386 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 +msgid "FTP" +msgstr "FTP" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:393 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 +msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +msgstr "FTP-Funktion aktivieren" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:468 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 +msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +msgstr "Ordner Namens-Prefix" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:25 +msgid "Updated structure" +msgstr "aktualisierte Struktur" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:29 +msgid "Structure has been successfully updated" +msgstr "Struktur wurde erfolgreich aktualisiert" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:45 +msgid "Structure errors" +msgstr "Strukturfehler" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:49 +msgid "admin::base: xml invalide, les changements ne seront pas appliques" +msgstr "XML ungültig, die Änderungen werden nicht angewendet" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:105 +msgid "admin::base: structure" +msgstr "Struktur" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:35 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 +msgid "new client application" +msgstr "Neue Client Anwendung" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:80 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 +msgid "Nom" +msgstr "Name" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:106 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 +msgid "Site web" +msgstr "Webseite" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:123 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 +msgid "Type d'application" +msgstr "Anwendungstyp" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:133 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 +msgid "Application web" +msgstr "Webanwendung" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:144 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 +msgid "Application desktop" +msgstr "Desktopanwendung" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:27 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 +msgid "phraseanet::status bit" +msgstr "Status" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:40 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 +msgid "status:: nom" +msgstr "Synonym" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:44 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 +msgid "status:: cherchable par tous" +msgstr "suchbar" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:48 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 +msgid "status:: Affichable pour tous" +msgstr "angezeigte Bildzeichen" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "oui" +msgstr "Ja" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "non" +msgstr "Nein" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:184 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 +msgid "An error occurred" +msgstr "Ein Fehler ist aufgetreten" + +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 +#, php-format +msgid "%entry_length% documents" +msgstr "%entry_length% documents" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:158 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:158 msgid "Aucun statut editable" msgstr "Kein editierbarer Status" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:164 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:164 msgid "" "Les status de certains documents ne sont pas accessibles par manque de droits" msgstr "Status von einigen Dokumenten werden nicht erreichbar, fehlende Rechte" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:242 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:242 msgid "boutton::remplacer" msgstr "ersetzen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:273 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:273 msgid "phraseanet:: presse-papier" msgstr "Zwischenablage" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:281 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:281 msgid "prod::editing: rechercher-remplacer" msgstr "suchen / ersetzen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:285 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:285 msgid "prod::editing: modeles de fiches" msgstr "Vorlage" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:332 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:332 msgid "prod::editing::replace: remplacer dans le champ" msgstr "In dem Feld ersetzen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:338 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:338 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "In allen Feldern ersetzen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:363 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:363 msgid "prod::editing:replace: chaine a rechercher" msgstr "Suchen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:372 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:372 msgid "prod::editing:remplace: chaine remplacante" msgstr "ersetzen durch" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:381 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:381 msgid "prod::editing:remplace: options de remplacement" msgstr "Optionen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:387 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:387 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "regulärer Ausdruck" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:418 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:418 msgid "Aide sur les expressions regulieres" msgstr "Hilfe zu reguläre Ausdrücken" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:427 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:427 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "alles ersetzen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:433 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:433 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Gross- und Kleinschreibung nicht unterschieden" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:440 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:440 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "vollständiges Feld" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:446 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:446 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "im Feld gehalten" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:452 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:452 msgid "prod::editing:remplace::option respecter la casse" msgstr "Gross- und Kleinschreibung unterschieden" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:503 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:503 msgid "prod::editing:indexation en cours" msgstr "Indexierung in Vorbereitung" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:528 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:528 msgid "prod::editing: valider ou annuler les modifications" msgstr "Änderungen bestätigen oder abbrechen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:536 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:536 msgid "edit::preset:: titre" msgstr "Titel" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:545 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:545 msgid "Edition impossible" msgstr "Bearbeitung nicht möglich" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:554 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:554 msgid "" "prod::edit: Impossible d'editer simultanement des documents provenant de " @@ -8993,6 +11610,7 @@ msgstr "" "Es ist nicht möglich, Dokumente die aus verschiedenen Bilddatenbanken " "stammen gleichzeitig zu bearbeiten" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:560 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:560 msgid "" "prod::editing: aucun documents ne peuvent etre edites car vos droits sont " @@ -9001,6 +11619,7 @@ msgstr "" "Es können keine Dokumente bearbeitet werden, da Sie keine Berechtigung für " "das Bearbeiten haben" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:597 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:597 msgid "" "prod::editing: %not_actionable% documents ne peuvent etre edites car vos " @@ -9009,276 +11628,114 @@ msgstr "" "%not_actionable% Dokumente können nicht bearbeitet werden, da Sie keine " "Rechte darauf haben" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:603 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:603 msgid "" "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "Keine Bearbeitung möglich. Sie haben keinen Zugriff auf die Dokumente" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:764 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:764 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "" "Einige Felder müssen ausgefüllt werden, um diese Bearbeitung zu bestätigen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:797 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:797 msgid "edit: chosiir limage du regroupement" msgstr "Als Hauptbild einrichten" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:843 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:843 msgid "prod::editing::fields: status " msgstr "Status " +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:894 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:894 msgid "Ce champ est decrit comme un element DublinCore" msgstr "Dieses Feld wird als einen Dublin Core Element beschrieben" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:903 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:903 msgid "This field represents the title of the document" msgstr "This field represents the title of the document" -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 -msgid "Retour a laccueil" -msgstr "Zurück zur Startseite" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:22 +msgid "Upload a csv file for users creation" +msgstr "Hochladen Sie eine csv Datei, um Benutzer zu erstellen" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 -msgid "Vous avez recu un nouveau panier" -msgstr "Sie haben einen neuen Sammelkorb erhalten" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:40 +msgid "An error occured while upload the file. Please retry" +msgstr "" +"Ein Fehler ist aufgetreten beim Datei Hochladen. Bitte versuchen Sie es " +"erneut." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 -msgid "Vous avez recu une demande de validation de document sur ce panier" -msgstr "Sie können eine Bewertung der Bilder in diesem Sammelkorb abgeben" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:46 +msgid "Row login is missing, script has stopped" +msgstr "Row Login fehlt, Skript wurde gestoppt." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 -msgid "action::exporter" -msgstr "exportieren" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:52 +msgid "Row password is missing, script has stopped" +msgstr "Row Passwort fehlt, Skript wurde gestoppt." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 -msgid "action::editer" -msgstr "bearbeiten" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:58 +msgid "Row mail is missing, script has stopped" +msgstr "Mail Zeile fehlt, Skript wurde gestoppt" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 -msgid "action::Valider" -msgstr "Bestätigen" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:64 +msgid "The file does not contains any user to add" +msgstr "Diese Datei beinhaltet keine Benutzer zu hinzufügen" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "Sie haben eine Bewertung von Dokumenten angefordert" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:108 +msgid "You can download an example by clicking here" +msgstr "Sie können ein Vorbild hier herunterladen" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 -msgid "paniers:: panier recu de %pusher%" -msgstr "Sammelkorb von %pusher% bekommen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 -msgid "action::renommer" -msgstr "umbenennen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 -msgid "Archive" -msgstr "Archivieren" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 -msgid "action::detacher" -msgstr "entfernen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 -msgid "delete" -msgstr "löschen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 -msgid "panier:: ordre du panier" -msgstr "Sammelkorb Reihenfolge" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 -msgid "panier:: ordre Validation ascendante" -msgstr "gut bewertet" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 -msgid "panier:: ordre Validation descendante" -msgstr "weniger gut bewertet" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 -msgid "L'utilisateur approuve ce document" -msgstr "Benutzer genehmigt dieses Dokument" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "Benutzer hat seine Meinung nocht nicht gegeben" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 -msgid "L'utilisateur desapprouve ce document" -msgstr "Benutzer lehnt dieses Dokument ab" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 -msgid "This user does not participate to the validation but is only viewer." -msgstr "Dieser Benutzer darf nicht teilnehmen, nur ansehen." - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 -msgid "General settings" -msgstr "Allgemeine Einstellungen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 -msgid "your configuration" -msgstr "Ihre Konfiguration" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 -msgid "all caches services have been flushed" -msgstr "Alle Cache Dienste wurden gespüllt" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 -msgid "setup:: administrateurs de l'application" -msgstr "Anwendung Administratoren" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 -msgid "Add an admin" -msgstr "einen Administrator hinzufügen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 -msgid "setup:: Reinitialisation des droits admins" -msgstr "die Rechte von Administratoren zurücksetzen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 -msgid "boutton::reinitialiser" -msgstr "Zurücksetzen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 -msgid "setup::Tests d'envois d'emails" -msgstr "Test E-Mail Überprüfungen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 -msgid "Email test result : %email_status%" -msgstr "E-Mail Test Ergebnis: %email_status%" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 -msgid "Reset cache" -msgstr "Den Cache zurücksetzen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 -msgid "Requirements" -msgstr "Anforderungen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 -msgid "Recommendations" -msgstr "Empfehlungen" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 -msgid "Phrasea search-engine configuration" -msgstr "Phrasea Suchmaschine Konfiguration" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 -msgid "Stemming" -msgstr "Stemming" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 -msgid "Enable stemming" -msgstr "Stemming erlauben" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 -msgid "Default sort" -msgstr "Standard-Sortierung" - -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:203 -msgid "boutton::publier" -msgstr "veröffentlichen" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:116 +msgid "You can download the documentation here" +msgstr "Sie können die Dokumentation hier herunterladen" +#: tmp/cache_twig/ea/05/08255f94fc4216dbff13166ede04e1c038faf7332a59c93ff40e9e3dd830.php:26 #: tmp/cache_twig/fc/40/b874454c3bf222948d849229781e.php:26 msgid "Caption" msgstr "Beschreibung" +#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 +msgid "validation:: note" +msgstr "Kommentare" + +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:38 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:38 msgid "thesaurus:: Importer" msgstr "Importieren" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:101 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:101 msgid "thesaurus:: langue par default" msgstr "standardmässige Sprache" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:109 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:109 msgid "Fichier ASCII tabule" msgstr "tabellierte ASCII Datei" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:119 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:119 msgid "thesaurus:: supprimer les liens des champs tbranch" -msgstr "die Verbindung(en) zwischen den Felder(n) und Verzweigung(en) löschen" +msgstr "Die Verbindung(en) zwischen den Felder(n) und Verzweigung(en) löschen" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:125 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:125 msgid "thesaurus:: reindexer la base apres l'import" msgstr "wieder indexieren nach dem Import" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 -msgid "Informations personnelles" -msgstr "vertrauliche Informationen" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 -msgid "login:: Changer mon adresse email" -msgstr "meine E-Mail Adresse ändern" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -msgid "Password" -msgstr "Passwort" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "mein Passwort ändern" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 -msgid "Notification par email" -msgstr "E-Mail Benachrichtigungen" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 -msgid "FTP" -msgstr "FTP" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "FTP-Funktion aktivieren" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "Ordner Namens-Prefix" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %instance_title%!" -msgstr "" -"Füllen Sie die Felder unten aus, um auf %instance_title% zu registrieren !" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 -msgid "Request access" -msgstr "Zugriff anfordern" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "Dieses Feld muss min. %minLength% Zeichen beinhalten." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "Dieses Feld muss max. %maxLength% Zeichen beinhalten." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "Diese Informationen dienen nur zur Orientierung." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 -msgid "" -"Si vous ne les respectez pas, les documents seront correctement indexes, " -"mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" -"Wenn Sie sie nicht beachten werden die Dokumente korrekt indiziert aber die " -"Metadaten könnten eventuell falsch sein." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 -msgid "" -"Ces informations sont directement fournies par la norme de metadonnees de ce " -"champ : %norm_name%" -msgstr "" -"Diese Informationen werden direkt von Metadaten Norm von diesem Feld: " -"%norm_name%" - #: lib/Alchemy/Phrasea/Border/Checker/Colorspace.php:65 msgid "The file does not match available color" msgstr "Diese Datei passt verfügbare Farben nicht zusammen" @@ -9490,49 +11947,49 @@ msgstr "Datenbank kann nicht leer sein" msgid "Database could not be mounted" msgstr "Datenbank konnte nicht eingebaut werden" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:129 msgid "Something wrong happened, please try again or contact an admin." msgstr "" "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie " "sich an Ihren Systemadministrator" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 #, php-format msgid "%s field has been created with success." msgstr "%s Feld wurde erfolgreich erstellt" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 #, php-format msgid "%s field has been deleted with success." msgstr "%s Feld wurde erfolgreich gelöscht" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 #, php-format msgid "Do you really want to delete the field %s ?" msgstr "Möchten Sie wirklich das Feld %s löschen ?" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 msgid "Field can not be blank." msgstr "Feld kann nicht leer sein" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 msgid "Field name already exists." msgstr "Feldname existiert schon" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 msgid "Field name is not valid." msgstr "Feldname is nicht gültig" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 msgid "Field source is not valid." msgstr "Feldquelle ist nicht gültig" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 #, php-format msgid "Field %s contains errors." msgstr "Feld %s beinhaltet Fehler" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:139 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 msgid "Your configuration has been successfuly saved." msgstr "Ihre Konfiguration wurde erfolgreich gespeichert" @@ -9593,48 +12050,48 @@ msgstr "Aktualisierung ist fehlgeschlagen" msgid "Clear" msgstr "Klar" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:555 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:564 msgid "" "login::register:email: Vous avez ete accepte sur les collections suivantes : " msgstr "Sie haben nun Zugriff auf die folgenden Kollektionen : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:558 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:567 msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " msgstr "Sie haben keinen Zugriff auf die folgenden Kollektionen : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:662 #, php-format msgid "Login line %d is empty" msgstr "Login Zeile %d ist leer" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:664 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "Login %s ist schon in Datei bei Zeile %d festgelegt" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:667 #, php-format msgid "Login %s already exists in database" msgstr "Login %s existiert schon in Datenbank" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:678 #, php-format msgid "Mail line %d is empty" msgstr "Mail Linie %d ist leer" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Email '%s' for login '%s' already exists in database" msgstr "Email '%s' für Login '%s' existiert schon im Datenbank" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:690 #, php-format msgid "Password is empty at line %d" msgstr "Passwort ist leer bei Zeile %d" #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1010 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1025 msgid "login::erreur: Erreur d'authentification" msgstr "Anmeldefehler" @@ -9675,7 +12132,7 @@ msgid "boutton::renouveller" msgstr "erneuern" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Print" msgstr "Drucken" @@ -9759,11 +12216,11 @@ msgstr "%d schwebende Elemente" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 msgid "Export" msgstr "Exportieren" -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:245 +#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:244 msgid "Vocabulary not found" msgstr "Vokabeln nicht gefunden" @@ -10009,60 +12466,64 @@ msgstr "kein ausgewähltes Dokument" msgid "List name can not be empty" msgstr "Name der Liste muss nicht leer sein" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +msgid "Please provide a name for this selection." +msgstr "Bitte benennen Sie diese Kollektion" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 #, php-format msgid "%d fields have been updated" msgstr "%d Felder wurden aktualisiert" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "No users selected" msgstr "Kein Benutzer ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "An error occurred reading this file" msgstr "Ein Fehler ist beim Lesen dieser Datei aufgetreten" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 msgid "Please select one record" msgstr "Bitte wählen Sie einen Datensatz aus" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 msgid "You can choose only one record" msgstr "Sie dürfen nur einen Datensatz auswählen" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 msgid "An error occured, please retry" msgstr "Ein Fehler ist aufgetreten, bitte versuchen Sie nochmal" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Some files are being downloaded" msgstr "Einige Dateien werden heruntergeladen" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 msgid "This feature is not supported by your browser" msgstr "Diese Funktion wird nicht von Ihrem Webbrowser unterhalten" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "No active basket" msgstr "Kein aktiver Sammekorb" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Force sending of the document ?" msgstr "Senden von dem Dokument zwingen?" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Share" msgstr "Verteilen" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Move" msgstr "Verschieben" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Tool box" msgstr "Toolbox" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:113 msgid "Attention !" msgstr "Achtung !" @@ -10129,86 +12590,86 @@ msgstr "" "erneut oder wenden Sie sich an Ihren Systemadministrator" #: lib/Alchemy/Phrasea/Controller/Prod/Push.php:154 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:274 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:269 msgid "Unable to send the documents" msgstr "Es ist nicht möglich Dokumente zu senden" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:163 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:160 #, php-format msgid "Push from %s" msgstr "Push von %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:166 msgid "No receivers specified" msgstr "Kein Empfänger ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:170 msgid "No elements to push" msgstr "Keine Dokumente für den Push" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:182 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:371 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:361 #, php-format msgid "Unknown user %d" msgstr "Unbekannte Benutzer %d" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:248 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d Datensätze wurden zu %2$d Benutzer gesendet" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:287 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:279 #, php-format msgid "Validation from %s" msgstr "Bestätigung von %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:285 msgid "No participants specified" msgstr "Keine Teilnehmer ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:299 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:289 msgid "No elements to validate" msgstr "Keine Dokumente zu bestätigen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:365 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:355 #, php-format msgid "Missing mandatory parameter %s" msgstr "Fehlende parameter %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:457 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:447 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "%1$d Datensätze wurden für Bestätigung zu %2$d Benutzer gesendet" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:521 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:511 msgid "You are not allowed to add users" msgstr "Sie werden nicht erlaubt, Benutzer zu hinzufügen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:514 msgid "First name is required" msgstr "Vorname erforderlich" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:527 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "Last name is required" msgstr "Nachname erforderlich" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:530 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "Email is required" msgstr "Email Adresse erforderlich" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:533 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Email is invalid" msgstr "Ungültige Email Adresse" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:547 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 msgid "User already exists" msgstr "Benutzer existiert schon" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:560 msgid "User successfully created" msgstr "Benutzer wurde erfolgreich erstellt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:574 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:564 msgid "Error while creating user" msgstr "Fehler bei der Erstellung des Benutzers" @@ -10514,7 +12975,7 @@ msgid "report:: module" msgstr "Module" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:591 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:606 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "erfolgreiche Passwort Aktualisierung" @@ -10572,161 +13033,161 @@ msgstr "Veränderungen wurden bestätigt" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Ein Fehler ist beim Senden Ihrer Datei aufgetreten" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:204 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Please provide a value." msgstr "Bitte bieten Sie einen Wert an." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 #, php-format msgid "Please select at least %s choice." msgstr "Bitte markieren Sie mindestens %s Auwahl." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Please provide a valid email address." msgstr "Bitte geben Sie eine gültige E-Mail Adresse ein." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:222 msgid "Please provide a valid IP address." msgstr "Bitte geben Sie eine gültige IP Adresse ein." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:223 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "Bitte geben Sie einen längeren Wert: %s Zeichen oder mehr" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:224 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "Bitte geben Sie die selbe Passwörter ein" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:225 msgid "Please provide the same emails." msgstr "Bitte geben Sie die gleiche E-Mail Adressen ein" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:226 msgid "Please accept the terms of use to register." msgstr "Bitte nehmen Sie die Nutzungsbedingungen an, um zu registrieren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:227 msgid "No collection selected" msgstr "Keine Kollektion ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 #, php-format msgid "%d collection selected" msgstr "%d Kollektion ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:229 #, php-format msgid "%d collections selected" msgstr "%d Kollektionen ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:230 msgid "Select all collections" msgstr "Alle Kollektionen auswählen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:217 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:232 msgid "Weak" msgstr "swach" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:233 msgid "Ordinary" msgstr "Einfach" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:234 msgid "Good" msgstr "Gut" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:235 msgid "Great" msgstr "Großartig" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:263 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:270 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:278 msgid "You tried to register with an unknown provider" msgstr "Sie haben es versucht, mit einem unbekannten Provider zu registrieren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:290 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:305 msgid "Invalid captcha answer." msgstr "ungültige CAPTCHA Antwort" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:395 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:466 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:410 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:481 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "E-Mail Bestätigungsanfrage gesendet" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:398 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:413 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:484 msgid "Unable to send your account unlock email." msgstr "unmöglich, Ihr freigeschaltet Konto E-Mail zu senden" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:459 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:474 msgid "Invalid link." msgstr "ungültiges Link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:508 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:516 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:524 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:523 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:539 msgid "Invalid unlock link." msgstr "ungültiges freigeschaltet Link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:530 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:545 msgid "Account is already unlocked, you can login." msgstr "Konto ist schon freigeschaltet, Sie dürfen einloggen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:541 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:556 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account has been unlocked, you can now login." msgstr "Konto wurde freigeschaltet, Sie dürfen nun einloggen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:557 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:572 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" "Konto wurde freigeschaltet, Sie müssen auf eine Administrator Genehmigung " "warten." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:627 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:642 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Konto nicht gefunden" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:633 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:648 msgid "Invalid email address" msgstr "ungültige E-Mail Adresse" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:649 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Wir haben Ihnen ein E-Mail gesendet" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:697 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:712 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "Sie sind nun erfolgreich abgemeldet. Bis bald!" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:724 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:739 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" "Fehler: Keine verfügbare Verbindung - Bitte kontaktieren Sie den " "Administrator" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:769 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:784 msgid "Phraseanet guest-access is disabled" msgstr "Phraseanet Gast Zugriff ist deaktiviert" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:889 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:904 #, php-format msgid "Unable to authenticate with %s" msgstr "unmöglich, mit %s zu authentifizieren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:913 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:928 msgid "Unable to retrieve provider identity" msgstr "unmöglich, Provider Identität abzurufen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:952 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:967 msgid "Your identity is not recognized." msgstr "Ihre Identität wird nicht erkannt" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:984 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" @@ -10734,11 +13195,11 @@ msgstr "" "Ein Fehler ist bei Ihre Authentifizierung aufgetreten. Bitte wenden Sie sich " "an Ihren Systemadministrator" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1014 msgid "Please fill the captcha" msgstr "Füllen Sie bitte die CAPTCHA aus" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1003 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1018 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "" "Zugriff nicht möglich. Sie haben Ihre E-Mail Adresse noch nicht bestätigt" @@ -10749,47 +13210,47 @@ msgstr "" "Die Anwendung wird wegen Überarbeitung heruntergefahren. Vielen Dank für Ihr " "Verständnis" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:430 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Datei erzeugt : %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:447 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:446 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s Datei(en) erzeugt" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:449 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:448 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Fehler beim Dateidatensatz" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:609 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:608 #, php-format msgid "over-indent at line %s" msgstr "over-indent at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:616 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:615 #, php-format msgid "bad encoding at line %s" msgstr "bad encoding at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:622 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:621 #, php-format msgid "bad character at line %s" msgstr "bad character at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1819 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1976 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3195 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1818 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1975 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3194 msgid "thesaurus:: corbeille" msgstr "Stock" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1608 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1616 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "%d Aufnahme(n) aktualisiert" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1611 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1619 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "Zuviele (%1$d) Aufnahmen zu aktualisieren (limit=%2$d)" @@ -10888,16 +13349,16 @@ msgstr "aktuelles Passwort" msgid "Default basket" msgstr "Standard Sammelkorb" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:596 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:599 msgid "Email addess is not valid" msgstr "Email Adresse ist nicht gültig" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:624 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:627 #, php-format msgid "You will now receive notifications at %s" msgstr "Sie werden Benachrichtigungen zu %s bekommen" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:635 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:638 #, php-format msgid "You will no longer receive notifications at %s" msgstr "Sie werden Benachrichtigungen zu %s nicht mehr bekommen" @@ -11129,11 +13590,15 @@ msgstr "Bestätigung starten" msgid "Validation request from %s : '%s'" msgstr "Bestätigungsanfrage von %s : '%s'" -#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:72 #, php-format msgid "You have %d days to validate the selection." msgstr "Sie haben %d Tage, um die Auswahl zu bestätigen" +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +msgid "You have 1 day to validate the selection." +msgstr "Sie haben 1 verbleibenden Tag, um Ihr Auswahl zu bestätigen" + #: lib/Alchemy/Phrasea/Notification/Mail/MailRecordsExport.php:21 msgid "Vous avez recu des documents" msgstr "Sie haben Dokumente bekommen" @@ -11420,6 +13885,3 @@ msgstr "Liste nicht gefunden" #: lib/Doctrine/Repositories/UsrListRepository.php:57 msgid "You have not access to this list" msgstr "Sie haben keinen Zugriff auf diese Liste" - -#~ msgid "Enable Google Chrome frame" -#~ msgstr "Google Chrome Frame aktivieren" diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.mo b/locale/en_GB/LC_MESSAGES/phraseanet.mo index 86f68a6c06..2118ac5cf2 100644 Binary files a/locale/en_GB/LC_MESSAGES/phraseanet.mo and b/locale/en_GB/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.po b/locale/en_GB/LC_MESSAGES/phraseanet.po index 554f4bc7a8..734bd1f90a 100644 --- a/locale/en_GB/LC_MESSAGES/phraseanet.po +++ b/locale/en_GB/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-24 11:11+0100\n" -"PO-Revision-Date: 2013-09-24 15:56+0100\n" +"POT-Creation-Date: 2013-11-12 16:57+0100\n" +"PO-Revision-Date: 2013-11-14 14:08+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 13:42+0000\n" +"X-Launchpad-Export-Date: 2013-11-14 12:56+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -24,67 +24,71 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 +#: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" msgstr "Flushing cache" -#: lib/classes/appbox.php:305 +#: lib/classes/appbox.php:306 msgid "Creating new tables" msgstr "Creating new tables" -#: lib/classes/appbox.php:319 +#: lib/classes/appbox.php:320 msgid "Purging directories" msgstr "Purging directories" -#: lib/classes/appbox.php:342 +#: lib/classes/appbox.php:343 msgid "Copying files" msgstr "Copying files" -#: lib/classes/appbox.php:361 +#: lib/classes/appbox.php:362 msgid "Upgrading appbox" msgstr "Upgrading appbox" -#: lib/classes/appbox.php:369 +#: lib/classes/appbox.php:370 #, php-format msgid "Upgrading %s" msgstr "Upgrading %s" -#: lib/classes/appbox.php:377 +#: lib/classes/appbox.php:378 msgid "Post upgrade" msgstr "Post upgrade" -#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 +#: lib/classes/appbox.php:392 lib/classes/appbox.php:394 msgid "" "Your install requires data migration, please execute the following command" msgstr "" "Your install requires data migration, please execute the following command" -#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 +#: lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "Your install might need to re-read technical datas" -#: lib/classes/base.php:287 +#: lib/classes/appbox.php:399 +msgid "Your install might need to build some sub-definitions" +msgstr "Your install might need to build some subviews." + +#: lib/classes/base.php:288 #, php-format msgid "Updating table %s" msgstr "Updating table %s" -#: lib/classes/base.php:300 lib/classes/base.php:522 lib/classes/base.php:736 -#: lib/classes/base.php:749 +#: lib/classes/base.php:301 lib/classes/base.php:523 lib/classes/base.php:737 +#: lib/classes/base.php:750 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Error when trying; error : %s" -#: lib/classes/base.php:319 +#: lib/classes/base.php:320 #, php-format msgid "Creating table %s" msgstr "Creating table %s" -#: lib/classes/base.php:325 lib/classes/base.php:802 +#: lib/classes/base.php:326 lib/classes/base.php:808 #, php-format msgid "Applying patches on %s" msgstr "Applying patches on %s" -#: lib/classes/base.php:766 +#: lib/classes/base.php:767 msgid "Looking for patches" msgstr "Looking for patches" @@ -107,12 +111,14 @@ msgstr "" #: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:30 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "Production" #: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:40 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "Client" @@ -120,6 +126,8 @@ msgstr "Client" #: lib/classes/phrasea.php:114 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:50 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:139 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "Admin" @@ -127,6 +135,8 @@ msgstr "Admin" #: lib/classes/phrasea.php:115 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:60 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:166 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "Report" @@ -134,12 +144,15 @@ msgstr "Report" #: lib/classes/phrasea.php:116 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:70 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:111 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" #: lib/classes/phrasea.php:117 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:80 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "Lightbox" @@ -147,6 +160,8 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:118 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:90 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 @@ -156,6 +171,7 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:119 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:225 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "Upload" @@ -188,9 +204,13 @@ msgstr "Yesterday" #: lib/classes/queries.php:168 lib/classes/queries.php:181 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:197 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1402 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:202 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:197 #: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:104 msgid "boutton::chercher" msgstr "Search" @@ -208,15 +228,22 @@ msgstr "This value can't be empty" msgid "Url non valide" msgstr "Url is not valid" -#: lib/classes/API/V1/adapter.php:1100 lib/classes/API/V1/adapter.php:1146 -#: lib/classes/API/V1/adapter.php:1196 lib/classes/API/V1/adapter.php:1220 +#: lib/classes/API/V1/adapter.php:1103 lib/classes/API/V1/adapter.php:1149 +#: lib/classes/API/V1/adapter.php:1199 lib/classes/API/V1/adapter.php:1223 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:58 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:860 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:228 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:331 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:53 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:46 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:860 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:65 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 @@ -238,7 +265,7 @@ msgstr "Url is not valid" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 @@ -254,11 +281,11 @@ msgstr "Url is not valid" msgid "An error occured" msgstr "An error occurred" -#: lib/classes/API/V1/adapter.php:1194 +#: lib/classes/API/V1/adapter.php:1197 msgid "Record Not Found" msgstr "Record Not Found" -#: lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1221 msgid "Story Not Found" msgstr "Story not found" @@ -288,6 +315,7 @@ msgstr "Encoding Error" #: lib/classes/Bridge/Api/Dailymotion.php:546 #: lib/classes/Bridge/Api/Youtube.php:511 +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:136 #: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:136 msgid "En cours d'encodage" msgstr "Encoding in progress" @@ -357,6 +385,7 @@ msgid "Photos" msgstr "Photos" #: lib/classes/Bridge/Api/Flickr.php:613 +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:43 #: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:43 msgid "Photosets" msgstr "Photos set" @@ -460,7 +489,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "Youtube Service cannot be found." -#: lib/classes/caption/record.php:279 +#: lib/classes/caption/record.php:313 msgid "Open the URL in a new window" msgstr "Open the link in a new window" @@ -489,6 +518,7 @@ msgstr "Target Device" #: lib/classes/deprecated/inscript.api.php:193 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:91 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:91 msgid "login::register: acces authorise sur la collection " msgstr "Access granted on : " @@ -504,31 +534,42 @@ msgstr "Access granted on : " #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:247 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:291 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:336 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:101 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:154 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:202 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:247 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:291 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:336 msgid "login::register::CGU: lire les CGU" -msgstr "read GTU" +msgstr "Read GTU" #: lib/classes/deprecated/inscript.api.php:203 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:144 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:144 msgid "login::register: acces refuse sur la collection " msgstr "Access rejected on " #: lib/classes/deprecated/inscript.api.php:213 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:191 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:191 msgid "login::register: en attente d'acces sur" msgstr "Waiting for access confirmation on" #: lib/classes/deprecated/inscript.api.php:223 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:236 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:236 msgid "login::register: acces temporaire sur" msgstr "Temporary access on" #: lib/classes/deprecated/inscript.api.php:233 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:281 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:281 msgid "login::register: acces temporaire termine sur " msgstr "Temporary access closed on " #: lib/classes/deprecated/inscript.api.php:243 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:325 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:325 msgid "login::register: acces supendu sur" msgstr "Access suspended" @@ -538,11 +579,13 @@ msgstr "Access suspended" #: lib/classes/deprecated/inscript.api.php:383 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:367 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:430 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:367 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:430 msgid "" "login::register: L'acces aux bases ci-dessous implique l'acceptation des " "Conditions Generales d'Utilisation (CGU) suivantes" msgstr "" -"To access the following collections, you have to accept General Terms of Use" +"To access the following collections, you must accept General Terms of Use." #: lib/classes/deprecated/inscript.api.php:268 #: lib/classes/deprecated/inscript.api.php:288 @@ -550,6 +593,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:395 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:400 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:454 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:400 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:454 msgid "login::register: Faire une demande d'acces" msgstr "Register" @@ -575,7 +620,7 @@ msgstr "Print" msgid "charger d'avantages de notifications" msgstr "Load more Notifications" -#: lib/classes/eventsmanager/broker.php:302 +#: lib/classes/eventsmanager/broker.php:305 msgid "Notifications globales" msgstr "Global notifications" @@ -594,34 +639,49 @@ msgid "" msgstr "User registration" #: lib/classes/eventsmanager/notify/autoregister.php:195 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:843 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:670 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:163 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:670 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:290 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "Last name" #: lib/classes/eventsmanager/notify/autoregister.php:196 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:829 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:683 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:313 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:176 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:683 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "First name" #: lib/classes/eventsmanager/notify/autoregister.php:197 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:857 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:327 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:696 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:323 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:327 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:189 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:696 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:314 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 msgid "admin::compte-utilisateur email" msgstr "E-mail" @@ -635,7 +695,7 @@ msgstr "Receive a notification when a Bridge upload fails" #: lib/classes/eventsmanager/notify/downloadmailfail.php:120 msgid "email is not valid" -msgstr "e-mail is not valid" +msgstr "E-mail is not valid." #: lib/classes/eventsmanager/notify/downloadmailfail.php:122 msgid "failed to send mail" @@ -652,22 +712,22 @@ msgstr "The delivery to %s failed for the following reason : %s" #: lib/classes/eventsmanager/notify/downloadmailfail.php:147 msgid "Email export fails" -msgstr "Email export failed" +msgstr "E-mail export failed." #: lib/classes/eventsmanager/notify/downloadmailfail.php:156 msgid "Get a notification when a mail export fails" msgstr "Get a notification when a mail export fails" -#: lib/classes/eventsmanager/notify/feed.php:149 +#: lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "%1$s has published %2$s" -#: lib/classes/eventsmanager/notify/feed.php:165 +#: lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "Feeds" -#: lib/classes/eventsmanager/notify/feed.php:174 +#: lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "Receive notification when a publication is available" @@ -678,6 +738,7 @@ msgstr "%1$s has made an %2$sorder%3$s" #: lib/classes/eventsmanager/notify/order.php:161 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:265 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:265 msgid "Orders manager" msgstr "Orders manager" @@ -687,7 +748,7 @@ msgstr "New order" #: lib/classes/eventsmanager/notify/order.php:184 msgid "Recevoir des notifications lorsqu'un utilisateur commande des documents" -msgstr "Order of records" +msgstr "Receive notifications when users place orders for documents" #: lib/classes/eventsmanager/notify/orderdeliver.php:37 #: lib/classes/eventsmanager/notify/ordernotdelivered.php:32 @@ -723,7 +784,7 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "%1$s has sent you a %2$s basket%3$s" #: lib/classes/eventsmanager/notify/push.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Push" msgstr "Push" @@ -770,6 +831,7 @@ msgstr "Be notified when a document is moved in quarantine" #: lib/classes/eventsmanager/notify/validationreminder.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:177 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:179 msgid "Validation" msgstr "Feedback" @@ -826,14 +888,22 @@ msgid "report:: collections" msgstr "Collections" #: lib/classes/module/report.php:663 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:61 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:143 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:83 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:83 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:44 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:44 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:83 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:83 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:115 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:259 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:44 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:115 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:259 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:61 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:143 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:44 msgid "report:: Connexion" msgstr "Connections" @@ -868,6 +938,8 @@ msgstr "Date" #: lib/classes/module/report.php:668 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:183 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:287 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:183 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:287 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:239 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:313 @@ -877,6 +949,8 @@ msgstr "Job" #: lib/classes/module/report.php:669 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:191 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:295 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:191 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:295 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:313 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:240 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:314 @@ -886,6 +960,8 @@ msgstr "Activity" #: lib/classes/module/report.php:670 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:195 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:299 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:195 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:299 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:314 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:241 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:315 @@ -895,6 +971,8 @@ msgstr "Country" #: lib/classes/module/report.php:671 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:187 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:291 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:187 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:291 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:315 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:242 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:316 @@ -1054,6 +1132,7 @@ msgstr "Questions" #: lib/classes/module/report/activity.php:213 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:448 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:448 msgid "report:: questions sans reponses" msgstr "Unanswered questions" @@ -1089,6 +1168,8 @@ msgstr "Connections" #: lib/classes/module/report/question.php:100 #: lib/classes/module/report/sent.php:120 #: lib/classes/module/report/validate.php:120 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:50 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:68 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:50 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:68 msgid "report:: non-renseigne" @@ -1108,7 +1189,9 @@ msgstr "Connections" #: lib/classes/module/report/download.php:48 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:48 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:48 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:48 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:48 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:381 msgid "report:: telechargements" msgstr "Downloads" @@ -1147,7 +1230,7 @@ msgstr "Modules" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "Users information corresponding to %s" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1388 msgid "phraseanet::utilisateur inconnu" msgstr "Unknown user" @@ -1241,7 +1324,7 @@ msgstr "Hot Folder" #: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 #: lib/classes/task/period/ftpPull.php:226 #: lib/classes/task/period/RecordMover.php:288 -#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/subdef.php:222 #: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "Frequency" @@ -1250,7 +1333,7 @@ msgstr "Frequency" #: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 #: lib/classes/task/period/ftpPull.php:229 #: lib/classes/task/period/RecordMover.php:291 -#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/subdef.php:225 #: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "seconds" @@ -1452,29 +1535,29 @@ msgstr "Record Mover" msgid "Log changes" msgstr "Log changes" -#: lib/classes/task/period/subdef.php:47 +#: lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "Subviews creation" -#: lib/classes/task/period/subdef.php:58 +#: lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" msgstr "Subviews creation" -#: lib/classes/task/period/subdef.php:233 +#: lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "Number of records to process per batch" -#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/subdef.php:235 #: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "Restart the task every X records" -#: lib/classes/task/period/subdef.php:245 +#: lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "Restart the task if memory reaches" -#: lib/classes/task/period/subdef.php:252 +#: lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "Try to extract embedded thumbnails" @@ -1497,144 +1580,149 @@ msgstr "" msgid "task::_common_:records, ou si la memoire depasse" msgstr "records, or if memory reaches" -#: lib/classes/User/Adapter.php:432 +#: lib/classes/User/Adapter.php:440 #, php-format msgid "A user already exists with email addres %s" -msgstr "A user with e-mail address %s already exists" +msgstr "A user with e-mail address %s already exists." -#: lib/classes/User/Adapter.php:1369 +#: lib/classes/User/Adapter.php:1382 #, php-format msgid "modele %s" msgstr "Template %s" -#: lib/conf.d/_GV_template.inc.php:38 +#: lib/conf.d/_GV_template.php:38 msgid "HTTP Server" msgstr "HTTP Server" -#: lib/conf.d/_GV_template.inc.php:43 +#: lib/conf.d/_GV_template.php:43 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:34 msgid "Default language" msgstr "Default language" -#: lib/conf.d/_GV_template.inc.php:52 +#: lib/conf.d/_GV_template.php:52 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:39 msgid "Static URL" msgstr "Static URL" -#: lib/conf.d/_GV_template.inc.php:53 +#: lib/conf.d/_GV_template.php:53 msgid "optional" msgstr "optional" -#: lib/conf.d/_GV_template.inc.php:58 +#: lib/conf.d/_GV_template.php:58 msgid "Maintenance state" msgstr "Maintenance state" -#: lib/conf.d/_GV_template.inc.php:64 +#: lib/conf.d/_GV_template.php:64 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:31 msgid "Maintenance message" msgstr "Maintenance message" -#: lib/conf.d/_GV_template.inc.php:70 +#: lib/conf.d/_GV_template.php:70 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:36 msgid "Enable maintenance message broadcast" msgstr "Enable maintenance message broadcast" -#: lib/conf.d/_GV_template.inc.php:76 +#: lib/conf.d/_GV_template.php:76 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:40 msgid "Log errors" msgstr "Log errors" -#: lib/conf.d/_GV_template.inc.php:81 +#: lib/conf.d/_GV_template.php:81 msgid "Webservices connectivity" msgstr "Webservices connectivity" -#: lib/conf.d/_GV_template.inc.php:86 +#: lib/conf.d/_GV_template.php:86 msgid "Use Google API" msgstr "Use Google API" -#: lib/conf.d/_GV_template.inc.php:93 +#: lib/conf.d/_GV_template.php:93 msgid "Geonames server address" msgstr "Geonames server address" -#: lib/conf.d/_GV_template.inc.php:101 +#: lib/conf.d/_GV_template.php:101 msgid "Use recaptcha API" msgstr "Use recaptcha API" -#: lib/conf.d/_GV_template.inc.php:109 +#: lib/conf.d/_GV_template.php:109 msgid "Recaptcha public key" msgstr "Recaptcha public key" -#: lib/conf.d/_GV_template.inc.php:115 +#: lib/conf.d/_GV_template.php:115 msgid "Recaptcha private key" msgstr "Recaptcha private key" -#: lib/conf.d/_GV_template.inc.php:120 +#: lib/conf.d/_GV_template.php:120 msgid "Youtube connectivity" msgstr "Youtube connectivity" -#: lib/conf.d/_GV_template.inc.php:125 +#: lib/conf.d/_GV_template.php:125 msgid "Use youtube API" msgstr "Use youtube API" -#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 -#: lib/conf.d/_GV_template.inc.php:181 +#: lib/conf.d/_GV_template.php:126 lib/conf.d/_GV_template.php:157 +#: lib/conf.d/_GV_template.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "Create API account at %s, then use %s as callback URL value." -#: lib/conf.d/_GV_template.inc.php:133 +#: lib/conf.d/_GV_template.php:133 msgid "Youtube public key" msgstr "Youtube public key" -#: lib/conf.d/_GV_template.inc.php:139 +#: lib/conf.d/_GV_template.php:139 msgid "Youtube secret key" msgstr "Youtube secret key" -#: lib/conf.d/_GV_template.inc.php:145 +#: lib/conf.d/_GV_template.php:145 msgid "Youtube developer key" msgstr "Youtube developer key" -#: lib/conf.d/_GV_template.inc.php:146 +#: lib/conf.d/_GV_template.php:146 #, php-format msgid "See %s" msgstr "See %s" -#: lib/conf.d/_GV_template.inc.php:151 +#: lib/conf.d/_GV_template.php:151 msgid "FlickR connectivity" msgstr "FlickR connectivity" -#: lib/conf.d/_GV_template.inc.php:156 +#: lib/conf.d/_GV_template.php:156 msgid "Use Flickr API" msgstr "Use Flickr API" -#: lib/conf.d/_GV_template.inc.php:164 +#: lib/conf.d/_GV_template.php:164 msgid "Flickr public key" msgstr "Flickr public key" -#: lib/conf.d/_GV_template.inc.php:170 +#: lib/conf.d/_GV_template.php:170 msgid "Flickr secret key" msgstr "Flickr secret key" -#: lib/conf.d/_GV_template.inc.php:175 +#: lib/conf.d/_GV_template.php:175 msgid "Dailymotion connectivity" msgstr "Dailymotion connectivity" -#: lib/conf.d/_GV_template.inc.php:180 +#: lib/conf.d/_GV_template.php:180 msgid "Use Dailymotion API" msgstr "Use Dailymotion API" -#: lib/conf.d/_GV_template.inc.php:188 +#: lib/conf.d/_GV_template.php:188 msgid "Dailymotion public key" msgstr "Dailymotion public key" -#: lib/conf.d/_GV_template.inc.php:194 +#: lib/conf.d/_GV_template.php:194 msgid "Dailymotion secret key" msgstr "Dailymotion secret key" -#: lib/conf.d/_GV_template.inc.php:199 +#: lib/conf.d/_GV_template.php:199 msgid "Phraseanet client API" msgstr "Phraseanet client API" -#: lib/conf.d/_GV_template.inc.php:204 +#: lib/conf.d/_GV_template.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "Authorise *Phraseanet Navigator*" -#: lib/conf.d/_GV_template.inc.php:205 +#: lib/conf.d/_GV_template.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" @@ -1642,27 +1730,27 @@ msgstr "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance." -#: lib/conf.d/_GV_template.inc.php:212 +#: lib/conf.d/_GV_template.php:212 msgid "Authorize Microsoft Office Plugin to connect." msgstr "Authorize Microsoft Office Plugin to connect" -#: lib/conf.d/_GV_template.inc.php:218 +#: lib/conf.d/_GV_template.php:218 msgid "Documents storage" msgstr "Documents storage" -#: lib/conf.d/_GV_template.inc.php:224 +#: lib/conf.d/_GV_template.php:224 msgid "Default path for datas" msgstr "Default path for datas" -#: lib/conf.d/_GV_template.inc.php:230 +#: lib/conf.d/_GV_template.php:230 msgid "Executables settings" msgstr "Executables settings" -#: lib/conf.d/_GV_template.inc.php:235 +#: lib/conf.d/_GV_template.php:235 msgid "Enable H264 stream mode" msgstr "Enable H264 stream mode" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1670,318 +1758,329 @@ msgstr "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token." -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.php:243 msgid "Auth_token mount point" msgstr "Auth_token mount point" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.php:250 msgid "Auth_token directory path" msgstr "Auth_token directory path" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.php:256 msgid "Auth_token passphrase" msgstr "Auth_token passphrase" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.php:257 msgid "Defined in Apache configuration" msgstr "Defined in Apache configuration." -#: lib/conf.d/_GV_template.inc.php:263 +#: lib/conf.d/_GV_template.php:263 msgid "php.ini path" msgstr "php.ini path" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.php:264 msgid "Empty if not used" msgstr "Empty if not used." -#: lib/conf.d/_GV_template.inc.php:271 +#: lib/conf.d/_GV_template.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/_GV_template.inc.php:283 +#: lib/conf.d/_GV_template.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Number of threads to use for FFMpeg" -#: lib/conf.d/_GV_template.inc.php:289 +#: lib/conf.d/_GV_template.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Maximum number of pages to be extracted from PDF" -#: lib/conf.d/_GV_template.inc.php:294 +#: lib/conf.d/_GV_template.php:294 msgid "Main configuration" msgstr "Main configuration" -#: lib/conf.d/_GV_template.inc.php:299 +#: lib/conf.d/_GV_template.php:299 msgid "Admin email" msgstr "Admin e-mail" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.php:305 msgid "Display the name of databases and collections" msgstr "Display the name of databases and collections" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.php:312 msgid "Choose the title of the document to export" msgstr "Choose the title of the document to export" -#: lib/conf.d/_GV_template.inc.php:319 +#: lib/conf.d/_GV_template.php:319 msgid "Default export title" msgstr "Default export title" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.php:322 msgid "Document title" msgstr "Document title" -#: lib/conf.d/_GV_template.inc.php:323 +#: lib/conf.d/_GV_template.php:323 msgid "Original name" msgstr "Original name" -#: lib/conf.d/_GV_template.inc.php:329 +#: lib/conf.d/_GV_template.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Enable this setting to share on Facebook and Twitter" -#: lib/conf.d/_GV_template.inc.php:331 +#: lib/conf.d/_GV_template.php:331 msgid "Disabled" msgstr "Disabled" -#: lib/conf.d/_GV_template.inc.php:332 +#: lib/conf.d/_GV_template.php:332 msgid "Publishers" msgstr "Publishers" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.php:333 msgid "Enabled" msgstr "Enabled" -#: lib/conf.d/_GV_template.inc.php:340 +#: lib/conf.d/_GV_template.php:340 msgid "Homepage" msgstr "Homepage" -#: lib/conf.d/_GV_template.inc.php:346 +#: lib/conf.d/_GV_template.php:346 msgid "Homepage slideshow" msgstr "Homepage slideshow setting" -#: lib/conf.d/_GV_template.inc.php:349 +#: lib/conf.d/_GV_template.php:349 msgid "Single image" msgstr "Single image" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.php:350 msgid "Slide show" msgstr "Slideshow" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.php:352 +msgid "Carousel" +msgstr "Carousel" + +#: lib/conf.d/_GV_template.php:353 +msgid "Gallery" +msgstr "Gallery" + +#: lib/conf.d/_GV_template.php:359 msgid "Search engine" msgstr "Search engine" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.php:365 msgid "Minimum number of letters before truncation" msgstr "Minimum number of letters before truncation" -#: lib/conf.d/_GV_template.inc.php:364 +#: lib/conf.d/_GV_template.php:366 msgid "Used in search engine" msgstr "Used in search engine." -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.php:372 msgid "Default query" msgstr "Default query" -#: lib/conf.d/_GV_template.inc.php:376 +#: lib/conf.d/_GV_template.php:378 msgid "Default searched type" msgstr "Default searched type" -#: lib/conf.d/_GV_template.inc.php:377 +#: lib/conf.d/_GV_template.php:379 msgid "Used when opening the application" msgstr "Used when opening the application." -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.php:381 msgid "Documents" msgstr "Documents" -#: lib/conf.d/_GV_template.inc.php:380 +#: lib/conf.d/_GV_template.php:382 msgid "Stories" msgstr "Stories" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.php:388 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:312 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Report" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.php:394 msgid "Anonymous report" msgstr "Anonymous report" -#: lib/conf.d/_GV_template.inc.php:393 +#: lib/conf.d/_GV_template.php:395 msgid "Hide information about users" msgstr "Hide information about users." -#: lib/conf.d/_GV_template.inc.php:399 +#: lib/conf.d/_GV_template.php:401 msgid "Additionnal modules" msgstr "Additional modules" -#: lib/conf.d/_GV_template.inc.php:405 +#: lib/conf.d/_GV_template.php:407 msgid "Enable thesaurus" msgstr "Enable thesaurus" -#: lib/conf.d/_GV_template.inc.php:410 +#: lib/conf.d/_GV_template.php:412 msgid "Enable multi-doc mode" msgstr "Enable multi-doc mode" -#: lib/conf.d/_GV_template.inc.php:415 +#: lib/conf.d/_GV_template.php:417 msgid "Enable HD substitution" msgstr "Enable source document substitution" -#: lib/conf.d/_GV_template.inc.php:420 +#: lib/conf.d/_GV_template.php:422 msgid "Enable thumbnail substitution" msgstr "Enable thumbnail substitution" -#: lib/conf.d/_GV_template.inc.php:426 +#: lib/conf.d/_GV_template.php:428 msgid "Emails" msgstr "E-mails" -#: lib/conf.d/_GV_template.inc.php:431 +#: lib/conf.d/_GV_template.php:433 msgid "Default mail sender address" msgstr "Default mail sender address" -#: lib/conf.d/_GV_template.inc.php:437 +#: lib/conf.d/_GV_template.php:439 msgid "Prefix for notification emails" msgstr "Prefix for e-mail notifications" -#: lib/conf.d/_GV_template.inc.php:443 +#: lib/conf.d/_GV_template.php:445 msgid "Use a SMTP server" msgstr "Use a SMTP server" -#: lib/conf.d/_GV_template.inc.php:449 +#: lib/conf.d/_GV_template.php:451 msgid "Enable SMTP authentication" msgstr "Enable SMTP authentication" -#: lib/conf.d/_GV_template.inc.php:455 +#: lib/conf.d/_GV_template.php:457 msgid "SMTP host" msgstr "SMTP host" -#: lib/conf.d/_GV_template.inc.php:461 +#: lib/conf.d/_GV_template.php:463 msgid "SMTP port" msgstr "SMTP port" -#: lib/conf.d/_GV_template.inc.php:467 +#: lib/conf.d/_GV_template.php:469 msgid "SMTP encryption" msgstr "SMTP encryption" -#: lib/conf.d/_GV_template.inc.php:470 +#: lib/conf.d/_GV_template.php:472 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:171 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:466 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:171 msgid "None" msgstr "None" -#: lib/conf.d/_GV_template.inc.php:478 +#: lib/conf.d/_GV_template.php:480 msgid "SMTP user" msgstr "SMTP user" -#: lib/conf.d/_GV_template.inc.php:484 +#: lib/conf.d/_GV_template.php:486 msgid "SMTP password" msgstr "SMTP password" -#: lib/conf.d/_GV_template.inc.php:489 +#: lib/conf.d/_GV_template.php:491 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.php:496 msgid "Enable FTP export" msgstr "Enable FTP export" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.php:497 msgid "Available in multi-export tab" msgstr "Available in multi-export tab." -#: lib/conf.d/_GV_template.inc.php:501 +#: lib/conf.d/_GV_template.php:503 msgid "Enable FTP for users" msgstr "Enable FTP for users" -#: lib/conf.d/_GV_template.inc.php:502 +#: lib/conf.d/_GV_template.php:504 msgid "By default it is available for admins" msgstr "By default it is available for admins." -#: lib/conf.d/_GV_template.inc.php:507 +#: lib/conf.d/_GV_template.php:509 msgid "Client" msgstr "Client" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.php:514 msgid "Maximum megabytes allowed for download" msgstr "Maximum megabytes allowed for download" -#: lib/conf.d/_GV_template.inc.php:513 +#: lib/conf.d/_GV_template.php:515 msgid "If request is bigger, then mail is still available" msgstr "If request is bigger, then mail is still available." -#: lib/conf.d/_GV_template.inc.php:519 +#: lib/conf.d/_GV_template.php:521 msgid "Search tab position" msgstr "Search tab position" -#: lib/conf.d/_GV_template.inc.php:525 +#: lib/conf.d/_GV_template.php:527 msgid "Advanced search tab position" msgstr "Advanced search tab position" -#: lib/conf.d/_GV_template.inc.php:531 +#: lib/conf.d/_GV_template.php:533 msgid "Topics tab position" msgstr "Topics tab position" -#: lib/conf.d/_GV_template.inc.php:537 +#: lib/conf.d/_GV_template.php:539 msgid "Active tab position" msgstr "Active tab position" -#: lib/conf.d/_GV_template.inc.php:543 +#: lib/conf.d/_GV_template.php:545 msgid "Topics display mode" msgstr "Topics display mode" -#: lib/conf.d/_GV_template.inc.php:545 +#: lib/conf.d/_GV_template.php:547 msgid "Trees" msgstr "Trees" -#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.php:548 lib/conf.d/_GV_template.php:570 msgid "Drop-down" msgstr "Drop-down" -#: lib/conf.d/_GV_template.inc.php:553 +#: lib/conf.d/_GV_template.php:555 msgid "Enable roll-over on stories" msgstr "Enable roll-over on stories" -#: lib/conf.d/_GV_template.inc.php:559 +#: lib/conf.d/_GV_template.php:561 msgid "Enable roll-over on basket elements" msgstr "Enable roll-over on basket elements" -#: lib/conf.d/_GV_template.inc.php:565 +#: lib/conf.d/_GV_template.php:567 msgid "Collections display mode" msgstr "Collections display mode" -#: lib/conf.d/_GV_template.inc.php:569 +#: lib/conf.d/_GV_template.php:571 msgid "Check-box" msgstr "Check-box" -#: lib/conf.d/_GV_template.inc.php:575 +#: lib/conf.d/_GV_template.php:577 msgid "Display the total size of the document basket" msgstr "Display the total size of the document basket" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.php:583 msgid "Display proposals tab" msgstr "Display proposals tab" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.php:589 msgid "Require authentication to download documents" msgstr "Require authentication to download documents" -#: lib/conf.d/_GV_template.inc.php:588 +#: lib/conf.d/_GV_template.php:590 msgid "Used for guest account" msgstr "Used for guest account." -#: lib/conf.d/_GV_template.inc.php:594 +#: lib/conf.d/_GV_template.php:596 msgid "Users must accept Terms of Use for each export" msgstr "Terms of Use must be accepted by users for each export" -#: lib/conf.d/_GV_template.inc.php:599 +#: lib/conf.d/_GV_template.php:601 msgid "Registration" msgstr "Registration" -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.php:606 msgid "Auto select databases" msgstr "Auto select databases" -#: lib/conf.d/_GV_template.inc.php:605 +#: lib/conf.d/_GV_template.php:607 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -1989,84 +2088,124 @@ msgstr "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." -#: lib/conf.d/_GV_template.inc.php:611 +#: lib/conf.d/_GV_template.php:613 msgid "Enable auto registration" msgstr "Enable auto registration" -#: lib/conf.d/_GV_template.inc.php:616 +#: lib/conf.d/_GV_template.php:618 msgid "Push configuration" msgstr "Push configuration" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.php:623 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Number of days before the end of the validation to send a reminder e-mail" -#: lib/conf.d/_GV_template.inc.php:627 +#: lib/conf.d/_GV_template.php:629 msgid "Default validation links duration" msgstr "Default feedback links duration" -#: lib/conf.d/_GV_template.inc.php:628 +#: lib/conf.d/_GV_template.php:630 msgid "If set to 0, duration is permanent" msgstr "If set to 0, duration is permanent." -#: lib/conf.d/_GV_template.inc.php:633 +#: lib/conf.d/_GV_template.php:635 msgid "Robot indexing" msgstr "Robot indexing" -#: lib/conf.d/_GV_template.inc.php:638 +#: lib/conf.d/_GV_template.php:640 msgid "Application title" msgstr "Application title" -#: lib/conf.d/_GV_template.inc.php:644 +#: lib/conf.d/_GV_template.php:646 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Keywords used for indexing purposes by search engines robots" -#: lib/conf.d/_GV_template.inc.php:650 +#: lib/conf.d/_GV_template.php:652 msgid "Application description" msgstr "Application description" -#: lib/conf.d/_GV_template.inc.php:656 +#: lib/conf.d/_GV_template.php:658 msgid "Google Analytics identifier" msgstr "Google Analytics identifier" -#: lib/conf.d/_GV_template.inc.php:662 +#: lib/conf.d/_GV_template.php:664 msgid "Allow the website to be indexed by search engines like Google" msgstr "Allow search engines (such as Google) indexation" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:192 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:120 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:118 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:120 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:25 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:120 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:192 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:25 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:120 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:118 msgid "preview:: demarrer le diaporama" msgstr "Slideshow" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:196 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:124 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:122 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:124 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:29 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:124 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:196 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:29 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:124 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:122 msgid "preview:: arreter le diaporama" msgstr "Stop" +#: tmp/cache_twig/00/8b/0fb28f8bb8d0a14368015c09b484797bfd569c40fc293a81c2c9a759de95.php:77 +#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 +msgid "No matches found" +msgstr "No matches found" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:29 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:29 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:29 +msgid "%nb_view% vue" +msgstr "%nb_view% vue" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:35 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:35 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:35 +msgid "%nb_view% vues" +msgstr "%nb_view% vues" + #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:36 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:36 msgid "List Name" msgstr "List Name" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:44 +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:102 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:120 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:44 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:99 #: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:102 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:120 #: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:99 msgid "Save" msgstr "Save" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:65 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:65 msgid "Share the list" msgstr "Share the list" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:70 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:70 msgid "Set sharing permission" msgstr "Set sharing permission" @@ -2074,77 +2213,107 @@ msgstr "Set sharing permission" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:85 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:415 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:419 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:72 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:147 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 msgid "Delete" msgstr "Delete" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:107 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:107 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:273 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:273 msgid "%length% peoples" msgstr "%length% people" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:113 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:129 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 msgid "Edit" msgstr "Edit" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:155 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:155 msgid "View" msgstr "View" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:121 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:161 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:121 msgid "Push::filter on login" msgstr "Login" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:167 msgid "Push::filter on name" msgstr "Last name/First name" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:137 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:173 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:137 msgid "Push::filter on countries" msgstr "Country" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:145 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:179 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:145 msgid "Push::filter on companies" msgstr "Company" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:153 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:185 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:153 msgid "Push::filter on emails" msgstr "E-mail" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:191 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:191 msgid "Push::filter on templates" msgstr "Last template" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:158 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:197 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:158 msgid "Push::filter starts" msgstr "Starts with" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:211 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:211 msgid "Activite" msgstr "Activity" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:217 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:217 msgid "Template" msgstr "Template" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:223 +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:75 #: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:75 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:223 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:89 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:89 msgid "Company" msgstr "Company" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:229 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:229 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:125 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:125 msgid "Country" msgstr "Country" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:235 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:235 msgid "Position" msgstr "Position" @@ -2153,96 +2322,304 @@ msgstr "Position" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:294 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:319 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:344 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:244 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:269 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:294 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:319 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:344 #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:42 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:42 msgid "All" msgstr "All" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:24 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:25 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 +msgid "Reordonner automatiquement" +msgstr "Sort automatically" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:29 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:30 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:475 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:605 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 +msgid "Choisir" +msgstr "Choose" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:33 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:34 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:687 +msgid "Re-initialiser" +msgstr "Reset" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:37 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:133 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:38 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:49 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:44 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:139 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:67 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:67 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:119 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:95 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:49 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:95 +msgid "Titre" +msgstr "Title" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:42 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:379 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:385 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:513 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:519 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:43 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 +msgid "Re-ordonner" +msgstr "Set order" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:46 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:47 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 +msgid "Inverser" +msgstr "Reverse" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:117 +#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:990 +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:221 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:67 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:67 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:74 +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:195 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:125 +#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:231 +#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 +#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:180 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:134 +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:71 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:103 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:734 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:78 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:233 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:103 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:74 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:74 +#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:63 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 +#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:127 +#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:109 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:152 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:42 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:453 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:180 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:103 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:181 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:75 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:503 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:103 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:74 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:480 +#: tmp/cache_twig/b7/01/ac2e3db2f9ba29baaa8de97bd6bf202362051d3b5262c049c62f87947b66.php:81 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:76 +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:315 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:509 +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:129 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:178 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1946 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:131 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:168 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:245 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:462 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:485 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:305 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:120 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:74 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:171 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:160 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:113 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:137 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:111 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 +#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:74 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "Validate" + #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:36 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:36 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 msgid "The records have been properly ordered" msgstr "These documents have been properly ordered." #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:42 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:51 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:51 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:42 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 msgid "Order has been sent" msgstr "The order has been sent." #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:48 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:57 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:57 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:48 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 msgid "Order has been denied" msgstr "The order has been denied." #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:61 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:70 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:70 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:61 msgid "An error occured, please retry or contact an admin if problem persists" msgstr "" "An error occurred. Please retry or contact an administrator if problem " "persists." #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:75 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:75 msgid "Page %page%" msgstr "Page %page%" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:84 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:84 msgid "Utilisateur" msgstr "User" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:88 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:88 msgid "Date de demande" msgstr "Request date" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:92 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:104 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:104 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:92 msgid "Deadline" msgstr "Deadline" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:96 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:114 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:114 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:96 msgid "Utilisation prevue" msgstr "Intended use" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:100 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:100 msgid "Statut" msgstr "Status" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:139 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:139 msgid "Aucune" msgstr "None" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:175 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:281 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:281 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:175 msgid "Previous" msgstr "Previous" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:188 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:298 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:298 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:188 msgid "Next" msgstr "Next" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:213 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:213 -msgid "You are using an outdated browser." -msgstr "You are using an outdated browser." - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:217 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:217 -msgid "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." -msgstr "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:237 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:237 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:215 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:215 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:215 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:215 msgid "" "Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." msgstr "Upgrade your current browser or download a newer one." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:243 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:243 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:221 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:221 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:221 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:221 msgid "" "Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " "Frame." @@ -2250,1078 +2627,368 @@ msgstr "" "Internet Explorer users: If you cannot use or install another browser, we " "recommend to use Google Chrome Frame." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:250 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:250 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:228 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:228 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:228 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:228 msgid "Installer Google Chrome" msgstr "Install Google Chrome" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:256 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:256 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:234 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:234 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:234 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:234 msgid "Installer Google Chrome Frame" msgstr "Install Google Chrome Frame for Internet Explorer" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:324 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:324 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:324 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:324 +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:25 #: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 #: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 #: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 msgid "Home" msgstr "Home" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:336 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:336 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:330 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:330 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 msgid "Help" msgstr "Help" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:370 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:364 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:364 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:364 #: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:370 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:364 +#: tmp/cache_twig/74/72/ce1e36331d2c6d8e030e5849e6d9faa747b01380bf11dd14a9fb8681b878.php:34 #: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 msgid "Terms of use" msgstr "Terms of use" #: tmp/cache_twig/02/c8/9619136fa97ec62dab06dc28c380.php:30 +#: tmp/cache_twig/8e/c2/d739949fe6a6c8c6d3c4e91956d989a3adbd869aac5c54c923235f3bbfa3.php:30 msgid "Guest access" msgstr "Guest access" +#: tmp/cache_twig/02/cd/7590eeab80480f95c0887ddc6417fc86f51cab505909c6259f10f11a2e95.php:61 +#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 +#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 +#: tmp/cache_twig/e7/33/fe2890c3af702e61833b0a50667171c7bc225a50e195eb486fba6917e751.php:55 +msgid "%nb_records% records" +msgstr "%nb_records% records" + #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:35 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:35 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:35 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:35 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:35 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:35 msgid "Deplacement %n_element% elements" msgstr "Moving %n_element% documents" #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:51 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:51 msgid "Which photosets you want to put you %number% photos into ?" msgstr "In which photoset do you want to add your %number% photos ?" -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 -#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "Validate" - #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:107 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:996 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:107 #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:78 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:421 #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:107 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:142 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:82 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:107 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:78 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:78 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:78 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:67 #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:78 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:119 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:107 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:421 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:223 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:78 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:213 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:119 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:324 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:188 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:78 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:131 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:78 msgid "boutton::retour" msgstr "Back" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:28 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:83 #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:381 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:231 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:28 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:144 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:335 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:1024 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:381 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:343 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:29 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:88 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:228 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:488 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1080 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2113 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 msgid "action : exporter" msgstr "Export" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:69 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:155 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:35 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:105 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:498 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1090 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:105 msgid "action : print" msgstr "Print" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 +#: tmp/cache_twig/9e/7a/714c406cc01b2ef18eaa625a977077a4b2b2545345b30f9715aa3ab4ca50.php:34 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:45 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1109 msgid "action : editer" msgstr "Edit" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:57 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:58 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1127 msgid "action : status" msgstr "Properties" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:70 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:71 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1145 msgid "action : collection" msgstr "Move" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:83 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:84 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1324 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1369 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:96 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:97 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1334 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1379 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:107 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:108 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1344 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1394 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2104 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:114 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1354 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1404 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2109 msgid "action : publier" msgstr "Publish" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:126 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:127 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1424 msgid "action : outils" msgstr "Tools" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:370 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:134 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:129 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:325 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1440 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:370 msgid "action : supprimer" msgstr "Delete" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:147 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:147 msgid "Certaines donnees du reportage ont change" msgstr "The story content has been updated" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:152 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:49 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:152 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:145 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:47 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:62 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:145 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:47 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:62 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:49 msgid "rafraichir" msgstr "Refresh" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 -msgid "VALIDATION" -msgstr "Feedback" +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:35 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:95 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 +msgid "report:: activite par jour" +msgstr "Daily Activity" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 -msgid "lightbox::recaptitulatif" -msgstr "Summary" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:38 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:36 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 +msgid "Renew password" +msgstr "Renew password" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:100 -msgid "validation:: OUI" -msgstr "YES" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:51 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:49 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 +msgid "Choose a new password" +msgstr "Choose a new password" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 -msgid "validation:: NON" -msgstr "NO" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:27 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:27 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 +msgid "thesaurus:: Lier la branche de thesaurus" +msgstr "Link branch ?" -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "Select a Playlist to add the %number% documents" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:48 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 +msgid "thesaurus:: suppression du lien du champ %field%" +msgstr "Unlinking field %field%." -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 -msgid "admin:: demandes en cours" -msgstr "Pending registration" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 -msgid "Requests for the application registrations were recorded successfully" -msgstr "Requests for application registrations were successfully recorded." - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -msgid "admin:: refuser l'acces" -msgstr "Deny access" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "Allow Display and download for previews" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "Allow previews and documents download" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 -msgid "admin:: watermarquer les documents" -msgstr "Apply watermark on previews" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 -msgid "Informations" -msgstr "Infos" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 -msgid "admin::collection" -msgstr "Collection" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 -msgid "Models" -msgstr "Templates" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "Login" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -msgid "admin::compte-utilisateur societe" -msgstr "Company" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -msgid "admin::compte-utilisateur poste" -msgstr "Job" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -msgid "admin::compte-utilisateur activite" -msgstr "Activity" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 -msgid "admin::compte-utilisateur telephone" -msgstr "Phone" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -msgid "admin::compte-utilisateur adresse" -msgstr "Address" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 -msgid "admin:: appliquer le modele" -msgstr "Apply template" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 -msgid "No application for registration has been recorded" -msgstr "No application registration recorded" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -msgid "%nb_view% vue" -msgstr "%nb_view% vue" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 -msgid "%nb_view% vues" -msgstr "%nb_view% vues" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 -msgid "%nb_rating% like" -msgstr "%nb_rating% like" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 -msgid "%nb_rating% likes" -msgstr "%nb_rating% likes" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 -msgid "notice" -msgstr "Caption" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 -msgid "Validations" -msgstr "Feedbacks" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 -msgid "Paniers" -msgstr "Baskets" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 -msgid "boutton::telecharger tous les documents" -msgstr "Download all" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 -#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 -msgid "Do you want to send your report ?" -msgstr "Send your Report ?" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 -msgid "Type texte" -msgstr "Text type" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 -msgid "Type nombre" -msgstr "Numbers type" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 -msgid "Type date" -msgstr "Date type" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 -msgid "Source" -msgstr "Source" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 -msgid "Ce champ n'est pas indexe" -msgstr "This field is not indexed" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 -msgid "Ce champ est multivalue" -msgstr "This field is multivalued" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 -msgid "Ce champ est en lecture seule" -msgstr "This field is read only" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "This field has a link to a thesaurus branch" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "This field content is used to display document title" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 -msgid "Ce champ est requis" -msgstr "This field must have a content" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "This field is linked to the DublinCore field %DublinCoreElementSet%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 -msgid "Par %author%" -msgstr "by %author%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 -msgid "boutton::editer" -msgstr "Edit" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -msgid "boutton::supprimer" -msgstr "Delete" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 -msgid "Derniere mise a jour le %updated_on%" -msgstr "Last Update on %updated_on%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 -msgid "dans %feed_name%" -msgstr "in %feed_name%" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 -msgid "Suppression de %n_element% photosets" -msgstr "Deleting %n_element% photosets" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "Do you confirm %number% photosets delete ?" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:81 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 msgid "" -"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "Push to %link% ici %endlink% users from application box %appbox%" +"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" +msgstr "Remove the candidates branch for field% field%." -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:96 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 +msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." +msgstr "Recording modified list of candidates" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:110 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 msgid "" -"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " -"box %appbox%" -msgstr "Feedback demand toward %n_user% user from application box %appbox%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 -msgid "report::Edition des meta-donnees" -msgstr "Metadatas Edition" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 -msgid "report::Changement de collection vers : %coll_name%" -msgstr "documents moved to : %coll_name%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 -msgid "report::Edition des status" -msgstr "Edit Status" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 -msgid "report::Impression des formats : %format%" -msgstr "Printing(s) : %format%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 -msgid "report::Substitution de %dest%" -msgstr "Substitution of %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 -msgid "report::Publication de %dest%" -msgstr "Publication(s) from %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 -msgid "report::Telechargement de %dest%" -msgstr "Download(s) from %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 -msgid "Envoi par mail a %dest% de %content%" -msgstr "E-mail of content %content% sent to %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "Sent by ftp of %content% to %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 -msgid "report::supression du document" -msgstr "Delete document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 -msgid "report::ajout du documentt" -msgstr "Add document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "Unknown action on document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 -msgid "report:: par %user_infos%" -msgstr "By %user_infos%" - -#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 -msgid "" -"Le connecteur API requis n'est pas configure correctement, veuillez " -"contacter un administrateur" -msgstr "" -"The required API connector has a bad configuration, please contact your " -"Application administrator" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 -msgid "Acces" -msgstr "Access" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 -msgid "Sessions" -msgstr "Sessions" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 -msgid "Applications" -msgstr "Applications" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 -msgid "Developpeur" -msgstr "Developer" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 -msgid "Suppression de %n_element% videos" -msgstr "Deleting %n_element% videos" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "Confirm delete of %number% videos ?" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 -msgid "Rights" -msgstr "Rights" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 -msgid "Infos" -msgstr "Infos" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 -msgid "Reglages:: reglages d acces guest" -msgstr "Guest access setup" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "Auto register setup" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 -msgid "Edition des droits de %display_name%" -msgstr "%display_name% user right edition" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "User rights edition of %number% users" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 -msgid "Apply a template" -msgstr "Apply a template" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 -msgid "boutton::choisir" -msgstr "Choose" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 -msgid "Delete all users rights" -msgstr "Delete all users rights" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 -msgid "Allowed to publish" -msgstr "Allow to publish" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 -msgid "Manage Thesaurus" -msgstr "Manage Thesaurus" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 -msgid "Manage Database" -msgstr "Manage Database" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 -msgid "Manage DB fields" -msgstr "Manage documentary fields of database" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 -msgid "Access" -msgstr "Access" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 -msgid "Active" -msgstr "Active" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 -msgid "Allowed to add in basket" -msgstr "Allow to add document to basket" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 -msgid "Access to preview" -msgstr "Access to preview" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 -msgid "Remove watermark" -msgstr "Remove watermark" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 -msgid "Access to HD" -msgstr "Access to Documents" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 -msgid "Allowed to order" -msgstr "Allow to order" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 -msgid "Set download quotas" -msgstr "Set downloads quotas" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 -msgid "Set time restrictions" -msgstr "Set time restriction" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 -msgid "Set statuses restrictions" -msgstr "Set status restrictions" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 -msgid "Allowed to add" -msgstr "Allow to add" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 -msgid "Allowed to edit" -msgstr "Allow to edit" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 -msgid "Allowed to change statuses" -msgstr "Allow to change status" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 -msgid "Allowed to delete" -msgstr "Allow to delete" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 -msgid "Access to image tools" -msgstr "Access to image tools" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 -msgid "Manage users" -msgstr "Manage users" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 -msgid "Allowed to access report" -msgstr "Allow to access Report" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 -msgid "Allowed to push" -msgstr "Allow to push" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 -msgid "Manage collection" -msgstr "Manage collection" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 -msgid "Manage values lists" -msgstr "Manage values lists" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "Gender" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "Miss" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "Mrs." - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "Mr." - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -msgid "admin::compte-utilisateur code postal" -msgstr "Zip code" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -msgid "admin::compte-utilisateur ville" -msgstr "City" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -msgid "admin::compte-utilisateur fax" -msgstr "Fax" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "Are you sure you want to reset rights?" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 -msgid "No results" -msgstr "No results" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 -msgid "1 result" -msgstr "1 result" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 -msgid "%Total% results" -msgstr "%Total% results" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 -msgid "Delete basket" -msgstr "Delete basket" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 -msgid "Received from %user_name%" -msgstr "Received from %user_name%" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 -msgid "Sent for validation to %list_participants%" -msgstr "Sent for feedback to %list_participants%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:40 -msgid "Grant rights" -msgstr "Grant rights" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:51 -msgid "Contributor" -msgstr "Contributor" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:59 -msgid "See others" -msgstr "See others' choices" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:70 -msgid "HD Download" -msgstr "Document Download" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:79 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 -msgid "Lists" -msgstr "Lists" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:85 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:452 -msgid "List Manager" -msgstr "List Manager" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:93 -msgid "Save this list" -msgstr "Save this list" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "Users" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:156 -msgid "Select a user in the list" -msgstr "Select a user in the list" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:163 -msgid "or" -msgstr "or" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:168 -msgid "Add user" -msgstr "Add user" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:252 -msgid "and %n% more peoples" -msgstr "and %n% more people" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:275 -msgid "" -"Please consider send this push to the following users : %recommendation%" -msgstr "" -"Please consider sending this Push to the following users : %recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:281 -msgid "" -"Please consider send this validation to the following users : %recommendation" -"%" -msgstr "" -"Please consider you can send this feedback request to the following users: " -"%recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:293 -msgid "Users suggestion" -msgstr "Users suggestion" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:319 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 -msgid "Add" -msgstr "Add" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:340 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" -"Push is used to send a selection of documents to recipients.\n" -"Recipients will receive a mail with a link that will launch Phraseanet " -"Lightbox, display documents for visualisation and/or download.\n" -"Push is also available as a \"received\" basket within Phraseanet for " -"registered users" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:346 -msgid "" -"Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" -"Click on the Send buton to forward a feedback request on a selection of " -"documents to recipients. \r\n" -"They will receive an email with a link to launch Phraseanet Lightbox, a " -"dedicated interface for displaying documents, leave feedbacks and possibly " -"download them. \r\n" -"Feedbacks are also available as a Feedback request basket within Phraseanet " -"Production for registered users." - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:367 -msgid "Select all" -msgstr "Select all" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 -msgid "Deselect all" -msgstr "Deselect all" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Send" -msgstr "Send" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:437 -msgid "Back to Push" -msgstr "Back to Push" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:443 -msgid "Back to Feedback" -msgstr "Back to Feedback" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:470 -msgid "Welcome to the ListManager !" -msgstr "Welcome in the ListManager !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:479 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "Start by creating a list using the \"add\" button on the left !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:488 -msgid "Select a list on the left and edit it !" -msgstr "Select a list on the left and then edit it !" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 -msgid "You do not have rights to remove all selected documents. Are you sure ?" -msgstr "You do not have rights to remove all selected documents. Are you sure?" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 -msgid "These records will be definitely deleted and can not be recovered" -msgstr "These records will be definitely deleted and will not be recoverable." - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 -msgid "Also delete records that rely on groupings." -msgstr "Also delete records that rely on stories." - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 -msgid "Cancel" -msgstr "Cancel" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 -msgid "No document selected" -msgstr "No document selected" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 -msgid "You do not have rights to remove selected documents" -msgstr "You don't have rights to remove selected documents." - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 -msgid "Creer" -msgstr "Create" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 -msgid "Actions" -msgstr "Actions" - -#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 -#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 -msgid "Voulez-vous dire %link% ?" -msgstr "Do you mean %link% ?" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:45 -msgid "report:: Du (date)" -msgstr "From" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:57 -msgid "report:: Au (date)" -msgstr "To" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 -#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 -#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 -msgid "report:: Dashboard" -msgstr "Dashboard" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 -msgid "validation:: votre note" -msgstr "Comments" - +"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" +msgstr "Removing indexes to thesaurus for field %field%." + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:125 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 +msgid "thesaurus:: reindexer tous les enregistrements" +msgstr "Re-index all records" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:135 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:79 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:79 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:43 #: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:74 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:968 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:283 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:86 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:43 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2019 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:74 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:54 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:516 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:524 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:196 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:225 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 @@ -3330,41 +2997,768 @@ msgstr "Comments" msgid "boutton::fermer" msgstr "Close" -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 -msgid "boutton::enregistrer" -msgstr "Save" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:69 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 +msgid "Rights" +msgstr "Rights" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 -msgid "Reorder collections" -msgstr "Reorder collections" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:79 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 +msgid "Infos" +msgstr "Infos" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 -msgid "admin::base:collorder: monter" -msgstr "Move Up" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:111 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:89 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "Guest access setup" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 -msgid "admin::base:collorder: descendre" -msgstr "Move Down" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:117 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:97 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "Auto register setup" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "Alphabetical order" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:129 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 +msgid "Edition des droits de %display_name%" +msgstr "%display_name% user right edition" -#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 -#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 -msgid "%nb_records% records" -msgstr "%nb_records% records" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:141 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "User rights edition of %number% users" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:150 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:209 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:209 +msgid "Apply a template" +msgstr "Apply a template" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:155 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:214 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:214 +msgid "boutton::choisir" +msgstr "Choose" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:177 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:249 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:249 +msgid "Delete all users rights" +msgstr "Delete all users rights" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:461 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 +msgid "Allowed to publish" +msgstr "Allow to publish" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:470 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 +msgid "Manage Thesaurus" +msgstr "Manage Thesaurus" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:479 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 +msgid "Manage Database" +msgstr "Manage Database" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:488 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 +msgid "Manage DB fields" +msgstr "Manage documentary fields of database" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:509 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:113 +#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 +msgid "Access" +msgstr "Access" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:518 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 +msgid "Active" +msgstr "Active" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:527 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 +msgid "Allowed to add in basket" +msgstr "Allow to add document to basket" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:536 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 +msgid "Access to preview" +msgstr "Access to preview" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:545 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 +msgid "Remove watermark" +msgstr "Remove watermark" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:554 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 +msgid "Access to HD" +msgstr "Access to Documents" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:563 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 +msgid "Allowed to order" +msgstr "Allow to order" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:572 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 +msgid "Set download quotas" +msgstr "Set downloads quotas" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:599 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 +msgid "Set time restrictions" +msgstr "Set time restriction" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:626 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 +msgid "Set statuses restrictions" +msgstr "Set status restrictions" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:656 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 +msgid "Allowed to add" +msgstr "Allow to add" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:665 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 +msgid "Allowed to edit" +msgstr "Allow to edit" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:674 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 +msgid "Allowed to change statuses" +msgstr "Allow to change status" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:683 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 +msgid "Allowed to delete" +msgstr "Allow to delete" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:692 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 +msgid "Access to image tools" +msgstr "Access to image tools" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:701 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 +msgid "Manage users" +msgstr "Manage users" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:710 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 +msgid "Allowed to access report" +msgstr "Allow to access Report" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:719 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 +msgid "Allowed to push" +msgstr "Allow to push" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:728 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 +msgid "Manage collection" +msgstr "Manage collection" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:737 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 +msgid "Manage values lists" +msgstr "Manage values lists" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:779 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:279 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 +#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:67 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1558 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:303 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:279 +#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:112 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:105 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:429 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1558 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "Login" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:793 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:118 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "Gender" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:804 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:645 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:131 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:645 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "Miss" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:812 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:653 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:142 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:653 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "Mrs." + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:820 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:661 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:153 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:661 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "Mr." + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:871 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:748 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:363 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:220 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:748 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:301 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +msgid "admin::compte-utilisateur adresse" +msgstr "Address" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:885 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:761 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:233 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:761 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:303 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +msgid "admin::compte-utilisateur code postal" +msgstr "Zip code" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:899 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:774 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:246 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:774 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:302 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +msgid "admin::compte-utilisateur ville" +msgstr "City" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:913 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:735 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:339 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:259 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:735 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +msgid "admin::compte-utilisateur poste" +msgstr "Job" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:927 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:311 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:722 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:331 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:272 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:722 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:298 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +msgid "admin::compte-utilisateur societe" +msgstr "Company" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:941 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:347 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:285 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +msgid "admin::compte-utilisateur activite" +msgstr "Activity" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:956 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:709 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:355 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:298 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:709 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:306 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:305 +msgid "admin::compte-utilisateur telephone" +msgstr "Phone" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:970 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:787 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:787 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:306 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +msgid "admin::compte-utilisateur fax" +msgstr "Fax" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:1022 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "Are you sure you want to reset rights?" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:26 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:238 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:27 +msgid "VALIDATION" +msgstr "Feedback" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:32 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:265 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:33 +msgid "lightbox::recaptitulatif" +msgstr "Summary" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:115 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:123 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:115 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:129 +msgid "validation:: OUI" +msgstr "YES" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:129 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:138 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:129 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:144 +msgid "validation:: NON" +msgstr "NO" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:31 +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:68 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:508 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 +msgid "action : ajouter au panier" +msgstr "Add to Basket" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:54 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 +msgid "Remove from basket" +msgstr "Remove from basket" + +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:51 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:51 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 +msgid "Which playlist you want to put you %number% elements into ?" +msgstr "Select a Playlist to add the %number% documents" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:202 +msgid "admin:: demandes en cours" +msgstr "Pending registration" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:214 +msgid "Requests for the application registrations were recorded successfully" +msgstr "Requests for application registrations were successfully recorded." + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:232 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:405 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:409 +msgid "admin:: refuser l'acces" +msgstr "Deny access" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:238 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:416 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:420 +msgid "admin:: donner les droits de telechargement et consultation de previews" +msgstr "Allow Display and download for previews" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:244 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:427 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:431 +msgid "admin:: donner les droits de telechargements de preview et hd" +msgstr "Allow previews and documents download" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:250 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:438 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:442 +msgid "admin:: watermarquer les documents" +msgstr "Apply watermark on previews" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:358 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:260 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:116 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:116 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 +msgid "Informations" +msgstr "Infos" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:264 +msgid "admin::collection" +msgstr "Collection" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:268 +msgid "Models" +msgstr "Templates" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:456 +msgid "admin:: appliquer le modele" +msgstr "Apply template" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:511 +msgid "No application for registration has been recorded" +msgstr "No application registration recorded" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:25 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:25 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:25 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 +msgid "Ajouter a" +msgstr "Add to" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:58 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:38 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:58 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:58 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:38 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:38 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 +msgid "Actions" +msgstr "Actions" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:73 +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:172 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1535 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:328 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:73 +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:314 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:78 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:86 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:73 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:248 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:53 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:53 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:344 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:378 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:434 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:490 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:494 +msgid "boutton::supprimer" +msgstr "Delete" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:57 +msgid "%nb_rating% like" +msgstr "%nb_rating% like" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:63 +msgid "%nb_rating% likes" +msgstr "%nb_rating% likes" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:169 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:195 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:168 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:154 +msgid "notice" +msgstr "Caption" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:73 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:71 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:275 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:251 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 +msgid "Validations" +msgstr "Feedbacks" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:199 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:197 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:308 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:284 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 +msgid "Paniers" +msgstr "Baskets" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:202 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:344 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:318 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:200 +msgid "boutton::telecharger tous les documents" +msgstr "Download all" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:391 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 +#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 +msgid "Do you want to send your report ?" +msgstr "Send your Report ?" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:36 +msgid "Type texte" +msgstr "Text type" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:42 +msgid "Type nombre" +msgstr "Numbers type" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:48 +msgid "Type date" +msgstr "Date type" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:67 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:96 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:160 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 +msgid "Source" +msgstr "Source" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:82 +msgid "Ce champ n'est pas indexe" +msgstr "This field is not indexed" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:94 +msgid "Ce champ est multivalue" +msgstr "This field is multivalued" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:106 +msgid "Ce champ est en lecture seule" +msgstr "This field is read only" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:118 +msgid "Ce champ est relie a une branche de thesaurus" +msgstr "This field has a link to a thesaurus branch" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:130 +msgid "Ce champ est utilise en titre a l'affichage" +msgstr "This field content is used to display document title" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:142 +msgid "Ce champ est requis" +msgstr "This field must have a content" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:160 +msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" +msgstr "This field is linked to the DublinCore field %DublinCoreElementSet%" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:31 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 +msgid "First Name" +msgstr "First Name" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:42 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 +msgid "Last Name" +msgstr "Last Name" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:53 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 +msgid "Email Name" +msgstr "E-mail address" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:64 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 +msgid "Job" +msgstr "Job" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:86 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 +msgid "City" +msgstr "City" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:98 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:350 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:113 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:32 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:406 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:410 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:350 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 +msgid "Add" +msgstr "Add" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:102 +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:117 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:346 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:78 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:346 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:135 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:151 +msgid "Cancel" +msgstr "Cancel" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:63 +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 +msgid "Par %author%" +msgstr "by %author%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:77 +msgid "boutton::editer" +msgstr "Edit" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:117 +msgid "Derniere mise a jour le %updated_on%" +msgstr "Last Update on %updated_on%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:135 +msgid "dans %feed_name%" +msgstr "in %feed_name%" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:35 +msgid "Suppression de %n_element% photosets" +msgstr "Deleting %n_element% photosets" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:51 +msgid "Etes vous sur de supprimer %number% photosets ?" +msgstr "Do you confirm %number% photosets delete ?" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:35 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:35 msgid "Suggested values" msgstr "Suggested values" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:48 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:36 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:55 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 @@ -3377,41 +3771,75 @@ msgstr "Suggested values" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 msgid "Successful update" msgstr "Successful update" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:72 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:72 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:111 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:311 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:111 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:311 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 msgid "phraseanet::chargement" msgstr "Loading" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:95 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:95 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Suggested values - collection settings" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:111 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:104 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 msgid "boutton::vue xml" msgstr "XML view" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:115 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:108 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 msgid "boutton::vue graphique" msgstr "Graphic view" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:130 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:130 msgid "admin::sugval: champs" msgstr "Fields" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:164 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:53 +msgid "admin::base:collorder: monter" +msgstr "Move Up" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:168 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:57 +msgid "admin::base:collorder: descendre" +msgstr "Move Down" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:176 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:61 +msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +msgstr "Sort alphabetically" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:196 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:196 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:246 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:473 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:246 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:473 msgid "boutton::ajouter" msgstr "Add" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:1062 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:1062 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des " @@ -3422,136 +3850,429 @@ msgstr "" "you don't save changes before.\n" "Continue anyway?" -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 -msgid "report:: activite du site" -msgstr "Site activity" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:66 +msgid "" +"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +msgstr "Pushed to %link% ici %endlink% users from application box %appbox%." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 -msgid "Tableau de bord" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:81 +msgid "" +"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " +"box %appbox%" +msgstr "Feedback demand toward %n_user% user from application box %appbox%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:87 +msgid "report::Edition des meta-donnees" +msgstr "Metadatas Edition" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:99 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "documents moved to : %coll_name%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:105 +msgid "report::Edition des status" +msgstr "Edit Status" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:114 +msgid "report::Impression des formats : %format%" +msgstr "Printing(s) : %format%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:123 +msgid "report::Substitution de %dest%" +msgstr "Substitution of %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:132 +msgid "report::Publication de %dest%" +msgstr "Publication(s) from %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:141 +msgid "report::Telechargement de %dest%" +msgstr "Download(s) from %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:153 +msgid "Envoi par mail a %dest% de %content%" +msgstr "E-mail of content %content% sent to %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:165 +msgid "Envoi par ftp a %dest% de %content%" +msgstr "Sent by ftp of %content% to %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:171 +msgid "report::supression du document" +msgstr "Delete document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:177 +msgid "report::ajout du documentt" +msgstr "Add document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:183 +msgid "report::Modification du document -- je ne me souviens plus de quoi..." +msgstr "Unknown action on document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:200 +msgid "report:: par %user_infos%" +msgstr "By %user_infos%" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:34 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:43 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:43 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:46 +msgid "report:: Du (date)" +msgstr "From" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:44 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:55 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:55 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:56 +msgid "report:: Au (date)" +msgstr "To" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:76 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:40 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 +#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:40 +#: tmp/cache_twig/b0/68/8df402b56c39d510a9d6d04c179a52d90fa80d9fd6ad5c68b5c21ea0076f.php:32 +#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 +#: tmp/cache_twig/f0/c8/dec944507ec91ef867d854c9718175767c72a41c78536d7f086c60b949be.php:32 +msgid "report:: Dashboard" msgstr "Dashboard" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 -msgid "Setup" -msgstr "Setup" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:44 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 +msgid "The user has been created." +msgstr "The user has been created." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 -msgid "SearchEngine settings" -msgstr "Search engine settings" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:50 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "%user_count% users have been created." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "Connected users" - -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 -msgid "admin::utilisateurs: utilisateurs" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:63 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:182 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:63 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:182 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:91 +#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" msgstr "Users" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 -msgid "admin::utilisateurs: demandes en cours" -msgstr "Demands" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "New User" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 -msgid "Publications" -msgstr "Publications" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:75 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:75 +msgid "admin::user: nouveau template" +msgstr "New template" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "Task Manager" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:81 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "Import" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 -msgid "admin::utilisateurs: bases de donnees" -msgstr "Databases" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:85 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "Export" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 -msgid "admin::structure: reglage de la structure" -msgstr "Structure setup" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:112 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:112 +msgid "Filter" +msgstr "Filter" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 -msgid "CHAMPS" -msgstr "Fields Setup" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:129 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:295 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:71 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:129 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:295 +msgid "First/Last Name" +msgstr "First/Last name" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 -msgid "SUBDEFS" -msgstr "Subviews setup" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:166 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:166 +msgid "Last applied template" +msgstr "Applied user template" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 -msgid "admin::status: reglage des status" -msgstr "Status setup" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:236 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:236 +msgid "boutton::appliquer" +msgstr "Apply" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 -msgid "admin:: CGUs" -msgstr "Terms of Use" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:265 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "id" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 -msgid "admin::collection: ordre des collections" -msgstr "Collection Order" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:343 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:343 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:304 +msgid "admin::compte-utilisateur pays" +msgstr "Country" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 -msgid "admin::base: preferences de collection" -msgstr "Collection Settings" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:359 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "Last applied template" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 -msgid "Chercher" -msgstr "Search" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:375 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "Creation date" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 -msgid "thesaurus:: le terme" -msgstr "term" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:420 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:420 +msgid "This is a template" +msgstr "This is a template user" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 -msgid "thesaurus:: est egal a " -msgstr "equals " +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:429 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:429 +msgid "This user has no rights" +msgstr "This user has no rights" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 -msgid "thesaurus:: commence par" -msgstr "starts with" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:638 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:649 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:660 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:638 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:649 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:660 +msgid "%n_par_page% par page" +msgstr "%n_par_page% per page" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 -msgid "thesaurus:: contient" -msgstr "contains" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:665 +#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 +#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 +#: tmp/cache_twig/73/37/e3b20793b38fb7ab75acd68e87009654ea726d191453f251f2de1b8ef1fd.php:22 +#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:665 +#: tmp/cache_twig/b8/3f/87a926d83151a23e51c94f5bc6b4e980c11a5b5fc693fcb89b5131dfeac5.php:22 +#: tmp/cache_twig/d4/25/a94dbfc016b6e0064d671b20c9ba4a0db1cffe147d3fde0340190faef0b2.php:22 +msgid "boutton::modifier" +msgstr "Modify" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:669 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:669 +msgid "Supprimer" +msgstr "Delete" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:807 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:807 +msgid "boutton::exporter" +msgstr "Export" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:831 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:831 +msgid "select at least one user" +msgstr "One user at least must be selected" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:843 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "Are you sure you want to remove existing users rights?" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:867 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:867 +msgid "users rights have been reseted" +msgstr "Users rights have been reseted" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:53 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 +msgid "Vous avez recu un nouveau panier" +msgstr "You have a new basket available" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:111 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "You have received a feedback demand for documents from this basket." + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:134 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:301 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:480 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 +msgid "action::exporter" +msgstr "Export" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:145 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:491 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 +msgid "action::editer" +msgstr "Edit" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:170 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:341 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 +msgid "action::Valider" +msgstr "Validate" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:253 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "You have pushed this basket for a feedback request" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:274 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 +msgid "paniers:: panier recu de %pusher%" +msgstr "Basket received from %pusher%" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:317 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:323 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 +msgid "action::renommer" +msgstr "Rename" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:358 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 +msgid "Archive" +msgstr "Archive" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:504 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 +msgid "action::detacher" +msgstr "Release from Basket zone" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:720 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 +msgid "delete" +msgstr "Delete" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:809 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 +msgid "panier:: ordre du panier" +msgstr "Basket order" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:817 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 +msgid "panier:: ordre Validation ascendante" +msgstr "Most approved" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:825 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 +msgid "panier:: ordre Validation descendante" +msgstr "Less approved" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:873 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 +msgid "L'utilisateur approuve ce document" +msgstr "User approves this document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:879 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "User hasn't decided yet" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:885 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 +msgid "L'utilisateur desapprouve ce document" +msgstr "User disapproves this document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:894 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 +msgid "This user does not participate to the validation but is only viewer." +msgstr "" +"This user does not participate to the feedback request but is only viewer." + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:71 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:71 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 +msgid "veuillez choisir au minimum une collection" +msgstr "At least one collection must be selected" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:75 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:75 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:190 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:130 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:99 +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:213 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:237 #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:228 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:47 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:184 #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:119 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:75 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:113 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:75 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:190 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:228 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:108 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:113 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:148 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:828 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1055 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:47 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:184 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:184 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:47 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:107 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:186 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:237 #: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:130 #: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:186 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:148 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:310 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:334 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:188 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:155 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 #: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:99 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:324 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:163 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:240 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:270 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:486 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:828 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1055 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:250 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:489 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:310 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:334 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:108 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:155 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:132 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:213 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 @@ -3559,49 +4280,822 @@ msgstr "contains" msgid "boutton::annuler" msgstr "Cancel" +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:87 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:87 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 +#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:111 +msgid "report::Heures" +msgstr "Hours" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:105 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:105 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 +msgid "report::Nombre de connexions" +msgstr "Connections" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:109 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:109 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 +#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 +msgid "report:: jour" +msgstr "Day" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:113 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:113 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 +msgid "report:: Heures" +msgstr "Hours" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:117 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:117 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 +msgid "report::Nombre de document ajoute" +msgstr "Number of documents added" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:121 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:121 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 +msgid "report::Nombre de document edite" +msgstr "Number of documents edited" + +#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 +#: tmp/cache_twig/2e/c8/6a8b65962285cc957b4f1cb0a6d3c6cfcece8142ec2c2d9bcd51db856e63.php:25 +msgid "" +"Le connecteur API requis n'est pas configure correctement, veuillez " +"contacter un administrateur" +msgstr "" +"The required API connector has a bad configuration, please contact your " +"Application administrator" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:35 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:35 +msgid "Suppression de %n_element% playlists" +msgstr "Deleting %n_element% playlists" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:51 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:51 +msgid "Etes vous sur de supprimer %number% playlists ?" +msgstr "Do you confirm that you want to delete of %number% playlists ?" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:126 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:126 +msgid "Acces" +msgstr "Access" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:136 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:136 +msgid "Sessions" +msgstr "Sessions" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:146 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:146 +msgid "Applications" +msgstr "Applications" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:156 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:156 +msgid "Developpeur" +msgstr "Developer" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:79 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:77 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 +msgid "Voici vos validations en cours" +msgstr "Your feedbacks in progress" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:133 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:131 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 +msgid "(validation) session terminee" +msgstr "Feedback session ended." + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:139 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:137 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 +msgid "(validation) envoyee" +msgstr "Feedback request sent." + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:145 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:143 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 +msgid "(validation) a envoyer" +msgstr "Feedback request to send" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:154 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:256 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:152 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:254 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 +#, php-format +msgid "%basket_length% documents" +msgstr "%basket_length% document(s)" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:205 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:203 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 +msgid "Voici vos paniers" +msgstr "Your Basket(s)" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:35 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:35 +msgid "Suppression de %n_element% videos" +msgstr "Deleting %n_element% videos" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:51 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:51 +msgid "Etes vous sur de supprimer %number% videos ?" +msgstr "Confirm delete of %number% videos ?" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:27 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:139 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 +#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 +#: tmp/cache_twig/fa/6c/5a1478433bb48ba074484fbf8f310f00024e6b7e19d6c1fde38d05b22b30.php:27 +msgid "thesaurus:: export au format texte" +msgstr "Text" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:124 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 +msgid "thesaurus:: options d'export : " +msgstr "Export " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:128 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 +msgid "thesaurus:: example" +msgstr "example" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:147 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 +msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" +msgstr "Synonym(s) on same line" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:154 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 +msgid "thesaurus:: exporter avec une ligne par synonyme" +msgstr "One line per synonym" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:161 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 +msgid "thesaurus:: export : numeroter les lignes " +msgstr "Print line numbers " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:168 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 +msgid "thesaurus:: export : inclure la langue" +msgstr "Include language" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:175 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 +msgid "thesaurus:: export : inclure les hits" +msgstr "Include hits" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:124 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 +msgid "En attente" +msgstr "Pending" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:130 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 +msgid "En cours d'envoi" +msgstr "Sending in progress" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:124 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "Replace candidate \"%(from)s\" with \"%(to)s\"" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:259 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "Replacing..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:322 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "Accepting..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:415 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "Deleting..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:489 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "Accept candidat term \"%s\" ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:498 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "Accept %d candidate terms ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:607 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "Accept \"%s\" candidat term" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:616 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "Accept %s candidate terms" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:654 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "Replace \"%s\" term from caption(s) by" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:663 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "Replace \"%d\" terms from caption(s) by" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:703 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "Delete \"%s\" term from caption(s)" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:712 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "Delete %d terms from caption(s)" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:776 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:781 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1035 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 +msgid "prod::thesaurusTab:tree:loading" +msgstr "Loading..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1412 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "Accept as new term" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1422 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "Accept as a synonym" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1504 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "Accept in %lng_code%" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1524 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "Replace with" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:31 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:282 +msgid "No results" +msgstr "No results" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:37 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:288 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:121 +msgid "1 result" +msgstr "1 result" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:43 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:294 +msgid "%Total% results" +msgstr "%Total% results" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:116 +msgid "Delete basket" +msgstr "Delete basket" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:191 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:93 +msgid "Received from %user_name%" +msgstr "Received from %user_name%" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:242 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:144 +msgid "Sent for validation to %list_participants%" +msgstr "Sent for feedback to %list_participants%" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:27 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 +msgid "thesaurus:: Lier la branche de thesaurus au champ" +msgstr "Link thesaurus branch to field" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:90 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 +msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +msgstr "Link thesaurus branch to field %branch%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:28 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:28 +msgid "None of the selected records can be pushed." +msgstr "None of the selected records can be pushed." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:34 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:34 +msgid "None of the selected records can be sent for feedback." +msgstr "None of the selected records can be sent for feedback." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:71 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:71 +msgid "Grant rights" +msgstr "Grant rights" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:82 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:82 +msgid "Contributor" +msgstr "Contributor" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:90 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:90 +msgid "See others" +msgstr "See others' choices" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:101 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:101 +msgid "HD Download" +msgstr "Document Download" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:110 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:23 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:110 +msgid "Lists" +msgstr "Lists" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:116 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:535 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:116 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:535 +msgid "List Manager" +msgstr "List Manager" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:124 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:124 +msgid "Save this list" +msgstr "Save this list" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:187 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:187 +msgid "Select a user in the list" +msgstr "Select a user in the list" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:194 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:194 +msgid "or" +msgstr "or" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:199 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:199 +msgid "Add user" +msgstr "Add user" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:283 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:283 +msgid "and %n% more peoples" +msgstr "and %n% more people" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:306 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:306 +msgid "" +"Please consider send this push to the following users : %recommendation%" +msgstr "" +"Please consider sending this Push to the following users : %recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:312 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:312 +msgid "" +"Please consider send this validation to the following users : %recommendation" +"%" +msgstr "" +"Please consider you can send this feedback request to the following users: " +"%recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:324 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:324 +msgid "Users suggestion" +msgstr "Users suggestion" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:371 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "" +"Use Push to send a selection of documents to recipients.\r\n" +"Recipients will receive an e-mail with a link to launch Phraseanet Lightbox, " +"a dedicated interface for displaying documents and possibly download them." +"\r\n" +"Pushed documents are also available in a received basket within Phraseanet " +"Production for registered users." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:377 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:377 +msgid "" +"Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "" +"Click on the Send buton to forward a feedback request on a selection of " +"documents to recipients. \r\n" +"They will receive an e-mail with a link to launch Phraseanet Lightbox, a " +"dedicated interface for displaying documents, leave feedbacks and possibly " +"download them. \r\n" +"Feedbacks are also available as a Feedback request basket within Phraseanet " +"Production for registered users." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:405 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:405 +msgid "You are about to push %nb_push_items% records." +msgstr "You are about to push %nb_push_items% records." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:414 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:414 +msgid "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." +msgstr "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:429 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:429 +msgid "You are about to ask for feedback for %nb_push_items% records." +msgstr "You are about to ask a feedback for %nb_push_items% records." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:438 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:438 +msgid "" +"You are about to ask for feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." +msgstr "" +"You are about to ask a feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:450 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:80 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:80 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:450 +msgid "Select all" +msgstr "Select all" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:454 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:86 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:454 +msgid "Deselect all" +msgstr "Deselect all" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:502 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:175 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:307 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:312 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:262 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 +#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:502 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:107 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +msgid "Send" +msgstr "Send" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:520 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:520 +msgid "Back to Push" +msgstr "Back to Push" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:526 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:526 +msgid "Back to Feedback" +msgstr "Back to Feedback" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:553 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:553 +msgid "Welcome to the ListManager !" +msgstr "Welcome in the ListManager !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:562 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:562 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "Start by creating a list using the \"add\" button on the left !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:571 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:571 +msgid "Select a list on the left and edit it !" +msgstr "Select a list on the left and then edit it !" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:34 +msgid "You do not have rights to remove all selected documents. Are you sure ?" +msgstr "You do not have rights to remove all selected documents. Are you sure?" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:53 +msgid "These records will be definitely deleted and can not be recovered" +msgstr "These records will be definitely deleted and will not be recoverable." + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:63 +msgid "Also delete records that rely on groupings." +msgstr "Also delete records that rely on stories." + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:150 +msgid "No document selected" +msgstr "No document selected" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:159 +msgid "You do not have rights to remove selected documents" +msgstr "You don't have rights to remove selected documents." + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:42 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 +msgid "Oups ! something went wrong !" +msgstr "Oups ! Something went wrong !" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:70 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 +msgid "boutton::retry" +msgstr "Try again" + +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:27 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:27 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:27 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 +msgid "Creer" +msgstr "Create" + +#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 +#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 +#: tmp/cache_twig/7e/d7/fc11a3521d90d05479b8e9e5b7a637086675de8b1e83c76016239918b8f0.php:54 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:57 +#: tmp/cache_twig/ec/97/b5b5bcb1a77a1178342e9aadece33928490fd66f74bf94ac4961513eafd6.php:54 +#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 +msgid "Voulez-vous dire %link% ?" +msgstr "Do you mean %link% ?" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:27 +msgid "validation:: votre note" +msgstr "Comments" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:83 +msgid "boutton::enregistrer" +msgstr "Save" + +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:22 +msgid "Reorder collections" +msgstr "Reorder collections" + +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:52 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:52 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:458 +msgid "report:: activite du site" +msgstr "Site activity" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:34 +msgid "Tableau de bord" +msgstr "Dashboard" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:22 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:63 +msgid "Setup" +msgstr "Setup" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:74 +msgid "SearchEngine settings" +msgstr "Search engine settings" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:95 +msgid "admin::utilisateurs: utilisateurs connectes" +msgstr "Connected users" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:116 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:394 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:461 +msgid "admin::utilisateurs: utilisateurs" +msgstr "Users" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "Demands" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:23 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:23 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1919 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:153 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:247 +msgid "Publications" +msgstr "Publications" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "Task Manager" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "Databases" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "Structure setup" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:300 +msgid "CHAMPS" +msgstr "Fields setup" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:312 +msgid "SUBDEFS" +msgstr "Subviews setup" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:324 +msgid "admin::status: reglage des status" +msgstr "Status setup" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:335 +msgid "admin:: CGUs" +msgstr "Terms of Use" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:347 +msgid "admin::collection: ordre des collections" +msgstr "Collection Order" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:438 +msgid "admin::base: preferences de collection" +msgstr "Collection Settings" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:27 +msgid "Chercher" +msgstr "Search" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:70 +msgid "thesaurus:: le terme" +msgstr "term" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:74 +msgid "thesaurus:: est egal a " +msgstr "equals " + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:81 +msgid "thesaurus:: commence par" +msgstr "starts with" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:88 +msgid "thesaurus:: contient" +msgstr "contains" + #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:99 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:99 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:99 msgid "Erreur de login / mot de passe" msgstr "Login / Password error" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:107 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:107 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:107 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "Hi, please identify on %home_title% :" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:845 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:79 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1574 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:116 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:442 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1574 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 msgid "admin::compte-utilisateur mot de passe" msgstr "Password" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:120 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:120 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:120 msgid "Se connecter" msgstr "Connect" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:126 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:126 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:126 msgid "Problèmes de connexion ?" msgstr "Connection problem" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:143 #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:95 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:95 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:95 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:143 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:143 msgid "Hello %username%" msgstr "Hi %username%" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:157 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:157 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:157 msgid "Autorisation d'accès" msgstr "Access authorization" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:168 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:168 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:168 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" @@ -3611,23 +5105,28 @@ msgstr "" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:198 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:198 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:198 msgid "Autoriser" msgstr "Authorize" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:222 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:222 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:222 msgid "Ne pas autoriser" msgstr "Do not Authorize" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:37 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:37 msgid "Authorization code" msgstr "Authorization code" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:60 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:60 msgid "Access code" msgstr "Access code" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:66 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:66 msgid "" "Copy the code below, return to your application and paste the code to the " "right place." @@ -3636,14 +5135,17 @@ msgstr "" "right place." #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:46 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:46 msgid "Erreur lors de votre authentification" msgstr "Authentication failed" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:61 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:61 msgid "Vous etes authentifie avec succes" msgstr "You are successfully authenticated" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:67 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:67 msgid "" "Si cette fenetre ne se ferme pas automatiquement, fermez la, et " "raffraichissez votre compte" @@ -3652,31 +5154,252 @@ msgstr "" "account" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:57 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:57 msgid "Ce champ est decrit comme l'element DublinCore %element_name%" msgstr "This field is linked to the Dublin Core element %element_name%" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:63 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:63 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:83 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:147 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:63 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:63 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:128 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:83 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:127 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:63 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:83 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:83 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:147 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:127 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:63 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:83 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:93 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:93 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:128 msgid "Description" msgstr "Caption" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:74 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:74 msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "For more information, follow the link %lien%" -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:55 -msgid "Return to login page" -msgstr "Return to login page" +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:95 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:95 +msgid "Notify users about this publication" +msgstr "Notify users about this publication." + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:99 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:69 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:99 +msgid "publication : titre" +msgstr "Title" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:107 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:77 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:107 +msgid "publication : sous titre" +msgstr "Sub Title" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:115 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:85 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:115 +msgid "publication : autheur" +msgstr "Author" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:123 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:93 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:123 +msgid "publication : email autheur" +msgstr "Author's e-mail" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:135 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:105 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:135 +msgid "Fils disponibles" +msgstr "Available feed" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:174 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:232 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:174 +msgid "This feed is public" +msgstr "This feed is public" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:209 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:209 +msgid "boutton::publier" +msgstr "Publish" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:47 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 +msgid "Edition" +msgstr "Edition" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:145 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:57 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 +msgid "Sous-titre" +msgstr "Subtitle" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:150 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:62 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 +msgid "Short description" +msgstr "Short description" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:159 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:69 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 +msgid "Etendue de la publication" +msgstr "Publication scope" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:170 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:75 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 +msgid "Non-Restreinte (publique)" +msgstr "Unrestricted (public)" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:223 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:119 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 +msgid "Publique" +msgstr "Public" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:245 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 +msgid "Liste des personnes habilitees a publier sur ce fil" +msgstr "List of users allowed to publish on this feed" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:252 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 +msgid "Id" +msgstr "Id" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:257 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:171 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 +msgid "Email" +msgstr "E-mail" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:261 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 +msgid "Owner" +msgstr "Owner" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:360 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 +msgid "Ajouter un publisher" +msgstr "Add a Publisher" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:365 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 +msgid "Name or email" +msgstr "Name or E-mail" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:416 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 +msgid "You are not the feed owner" +msgstr "You are not the feed owner" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:38 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:38 +msgid "report:: 1 - Periode" +msgstr "1 - Time space" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:72 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:72 +msgid "report:: 2 - Bases" +msgstr "2 - Databases" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:20 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:20 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 +msgid "Limite temporelle" +msgstr "Time limit" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:27 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:27 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:125 +msgid "Base %base%" +msgstr "Database %base%" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:50 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:488 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:58 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 +msgid "Activer" +msgstr "Activate" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:58 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:66 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 +msgid "De" +msgstr "From" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:73 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:81 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 +msgid "A" +msgstr "To" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:52 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 +msgid "Le champ doit contenir %minLength% caracteres minimum." +msgstr "This field must have %minLength% minimum characters" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:65 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 +msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +msgstr "This field can't accept more than %maxLength% characters" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:78 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 +msgid "Les indications donnees ci dessous sont a titre informatif." +msgstr "Indications given below are informal" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:82 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 +msgid "" +"Si vous ne les respectez pas, les documents seront correctement indexes, " +"mais les metadonnees inscrites risquent d'etre erronnees" +msgstr "" +"If you do not follow them, documents will be correctly indexed but metadatas " +"writing could be incorrect" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:89 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 +msgid "" +"Ces informations sont directement fournies par la norme de metadonnees de ce " +"champ : %norm_name%" +msgstr "" +"These informations are directly provided by the metadatas standard for the " +"field %norm_name%" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:24 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:24 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:24 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:24 msgid "Details" msgstr "Details" @@ -3684,27 +5407,36 @@ msgstr "Details" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:381 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:41 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:25 msgid "Collection" msgstr "Collection" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:55 msgid "Subdef" -msgstr "Subdef" +msgstr "Subview" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:61 msgid "Number" msgstr "Number" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:65 msgid "Weight" msgstr "Weight" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:111 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:163 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 msgid "Total" msgstr "Total" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:194 msgid "Cumulative total" msgstr "Cumulative total" @@ -3722,147 +5454,283 @@ msgstr "Logout" msgid "Back" msgstr "Previous" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 -msgid "Voici vos validations en cours" -msgstr "Your feedbacks in progress" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:93 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:204 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:93 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:204 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:51 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:154 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:51 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:178 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:151 +msgid "Connection" +msgstr "Login" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 -msgid "Voici vos paniers" -msgstr "Your Basket(s)" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:114 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:114 +msgid "Your account is locked, please follow the following link to unlock it" +msgstr "Your account is locked. Please follow the following link to unlock it." + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:122 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:122 +msgid "login:: Envoyer a nouveau le mail de confirmation" +msgstr "Send me a new confirmation e-mail" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:179 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:179 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:125 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:149 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:121 +msgid "Forgot password?" +msgstr "Forgot password?" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:234 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:82 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:234 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:177 +msgid "Or login with" +msgstr "Or login with" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:54 msgid "%value% like" msgstr "%value% like" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:60 msgid "%value% likes" msgstr "%value% likes" +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:46 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 +msgid "Download of documents" +msgstr "Documents downloads." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:57 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 +msgid "" +"Please wait while your files are being gathered for the download, this " +"operation may take a few minutes." +msgstr "" +"Please wait while files are being gathered for download. This operation may " +"take a few minutes." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:75 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 +msgid "" +"Your documents are ready. If the download does not start, %before_link%click " +"here%after_link%" +msgstr "" +"Your documents are ready. If the download doesn't start automatically, " +"please %before_link%click here%after_link%." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:88 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 +msgid "The file contains the following elements" +msgstr "The file contains the following items." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:95 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 +msgid "Base" +msgstr "Base" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:99 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:86 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:49 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:227 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +msgid "Name" +msgstr "Name" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:103 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 +msgid "Sub definition" +msgstr "Subviews" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:107 +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:80 +msgid "Size" +msgstr "Size" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:111 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 +msgid "Thumbnail" +msgstr "Thumbnail" + #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:27 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:27 msgid "thesaurus:: export en topics" msgstr "Topics" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:118 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:118 msgid "thesaurus:: exporter" msgstr "Export" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:124 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:124 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Export for all languages" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:131 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:131 msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" msgstr "Export to screen for %piv% language" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:141 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:141 msgid "phraseanet:: tri" msgstr "Sort" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:147 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:147 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:533 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:537 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:533 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:537 msgid "phraseanet:: tri par date" msgstr "Sort by date" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:157 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:157 msgid "thesaurus:: recherche" msgstr "Search" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:163 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:163 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thesaurus *:\"query\"" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:170 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:170 msgid "thesaurus:: recherche fulltext" msgstr "Fulltext" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:177 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:177 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Full question (with operators)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:187 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:187 msgid "thesaurus:: presentation" msgstr "Display options" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:193 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:193 msgid "thesaurus:: presentation : branches refermables" msgstr "Reproduce current view (with navigation)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:200 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:200 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reproduce current view (without navigation)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:207 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:207 msgid "thesaurus:: tout deployer - refermable" msgstr "All deployed (with navigation)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:214 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:214 msgid "thesaurus:: tout deployer - statique" msgstr "All deployed (static)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:221 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:221 msgid "thesaurus:: tout fermer" msgstr "Close all (with navigation)" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:104 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:104 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Unique visitors " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:125 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:125 msgid "admin::monitor: utilisateur" msgstr "User" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:129 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:129 msgid "admin::monitor: modules" msgstr "Modules" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:831 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1528 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:416 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1528 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:85 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:133 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 msgid "phraseanet:: adresse" msgstr "Address" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:137 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:137 msgid "admin::monitor: date de connexion" msgstr "Connection date" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:141 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:141 msgid "admin::monitor: dernier access" msgstr "Last access" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:322 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:322 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Connected databases " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:358 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:358 msgid "Session persistente" msgstr "Persistent session(s)" #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:35 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:35 msgid "Granted bases" msgstr "Granted access to bases" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:31 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:35 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:31 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:35 msgid "Empty quarantine" msgstr "Empty quarantine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:64 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:64 msgid "No document in quarantine" msgstr "No document in quarantine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:73 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:73 msgid "You do not have enough rights to access quarantine" msgstr "You do not have enough rights to access the quarantine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:135 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:135 msgid "" "Empty quarantine will remove all items, are you sure you want to continue ?" msgstr "" @@ -3870,39 +5738,52 @@ msgstr "" "Are you sure you want to continue?" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:342 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:342 msgid "Last uploaded version" msgstr "Last uploaded version" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:354 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:354 msgid "Filename" msgstr "File Name" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:360 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:360 msgid "Date" msgstr "Date" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:374 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:374 msgid "Uploaded by : %username%" msgstr "Uploaded by : %username%" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:427 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:431 msgid "Substitute" msgstr "Substitute" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:466 msgid "A record matches the unique identifier :" msgstr "A record matches the unique identifier:" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:472 msgid "%record_count% records match the unique identifier :" msgstr "%record_count% records match the unique identifier:" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:26 msgid "No account yet?" msgstr "No account yet?" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:36 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:38 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:36 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:35 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:36 #: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:35 #: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:36 #: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:38 @@ -3910,328 +5791,48 @@ msgid "Register" msgstr "Register" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:39 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:39 msgid "reportage" msgstr "Feature" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:45 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:45 msgid "image" msgstr "Image" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:51 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:244 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:397 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:244 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:397 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:51 msgid "document" msgstr "document" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:57 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:57 msgid "animation flash" msgstr "Flash" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:63 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:63 msgid "video" msgstr "video" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:69 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:69 msgid "audio" msgstr "audio" -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 -msgid "thesaurus has been updated" -msgstr "Thesaurus has been updated" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 -msgid "phraseanet:: thesaurus" -msgstr "Thesaurus" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 -msgid "" -"Thesaurus ou CTerms invalide\n" -" effacer (OK) ou quitter (Annuler) ?" -msgstr "" -"Invalid Thesaurus or candidate terms.\n" -"Erase (OK) or Quit (Cancel)?" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 -msgid "First Name" -msgstr "First Name" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 -msgid "Last Name" -msgstr "Last Name" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 -msgid "Email Name" -msgstr "E-mail address" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 -msgid "Job" -msgstr "Job" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 -msgid "City" -msgstr "City" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 -msgid "report:: 3 - Type de report" -msgstr "3 - Type of report" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 -msgid "report:: (connexions) Par utilisateurs" -msgstr "Per users" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 -msgid "report:: Grouper par" -msgstr "Group by %s" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 -msgid "report:: (connexions) Globales" -msgstr "All connections" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 -msgid "report:: (connexions) OS et navigateurs" -msgstr "Platforms & Browsers" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 -msgid "report:: par utilisateurs" -msgstr "Per Users" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 -msgid "report:: (telechargement) Global" -msgstr "All downloads" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 -msgid "report:: (telechargement) Par jours base par base" -msgstr "Daily" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "Per documents, from database" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 -msgid "report::aucune precision" -msgstr "No filters" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 -msgid "report::la description contient" -msgstr "Caption includes" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 -msgid "report:: recordid" -msgstr "recordId" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 -msgid "report:: toutes les questions" -msgstr "Top questions" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 -msgid "report:: Les questions les plus posees" -msgstr "Top questions" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 -msgid "report:: document" -msgstr "document" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 -msgid "report:: pushe" -msgstr "Pushed" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 -msgid "report:: ajoute" -msgstr "Added" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 -msgid "report:: edite" -msgstr "Caption Edited" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 -msgid "report:: valide" -msgstr "Leave feedback" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 -msgid "Sent" -msgstr "Sent" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "View statistics" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 -msgid "preview::statistiques de telechargement" -msgstr "Download statistics" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 -msgid "admin::base:collection: Creer une collection" -msgstr "Create collection" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 -msgid "" -"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " -"collection" -msgstr "Collection not created, it must have a name" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 -msgid "An error occured, please retry or contact an admin if problem persist" -msgstr "" -"An error occurred, please retry or contact an administrator if problem " -"persist." - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "Name : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 -msgid "" -"admin::base:collection: Vous pouvez choisir une collection de reference pour " -"donenr des acces " -msgstr "apply users and rights from collection : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 -msgid "choisir" -msgstr "Select" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 -msgid "" -"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " -"pour continuer" -msgstr "You are currently disconnected, you must connect to continue" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 -msgid "login:: connexion" -msgstr "Login" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 -msgid "boutton::refresh" -msgstr "Refresh" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 -msgid "Suppression de %n_element% playlists" -msgstr "Deleting %n_element% playlists" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "Do you confirm that you want to delete of %number% playlists ?" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 -msgid "status:: numero de bit" -msgstr "Status N°" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 -msgid "admin::status: case A" -msgstr "Off" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 -msgid "admin::status: texte a afficher" -msgstr "Text displayed" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 -msgid "Labels" -msgstr "Labels" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 -msgid "Symbolized by" -msgstr "Symbolised by" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 -msgid "Select files..." -msgstr "Select files..." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 -msgid "admin::status:: aucun symbole" -msgstr "Delete Icon" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 -msgid "admin::status: case B" -msgstr "On" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 -msgid "" -"status:: Afficher le status dans les feuilles de reponses pour tous les " -"utilisateurs" -msgstr "" -"Enable Status illustrations display in thumbnails frame (if unchecked, only " -"visible for users with Status edit rights)." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "Enable status search in advanced search." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 -msgid "" -"Invalid file type, only (%supported_file_types%) file formats are supported" -msgstr "" -"Invalid file type. Only %supported_file_types% file formats are supported." - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 -msgid "veuillez choisir au minimum une collection" -msgstr "At least one collection must be selected" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 -msgid "report::Heures" -msgstr "Hours" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 -msgid "report::Nombre de connexions" -msgstr "Connections" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 -#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 -msgid "report:: jour" -msgstr "Day" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 -msgid "report:: Heures" -msgstr "Hours" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 -msgid "report::Nombre de document ajoute" -msgstr "Number of documents added" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 -msgid "report::Nombre de document edite" -msgstr "Number of documents edited" - +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:25 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:31 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:25 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:31 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:649 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:781 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:944 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1025 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1196 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:25 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:31 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:649 @@ -4241,27 +5842,48 @@ msgstr "Number of documents edited" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1196 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:25 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:31 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:25 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:31 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:25 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:31 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:25 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:31 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:25 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:31 msgid "boutton::precedent" msgstr "Previous" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:37 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:37 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:37 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:37 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:37 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:37 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:37 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:37 msgid "boutton::demarrer" msgstr "Slideshow" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:43 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:43 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:43 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:43 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:43 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:43 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:43 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:43 msgid "boutton::pause" msgstr "Pause" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:49 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:55 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:49 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:55 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:539 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:655 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:787 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:950 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1031 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:49 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:55 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:539 @@ -4271,184 +5893,906 @@ msgstr "Pause" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1031 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:49 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:55 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:49 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:55 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:49 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:55 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:49 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:55 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:49 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:55 msgid "boutton::suivant" msgstr "Next" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:61 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:61 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:61 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:61 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:266 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:61 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:61 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:266 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:61 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:61 msgid "boutton::telecharger" msgstr "Download" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 -msgid "client::answers: rapport de questions par bases" -msgstr "Query Report" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:27 +msgid "thesaurus has been updated" +msgstr "Thesaurus has been updated" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 -msgid "client::answers: %available_results% reponses" -msgstr "%available_results% results" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:46 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:247 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:30 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:267 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:29 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:310 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 +msgid "phraseanet:: thesaurus" +msgstr "Thesaurus" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 -msgid "action : ajouter au panier" -msgstr "Add to Basket" - -#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 -msgid "Security" -msgstr "Security" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 -msgid "Client application" -msgstr "Client application" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 -msgid "Application" -msgstr "Application" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 -msgid "settings OAuth" -msgstr "OAuth settings" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 -msgid "Les parametres oauth de votre application." -msgstr "Your application oauth settings" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 -msgid "URL de callback" -msgstr "Callback url" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 -msgid "Modify" -msgstr "Modify" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 -msgid "Activer le grant_type de type password pour votre application" -msgstr "Activate \"password\" OAuth2 grant type" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 -msgid "Votre token d'access" -msgstr "Your access token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 -msgid "Les paramétres oauth de votre application." -msgstr "your application Oauth settings" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 -msgid "Token" -msgstr "Token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 -msgid "Le token n'a pas encore ete genere" -msgstr "Token not generated yet" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 -msgid "boutton::generer" -msgstr "Generate" - -#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "Questions asked" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:101 +msgid "" +"Thesaurus ou CTerms invalide\n" +" effacer (OK) ou quitter (Annuler) ?" +msgstr "" +"Invalid Thesaurus or candidate terms.\n" +"Erase (OK) or Quit (Cancel)?" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:60 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:30 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:37 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:211 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:30 #: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:30 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:35 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:263 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:35 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:233 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:220 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:37 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:35 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:233 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:30 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:60 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:35 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:263 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:220 msgid "Upload" msgstr "Upload" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:136 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 +msgid "nouveau" +msgstr "New" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:146 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 +msgid "Vers quel API voulez vous vous connecter ?" +msgstr "Select an API to connect to :" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:203 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 +msgid "Aucun bridge disponible. Veuillez contacter un administrateur." +msgstr "There is no Bridge Available . Please contact Administrator." + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:320 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 +msgid "You are about to delete this account. Would you like to continue ?" +msgstr "You are about to delete this account. Would you like to continue?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:463 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:376 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:376 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 +msgid "Loading" +msgstr "Loading" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:558 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:54 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:52 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:52 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:54 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:52 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:558 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:52 msgid "Vous n'avez selectionne aucun element" msgstr "No document selected" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:567 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 +msgid "Vous n'avez pas assez de droits sur les elements selectionnes" +msgstr "You miss some rights on the selected documents" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:576 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 +msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" +msgstr "You don't have required rights on some of the selected documents" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:152 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:269 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:411 +msgid "report:: 3 - Type de report" +msgstr "3 - Type of report" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:165 +msgid "report:: (connexions) Par utilisateurs" +msgstr "Per users" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:178 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:282 +msgid "report:: Grouper par" +msgstr "Group by %s" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:209 +msgid "report:: (connexions) Globales" +msgstr "All connections" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:219 +msgid "report:: (connexions) OS et navigateurs" +msgstr "Platforms & Browsers" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:313 +msgid "report:: par utilisateurs" +msgstr "Per Users" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:326 +msgid "report:: (telechargement) Global" +msgstr "All downloads" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:336 +msgid "report:: (telechargement) Par jours base par base" +msgstr "Daily" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:346 +msgid "report:: (telechargement) Par documents sur la base" +msgstr "Per documents, from database" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:351 +msgid "report::aucune precision" +msgstr "No filters" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:355 +msgid "report::la description contient" +msgstr "Caption includes" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:359 +msgid "report:: recordid" +msgstr "recordId" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:428 +msgid "report:: toutes les questions" +msgstr "Top questions" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:438 +msgid "report:: Les questions les plus posees" +msgstr "Top questions" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:468 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 +msgid "report:: document" +msgstr "document" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:475 +msgid "report:: pushe" +msgstr "Pushed" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:481 +msgid "report:: ajoute" +msgstr "Added" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:487 +msgid "report:: edite" +msgstr "Caption Edited" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:493 +msgid "report:: valide" +msgstr "Leave feedback" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:499 +msgid "Sent" +msgstr "Sent" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:51 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:48 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 +msgid "Inscription" +msgstr "Registration" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:57 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 +msgid "Complete the fields below to register on %instance_title%!" +msgstr "Complete the fields below to register on %instance_title%!" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:153 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:149 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 +msgid "I have read the terms of use" +msgstr "I have read the terms of use" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:210 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:210 +msgid "Request access" +msgstr "Access request" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:41 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:41 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:41 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 +msgid "Edition de 1 element" +msgstr "Editing 1 document" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:99 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:132 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:178 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:159 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:197 +msgid "Tags" +msgstr "Tags" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:115 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:99 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:160 +msgid "Categorie" +msgstr "Category" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:148 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:148 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:204 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:234 +msgid "Confidentialite" +msgstr "Confidentiality" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:158 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:158 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 +msgid "privé" +msgstr "Private" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:168 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:168 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:221 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:251 +msgid "public" +msgstr "Public" + +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:43 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:43 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 +msgid "Playlist" +msgstr "Playlist" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:66 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 +msgid "General settings" +msgstr "General settings" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:68 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 +msgid "your configuration" +msgstr "your configuration" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:79 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 +msgid "all caches services have been flushed" +msgstr "all caches services have been flushed" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:94 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 +msgid "setup:: administrateurs de l'application" +msgstr "Administrators" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:130 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 +msgid "Add an admin" +msgstr "Add an admin" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:147 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 +msgid "setup:: Reinitialisation des droits admins" +msgstr "Reset admin rights" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:151 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 +msgid "boutton::reinitialiser" +msgstr "Reset" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:166 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 +msgid "setup::Tests d'envois d'emails" +msgstr "E-mails send test" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:184 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 +msgid "Email test result : %email_status%" +msgstr "E-mail test result: %email_status%" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:206 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 +msgid "Reset cache" +msgstr "Reset cache" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:258 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 +msgid "Requirements" +msgstr "Requirements" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:308 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 +msgid "Recommendations" +msgstr "Recommandations" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:27 +msgid "preview::statistiques de visualisation pour le lien" +msgstr "View statistics" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:58 +msgid "preview::statistiques de telechargement" +msgstr "Download statistics" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:285 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:22 +msgid "admin::base:collection: Creer une collection" +msgstr "Create collection" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:34 +msgid "" +"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " +"collection" +msgstr "Collection not created, it must have a name" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:45 +msgid "An error occured, please retry or contact an admin if problem persist" +msgstr "" +"An error occurred, please retry or contact an administrator if problem " +"persist." + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:61 +msgid "admin::base:collection: Nom de la nouvelle collection : " +msgstr "Name : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:406 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:70 +msgid "" +"admin::base:collection: Vous pouvez choisir une collection de reference pour " +"donenr des acces " +msgstr "apply users and rights from collection : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:411 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1871 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:85 +msgid "choisir" +msgstr "Select" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:24 +msgid "" +"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " +"pour continuer" +msgstr "You are currently disconnected, you must connect to continue" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:35 +msgid "login:: connexion" +msgstr "Login" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:69 +msgid "boutton::refresh" +msgstr "Refresh" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:56 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:56 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 +msgid "Vous devez remplir les champs requis" +msgstr "You must fill in required fields" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:35 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:35 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 +msgid "status:: numero de bit" +msgstr "Status N°" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:49 +msgid "admin::status: case A" +msgstr "Off" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:55 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:175 +msgid "admin::status: texte a afficher" +msgstr "Text displayed" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:93 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:213 +msgid "Labels" +msgstr "Labels" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:124 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:244 +msgid "Symbolized by" +msgstr "Symbolised by" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:412 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:69 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:132 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:252 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:399 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:455 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:511 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:567 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:123 +msgid "Select files..." +msgstr "Select files..." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:154 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:274 +msgid "admin::status:: aucun symbole" +msgstr "Delete Icon" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:169 +msgid "admin::status: case B" +msgstr "On" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:294 +msgid "" +"status:: Afficher le status dans les feuilles de reponses pour tous les " +"utilisateurs" +msgstr "" +"Enable Status illustrations display in thumbnails frame (if unchecked, only " +"visible for users with Status edit rights)." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:304 +msgid "status:: retrouver sous forme de filtre dans la recherche" +msgstr "Enable status search in advanced search." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:696 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:350 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:594 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:146 +msgid "" +"Invalid file type, only (%supported_file_types%) file formats are supported" +msgstr "" +"Invalid file type. Only %supported_file_types% file formats are supported." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:43 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:43 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 +msgid "Quarantine" +msgstr "Quarantine" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:70 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:77 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 +msgid "maximum : %maxFileSizeReadable%" +msgstr "maximum : %maxFileSizeReadable%" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:77 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:84 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 +msgid "You are using the Flash uploader." +msgstr "You are using the Flash uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:87 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 +msgid "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" +msgstr "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:94 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 +msgid "Use the HTML5 uploader" +msgstr "Switch to HTML5 uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:104 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:118 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 +msgid "upload:: Destination (collection) :" +msgstr "Collection" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:191 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:202 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 +msgid "upload:: Status :" +msgstr "Apply status" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:287 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:354 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 +msgid "You can not upload files" +msgstr "You are not allowed to upload files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:299 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 +msgid "Selected files" +msgstr "Selected files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:303 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:308 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 +msgid "Clear list" +msgstr "Clear list" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:318 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:324 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 +msgid "Transmited files" +msgstr "Transmitted files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:324 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:336 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 +msgid "Cancel all" +msgstr "Cancel all" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:457 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 +msgid "You have attempted to queue too many files" +msgstr "You have attempted to queue too many files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:464 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 +msgid "Unknow Error" +msgstr "Unknown error" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:474 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 +msgid "Cannot upload Zero Byte files" +msgstr "Cannot upload Zero Byte files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:480 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:584 +msgid "Invalid file type" +msgstr "Invalid file type" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:487 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 +msgid "Unhandled Error" +msgstr "Unhandled error" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:520 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 +msgid "Unknow reason" +msgstr "Unknown reason" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:527 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 +msgid "Bad request, please contact an admin" +msgstr "Bad request. Please contact your administrator" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:533 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 +msgid "Upload URL is not set, please contact an admin" +msgstr "Upload URL is not set. Please contact your administrator" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:539 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 +msgid "Connection terminates unexpetecdly, please retry" +msgstr "Connexion terminated unexpectedly. Please retry" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:545 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 +msgid "The upload violates a security restriction, please retry" +msgstr "The upload violates a security restriction. Please retry" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:551 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 +msgid "File upload limit (%maxFileSizeReadable%) has been reached" +msgstr "File upload limit (%maxFileSizeReadable%) has been reached" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:557 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 +msgid "Could not initiate upload, please retry" +msgstr "Unable to initiate the upload. Please retry" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:563 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 +msgid "" +"Could not retrieve the file ID, please retry or contact an admin if problem " +"persist" +msgstr "" +"Cannot retrieve the file ID. Please retry or contact an administrator if " +"problem persists" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:569 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 +msgid "File validation failed" +msgstr "" +"Unable to retrieve the file ID. Please retry or contact an Administrator if " +"problem persist" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:575 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 +msgid "File upload has been cancelled" +msgstr "File upload has been cancelled" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:581 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 +msgid "File upload has been stopped" +msgstr "File upload has been interrupted" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:588 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 +msgid "Error while uploading" +msgstr "Error while uploading" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:682 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 +msgid "Please select at least one valid file" +msgstr "Please select at least one valid file" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:80 +msgid "client::answers: rapport de questions par bases" +msgstr "Query Report" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:101 +msgid "client::answers: %available_results% reponses" +msgstr "%available_results% results" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:50 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 +msgid "Completion of your registration" +msgstr "Completion of your registration" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:69 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 +msgid "Please complete the information to complete your registration" +msgstr "Please complete the informations to achieve your registration." + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:134 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 +msgid "Mandatory fields" +msgstr "Mandatory fields" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:173 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 +msgid "Resquest access" +msgstr "Resquest access" + +#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 +#: tmp/cache_twig/aa/4e/eb6c877afea8239b78d4f3a1e02a6a5341ad8ea4fef1456ffc2c5532dae9.php:23 +msgid "Security" +msgstr "Security" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:35 +msgid "Client application" +msgstr "Client application" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:46 +msgid "Application" +msgstr "Application" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:68 +msgid "settings OAuth" +msgstr "OAuth settings" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:72 +msgid "Les parametres oauth de votre application." +msgstr "Your application oauth settings" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:94 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:157 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 +msgid "URL de callback" +msgstr "Callback url" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:126 +msgid "Modify" +msgstr "Modify" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:151 +msgid "Activer le grant_type de type password pour votre application" +msgstr "Activate \"password\" OAuth2 grant type" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:173 +msgid "Votre token d'access" +msgstr "Your access token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:177 +msgid "Les paramétres oauth de votre application." +msgstr "your application Oauth settings" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:186 +msgid "Token" +msgstr "Token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:202 +msgid "Le token n'a pas encore ete genere" +msgstr "Token not generated yet" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:212 +msgid "boutton::generer" +msgstr "Generate" + +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:62 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 +msgid "Create an account manually" +msgstr "Create an account manually" + +#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 +#: tmp/cache_twig/b7/0f/7aa39ae06305bf2523f0b48646f315a3568a7f17c1336ef36524a7646498.php:169 +msgid "report:: Volumetrie des questions posees sur %home_title%" +msgstr "Questions asked" + #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:58 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:56 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:56 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:58 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:56 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:56 msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" msgstr "Selected files can't be uploaded (file type or rights error)" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:61 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:61 msgid "Le bridge FlickR ne prend en charge que les photos" msgstr "Bridge to Flickr only accept Photo type documents" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:71 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:71 msgid "%n_elements% elements ne peuvent etre uploades" msgstr "%n_elements% can't be uploaded" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:83 #, php-format msgid "Upload sur Flickr de %elements_length% elements" msgstr "Upload to FLickr of %elements_length% elements" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 -msgid "Titre" -msgstr "Title" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 -msgid "Tags" -msgstr "Tags" - #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:197 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:197 msgid "2000 caracteres maximum, separe par des espaces" msgstr "2000 characters maximum" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:40 -msgid "report:: 1 - Periode" -msgstr "1 - Time space" - -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:70 -msgid "report:: 2 - Bases" -msgstr "2 - Databases" +#: tmp/cache_twig/40/63/092bad36e7ddb1be21251c76b7ae07f9bd347b7e0a473d74c9344f5ae86c.php:54 +#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 +msgid "Incorrect please try again" +msgstr "Incorrect. Please try again." #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:39 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:39 msgid "Change my email address" msgstr "Change my e-mail address" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:89 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:89 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "New e-mail address" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:99 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:99 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Confirm e-mail address" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:120 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:120 msgid "" "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " "changer mon adresse email ?" -msgstr "Why should I give my password to change my e-mail ?" +msgstr "Why should I give my password to change my e-mail?" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:125 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:125 msgid "" "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " "perte de votre mot de passe afin de pouvoir le reinitialiser, il est " @@ -4457,31 +6801,69 @@ msgstr "" "Your e-mail address will be used if you lose your password. It is important " "that you are the only one who can change it." +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:84 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:91 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 +msgid "You are using the HTML5 uploader." +msgstr "You are using the HTML5 uploader" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:97 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 +msgid "Your browser does not support all HTML5 features properly." +msgstr "Your browser does not support all HTML5 features properly." + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:107 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 +msgid "Use the Flash uploader" +msgstr "Use the Flash uploader" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:304 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 +msgid "%quantity%selected files" +msgstr "%quantity%selected files" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:33 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 +msgid "admin::base: objet" +msgstr "Object" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:37 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 +msgid "admin::base: nombre" +msgstr "Number" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:41 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:45 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 +msgid "admin::base: poids" +msgstr "Size" + #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:33 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:33 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:33 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:33 msgid "Creer une playlist" msgstr "Create a Playlist" #: tmp/cache_twig/43/8b/3aebe83dca4c51e99b80c87c269b.php:26 +#: tmp/cache_twig/5a/95/cbfb14ffec5d45fdbe9e888e221cfd3d5c2185e3d55529cf005d7b2069b8.php:26 msgid "Technical Informations" msgstr "Technical Informations" -#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 -#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 -#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 -msgid "boutton::modifier" -msgstr "Modify" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:213 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:213 msgid "Create new subdef" msgstr "Create new subview" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:217 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:217 msgid "Delete the subdef ?" -msgstr "Delete the subview" +msgstr "Delete the subview?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:223 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:223 msgid "" "These subdef will be permanently deleted and cannot be recovered. Are you " "sure?" @@ -4490,662 +6872,228 @@ msgstr "" "you sure?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:234 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:234 msgid "Subdef name" msgstr "Subview mane" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:239 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:239 msgid "classe d'acces" msgstr "Access Class" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:248 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:405 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:248 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:405 msgid "preview" msgstr "Preview" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:252 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:413 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:252 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:413 msgid "tout le monde" msgstr "Everyone" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:359 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:359 msgid "Telechargeable" msgstr "Downloadable" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:377 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:389 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:377 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:389 msgid "classe" msgstr "Class" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:439 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:439 msgid "Write Metas" msgstr "Write Metadatas" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:460 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:460 msgid "mediatype" msgstr "Media type" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 -msgid "Choisir" -msgstr "Choose" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:639 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:207 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:178 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:178 msgid "yes" msgstr "Yes" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:648 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:213 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:174 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:174 #: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:61 msgid "no" msgstr "No" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:29 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:29 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:29 msgid "Fail" msgstr "Fail" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1359 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:35 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1359 msgid "Success" msgstr "Success" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:110 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:110 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:110 msgid "Erreur" msgstr "Error" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:117 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:117 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:117 msgid "%error%" msgstr "%error%" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:133 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:133 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:133 msgid "Code d'acces" msgstr "Access code" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:140 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:140 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:140 msgid "" "Copiez le code ci-dessous, retournez dans votre application et collez-le " "à l'endroit requis :" msgstr "" "Copy it below, return to you application and paste it where it is required" -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 -#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 -msgid "thesaurus:: export au format texte" -msgstr "Text" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 -msgid "thesaurus:: options d'export : " -msgstr "Export " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 -msgid "thesaurus:: example" -msgstr "example" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "Synonym(s) on same line" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "One line per synonym" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "Print line numbers " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 -msgid "thesaurus:: export : inclure la langue" -msgstr "Include language" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 -msgid "thesaurus:: export : inclure les hits" -msgstr "Include hits" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 -msgid "Do not forget to restart the tasks scheduler" -msgstr "Don't forget to restart the Tasks manager scheduler." - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 -msgid "version" -msgstr "Build version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 -msgid "admin::base: Version" -msgstr "Version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "Your application needs an update to : " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 -msgid "update::Votre version est a jour : " -msgstr "Your version is up to date " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 -msgid "Propositions de modifications des tables" -msgstr "Proposals for tables modifications" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 -msgid "update::Verifier els tables" -msgstr "Repair table" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 -msgid "admin::base: creer une base" -msgstr "Create new database" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -msgid "" -"phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "Create a new database on another server" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 -msgid "phraseanet:: hostname" -msgstr "Host name" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 -msgid "phraseanet:: port" -msgstr "Port" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 -msgid "phraseanet:: user" -msgstr "User" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 -msgid "phraseanet:: password" -msgstr "Password" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 -msgid "phraseanet:: dbname" -msgstr "Database Name" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 -msgid "phraseanet:: Modele de donnees" -msgstr "XML structure template" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "boutton::creer" -msgstr "Create" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 -msgid "admin::base: Monter une base" -msgstr "Mount database" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 -msgid "" -"phraseanet:: Monter une base provenant d'un serveur different de " -"l'application box" -msgstr "Mount Database from a distant host." - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 -msgid "boutton::monter" -msgstr "Mount" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 -msgid "Inscription" -msgstr "Registration" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 -msgid "Create an account manually" -msgstr "Create an account manually" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 -msgid "Or login with" -msgstr "Or login with" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 -msgid "Connection" -msgstr "Login" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 -msgid "Your account is locked, please follow the following link to unlock it" -msgstr "Your account is locked. Please follow the following link to unlock it." - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "Send me a new confirmation e-mail" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 -msgid "Forgot password?" -msgstr "Forgot password?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 -msgid "element(s)" -msgstr "element(s)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 -msgid "User contribute to the feedback" -msgstr "User can contribute to Feedbacks" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 -msgid "User can see others choices" -msgstr "User can see other user's choices" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 -msgid "User can download HD" -msgstr "User can download HD" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "New list name ?" -msgstr "New list name ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Are you sure you want to delete this list ?" -msgstr "Are you sure you want to delete this list ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "Time for feedback (days)" -msgstr "Time for feedback (in days)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Name" -msgstr "Name" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Message" -msgstr "Message" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Accuse de reception" -msgstr "Acknowledge receipt" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 -msgid "Apparait aussi dans ces reportages" -msgstr "Also in the following stories" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 -msgid "Apparait aussi dans ces paniers" -msgstr "Also in the following baskets" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 -msgid "%displayName% wants to place an order" -msgstr "%displayName% wants to place an order." - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 -msgid "Destinataire" -msgstr "Recipient" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 -msgid "Date de commande" -msgstr "Order date" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 -msgid "Nombre total d'element commandes" -msgstr "Number of ordered documents" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 -msgid "" -"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " -"elements correspondants aux collections sur lesquelles vous gerez les " -"commandes" -msgstr "" -"This order view might be uncomplete, you can only see documents from " -"collection for which you manage orders" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 -msgid "Document refuse par %name%" -msgstr "Document refused by %name%" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 -msgid "Forcer l'envoi du document" -msgstr "Force document delivery" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 -msgid "Document envoye par %name%" -msgstr "Document sent by" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 -msgid "Selectionnez des documents et " -msgstr "Select documents and " - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "Deny" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 -msgid "Retour aux commandes" -msgstr "Back to orders" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 -msgid "Story_id" -msgstr "Story_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 -msgid "Record_id" -msgstr "Record_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 -msgid "Nom Original" -msgstr "Original name" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 -msgid "Size" -msgstr "Size" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 -msgid "Camera Model" -msgstr "Camera Model" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 -msgid "Color space" -msgstr "Color space" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 -msgid "Channels" -msgstr "Channels" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 -msgid "Color Depth" -msgstr "Color Depth" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 -msgid "ISO sensibility" -msgstr "ISO sensibility" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 -msgid "Flash" -msgstr "Flash" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 -msgid "Shutter speed" -msgstr "Shutter speed" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 -msgid "Aperture" -msgstr "Aperture" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 -msgid "Focal length" -msgstr "Focal length" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 -msgid "Hyperfocal distance" -msgstr "Hyperfocal distance" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 -msgid "Light Value" -msgstr "Light Value" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 -msgid "Duree" -msgstr "Length" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 -msgid "Images par secondes" -msgstr "Image per second" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 -msgid "Codec Audio" -msgstr "Audio codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 -msgid "Codec Video" -msgstr "Video codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 -msgid "Frequence d'echantillonage" -msgstr "Sampling frequency" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 -msgid "Back to basket list" -msgstr "Back to basket list" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 -msgid "No records" -msgstr "No records" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 -msgid "1 record" -msgstr "1 record" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 -msgid "%ElementsCount% records" -msgstr "%ElementsCount% records" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 -msgid "Fichiers envoyes" -msgstr "Files added" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 -msgid "phraseanet:: deconnection" -msgstr "Sign out" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 -msgid "Terms of service" -msgstr "Terms of service" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 -msgid "Quarantine" -msgstr "Quarantine" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 -msgid "maximum : %maxFileSizeReadable%" -msgstr "maximum : %maxFileSizeReadable%" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 -msgid "You are using the HTML5 uploader." -msgstr "You are using the HTML5 uploader" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 -msgid "Your browser does not support all HTML5 features properly." -msgstr "Your browser does not support all HTML5 features properly." - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 -msgid "Use the Flash uploader" -msgstr "Use the Flash uploader" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 -msgid "upload:: Destination (collection) :" -msgstr "Collection" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 -msgid "upload:: Status :" -msgstr "Apply status" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 -msgid "%quantity%selected files" -msgstr "%quantity%selected files" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 -msgid "Clear list" -msgstr "Clear list" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 -msgid "Transmited files" -msgstr "Transmitted files" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 -msgid "Cancel all" -msgstr "Cancel all" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 -msgid "You can not upload files" -msgstr "You are not allowed to upload files" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 -msgid "Limite temporelle" -msgstr "Time limit" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 -msgid "Base %base%" -msgstr "Database %base%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 -msgid "Collection %collection%" -msgstr "Collection %collection%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 -msgid "Activer" -msgstr "Activate" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 -msgid "De" -msgstr "From" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 -msgid "A" -msgstr "To" - +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:65 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:65 msgid "Erreur lors du contact avec le serveur WEB" msgstr "Error when connecting to web server" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:69 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:69 msgid "Delai depasse lors du contact avec le serveur WEB" msgstr "Time out when connecting web server" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:73 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:73 msgid "Required" msgstr "Required" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:77 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:77 msgid "forms::merci d'entrer une adresse e-mail valide" -msgstr "Please use a valid e-mail address" +msgstr "Please use a valid e-mail address." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:81 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:85 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:81 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:85 msgid "forms::ce champ est requis" msgstr "This field is required" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:89 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:89 msgid "forms::les mots de passe ne correspondent pas" msgstr "Passwords do not match" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:93 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:93 msgid "Vous devez specifier une adresse email et un mot de passe valides" -msgstr "You must provide a valid e-mail and password" +msgstr "You must provide a valid e-mail and password." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:97 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:97 msgid "Le nom de base de donnee est incorrect" msgstr "Database name is incorrect" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:101 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:101 msgid "Il y a des erreurs, merci de les corriger avant de continuer" msgstr "Existing errors, please correct them to continue." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:108 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:108 msgid "forms::le mot de passe est trop similaire a l'identifiant" msgstr "Too similar to login" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:112 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:112 msgid "forms::la valeur donnee est trop courte" msgstr "Too short" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:116 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:120 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:116 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:120 msgid "forms::le mot de passe est trop simple" msgstr "Too weak" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:124 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:124 msgid "forms::le mot de passe est bon" msgstr "Good" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:128 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:128 msgid "forms::le mot de passe est tres bon" msgstr "Strong" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:174 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:174 msgid "Veuillez corriger les erreurs avant de poursuivre" msgstr "Correct existing errors, before continuing" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:319 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:319 msgid "Successfull connection" msgstr "Successful connection" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:325 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:325 msgid "Warning, this database is not empty" msgstr "Warning, this database is not empty" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:338 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:338 msgid "Connection is OK but database does not exists or can not be accessed" msgstr "" "Connection to server is Ok, but database does not exist or can not be " "accessed" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:345 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:357 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:365 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:345 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:357 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:365 msgid "Unable to connect to MySQL server" msgstr "Unable to connect to MySQL server" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:417 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:417 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Welcome, You are about to install Phraseanet" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:423 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:423 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Check Online for required list of components and web server setup" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:429 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:429 msgid "" "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage " @@ -5155,32 +7103,39 @@ msgstr "" "You will need a MySQL server, documents storage folders, and setup web " "server to publish some of these folders" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:439 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:439 msgid "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " "continuer sans corriger ces problèmes." msgstr "Please take notice of the followings points, and finish installation." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:499 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:499 msgid "Review system configuration" msgstr "System configuration review" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:521 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:521 msgid "Prerequisite and Configuration" msgstr "Prerequisites and Configuration" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:555 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:555 msgid "Executables externes" msgstr "External binaries" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:598 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:598 msgid "Required field" msgstr "Required field" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:622 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:622 msgid "Phraseanet may require many binaries." msgstr "Phraseanet requires many binaries" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:628 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:628 msgid "" "Some of them are required, like the indexer, Exiftool or ImageMagick " @@ -5190,30 +7145,37 @@ msgstr "" "Some of them are required, like the indexer, Exiftool or ImageMagick, others " "are optional, like FFmpeg, used to create previews for video files." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:634 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:634 msgid "Don't worry, You can modify your configuration later" msgstr "Don't worry, You can modify your configuration later" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:673 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:673 msgid "Creation de votre compte" msgstr "User account creation" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:685 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:685 msgid "Votre adresse email" msgstr "Your E-mail address" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:692 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:692 msgid "Votre mot de passe" msgstr "Your Password" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:711 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:711 msgid "Confirmation de votre mot de passe" msgstr "Confirm Password" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:721 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:721 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "About password security policy" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:725 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:725 msgid "" "admin::compte-utilisateur Les mots de passe doivent etre clairement " @@ -5223,63 +7185,89 @@ msgstr "" "Password has to be clearly different from login and must contain 2 types of " "characters among the following :" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:730 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:730 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Special" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:734 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:734 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Uppercase" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:738 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:738 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Lowercase" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:742 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:742 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Numeric" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:762 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:762 msgid "Your email will be used to log in the application." msgstr "Your e-mail will be used to log in to the application." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:766 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:766 msgid "Please be sure it is still valid and you can access it" -msgstr "Make sure to use a valid e-mail address" +msgstr "Make sure to use a valid e-mail address." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:811 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:811 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "ApplicationBox Setup" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:824 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1060 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:824 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1060 msgid "MySQL database connection parameters" msgstr "MySQL database connection parameters" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:838 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:838 msgid "Database user" msgstr "Database user" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:852 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 +#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:247 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:328 +msgid "phraseanet:: port" +msgstr "Port" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:859 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1075 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:859 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1075 msgid "Database" msgstr "Database" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:867 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1083 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:867 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1083 msgid "boutton::tester" msgstr "Test" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:887 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:887 msgid "" "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage " "d'options%fin_lien%" msgstr "If you need more parameters, %debut_lien%show more options%fin_lien%" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:906 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:906 msgid "ApplicationBox is a Mysql database." msgstr "ApplicationBox is a Mysql database." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:912 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:912 msgid "" "It stores users datas, rights, and references to DataBoxes where records are " @@ -5288,6 +7276,7 @@ msgstr "" "It stores users datas, rights, and references to DataBoxes where records are " "stored." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:924 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:924 msgid "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " @@ -5296,14 +7285,17 @@ msgstr "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " "replacement for MySQL." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:968 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:968 msgid "setup::Configuration des repertoires de stockage" msgstr "Storage folders Setup" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:980 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:980 msgid "Repertoire de stockage des fichiers" msgstr "Documents storage folder" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:998 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:998 msgid "" "Your medias and their subdefinitions (previews, thumbnails..) will be stored " @@ -5312,6 +7304,7 @@ msgstr "" "Media and their subviews (such as previews, thumbnails...) will be stored in " "the following directories:" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1004 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1004 msgid "" "Thumbnails directory is mounted to be accessible via HTTP, while other files " @@ -5320,6 +7313,7 @@ msgstr "" "Thumbnails directory is mounted to be accessible via HTTP, while others " "directories are not." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1010 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1010 msgid "" "If you plan to store large files, be sure it will fit in these directories." @@ -5327,22 +7321,27 @@ msgstr "" "If you plan to store large files, make sure they will fit in these " "directories." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1048 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1048 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Databox setup" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1067 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1067 msgid "Ne pas creer de DataBox maintenant" msgstr "Do not create Databox for now" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1095 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1095 msgid "Modele de donnees" msgstr "Metadatas template" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1126 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1126 msgid "Creation des taches" msgstr "Task setup" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1131 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1131 msgid "" "Phraseanet embarque un moteur de taches pour la lecture / ecriture des " @@ -5351,18 +7350,22 @@ msgstr "" "Phraseanet has an embedded task engine to read and write metadatas and " "perform other operations" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1142 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1142 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Create a task to write metadatas" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1151 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1151 msgid "Creer la tache de creation des sous-definitions" msgstr "Create a task to generate subviews" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1160 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1160 msgid "Creer la tache d'indexation" msgstr "Create a task for indexation" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1177 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1177 msgid "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " @@ -5371,92 +7374,712 @@ msgstr "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " "ApplicationBox." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1181 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1181 msgid "Databoxes store records, metadatas and their classifications" msgstr "" "Databoxes are used to store records, metadatas and their classifications" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1202 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1202 msgid "button::Install" msgstr "Install" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1212 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1212 msgid "Install in progess" msgstr "Installation in progress" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1218 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1218 msgid "Installation is currenlty processing, please wait..." msgstr "Installation is currenlty processing, please wait..." +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:76 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 +msgid "%nb_elements% elements" +msgstr "%nb_elements% document(s)" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:158 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 +msgid "Imagette indisponible" +msgstr "Thumbnail unavailable" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:207 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 +msgid "Aucune description." +msgstr "No caption" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:229 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 +msgid "dans %category%" +msgstr "in %category%" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:245 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 +msgid "Confidentialite : privee" +msgstr "Private" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:251 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 +msgid "Confidentialite : publique" +msgstr "Public" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:71 +msgid "Do not forget to restart the tasks scheduler" +msgstr "Don't forget to restart the Tasks manager scheduler." + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:101 +msgid "version" +msgstr "Build version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:132 +msgid "admin::base: Version" +msgstr "Version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:140 +msgid "update::Votre application necessite une mise a jour vers : " +msgstr "Your application needs an update to : " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:148 +msgid "update::Votre version est a jour : " +msgstr "Your version is up to date " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:189 +msgid "Propositions de modifications des tables" +msgstr "Proposals for tables modifications" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:217 +msgid "update::Verifier els tables" +msgstr "Repair table" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:225 +msgid "admin::base: creer une base" +msgstr "Create new database" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 +msgid "" +"phraseanet:: Creer une base sur un serveur different de l'application box" +msgstr "Create a new database on another server" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 +msgid "phraseanet:: hostname" +msgstr "Host name" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:252 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:333 +msgid "phraseanet:: user" +msgstr "User" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:257 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:338 +msgid "phraseanet:: password" +msgstr "Password" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:263 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:344 +msgid "phraseanet:: dbname" +msgstr "Database Name" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:268 +msgid "phraseanet:: Modele de donnees" +msgstr "XML structure template" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:297 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 +msgid "boutton::creer" +msgstr "Create" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:306 +msgid "admin::base: Monter une base" +msgstr "Mount database" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:317 +msgid "" +"phraseanet:: Monter une base provenant d'un serveur different de " +"l'application box" +msgstr "Mount Database from a distant host." + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 +msgid "boutton::monter" +msgstr "Mount" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:27 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 +msgid "%displayName% wants to place an order" +msgstr "%displayName% wants to place an order." + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:82 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 +msgid "Destinataire" +msgstr "Recipient" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:94 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 +msgid "Date de commande" +msgstr "Order date" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:124 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 +msgid "Nombre total d'element commandes" +msgstr "Number of ordered documents" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:136 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 +msgid "" +"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " +"elements correspondants aux collections sur lesquelles vous gerez les " +"commandes" +msgstr "" +"This order view might be uncomplete, you can only see documents from " +"collection for which you manage orders" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:179 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 +msgid "Document refuse par %name%" +msgstr "Document refused by %name%" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:188 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 +msgid "Forcer l'envoi du document" +msgstr "Force document delivery" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:211 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 +msgid "Document envoye par %name%" +msgstr "Document sent by" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:259 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 +msgid "Selectionnez des documents et " +msgstr "Select documents and " + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:266 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:95 +#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 +msgid "Deny" +msgstr "Deny" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:270 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 +msgid "Retour aux commandes" +msgstr "Back to orders" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:37 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 +msgid "you are about to change the representation thumbnail of your video" +msgstr "You are about to change the representation thumbnail of your video" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:47 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 +msgid "do you want to validate" +msgstr "Do you want to validate" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:69 +msgid "element(s)" +msgstr "element(s)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:111 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:115 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 +msgid "User contribute to the feedback" +msgstr "User can contribute to Feedbacks" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:122 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:126 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +msgid "User can see others choices" +msgstr "User can see other user's choices" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:133 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:137 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:279 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:283 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 +msgid "User can download HD" +msgstr "User can download HD" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:157 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +msgid "New list name ?" +msgstr "Give a name to the new recipients list:" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:167 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +msgid "Are you sure you want to delete this list ?" +msgstr "Are you sure you want to delete this list ?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +msgid "Time for feedback (days)" +msgstr "Time for feedback (in days)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:234 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +msgid "Message" +msgstr "Message" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:243 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +msgid "Accuse de reception" +msgstr "Acknowledge receipt" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:27 +msgid "Apparait aussi dans ces reportages" +msgstr "Also in the following stories" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:73 +msgid "Apparait aussi dans ces paniers" +msgstr "Also in the following baskets" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:28 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 +msgid "Save all changes" +msgstr "Save all changes" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:40 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 +msgid "Close" +msgstr "Close" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:44 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 +msgid "Ok" +msgstr "Ok" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:56 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 +msgid "Live search" +msgstr "Live search" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:74 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:80 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 +msgid "Add a new field" +msgstr "Add a new field" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:108 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:189 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 +msgid "Multivalued" +msgstr "Multivalued" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:133 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 +msgid "Order" +msgstr "Order" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:174 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 +msgid "DCES" +msgstr "Dublin Core Input/Output" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:197 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 +msgid "Advanced field parameters" +msgstr "Advanced field parameters" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:203 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 +msgid "Thesaurus branch" +msgstr "Thesaurus branch" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:210 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 +msgid "Type" +msgstr "Type" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:225 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 +msgid "Vocabulary type" +msgstr "Vocabulary type" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:243 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 +msgid "Limited vocabulary" +msgstr "Controlled vocabulary" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:255 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 +msgid "Business Fields" +msgstr "Business field" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:263 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 +msgid "Separator" +msgstr "Separator" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:270 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 +msgid "Display & action settings" +msgstr "Display and action settings" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:279 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 +msgid "Mandatory" +msgstr "Mandatory" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:290 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 +msgid "Indexable" +msgstr "Indexable" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:301 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 +msgid "Read-only" +msgstr "Read-only" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:320 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 +msgid "Display thumbnails" +msgstr "Display as title" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:326 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 +msgid "Tous" +msgstr "All" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:330 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 +msgid "Aucun" +msgstr "None" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:395 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 +msgid "Current configuration contains some errors" +msgstr "Current configuration contains some errors" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:22 +msgid "Story_id" +msgstr "Story_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:30 +msgid "Record_id" +msgstr "Record_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:50 +msgid "Nom Original" +msgstr "Original name" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:130 +msgid "Camera Model" +msgstr "Camera Model" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:144 +msgid "Color space" +msgstr "Color space" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:158 +msgid "Channels" +msgstr "Channels" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:172 +msgid "Color Depth" +msgstr "Color Depth" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:186 +msgid "ISO sensibility" +msgstr "ISO sensibility" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:200 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:651 +msgid "Flash" +msgstr "Flash" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:226 +msgid "Shutter speed" +msgstr "Shutter speed" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:240 +msgid "Aperture" +msgstr "Aperture" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:254 +msgid "Focal length" +msgstr "Focal length" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:268 +msgid "Hyperfocal distance" +msgstr "Hyperfocal distance" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:282 +msgid "Light Value" +msgstr "Light Value" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:298 +msgid "Duree" +msgstr "Length" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:312 +msgid "Images par secondes" +msgstr "Image per second" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:326 +msgid "Codec Audio" +msgstr "Audio codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:340 +msgid "Codec Video" +msgstr "Video codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:354 +msgid "Frequence d'echantillonage" +msgstr "Sampling frequency" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:28 +msgid "Back to basket list" +msgstr "Back to basket list" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:171 +msgid "No records" +msgstr "No records" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:177 +msgid "1 record" +msgstr "1 record" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:183 +msgid "%ElementsCount% records" +msgstr "%ElementsCount% records" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:152 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:152 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 +msgid "Fichiers envoyes" +msgstr "Files added" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:169 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:169 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:418 +msgid "phraseanet:: deconnection" +msgstr "Sign out" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:234 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:234 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 +msgid "Terms of service" +msgstr "Terms of service" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:35 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 +msgid "Client applications" +msgstr "Client applications" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:48 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 +msgid "Mes applications" +msgstr "My application(s)" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:83 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 +msgid "button::supprimer" +msgstr "Delete" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:101 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 +msgid "Are you sure you want to delete this application?" +msgstr "Are you sure you want to delete this application?" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:107 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 +msgid "No" +msgstr "No" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:113 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:55 +msgid "Yes" +msgstr "Yes" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:156 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 +msgid "Aucune application creee." +msgstr "No application created" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:168 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 +msgid "Decouvrez la documentation" +msgstr "Discover API documentation" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:173 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 +msgid "Demarrer avec l'API Phraseanet" +msgstr "Start with Phraseanet API" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:180 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 +msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +msgstr "Create an application to start using the Phraseanet API" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:188 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 +msgid "Creer une nouvelle applications" +msgstr "Create a new application" + +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:35 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:133 +msgid "Collection %collection%" +msgstr "Collection %collection%" + #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:44 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:44 msgid "Votre recherche ne retourne aucun resultat" msgstr "No result for this search" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:76 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:76 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "Search using the dialog box (top left of window)" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:79 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:79 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "You may use the following search operators and special characters :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:83 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:83 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" msgstr "* , ? , AND , OR , EXCEPT , IN , LAST , ALL" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:88 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:88 msgid "Caractères de troncature" msgstr "Troncature characters" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:95 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:95 msgid "auto*" msgstr "auto*" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:99 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:99 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "retruns answers for \"automobile\", \"automatic\", ...." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:105 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:105 msgid "dé?it" msgstr "fi?e" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:109 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:109 msgid "retourne \"délit\", \"débit\", ..." msgstr "returns answer for \"file\", \"fine\", ..." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:116 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:116 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "Display all documents / last added documents" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:122 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:122 msgid "TOUT" msgstr "ALL" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:126 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:126 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "returns all documents from selected collections" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:132 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:132 msgid "LAST 20" msgstr "LAST 20" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:136 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:136 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" msgstr "returns the 20 last added documents added to selected collections" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:143 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:143 msgid "Recherche multicritères" msgstr "Advanced search" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:147 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:147 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" @@ -5464,51 +8087,63 @@ msgstr "" "You can refine you search using operators such as : AND, OR, EXCEPTS, IN" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:153 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:153 msgid "sport" msgstr "sport" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:155 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:155 msgid "automobile" msgstr "Automobile" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:159 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:159 msgid "retourne les documents comprenant les deux mots." msgstr "Returns answers with both words in caption" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:165 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:165 msgid "journal OU jt" msgstr "car OR automobile" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:169 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:169 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "returns answers with one or both words" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:175 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:175 msgid "cannes SAUF festival" msgstr "France EXCEPT Paris" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:179 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:179 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "" "Returns answers for documents containing France but not Paris in caption" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:185 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:185 msgid "thalassa DANS titre" msgstr "Paris IN title" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:189 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:189 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." msgstr "returns answers for documents containing Paris in caption field Title" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:120 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:197 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:120 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "Warning" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:201 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:201 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" @@ -5516,557 +8151,700 @@ msgstr "" "to search a sentence containing one of these operators, please use quotes :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:205 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:205 msgid "C dans l'air" msgstr "\"In God we trust\"" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:209 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:209 msgid "Et Dieu créa la femme" msgstr "\"AND God Created Woman\"" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:213 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:213 msgid "bijou en or" msgstr "\"Live OR let die\"" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:217 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:217 msgid "tout le sport" msgstr "\"ALL about Mary\"" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:36 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:36 msgid "Forgotten password" msgstr "Forgotten password" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:49 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:49 msgid "Forgot your password?" msgstr "Forgot password?" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:55 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:55 msgid "Enter your e-mail address to retrieve your password" msgstr "Enter your e-mail address to retrieve your password." #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:70 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:70 msgid "report :: configurer le tableau" msgstr "Setup table" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:79 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:79 msgid "report :: imprimer le tableau" msgstr "Print table" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:127 msgid "%total_count% results" msgstr "%total_count% results." #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:173 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:177 msgid "Trier" msgstr "Sort" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:204 msgid "Filtrer" msgstr "Filter" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:208 msgid "report :: filtrer" msgstr "Filter" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:219 msgid "Grouper" msgstr "Regroup" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:223 msgid "report :: grouper" msgstr "Group" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:389 msgid "report :: aucun resultat trouve" msgstr "No Result" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:188 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:188 msgid "Chargement" msgstr "Loading..." #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:452 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:235 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:239 msgid "phraseanet:: propositions" msgstr "Proposals" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:258 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:258 msgid "Close the WorkZone" msgstr "Close the work zone" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:284 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:284 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:291 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:291 msgid "prod::thesaurusTab:candidats" msgstr "Candidates" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:306 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:306 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Accept candidate" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:312 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:312 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Replace with term ?" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:419 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:320 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:588 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 msgid "boutton::rechercher" msgstr "Search" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:368 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:436 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:368 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:436 msgid "chargement" msgstr "Loading" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:477 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:483 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:487 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:483 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:487 msgid "action:: nouveau panier" msgstr "New basket" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:494 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:500 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:494 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:500 msgid "Browse Baskets" msgstr "Browse Baskets" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:511 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:517 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:521 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:511 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:517 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:521 msgid "action:: nouveau reportage" msgstr "New Story" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:545 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:549 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:545 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:549 msgid "phraseanet:: tri par nom" msgstr "Sort by name" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:557 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1658 msgid "Preferences" msgstr "Settings" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:583 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:583 msgid "Advanced Search" msgstr "Advanced Search" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:397 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:606 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1049 msgid "phraseanet::type:: documents" msgstr "Documents" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:405 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:618 msgid "phraseanet::type:: reportages" -msgstr "Story" +msgstr "Stories" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:631 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:631 msgid "Tout type" msgstr "All types" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:635 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:635 msgid "Image" msgstr "Image" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:639 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:639 msgid "Video" msgstr "Video" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:643 msgid "Audio" msgstr "Audio" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:647 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:647 msgid "Document" msgstr "Document" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:478 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:668 msgid "boutton:: selectionner toutes les bases" msgstr "All" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:482 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:673 msgid "boutton:: selectionner aucune base" msgstr "None" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 -msgid "Re-initialiser" -msgstr "Reset" - #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:693 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:693 msgid "Trier par " msgstr "Sort by " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:745 msgid "rechercher par stemme" msgstr "Stemme search" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:755 msgid "Les termes apparaissent dans le(s) champs" msgstr "Word(s) from field(s)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:760 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:941 msgid "rechercher dans tous les champs" msgstr "All fields" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:801 msgid "Status des documents a rechercher" msgstr "Document status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:913 msgid "Rechercher dans un champ date" msgstr "In a date field" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:703 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:950 msgid "phraseanet::time:: de" msgstr "From" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:709 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:960 msgid "phraseanet::time:: a" msgstr "To" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1022 msgid "reponses:: selectionner tout" msgstr "All" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1031 msgid "reponses:: selectionner rien" msgstr "None" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1040 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1058 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1067 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1538 msgid "raccourci :: a propos des raccourcis claviers" msgstr "About shortcuts" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1543 msgid "Raccourcis claviers en cours de recherche : " msgstr "Main windows shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1548 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1584 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : select all " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1552 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1588 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print selected " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1556 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1592 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : edit selection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1560 msgid "Raccourcis::fleche gauche : page precedente " msgstr "left arrow : previous page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1564 msgid "Raccourcis::fleche droite : page suivante " msgstr "right arrow : next page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1568 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "up arrow : vertical scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1572 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "down arrow : vertical scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1579 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Baskets & features zone shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1599 msgid "Raccourcis claviers en cours de editing : " msgstr "Edit window shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1604 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : change field " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1611 msgid "Raccourcis claviers en cours de preview : " msgstr "Detailed View window shortcut " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1616 msgid "Raccourcis::fleche gauche : en avant " msgstr "right arrow : next document " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1620 msgid "Raccourcis::fleche gauche : en arriere " msgstr "left arrow : previous document " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1624 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "space : start/stop diaporama " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1632 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : close most of overlayed windows " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1643 msgid "raccourcis :: ne plus montrer cette aide" -msgstr "Do not display help anymore" +msgstr "Do not display this help anymore" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1664 msgid "Affichage" msgstr "Display" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1668 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1676 msgid "Mode de presentation" msgstr "Display mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1691 msgid "reponses:: mode vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1703 msgid "reponses:: mode liste" msgstr "List" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1710 msgid "Theme" msgstr "Skin" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1719 msgid "Selecteur de theme" msgstr "Theme picker" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1741 msgid "Presentation de vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1752 msgid "Iconographe (description au rollover)" msgstr "Iconograph (caption on rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1764 msgid "Graphiste (preview au rollover)" msgstr "Graphist (preview on rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1774 msgid "Informations techniques" msgstr "Technical informations" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1785 msgid "Afficher" msgstr "Display" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1797 msgid "Afficher dans la notice" msgstr "Display in caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1809 msgid "Ne pas afficher" msgstr "Hide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1819 msgid "Type de documents" msgstr "Document(s) Type" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1830 msgid "Afficher une icone" msgstr "Display an Icon" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1839 msgid "reponses:: images par pages : " msgstr "Results per page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1852 msgid "reponses:: taille des images : " msgstr "Thumbnails size " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1866 msgid "Couleur de selection" msgstr "Selection color" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1881 msgid "Affichage au demarrage" msgstr "Display On startup" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1897 msgid "Ma derniere question" msgstr "My last query" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1908 msgid "Une question personnelle" msgstr "The query" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1930 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:987 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1977 msgid "preview:: Description" msgstr "Caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:991 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1981 msgid "preview:: Historique" msgstr "Timeline" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:995 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1988 msgid "preview:: Popularite" msgstr "Statistics" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2037 msgid "Presentation de vignettes de panier" msgstr "Basket display setup" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2055 msgid "Afficher les status" msgstr "Show Status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2075 msgid "Afficher la fiche descriptive" msgstr "Show Caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2095 msgid "Afficher le titre" msgstr "Show Title" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 -msgid "%nb_elements% elements" -msgstr "%nb_elements% document(s)" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:38 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:53 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:38 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:40 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +msgid "Login" +msgstr "Login" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 -msgid "Imagette indisponible" -msgstr "Thumbnail unavailable" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 -msgid "Aucune description." -msgstr "No caption" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 -msgid "dans %category%" -msgstr "in %category%" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 -msgid "Confidentialite : privee" -msgstr "Private" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 -msgid "Confidentialite : publique" -msgstr "Public" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:70 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:94 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 +msgid "Login to link your account" +msgstr "Login to link your account" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:43 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:43 msgid "forms::operation effectuee OK" msgstr "Modifications done" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:81 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:81 msgid "admin::base: Alias" msgstr "Alias" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:99 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:99 msgid "Rename" msgstr "Rename" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:112 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Records on database :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:122 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:107 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:122 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:107 msgid "phraseanet:: details" msgstr "Details" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:133 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:133 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Unique words : " #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:142 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:142 msgid "admin::base: nombre de mots indexes sur la base" msgstr "Indexed words:" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:155 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:155 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Thesaurus indexed terms :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:174 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:174 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Full text indexed documents" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:185 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:185 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Thesaurus indexed documents" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:210 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:210 msgid "admin::base: Cette base est indexable" msgstr "This database can be indexed" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:268 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:271 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:268 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:271 msgid "Set labels" msgstr "Set labels" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:296 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:296 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Delete complete log of database ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:301 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:301 msgid "admin::base: supprimer tous les logs" msgstr "Delete all logs" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:312 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:312 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Stop database publication ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:317 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:317 msgid "admin::base: arreter la publication de la base" msgstr "Stop database publication" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:328 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:328 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Delete full content of database ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:333 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:333 msgid "admin::base: vider la base" msgstr "Empty database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:344 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:344 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirm Database removal" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:349 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:349 msgid "admin::base: supprimer la base" msgstr "Delete database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:361 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:361 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Confirm Database re-indexation" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:365 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:365 msgid "base:: re-indexer" msgstr "" "Re-index database now (regarding quantity of documents, this operation can " @@ -6074,22 +8852,28 @@ msgstr "" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:379 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:438 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:379 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:438 msgid "admin::base:collection: Monter une collection" msgstr "Mount a collection" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:397 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:397 msgid "Monter" msgstr "Mount" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:466 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:466 msgid "Activer une collection" msgstr "Activate a collection" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:510 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:510 msgid "admin::base: logo impression PDF" msgstr "Print Logo" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:526 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:526 msgid "admin::base:collection: supprimer le logo" msgstr "Delete logo" @@ -6098,129 +8882,107 @@ msgstr "Delete logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:536 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:389 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:445 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:501 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:557 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "No file" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:546 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:546 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Upload Logo (Height 35px max., jpeg)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:569 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 msgid "admin::base: aucun alias" msgstr "No aliases" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 -msgid "Download of documents" -msgstr "Documents downloads." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:107 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 +msgid "E-Mail" +msgstr "E-mail" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 -msgid "" -"Please wait while your files are being gathered for the download, this " -"operation may take a few minutes." -msgstr "" -"Please wait while files are being gathered for download. This operation may " -"take a few minutes." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:143 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 +msgid "Last Template" +msgstr "Last Template" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 -msgid "" -"Your documents are ready. If the download does not start, %before_link%click " -"here%after_link%" -msgstr "" -"Your documents are ready. If the download doesn't start automatically, " -"please %before_link%click here%after_link%." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:161 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 +msgid "Creation date" +msgstr "Creation date" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 -msgid "The file contains the following elements" -msgstr "The file contains the following items." - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 -msgid "Base" -msgstr "Base" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 -msgid "Sub definition" -msgstr "Subviews" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 -msgid "Login" -msgstr "Login" +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:22 +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:27 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:22 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:27 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 +msgid "validation::envoyer mon rapport" +msgstr "Send my feedback" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:60 msgid "Your %provider_name% account matchs a Phraseanet account" msgstr "Your %provider_name% account matchs a Phraseanet account." -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 -msgid "Login to link your account" -msgstr "Login to link your account" - #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:192 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:192 msgid "These informations do not match?" msgstr "These informations do not match?" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:204 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:204 msgid "Use my Phraseanet account" msgstr "Use my Phraseanet account" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:59 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:59 msgid "Le bridge Youtube ne prend en charge que les videos" msgstr "Bridge to Youtube only accepts videos" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:63 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:63 msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" msgstr "Documents upload to Youtube can only be done one by one" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:100 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:100 msgid "100 caracteres maximum" msgstr "100 characters maximum" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:133 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:133 msgid "2000 caracteres maximum" msgstr "2000 characters maximum" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 -msgid "Categorie" -msgstr "Category" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:203 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:203 msgid "500 caracteres maximum" msgstr "500 characters maximum" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:207 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:207 msgid "separe par un espace" msgstr "Separated by space character" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 -msgid "Confidentialite" -msgstr "Confidentiality" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:241 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:211 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:241 msgid "prive" msgstr "Private" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 -msgid "public" -msgstr "Public" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:279 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:279 msgid "" "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " "le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " @@ -6233,125 +8995,158 @@ msgstr "" "%lien_term_youtube%" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:299 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:299 msgid "Retour" msgstr "Return" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:24 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:24 msgid "Nom du nouveau panier" msgstr "Name" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:30 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:30 msgid "paniers::description du nouveau panier" msgstr "Caption" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:38 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:59 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:38 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:59 msgid "Ajouter ma selection courrante" msgstr "Add my current selection" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:34 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:34 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:277 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:277 msgid "phraseanet:: preview" msgstr "Preview" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:41 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:41 msgid "print:: image de choix seulement" msgstr "Preview" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:48 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:48 msgid "print:: image de choix et description" msgstr "Preview and caption" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:55 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:55 msgid "print:: image de choix et description avec planche contact" msgstr "Preview, caption and thumbnails" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:66 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:66 msgid "print:: imagette" msgstr "Thumbnail" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:73 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:73 msgid "print:: liste d'imagettes" msgstr "Thumbnail list" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:80 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:80 msgid "print:: planche contact (mosaique)" msgstr "Thumbnails" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:99 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:99 msgid "boutton::imprimer" msgstr "Print" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:109 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:109 msgid "None of the selected records can be printed" msgstr "None of the selected records can be printed" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:115 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:115 msgid "export:: erreur : aucun document selectionne" msgstr "Error : no document selected" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:118 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:118 msgid "Quotas" msgstr "Quotas" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:139 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:139 msgid "Restrictions de telechargement" msgstr "Download quotas" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:153 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:147 #: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:147 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:153 msgid "Restriction" msgstr "Restriction" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:161 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:161 msgid "Droits" msgstr "Rights" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:169 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:169 msgid "par mois" msgstr "per month" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:173 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:173 msgid "Reste" msgstr "remains" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:35 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:35 msgid "Granted third party applications" msgstr "Granted third party applications" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:47 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:47 msgid "Vous avez autorise ces applications a acceder a votre compte" msgstr "The following application are allowed to access to your account" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:77 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:77 msgid "Revoquer l'access" msgstr "Revoke access" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:89 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:89 msgid "Authoriser l'access" msgstr "Allow access" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:111 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:111 msgid "par %user_name%" msgstr "By %user_name%" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:125 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:125 msgid "Not Allowed" msgstr "Not allowed" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:133 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:133 msgid "Allowed" msgstr "Allowed" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:155 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:155 msgid "Aucune application n'a accés à vos données." msgstr "No application has access to your datas" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:167 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:167 msgid "Third-party applications" msgstr "Third-party applications." #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:172 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:172 msgid "" "A third-party application is a product developed apart from Phraseanet and " "that would access Phraseanet data." @@ -6360,10 +9155,12 @@ msgstr "" "that would access Phraseanet data." #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:180 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:180 msgid "Developpeurs" msgstr "Developers" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:185 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:185 msgid "" "Les developpeurs peuvent editer l'enregistrement de leurs application grace " "a l'onglet 'developpeurs' ci-dessus" @@ -6372,225 +9169,304 @@ msgstr "" "'Developers' tabs above." #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:20 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:20 msgid "SphinxSearch search-engine configuration" msgstr "Sphinx engine configuration" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:29 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:29 msgid "Sphinx Search connection configuration" msgstr "Sphinx connection configuration" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:34 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:34 msgid "Sphinx Search server" msgstr "Sphinx Search Server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:46 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:46 msgid "Sphinx Search RealTime server" msgstr "Sphinx RealTime server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:59 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:59 msgid "Charset to use for indexation" msgstr "Charset to use for indexation" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:85 msgid "Date fields available for search" msgstr "Date fields available for search" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:35 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:364 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 +msgid "paniers:: %nb_basket_elements% documents dans le panier" +msgstr "%nb_basket_elements% documents in basket" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:62 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 +msgid "paniers::categories: mes paniers" +msgstr "My baskets" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:91 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 +msgid "paniers::categories: paniers recus" +msgstr "Baskets received" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:168 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 +msgid "action : ouvrir dans le comparateur" +msgstr "Launch Lightbox" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:188 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 +msgid "paniers:: panier emis par %pusher_name%" +msgstr "Basket sent by %pusher_name%" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:380 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 +msgid "paniers:: vous avez de nouveaux paniers non consultes" +msgstr "New basket(s) received" + #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:29 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:29 msgid "Search baskets" msgstr "Search baskets" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:34 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:34 msgid "See" msgstr "See" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:54 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:54 msgid "My baskets" msgstr "My baskets" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:66 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:66 msgid "Received baskets" msgstr "Received baskets" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:78 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:78 msgid "Validations sent" msgstr "Feedback requests sent" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:90 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:90 msgid "Validations received" msgstr "Feedback requests received" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:97 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:97 msgid "When" msgstr "When" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:105 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:105 msgid "Any time" msgstr "Any time" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:121 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:121 msgid "This year" msgstr "This year" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:137 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:137 msgid "Past year" msgstr "Past year" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:321 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:321 msgid "Something wrong happened, please retry or contact an admin." msgstr "Something wrong happened. Please retry or contact an administrator." #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:336 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:336 msgid "You are about to delete this basket. Would you like to continue ?" msgstr "You are about to delete this basket. Would you like to continue?" -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 -msgid "Edition de 1 element" -msgstr "Editing 1 document" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:142 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:142 +msgid "validation:: editer ma note" +msgstr "Modify my notes" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:35 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:35 msgid "Suppression de %n_element% photos" msgstr "Deleting %n_element% photos" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:51 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:51 msgid "Etes vous sur de supprimer %number% photos ?" msgstr "Do you really want to delete %number% photos ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:40 msgid "phraseanet:: collection" msgstr "Collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "Distant collection ID" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:97 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:97 msgid "admin::base:collection: etat de la collection" msgstr "Collection Status" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: activer la collection" msgstr "Enabled collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: descativer la collection" msgstr "Disable collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:118 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Order Managers" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:166 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "Add a new order Manager" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:180 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "Display options for documents shared outside Phraseanet" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:193 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "Default" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:203 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "Watermark file" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:213 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stamp" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:291 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:291 msgid "admin::base:collection: renommer la collection" msgstr "Rename" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "Confirm collection stop ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Confirm collection publication ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:323 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Confirm collection dump ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:328 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:328 msgid "admin::base:collection: vider la collection" msgstr "Empty" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:339 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confirm collection delete ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:358 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "Current minilogo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:414 msgid "Watermark" msgstr "Watermark" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:470 msgid "Stamp logo" msgstr "Stamp logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:526 msgid "admin::base:collection: image de presentation : " msgstr "Collection introduction banner " -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "Invalid file type" - #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:118 msgid "regeneration of sub-definitions" msgstr "Recreate subviews" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:138 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:138 msgid "video tool" msgstr "Video Tools" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:161 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:161 msgid "image tool" msgstr "Rotate" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:175 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:175 msgid "substitution" msgstr "Substitution" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:189 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:189 msgid "meta-datas" msgstr "Meta datas" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:208 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:208 msgid "Reconstruire les sous definitions" msgstr "Recreate subviews" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:217 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "Caution! Some documents have substituted subviews." #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:224 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "Force re-creation for substituted subviews" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:240 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:240 msgid "recreer aucune sous-definitions" msgstr "Do not recreate subviews" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:246 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:246 msgid "recreer toutes les sous-definitions" msgstr "Recreate all subviews" @@ -6600,6 +9476,12 @@ msgstr "Recreate all subviews" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:531 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:610 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:659 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:260 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:429 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:459 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:531 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:610 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:659 msgid "validate" msgstr "Validate" @@ -6607,115 +9489,367 @@ msgstr "Validate" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:535 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:614 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:663 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:264 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:535 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:614 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:663 msgid "cancel" msgstr "Cancel" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:287 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:287 msgid "screenshot video" msgstr "Video screenshot" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:353 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:353 msgid "No preview available" msgstr "No preview available" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:364 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:475 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:364 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:475 msgid "take a screenshot" msgstr "Take a screenshoot" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:380 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:380 msgid "To take a screenshot click on camera" msgstr "To take a screenshot, click on the camera" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:410 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:410 msgid "brightness settings" msgstr "Brightness settings" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:440 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:440 msgid "contrast settings" msgstr "Contrast settings" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:504 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:504 msgid "image rotation" msgstr "Image rotation" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:510 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:510 msgid "rotation 90 degres horaire" msgstr "Rotate 90 degrees clockwise" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:518 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:518 msgid "rotation 90 degres anti-horaires" msgstr "Rotate 90 degrees counter clockwise" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:561 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:561 msgid "Substitution is not possible for this kind of record" msgstr "Substitution is not possible for this record type" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:583 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:583 msgid "substitution HD" msgstr "Document substitution" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:592 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "Update the filename" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:641 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:641 msgid "substitution SD" msgstr "Thumbnail substitution" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:988 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:988 msgid "alert" msgstr "Warning" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:999 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:999 msgid "no image selected" msgstr "No Document selected" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1055 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1055 msgid "processing" msgstr "Processing..." #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1070 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "an error occured" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1084 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1084 msgid "thumbnail validation" msgstr "Confirm thumbnail" +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:51 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:51 +msgid "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." +msgstr "" +"If this e-mail contains non-clickable links, copy / paste them into the " +"address bar of your browser." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:198 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:198 +msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." +msgstr "The content of this e-mail is confidential. Please do not disclose it." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:210 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:210 +msgid "Message automatique de Phraseanet" +msgstr "Automatic message from Phraseanet" + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:228 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:228 +msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" +msgstr "To manage automatic e-mail notifications, please connect to% link%." + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:39 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 +msgid "Ajouter une publication" +msgstr "Add a publication" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:49 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 +msgid "Feed name" +msgstr "Feed name" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:143 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 +msgid "Date Creation" +msgstr "Creation date" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:151 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 +msgid "Public" +msgstr "Public" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:278 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 +msgid "" +"Une fois la publication supprimee, les donnees publiees seront " +"definitivement perdues. Continuer ?" +msgstr "" +"Once the publication is deleted, all information about it will be lost, " +"proceed ?" + #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:143 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:143 msgid "Certaines donnees du panier ont change" msgstr "This basket has been updated" +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:80 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:80 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 +msgid "" +"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " +"contactez le support technique" +msgstr "" +"An error occurred. If this problem happens again, please contact technical " +"support" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:84 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:84 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 +msgid "" +"phraseanet::erreur: La connection au serveur Phraseanet semble etre " +"indisponible" +msgstr "Server connection is not available" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:88 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:88 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 +msgid "" +"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" +msgstr "Your session is closed, please re-authentificate" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:92 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:92 +msgid "Cocher toute la colonne" +msgstr "Check all boxes from column" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:96 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:96 +msgid "Decocher toute la colonne" +msgstr "Uncheck all boxes from column" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:100 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:100 +msgid "Creer un model" +msgstr "Create a template user" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:104 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:104 +msgid "Creer un utilisateur" +msgstr "Create a new user" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:112 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +msgid "This file is too big" +msgstr "This file is too big" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:116 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:116 +msgid "This field is required" +msgstr "This field is required" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:124 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:124 +msgid "Reset and apply" +msgstr "Reset and apply" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:128 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "Confirm reset users rights before applying template" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:132 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "Rights will be erased before applying template, do you confirm?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:136 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:136 +msgid "Reset and apply template" +msgstr "Reset and apply template" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:140 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:140 +msgid "Apply template" +msgstr "Apply template" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:144 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:144 +msgid "Reset rights before applying template?" +msgstr "Reset rights before applying template?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:148 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:148 +msgid "Would you like to reset rights before applying the template?" +msgstr "Would you like to reset rights before applying the template?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:328 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:328 +msgid "Successful install" +msgstr "Successful installation" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:346 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:346 +msgid "Ajouter un nouvel utilisateur" +msgstr "Add a new user" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:351 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:351 +msgid "Adresse email du nouvel utilisateur" +msgstr "New user e-mail address" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:358 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:358 +msgid "Send an email to the user to setup his password" +msgstr "Send user an e-mail for password setup." + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:365 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:365 +msgid "Require email validation to activate the account" +msgstr "Require e-mail validation to activate the account." + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:373 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:373 +msgid "Creer un modele" +msgstr "Create a template" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:378 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:378 +msgid "Nom du nouveau modele" +msgstr "New template name" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:38 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 +msgid "Records Statut" +msgstr "Records statut" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:45 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 +msgid "Records type" +msgstr "Records type" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:57 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 +msgid "You have selected one record." +msgstr "You have selected one record." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:63 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 +msgid "You have selected %nbReceivedDocuments% records." +msgstr "You have selected %nbReceivedDocuments% records." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:74 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 +msgid "None of the records can be modified." +msgstr "None of the records can be modified." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:86 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 +msgid "Only one record can be modified." +msgstr "Only one record can be modified." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:92 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 +msgid "Only %nbEditableDocuments% records can be modified." +msgstr "Only %nbEditableDocuments% records can be modified." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:151 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 +msgid "Stories status edition" +msgstr "Stories status edition" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:157 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 +msgid "Records status edition" +msgstr "Records status edition" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:310 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:310 +msgid "Apply status on stories children." +msgstr "Apply status to documents in stories." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:316 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:316 +msgid "Apply status on story children." +msgstr "Apply status to documents in story." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:340 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:340 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:147 +msgid "Apply changes" +msgstr "Apply changes" + #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:26 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:26 msgid "panier:: nom" msgstr "Name" #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:34 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:34 msgid "panier:: description" msgstr "Caption" -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 -msgid "Reordonner automatiquement" -msgstr "Sort automatically" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 -msgid "Re-ordonner" -msgstr "Set order" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 -msgid "Inverser" -msgstr "Reverse" - #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:33 msgid "" "prod::Les enregistrements ne provienent pas tous de la meme base et ne " "peuvent donc etre traites ensemble" @@ -6723,70 +9857,86 @@ msgstr "" "Unable to perform action, selected documents come from different databases" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:42 msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "You do not have the required permissions on selected documents" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:51 msgid "erreur : Vous n'avez pas les droits" msgstr "You do not have the required permissions." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:74 msgid "One document can not be modified." msgstr "One document can not be modified." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:80 #, php-format msgid "%countable% documents can not be modified." msgstr "%countable% documents can not be modified." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:99 msgid "Move one record to the chosen collection in the list." msgstr "Move one record to the chosen collection in the list." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:105 msgid "Move %countable% records to the chosen collection in the list." msgstr "Move %countable% records to the chosen collection in the list." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:142 msgid "" "prod::collection deplacer egalement les documents rattaches a ce(s) " "regroupement(s)" msgstr "Move also Stories linked documents ?" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:59 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:59 msgid "Le bridge Dailymotion ne prend en charge que les videos" msgstr "The Dailymotion bridge only accepts videos" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:63 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:63 msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" msgstr "You can only add documents one by one on Dailymotion" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:100 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:100 msgid "255 caracteres maximum" msgstr "255 characters maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:132 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:132 msgid "1000 caracteres maximum" msgstr "1000 characters maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:165 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:165 msgid "250 caracteres maximum" msgstr "250 characters maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:169 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:169 msgid "10 tags maximum" msgstr "10 tags maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:173 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:173 msgid "Séparez les tags par un espace: Paris vacances restaurant" msgstr "" "Use space character between tags or keywords : Paris Holidays Restaurant" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:177 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:177 msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" msgstr "Use quotation marks to groups words : \"Eiffel Tower\"" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:245 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:245 msgid "" "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " "contenu de la vidéo que vous allez mettre en ligne est conforme aux " @@ -6797,79 +9947,102 @@ msgstr "" "of Use" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:28 msgid "Aucune notification" msgstr "No notification" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:37 msgid "toutes les notifications" msgstr "All Notifications" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:203 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:243 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:203 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:243 msgid "thesaurus::menu: proprietes" msgstr "Properties" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:207 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:207 msgid "thesaurus::menu: refuser" msgstr "Reject" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:211 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:211 msgid "thesaurus::menu: accepter" msgstr "Allow" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:216 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:255 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:111 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:111 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:216 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:255 msgid "thesaurus::menu: supprimer" msgstr "Delete" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:220 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:220 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Delete candidates with no hits" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:225 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:260 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:225 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:260 msgid "thesaurus::menu: chercher" msgstr "Search" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:229 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:264 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:229 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:264 msgid "thesaurus::menu: exporter" msgstr "Export" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:236 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:236 msgid "thesaurus::menu: importer" msgstr "Import" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:247 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:247 msgid "thesaurus::menu: Nouveau terme" msgstr "New term" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:251 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:251 msgid "thesaurus::menu: Nouveau synonyme" msgstr "New synonym" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:268 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:268 msgid "thesaurus::menu: export topics" msgstr "Export as topics" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:273 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:273 msgid "thesaurus::menu: lier au champ" msgstr "Link to fields" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:321 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:321 msgid "thesaurus:: onglet stock" msgstr "Candidates" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:327 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:327 msgid "thesaurus:: afficher les termes refuses" msgstr "Display rejected terms" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:341 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:341 msgid "thesaurus:: onglet thesaurus" msgstr "Thesaurus" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:546 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:546 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" @@ -6878,6 +10051,7 @@ msgstr "" "future indexation)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:551 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:551 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " @@ -6887,57 +10061,173 @@ msgstr "" "candidates)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:605 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:605 msgid "thesaurus:: Tous les termes ont des hits" msgstr "All terms have hits" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:614 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:614 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" msgstr "Terms from this branch have no hits : delete Terms ?" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:1217 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:1217 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Move Terms to stock" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:58 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:66 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 +msgid "admin::tasks: nom de la tache" +msgstr "Name" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:73 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 +msgid "admin::tasks: lancer au demarrage du scheduler" +msgstr "Start with scheduler startup" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:85 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 +msgid "admin::tasks: Nombre de crashes : " +msgstr "Crashes " + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:93 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 +msgid "admin::tasks: reinitialiser el compteur de crashes" +msgstr "Reset" + #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:33 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:33 msgid "Creer un Photoset" msgstr "Create a Photoset" #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:82 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:82 msgid "Photo principale" msgstr "Main picture" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 -msgid "paniers:: %nb_basket_elements% documents dans le panier" -msgstr "%nb_basket_elements% documents in basket" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:146 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 +msgid "client:: recherche" +msgstr "Search" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 -msgid "paniers::categories: mes paniers" -msgstr "My baskets" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:165 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 +msgid "client:: recherche avancee" +msgstr "Advanced Search" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 -msgid "paniers::categories: paniers recus" -msgstr "Baskets received" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:184 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 +msgid "client:: topics" +msgstr "Topics" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 -msgid "action : ouvrir dans le comparateur" -msgstr "Launch Lightbox" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:219 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:221 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:242 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:244 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:533 +msgid "phraseanet::technique:: et" +msgstr "And" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 -msgid "paniers:: panier emis par %pusher_name%" -msgstr "Basket sent by %pusher_name%" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:225 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:227 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:248 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:250 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 +msgid "phraseanet::technique:: or" +msgstr "Or" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "New basket(s) received" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:231 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:233 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:254 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:256 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 +msgid "phraseanet::technique:: except" +msgstr "Except" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:269 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 +msgid "client::recherche: rechercher dans les bases :" +msgstr "Search" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:279 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 +msgid "client::recherche: rechercher dans toutes les bases" +msgstr "All databases" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:343 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 +msgid "phraseanet:: presentation des resultats" +msgstr "Display settings" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:434 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 +msgid "phraseanet:: collections" +msgstr "Collections" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:436 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " +"base" +msgstr "Click here to reset all filters" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:463 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 +msgid "phraseanet:: historique" +msgstr "Timeline" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:521 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" +msgstr "Reset all filters" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:793 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 +msgid "client::recherche: filter sur" +msgstr "Filter" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:806 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 +msgid "client::recherche: filtrer par dates" +msgstr "By Date" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:819 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 +msgid "client::recherche: filtrer par status" +msgstr "By Status" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:832 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 +msgid "client::recherche: filtrer par champs" +msgstr "By Field" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:841 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 +msgid "client::recherche: filtrer par champs : tous les champs" +msgstr "All fields" #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:63 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:63 msgid "Hi, Please log in" msgstr "Hello. Please log in." #: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:53 +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:48 #: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:48 msgid "Erreur !" msgstr "Error !" @@ -6950,60 +10240,122 @@ msgstr "Basket deleted" msgid "Retour a l'accueil" msgstr "Back to homepage" +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:247 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:298 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 +msgid "erreur avec la valeur %name%" +msgstr "Error with value %name%" + #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:22 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:22 msgid "Terms Of Use" msgstr "Terms of Service" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:35 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:35 msgid "" "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" -msgstr "already registered users have to re-accept modified CGU" +msgstr "Registered users have to re-accept modified General Terms of Use." #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:40 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:40 msgid "Mettre a jour" msgstr "Update" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:30 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 +msgid "" +"Cochez les cases correspondantes aux colonnes que vous desirez voire " +"apparaitre dans le report" +msgstr "Select the columns to be displayed in report" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:36 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 +msgid "cocher tout" +msgstr "Select all" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:43 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 +msgid "tout decocher" +msgstr "Unselect all" + +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:62 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 +msgid "language" +msgstr "Language" + +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:33 +#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 +msgid "report:: Enlever le filtre" +msgstr "Remove filter" + +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:62 +#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 +msgid "Retour a laccueil" +msgstr "Back to Home" + #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:50 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:191 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:50 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:191 msgid "Les documents ne peuvent pas etre exportes" msgstr "Documents can not be downloaded" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:68 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:104 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:68 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:104 msgid "export:: telechargement" msgstr "Download" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:72 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:280 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:72 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:280 msgid "export:: envoi par mail" msgstr "E-Mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:81 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:81 msgid "export:: commande" msgstr "Order" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:843 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:90 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:843 msgid "export:: FTP" msgstr "FTP" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:559 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:952 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:172 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:385 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:559 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:952 msgid "Documents indisponibles" msgstr "Document(s) unavailable" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1012 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:230 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:445 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1012 msgid "Include Business-fields in caption" msgstr "Include Business-fields in caption" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1035 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:256 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:471 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:812 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1035 msgid "" "By checking this box, you accept %beginning_link% Terms of Use %end_link%" msgstr "" @@ -7011,111 +10363,144 @@ msgstr "" "of Use %end_link%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:297 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:297 msgid "export::mail: destinataire" msgstr "To" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:311 msgid "Recevoir un accuse de reception a %my_email%" -msgstr "Receive acknowledge at %my_email%" +msgstr "Receive an acknowledgement at %my_email%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:320 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:320 msgid "" "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" -msgstr "Unable to acknowledge; missing e-mail address" +msgstr "Unable to send an acknowledgement: Missing e-mail address." #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:328 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:328 msgid "Entrez plusieurs adresses email en les separant par des points-virgules" -msgstr "Use a semicolon between e-mail addresses" +msgstr "Use a semicolon between e-mail addresses." #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:334 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:334 msgid "export::mail: contenu du mail" msgstr "Content" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:908 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:341 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:908 msgid "export::mail: fichiers joint" msgstr "Attachment(s)" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:570 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:971 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:404 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:570 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:971 msgid "La sous resolution n'est pas disponible pour les documents suivants" msgstr "Subviews unavailable for the following document(s)" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1050 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:481 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1050 msgid "boutton::envoyer" msgstr "Send" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:517 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:517 msgid "Un document commande" msgstr "One document ordered." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:523 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:523 #, php-format msgid "%docs_orderable% documents commandes" msgstr "%docs_orderable% ordered document(s)" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:538 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:538 msgid "Un document ne peut etre commande" msgstr "One document can not be ordered." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:544 #, php-format msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" msgstr "%docs_not_orderable% document(s) can't be ordered" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:615 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:615 msgid "commande::utilisation prevue" msgstr "Intended use" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:625 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:625 msgid "commande::deadline" msgstr "Deadline" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:635 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:635 msgid "Civility" msgstr "Title" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:823 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:823 msgid "boutton::commander" msgstr "Order" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:861 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:861 msgid "phraseanet:: prereglages" msgstr "Presets" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1045 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1045 msgid "boutton::essayer" msgstr "Try" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1098 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1098 msgid "You must agree to the Terms of Use to continue." msgstr "You must accept the Terms of Use to continue." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1110 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1166 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1196 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1364 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1421 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1448 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1110 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1166 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1196 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1364 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1421 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1448 msgid "Warning !" msgstr "Warning !" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1154 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1154 msgid "Certains champs sont obligatoires, veuillez les remplir" msgstr "Some fields must be completed" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1184 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1184 msgid "Vous devez selectionner un type de sous definitions" msgstr "Select type of subviews" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1216 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1216 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 msgid "Terms of Use" msgstr "Terms of Use" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1285 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1285 msgid "" "You can not directly download more than %max_download% Mo ; time to package " "all documents is too long" @@ -7123,839 +10508,226 @@ msgstr "" "You can't directly download more than %max_download% Mo ; time to package " "all documents would be too long." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1294 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1294 msgid "You can alternatively receive an email when the download is ready." msgstr "Alternatively, you can receive an e-mail when the download is ready." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1303 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1303 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Would you like to receive an e-mail when your download is ready ?" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1544 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1590 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:483 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1590 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Use passive mode" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1608 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:497 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1608 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Max. retry" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1624 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:455 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1624 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Ftp reception folder" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1640 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1640 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Create directory" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1668 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1668 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Write a log file" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1710 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1710 msgid "Nom des fichiers a l'export" msgstr "FIles name to use for Download" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1727 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1727 msgid "export::titre: titre du documument" msgstr "Title" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1744 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1744 msgid "export::titre: nom original du document" msgstr "Original name" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:28 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:28 msgid "thesaurus:: Nouveau terme specifique" msgstr "New specific term" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:30 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:29 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:30 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:29 msgid "thesaurus:: Nouveau synonyme" msgstr "New Synonym" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:68 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:68 msgid "thesaurus:: le terme %term% avec contexte %context%" msgstr "Term %term% with context %context%" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:80 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:80 msgid "thesaurus:: le terme %term% sans contexte" msgstr "Term %term% without context" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:97 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:97 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "is already a candidate from valid field " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:103 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:103 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "Is already a candidate from valid fields " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:155 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:155 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Select origin to accept" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:184 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:190 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:184 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:190 msgid "" "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " "a cet emplacement du thesaurus" msgstr "is a candidate from fields but can't be accepted for this branch" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:201 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:201 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "is not a candidate" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:209 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:209 msgid "thesaurus:: attention :" msgstr "Warning :" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:229 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:229 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Add term without re indexation" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:234 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:234 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Add term and re index" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:27 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 +msgid "No preview available." +msgstr "No preview available." + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:33 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 +msgid "No permalink available." +msgstr "No permalink available." + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:62 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 +msgid "Send to Twitter" +msgstr "Send to Twitter" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:74 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 +msgid "Send to Facebook" +msgstr "Send to Facebook" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:83 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 +msgid "Resource URL" +msgstr "Resource URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:91 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 +msgid "Detailed view URL" +msgstr "Detailed view URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:102 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 +msgid "Embed code" +msgstr "Embed code" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:138 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 +msgid "No URL available" +msgstr "No URL available" + #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:47 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:47 msgid "admin::monitor: Ancienne version (client)" msgstr "Classic" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:66 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:66 msgid "admin::monitor: Nouvelle version (prod)" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:79 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:79 msgid "admin::monitor: production" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:270 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:270 msgid "Commandes" msgstr "Orders" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:297 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:297 msgid "Notifications" msgstr "Notifications" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:334 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:334 msgid "Guest" msgstr "Guest" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:78 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:343 msgid "login:: Mon compte" msgstr "My account" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:364 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:364 msgid "phraseanet:: aide" msgstr "Help" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:382 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:382 msgid "phraseanet:: raccourcis clavier" msgstr "Shortcuts" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:398 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:398 msgid "phraseanet:: a propos" msgstr "About" -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 -msgid "report:: activite par jour" -msgstr "Daily Activity" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 -msgid "Apply to all selected documents" -msgstr "Apply to all selected documents" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 -msgid "Apply changes" -msgstr "Apply changes" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 -msgid "Refresh" -msgstr "Refresh" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 -msgid "(%length%)" -msgstr "(%length%)" - -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 -msgid "privé" -msgstr "Private" - -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 -msgid "Vous devez remplir les champs requis" -msgstr "You must fill in required fields" - -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 -msgid "validation::envoyer mon rapport" -msgstr "Send my feedback" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 -msgid "First/Last Name" -msgstr "First/Last name" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 -msgid "E-Mail" -msgstr "E-mail" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 -msgid "Last Template" -msgstr "Last Template" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 -msgid "Creation date" -msgstr "Creation date" - -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 -msgid "More" -msgstr "More" - -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 -msgid "Remove from basket" -msgstr "Remove from basket" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 -msgid "Client applications" -msgstr "Client applications" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 -msgid "Mes applications" -msgstr "My application(s)" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 -msgid "button::supprimer" -msgstr "Delete" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 -msgid "Are you sure you want to delete this application?" -msgstr "Are you sure you want to delete this application?" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 -msgid "No" -msgstr "No" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 -msgid "Yes" -msgstr "Yes" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 -msgid "Aucune application creee." -msgstr "No application created" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 -msgid "Decouvrez la documentation" -msgstr "Discover API documentation" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 -msgid "Demarrer avec l'API Phraseanet" -msgstr "Start with Phraseanet API" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "Create an application to start using the Phraseanet API" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 -msgid "Creer une nouvelle applications" -msgstr "Create a new application" - -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 -msgid "Story name" -msgstr "Story name" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 -msgid "Toutes les publications" -msgstr "All publications" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 -msgid "publications:: s'abonner aux publications" -msgstr "Subscribe" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 -msgid "Aller a" -msgstr "Go to" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 -msgid "Aucune entree pour le moment" -msgstr "No entry available" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 -msgid "charger d'avantage de publications" -msgstr "Load more publications" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 -msgid "thesaurus:: Editer le thesaurus" -msgstr "Edit thesaurus" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 -msgid "phraseanet:: choisir" -msgstr "Choose" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 -msgid "thesaurus:: langue pivot" -msgstr "Select edit language" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "No Database access" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 -msgid "Renew password" -msgstr "Renew password" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 -msgid "Choose a new password" -msgstr "Choose a new password" - -#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 -msgid "No matches found" -msgstr "No matches found" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 -msgid "Edition" -msgstr "Edition" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 -msgid "Sous-titre" -msgstr "Subtitle" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 -msgid "Short description" -msgstr "Short description" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 -msgid "Etendue de la publication" -msgstr "Publication scope" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 -msgid "Non-Restreinte (publique)" -msgstr "Unrestricted (public)" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 -msgid "Publique" -msgstr "Public" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "List of users allowed to publish on this feed" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 -msgid "Id" -msgstr "Id" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 -msgid "Email" -msgstr "E-mail" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 -msgid "Owner" -msgstr "Owner" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 -msgid "Ajouter un publisher" -msgstr "Add a Publisher" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 -msgid "Name or email" -msgstr "Name or E-mail" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 -msgid "You are not the feed owner" -msgstr "You are not the feed owner" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 -msgid "client:: recherche" -msgstr "Search" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 -msgid "client:: recherche avancee" -msgstr "Advanced Search" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 -msgid "client:: topics" -msgstr "Topics" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 -msgid "phraseanet::technique:: et" -msgstr "And" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 -msgid "phraseanet::technique:: or" -msgstr "Or" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 -msgid "phraseanet::technique:: except" -msgstr "Except" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 -msgid "client::recherche: rechercher dans les bases :" -msgstr "Search" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "All databases" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 -msgid "phraseanet:: presentation des resultats" -msgstr "Display settings" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 -msgid "phraseanet:: collections" -msgstr "Collections" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " -"base" -msgstr "Click here to reset all filters" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 -msgid "phraseanet:: historique" -msgstr "Timeline" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "Reset all filters" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 -msgid "client::recherche: filter sur" -msgstr "Filter" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 -msgid "client::recherche: filtrer par dates" -msgstr "By Date" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 -msgid "client::recherche: filtrer par status" -msgstr "By Status" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 -msgid "client::recherche: filtrer par champs" -msgstr "By Field" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "All fields" - -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 -msgid "validation:: editer ma note" -msgstr "Modify my notes" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 -msgid "publications:: dernieres publications" -msgstr "Last Publications" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 -msgid "publications:: derniere mise a jour" -msgstr "Last update" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 -msgid "The user has been created." -msgstr "The user has been created." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#, php-format -msgid "%user_count% users have been created." -msgstr "%user_count% users have been created." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 -msgid "admin::user: nouvel utilisateur" -msgstr "New User" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 -msgid "admin::user: nouveau template" -msgstr "New template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 -msgid "admin::user: import d'utilisateurs" -msgstr "Import" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 -msgid "admin::user: export d'utilisateurs" -msgstr "Export" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 -msgid "Filter" -msgstr "Filter" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 -msgid "Last applied template" -msgstr "Applied user template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 -msgid "boutton::appliquer" -msgstr "Apply" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "id" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 -msgid "admin::compte-utilisateur pays" -msgstr "Country" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "Last applied template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 -msgid "admin::compte-utilisateur date de creation" -msgstr "Creation date" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 -msgid "This is a template" -msgstr "This is a template user" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 -msgid "This user has no rights" -msgstr "This user has no rights" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 -msgid "%n_par_page% par page" -msgstr "%n_par_page% per page" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 -msgid "Supprimer" -msgstr "Delete" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 -msgid "boutton::exporter" -msgstr "Export" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 -msgid "select at least one user" -msgstr "One user at least must be selected" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 -msgid "Are you sure you want delete users rights ?" -msgstr "Are you sure you want to remove existing users rights?" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 -msgid "users rights have been reseted" -msgstr "Users rights have been reseted" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 -msgid "" -"%name% est momentanement indisponible a cause d'un trop grand nombre de " -"requetes" -msgstr "%name% is currently unavailable, too many requests sent" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "Service will be available again in a few minutes" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "Link thesaurus branch to field" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 -msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" -msgstr "Link thesaurus branch to field %branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "Link branch ?" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" -msgstr "This field has been changed. The old branch is : % old_branch%." - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 -msgid "thesaurus:: nouvelle branche" -msgstr "New branch" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 -msgid "" -"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " -"candidats seront supprimes" -msgstr "" -"This field is no longer linked to thesaurus, indexed terms and candidates " -"will be deleted" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 -msgid "" -"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " -"est necessaire" -msgstr "This field must be linked to thesaurus. Database re indexation needed" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 -msgid "" -"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " -"base est necessaire" -msgstr "Link to thesaurus must be modified , database re indextion needed" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 -msgid "thesaurus:: reindexation necessaire" -msgstr "Re indexation needed" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 -msgid "thesaurus:: pas de reindexation" -msgstr "No re-index" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 -msgid "thesaurus:: suppression du lien du champ %field%" -msgstr "Unlinking field %field%." - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 -msgid "" -"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" -msgstr "Remove the candidates branch for field% field%." - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "Recording modified list of candidates" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 -msgid "" -"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" -msgstr "Removing indexes to thesaurus for field %field%." - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "Re-index all records" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 -msgid "En attente" -msgstr "Pending" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 -msgid "En cours d'envoi" -msgstr "Sending in progress" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 -msgid "Oups ! something went wrong !" -msgstr "Oups ! Something went wrong !" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 -msgid "boutton::retry" -msgstr "Try again" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 -msgid "admin::tasks: nom de la tache" -msgstr "Name" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "Start with scheduler startup" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 -msgid "admin::tasks: Nombre de crashes : " -msgstr "Crashes " - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "Reset" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 -msgid "You are using the Flash uploader." -msgstr "You are using the Flash uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 -msgid "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" -msgstr "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 -msgid "Use the HTML5 uploader" -msgstr "Switch to HTML5 uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "Selected files" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 -msgid "You have attempted to queue too many files" -msgstr "You have attempted to queue too many files" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 -msgid "Unknow Error" -msgstr "Unknown error" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 -msgid "Cannot upload Zero Byte files" -msgstr "Cannot upload Zero Byte files" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 -msgid "Unhandled Error" -msgstr "Unhandled error" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 -msgid "Unknow reason" -msgstr "Unknown reason" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 -msgid "Bad request, please contact an admin" -msgstr "Bad request. Please contact your administrator" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 -msgid "Upload URL is not set, please contact an admin" -msgstr "Upload URL is not set. Please contact your administrator" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 -msgid "Connection terminates unexpetecdly, please retry" -msgstr "Connexion terminated unexpectedly. Please retry" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 -msgid "The upload violates a security restriction, please retry" -msgstr "The upload violates a security restriction. Please retry" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 -msgid "File upload limit (%maxFileSizeReadable%) has been reached" -msgstr "File upload limit (%maxFileSizeReadable%) has been reached" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 -msgid "Could not initiate upload, please retry" -msgstr "Unable to initiate the upload. Please retry" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 -msgid "" -"Could not retrieve the file ID, please retry or contact an admin if problem " -"persist" -msgstr "" -"Cannot retrieve the file ID. Please retry or contact an administrator if " -"problem persists" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 -msgid "File validation failed" -msgstr "" -"Unable to retrieve the file ID. Please retry or contact an Administrator if " -"problem persist" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 -msgid "File upload has been cancelled" -msgstr "File upload has been cancelled" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 -msgid "File upload has been stopped" -msgstr "File upload has been interrupted" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 -msgid "Error while uploading" -msgstr "Error while uploading" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 -msgid "Please select at least one valid file" -msgstr "Please select at least one valid file" - -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 -msgid "report:: Enlever le filtre" -msgstr "Remove filter" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 -msgid "thesaurus:: accepter..." -msgstr "Accept" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 -msgid "thesaurus:: removed_src" -msgstr "removed_src" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 -msgid "thesaurus:: refresh" -msgstr "Refresh" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 -msgid "thesaurus:: removed tgt" -msgstr "remove_tgt" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 -msgid "thesaurus:: Accepter le terme comme" -msgstr "Accept term as :" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 -msgid "thesaurus:: comme terme specifique" -msgstr "Specific term" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 -msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" -msgstr "As synonym for %fullpath_tgt_raw%." - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 -msgid "thesaurus:: Accepter la branche comme" -msgstr "Accept branch as" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 -msgid "" -"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " -"ne peut etre accepte" -msgstr "" -"At this location of thesaurus, a candidate term from field cfield%% can't be " -"accepted." - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 -msgid "(validation) session terminee" -msgstr "Feedback session ended" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 -msgid "(validation) envoyee" -msgstr "Feedback request sent." - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 -msgid "(validation) a envoyer" -msgstr "Feedback request to send" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 -#, php-format -msgid "%basket_length% documents" -msgstr "%basket_length% document(s)" - +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:22 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:22 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:320 @@ -7967,818 +10739,134 @@ msgstr "%basket_length% document(s)" msgid "You are not authorized to do this" msgstr "You are not authorized to do this action" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:29 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:29 msgid "About Roles : " msgstr "About Roles : " +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:34 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:34 msgid "Admin can edit shares, modify content" msgstr "Admin can edit shares and modify content" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:40 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:40 msgid "Editor can modify content" msgstr "Editor can modify content" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:46 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:46 msgid "Access user have readonly access" msgstr "Access has readonly rights" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:54 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:54 msgid "Find a user" msgstr "Find a user" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:91 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:91 msgid "You are Admin" msgstr "You are administrator" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:100 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:100 msgid "Role" msgstr "Role" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:126 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:126 msgid "Editor" msgstr "Editor" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:139 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:139 msgid "Admin" msgstr "Administrator" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:155 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:155 msgid "Remove" msgstr "Remove" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:164 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:164 msgid "Notify" msgstr "Notify" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 -msgid "Records Statut" -msgstr "Records statut" +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:35 +msgid "Apply to all selected documents" +msgstr "Apply to all selected documents" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 -msgid "Records type" -msgstr "Records type" +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:41 +msgid "Refresh" +msgstr "Refresh" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 -msgid "You have selected one record." -msgstr "You have selected one record." +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:77 +msgid "(%length%)" +msgstr "(%length%)" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 -msgid "You have selected %nbReceivedDocuments% records." -msgstr "You have selected %nbReceivedDocuments% records." +#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 +#: tmp/cache_twig/9a/af/a1037f8c999f73036a656301976bf104ace3fbd735257245a01214edc010.php:122 +#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 +#: tmp/cache_twig/b0/d1/517f30cd82f5d4ead4063de4342d258e96da49577fc507c20e2018163776.php:122 +msgid "More" +msgstr "More" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 -msgid "None of the records can be modified." -msgstr "None of the records can be modified." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:90 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 +msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +msgstr "This field has been changed. The old branch is : % old_branch%." -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 -msgid "Only one record can be modified." -msgstr "Only one record can be modified." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:97 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 +msgid "thesaurus:: nouvelle branche" +msgstr "New branch" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 -msgid "Only %nbEditableDocuments% records can be modified." -msgstr "Only %nbEditableDocuments% records can be modified." - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 -msgid "Stories status edition" -msgstr "Stories status edition" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 -msgid "Records status edition" -msgstr "Records status edition" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 -msgid "Loading" -msgstr "Loading" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 -msgid "Access history" -msgstr "Access history" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:110 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 msgid "" -"If you notice any unfamiliar devices or locations, click 'End Activity' to " -"end the session." +"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " +"candidats seront supprimes" msgstr "" -"If you notice any unfamiliar devices or locations, click 'End Activity' to " -"end the session." +"This field is no longer linked to thesaurus, indexed terms and candidates " +"will be deleted" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 -msgid "Date de connexion" -msgstr "Login date" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 -msgid "Dernier access" -msgstr "Last access" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 -msgid "IP" -msgstr "IP" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 -msgid "Browser" -msgstr "Browser" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 -msgid "End Activity" -msgstr "End Activity" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 -msgid "End session activity" -msgstr "End session activity" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 -msgid "Do you really want to end the activity of this session?" -msgstr "Do you really want to end the activity of this session?" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 -msgid "thesaurus:: Nouveau terme" -msgstr "New term" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 -msgid "thesaurus:: terme" -msgstr "Term" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 -msgid "thesaurus:: synonyme" -msgstr "Synonym" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 -msgid "thesaurus:: contexte" -msgstr "Context" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 -msgid "phraseanet:: language" -msgstr "Language" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 -msgid "The following errors have been detected" -msgstr "The following errors have been detected" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 -msgid "Would you like to continue ?" -msgstr "Would you like to continue?" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 -msgid "Apply a model" -msgstr "Apply a template" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 -msgid "You need define a model before importing a list of users" -msgstr "You need to define a template before importing a list of users." - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 -msgid "There is no user to add." -msgstr "There is no user to add." - -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 -msgid "Ajouter a" -msgstr "Add to" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 -msgid "nouveau" -msgstr "New" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "Select an API to connect to :" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 -msgid "Aucun bridge disponible. Veuillez contacter un administrateur." -msgstr "There is no Bridge Available . Please contact Administrator." - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 -msgid "You are about to delete this account. Would you like to continue ?" -msgstr "You are about to delete this account. Would you like to continue?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "You miss some rights on the selected documents" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "You don't have required rights on some of the selected documents" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:129 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" -msgstr "Replace candidate \"%(from)s\" with \"%(to)s\"" +"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " +"est necessaire" +msgstr "This field must be linked to thesaurus. Database re indexation needed" -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "Replacing..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "Accepting..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "Deleting..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "Accept candidat term \"%s\" ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "Accept %d candidate terms ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 -#, php-format +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:137 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "Accept \"%s\" candidat term" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "Accept %s candidate terms" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "Replace \"%s\" term from caption(s) by" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "Replace \"%d\" terms from caption(s) by" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "Delete \"%s\" term from caption(s)" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "Delete %d terms from caption(s)" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 -msgid "prod::thesaurusTab:tree:loading" -msgstr "Loading..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "Accept as new term" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "Accept as a synonym" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "Accept in %lng_code%" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "Replace with" - -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 -msgid "Playlist" -msgstr "Playlist" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:93 -msgid "publication : titre" -msgstr "Title" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:101 -msgid "publication : sous titre" -msgstr "Sub Title" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:109 -msgid "publication : autheur" -msgstr "Author" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:117 -msgid "publication : email autheur" -msgstr "Author's e-mail" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:129 -msgid "Fils disponibles" -msgstr "Available feed" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 -msgid "boutton::mettre a jour" -msgstr "Update" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 -msgid "you are about to change the representation thumbnail of your video" -msgstr "You are about to change the representation thumbnail of your video" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 -msgid "do you want to validate" -msgstr "Do you want to validate" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" -msgstr "Object" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" -msgstr "Number" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" -msgstr "Size" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 -msgid "Updated structure" -msgstr "Updated Structure Setup" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 -msgid "Structure has been successfully updated" -msgstr "Structure setup has been successfully updated" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 -msgid "Structure errors" -msgstr "Structure setting errors" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "Invalid XML, unable to apply changes" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 -msgid "admin::base: structure" -msgstr "Structure" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 -msgid "new client application" -msgstr "New client application" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 -msgid "Nom" -msgstr "Name" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 -msgid "Site web" -msgstr "Web site" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 -msgid "Type d'application" -msgstr "Application type" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 -msgid "Application web" -msgstr "Web application" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 -msgid "Application desktop" -msgstr "Desktop application" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 -msgid "" -"Cochez les cases correspondantes aux colonnes que vous desirez voire " -"apparaitre dans le report" -msgstr "Select the columns to be displayed in report" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 -msgid "cocher tout" -msgstr "Select all" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 -msgid "tout decocher" -msgstr "Unselect all" - -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 -msgid "language" -msgstr "Language" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 -msgid "Save all changes" -msgstr "Save all changes" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 -msgid "Close" -msgstr "Close" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 -msgid "Ok" -msgstr "Ok" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 -msgid "Live search" -msgstr "Live search" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 -msgid "Add a new field" -msgstr "Add a new field" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 -msgid "Multivalued" -msgstr "Multivalued" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 -msgid "Order" -msgstr "Order" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 -msgid "DCES" -msgstr "Dublin Core Input/Output" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 -msgid "Advanced field parameters" -msgstr "Advanced field parameters" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 -msgid "Thesaurus branch" -msgstr "Thesaurus branch" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 -msgid "Type" -msgstr "Type" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 -msgid "Vocabulary type" -msgstr "Vocabulary type" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 -msgid "Limited vocabulary" -msgstr "Controlled vocabulary" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 -msgid "Business Fields" -msgstr "Business field" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 -msgid "Separator" -msgstr "Separator" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 -msgid "Display & action settings" -msgstr "Display and action settings" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 -msgid "Mandatory" -msgstr "Mandatory" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 -msgid "Indexable" -msgstr "Indexable" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 -msgid "Read-only" -msgstr "Read-only" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 -msgid "Display thumbnails" -msgstr "Display as title" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 -msgid "Tous" -msgstr "All" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 -msgid "Aucun" -msgstr "None" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 -msgid "Current configuration contains some errors" -msgstr "Current configuration contains some errors" - -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 -msgid "reponses:: partager" -msgstr "Share" - -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 -#, php-format -msgid "%entry_length% documents" -msgstr "%entry_length% documents" - -#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 -msgid "Loading database documentary structure ..." -msgstr "Loading database structure setup..." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 -msgid "Upload a csv file for users creation" -msgstr "Upload a CSV file for users creation" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 -msgid "An error occured while upload the file. Please retry" -msgstr "An error occurred while uploading the file. Please retry." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 -msgid "Row login is missing, script has stopped" -msgstr "Row Login is missing. Script has stopped." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 -msgid "Row password is missing, script has stopped" -msgstr "Row Password is missing. Script has stopped." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 -msgid "Row mail is missing, script has stopped" -msgstr "Row mail is missing, script has stopped" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 -msgid "The file does not contains any user to add" -msgstr "The file doesn't contains any user to add." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 -msgid "You can download an example by clicking here" -msgstr "Download an example file" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 -msgid "You can download the documentation here" -msgstr "Download a short documentation" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 -msgid "Ajouter une publication" -msgstr "Add a publication" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 -msgid "Feed name" -msgstr "Feed name" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 -msgid "Date Creation" -msgstr "Creation date" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 -msgid "Public" -msgstr "Public" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:168 -msgid "This feed is public" -msgstr "This feed is public" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 -msgid "" -"Une fois la publication supprimee, les donnees publiees seront " -"definitivement perdues. Continuer ?" -msgstr "" -"Once the publication is deleted, all information about it will be lost, " -"proceed ?" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 -msgid "thesaurus:: Proprietes" -msgstr "Properties" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 -msgid "thesaurus:: remplacer" -msgstr "Replace" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 -msgid "thesaurus:: %hits% reponses retournees" -msgstr "%hits% hits" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 -msgid "thesaurus:: synonymes" -msgstr "Synonyms" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 -msgid "thesaurus:: hits" -msgstr "hits" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 -msgid "thesaurus:: ids" -msgstr "ids" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "Confirm term \"%s\" delete" - -#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 -msgid "Incorrect please try again" -msgstr "Incorrect. Please try again." - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 -msgid "No preview available." -msgstr "No preview available." - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 -msgid "No permalink available." -msgstr "No permalink available." - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 -msgid "Send to Twitter" -msgstr "Send to Twitter" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 -msgid "Send to Facebook" -msgstr "Send to Facebook" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 -msgid "Resource URL" -msgstr "Resource URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 -msgid "Detailed view URL" -msgstr "Detailed view URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 -msgid "Embed code" -msgstr "Embed code" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 -msgid "No URL available" -msgstr "No URL available" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 -msgid "admin::tasks: planificateur de taches" -msgstr "Scheduler" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 -msgid "Last update at" -msgstr "Latest update :" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 -msgid "admin::tasks: statut de la tache" -msgstr "Status" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 -msgid "admin::tasks: process_id de la tache" -msgstr "Process_id" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 -msgid "admin::tasks: etat de progression de la tache" -msgstr "Progression" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 -msgid "Start" -msgstr "Start" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 -msgid "Stop" -msgstr "Stop" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 -msgid "Logs" -msgstr "Logs" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 -msgid "admin::tasks: Nouvelle tache" -msgstr "New task" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 -msgid "admin::tasks: supprimer la tache ?" -msgstr "Delete Task ?" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 -msgid "phraseanet::status bit" -msgstr "Status" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 -msgid "status:: nom" -msgstr "Name" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 -msgid "status:: cherchable par tous" -msgstr "Usable for search" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 -msgid "status:: Affichable pour tous" -msgstr "Display illustrations on top of thumbnails, for all users" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "oui" -msgstr "Yes" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "non" -msgstr "No" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 -msgid "An error occurred" -msgstr "An error occurred" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 -msgid "" -"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " -"contactez le support technique" -msgstr "" -"An error occurred. If this problem happens again, please contact technical " -"support" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 -msgid "" -"phraseanet::erreur: La connection au serveur Phraseanet semble etre " -"indisponible" -msgstr "Server connection is not available" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 -msgid "" -"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "Your session is closed, please re-authentificate" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 -msgid "Cocher toute la colonne" -msgstr "Check all boxes from column" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 -msgid "Decocher toute la colonne" -msgstr "Uncheck all boxes from column" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 -msgid "Creer un model" -msgstr "Create a template user" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 -msgid "Creer un utilisateur" -msgstr "Create a new user" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "This file is too big" -msgstr "This file is too big" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 -msgid "This field is required" -msgstr "This field is required" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 -msgid "Successful install" -msgstr "Successful installation" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 -msgid "Ajouter un nouvel utilisateur" -msgstr "Add a new user" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 -msgid "Adresse email du nouvel utilisateur" -msgstr "New user e-mail address" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 -msgid "Send an email to the user to setup his password" -msgstr "Send user an e-mail for password setup" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 -msgid "Require email validation to activate the account" -msgstr "Require e-mail validation to activate the account" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 -msgid "Creer un modele" -msgstr "Create a template" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 -msgid "Nom du nouveau modele" -msgstr "New template name" - -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 -msgid "erreur avec la valeur %name%" -msgstr "Error with value %name%" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 -msgid "Completion of your registration" -msgstr "Completion of your registration" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 -msgid "Please complete the information to complete your registration" -msgstr "Please complete the informations to achieve your registration." - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 -msgid "Mandatory fields" -msgstr "Mandatory fields" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 -msgid "I have read the terms of use" -msgstr "I have read the terms of use" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 -msgid "Resquest access" -msgstr "Resquest access" - -#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 -msgid "Page" -msgstr "Page" - +"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " +"base est necessaire" +msgstr "Link to thesaurus must be modified , database re indextion needed" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:167 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 +msgid "thesaurus:: reindexation necessaire" +msgstr "Re indexation needed" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:173 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 +msgid "thesaurus:: pas de reindexation" +msgstr "No re-index" + +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:37 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:60 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:37 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:60 msgid "Authorization Access" msgstr "Authorization access" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:77 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:77 msgid "" "Do you authorize the application %application_name% to access to your " @@ -8787,18 +10875,522 @@ msgstr "" "Do you authorize the application %application_name% to access to your " "Phraseanet content?" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:89 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:89 msgid "Authorize" msgstr "Authorize" -#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 -msgid "validation:: note" -msgstr "Comments" +#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:51 +msgid "Story name" +msgstr "Story name" +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:40 +msgid "Toutes les publications" +msgstr "All publications" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:76 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:84 +msgid "publications:: s'abonner aux publications" +msgstr "Subscribe" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:97 +msgid "Aller a" +msgstr "Go to" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:165 +msgid "Aucune entree pour le moment" +msgstr "No entry available" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:188 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:199 +msgid "charger d'avantage de publications" +msgstr "Load more publications" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:57 +msgid "thesaurus:: Editer le thesaurus" +msgstr "Edit thesaurus" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:62 +msgid "phraseanet:: choisir" +msgstr "Choose" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:99 +msgid "thesaurus:: langue pivot" +msgstr "Select edit language" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:138 +msgid "thesaurus:: Vous n'avez acces a aucune base" +msgstr "No Database access" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:23 +msgid "publications:: dernieres publications" +msgstr "Last Publications" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:86 +msgid "publications:: derniere mise a jour" +msgstr "Last update" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:28 +msgid "" +"%name% est momentanement indisponible a cause d'un trop grand nombre de " +"requetes" +msgstr "%name% is currently unavailable, too many requests sent" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:33 +msgid "le service sera de nouveau disponible dans quelques minutes" +msgstr "Service will be available again in a few minutes" + +#: tmp/cache_twig/ad/f2/729310ca9a232e57a4b9b0a8712f22ac9f3beed123d66108eb967410eb92.php:35 +#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 +msgid "Loading database documentary structure ..." +msgstr "Loading database structure setup..." + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:37 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 +msgid "thesaurus:: Proprietes" +msgstr "Properties" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:115 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 +msgid "thesaurus:: remplacer" +msgstr "Replace" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:138 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 +msgid "thesaurus:: %hits% reponses retournees" +msgstr "%hits% hits" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:160 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 +msgid "thesaurus:: synonymes" +msgstr "Synonyms" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:164 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 +msgid "thesaurus:: hits" +msgstr "hits" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:168 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 +msgid "thesaurus:: ids" +msgstr "ids" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:438 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 +#, php-format +msgid "thesaurus:: Confirmer la suppression du terme %s" +msgstr "Confirm term \"%s\" delete" + +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:126 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 +msgid "reponses:: partager" +msgstr "Share" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:37 +msgid "thesaurus:: accepter..." +msgstr "Accept" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:181 +msgid "thesaurus:: removed_src" +msgstr "removed_src" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:187 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:216 +msgid "thesaurus:: refresh" +msgstr "Refresh" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:210 +msgid "thesaurus:: removed tgt" +msgstr "remove_tgt" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:261 +msgid "thesaurus:: Accepter le terme comme" +msgstr "Accept term as :" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:269 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:292 +msgid "thesaurus:: comme terme specifique" +msgstr "Specific term" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:278 +msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +msgstr "As synonym for %fullpath_tgt_raw%." + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:289 +msgid "thesaurus:: Accepter la branche comme" +msgstr "Accept branch as" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:323 +msgid "" +"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " +"ne peut etre accepte" +msgstr "" +"At this location of thesaurus, a candidate term from field cfield%% can't be " +"accepted." + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:35 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 +msgid "Access history" +msgstr "Access history" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:47 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +msgid "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." +msgstr "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:57 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +msgid "Date de connexion" +msgstr "Login date" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:63 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +msgid "Dernier access" +msgstr "Last access" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:69 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +msgid "IP" +msgstr "IP" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:75 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 +msgid "Browser" +msgstr "Browser" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:101 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:103 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +msgid "End Activity" +msgstr "End Activity" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:109 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:109 +msgid "Current session" +msgstr "Current session" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:162 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +msgid "End session activity" +msgstr "End session activity" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:168 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +msgid "Do you really want to end the activity of this session?" +msgstr "Do you really want to end the activity of this session?" + +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:184 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 +msgid "boutton::mettre a jour" +msgstr "Update" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:22 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 +msgid "Phrasea search-engine configuration" +msgstr "Phrasea search-engine configuration" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:33 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemming" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:37 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Enable stemming" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:47 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 +msgid "Default sort" +msgstr "Default sort" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:22 +msgid "thesaurus:: Nouveau terme" +msgstr "New term" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:25 +msgid "thesaurus:: terme" +msgstr "Term" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:32 +msgid "thesaurus:: synonyme" +msgstr "Synonym" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:103 +msgid "thesaurus:: contexte" +msgstr "Context" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:111 +msgid "phraseanet:: language" +msgstr "Language" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:29 +msgid "The following errors have been detected" +msgstr "The following errors have been detected" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:50 +msgid "Would you like to continue ?" +msgstr "Would you like to continue?" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:87 +msgid "Apply a model" +msgstr "Apply a template" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:146 +msgid "You need define a model before importing a list of users" +msgstr "You need to define a template before importing a list of users." + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:155 +msgid "There is no user to add." +msgstr "There is no user to add." + +#: tmp/cache_twig/cf/3e/e1d89f6514485729bfa2ba6dc3be1d53c29c1d22dce9eee2e2b2faacbf67.php:35 +#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 +msgid "Page" +msgstr "Page" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:22 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 +msgid "admin::tasks: planificateur de taches" +msgstr "Scheduler" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:27 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 +msgid "Last update at" +msgstr "Latest update :" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:54 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 +msgid "admin::tasks: statut de la tache" +msgstr "Status" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:58 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 +msgid "admin::tasks: process_id de la tache" +msgstr "Process_id" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:62 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 +msgid "admin::tasks: etat de progression de la tache" +msgstr "Progression" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:135 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +msgid "Start" +msgstr "Start" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:141 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +msgid "Stop" +msgstr "Stop" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:153 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +msgid "Logs" +msgstr "Logs" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:216 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 +msgid "admin::tasks: Nouvelle tache" +msgstr "New task" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:468 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 +msgid "admin::tasks: supprimer la tache ?" +msgstr "Delete Task ?" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:100 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 +msgid "Informations personnelles" +msgstr "Your informations" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:198 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 +msgid "login:: Changer mon adresse email" +msgstr "Change my e-mail" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:206 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 +msgid "Password" +msgstr "Password" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:213 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 +msgid "admin::compte-utilisateur changer mon mot de passe" +msgstr "Change password" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:324 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 +msgid "Notification par email" +msgstr "E-mail notifications" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:386 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 +msgid "FTP" +msgstr "FTP" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:393 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 +msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +msgstr "Enable FTP fonction" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:468 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 +msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +msgstr "Repository prefix name" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:25 +msgid "Updated structure" +msgstr "Updated structure setup" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:29 +msgid "Structure has been successfully updated" +msgstr "Structure setup has been successfully updated" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:45 +msgid "Structure errors" +msgstr "Structure setting errors" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:49 +msgid "admin::base: xml invalide, les changements ne seront pas appliques" +msgstr "Invalid XML, unable to apply changes" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:105 +msgid "admin::base: structure" +msgstr "Structure" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:35 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 +msgid "new client application" +msgstr "New client application" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:80 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 +msgid "Nom" +msgstr "Name" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:106 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 +msgid "Site web" +msgstr "Web site" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:123 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 +msgid "Type d'application" +msgstr "Application type" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:133 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 +msgid "Application web" +msgstr "Web application" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:144 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 +msgid "Application desktop" +msgstr "Desktop application" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:27 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 +msgid "phraseanet::status bit" +msgstr "Status" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:40 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 +msgid "status:: nom" +msgstr "Name" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:44 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 +msgid "status:: cherchable par tous" +msgstr "Usable for search" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:48 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 +msgid "status:: Affichable pour tous" +msgstr "Display illustrations on top of thumbnails, for all users" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "oui" +msgstr "Yes" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "non" +msgstr "No" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:184 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 +msgid "An error occurred" +msgstr "An error occurred" + +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 +#, php-format +msgid "%entry_length% documents" +msgstr "%entry_length% documents" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:158 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:158 msgid "Aucun statut editable" msgstr "No editable status" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:164 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:164 msgid "" "Les status de certains documents ne sont pas accessibles par manque de droits" @@ -8806,92 +11398,114 @@ msgstr "" "your user rights do not allow you to modify Status for some of the selected " "documents" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:242 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:242 msgid "boutton::remplacer" msgstr "Replace" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:273 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:273 msgid "phraseanet:: presse-papier" msgstr "Clipboard" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:281 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:281 msgid "prod::editing: rechercher-remplacer" msgstr "Find / Replace" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:285 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:285 msgid "prod::editing: modeles de fiches" msgstr "Caption template" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:332 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:332 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Replace in field" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:338 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:338 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Replace in all fields" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:363 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:363 msgid "prod::editing:replace: chaine a rechercher" msgstr "Find" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:372 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:372 msgid "prod::editing:remplace: chaine remplacante" msgstr "Replace with" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:381 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:381 msgid "prod::editing:remplace: options de remplacement" msgstr "Options" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:387 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:387 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Regular expression" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:418 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:418 msgid "Aide sur les expressions regulieres" msgstr "Help about Regular expressions" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:427 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:427 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Replace All" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:433 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:433 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Case insensitive" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:440 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:440 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Whole field" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:446 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:446 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "In field" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:452 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:452 msgid "prod::editing:remplace::option respecter la casse" msgstr "Case sensitive" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:503 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:503 msgid "prod::editing:indexation en cours" msgstr "Processing indexation" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:528 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:528 msgid "prod::editing: valider ou annuler les modifications" msgstr "Valid changes or Cancel" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:536 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:536 msgid "edit::preset:: titre" msgstr "Title" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:545 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:545 msgid "Edition impossible" msgstr "Unable to edit" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:554 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:554 msgid "" "prod::edit: Impossible d'editer simultanement des documents provenant de " "bases differentes" msgstr "Selected documents come from differents databases, unable to edit" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:560 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:560 msgid "" "prod::editing: aucun documents ne peuvent etre edites car vos droits sont " @@ -8899,6 +11513,7 @@ msgid "" msgstr "" "Your user rights do not allow you to edit any of the selected documents" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:597 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:597 msgid "" "prod::editing: %not_actionable% documents ne peuvent etre edites car vos " @@ -8907,275 +11522,111 @@ msgstr "" "Your user rights do not allow you to edit %not_actionable% documents from " "selection" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:603 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:603 msgid "" "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "You do not have the required permissions to edit 1 document" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:764 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:764 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Some fields must be filled in to save changes" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:797 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:797 msgid "edit: chosiir limage du regroupement" msgstr "Set as cover document" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:843 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:843 msgid "prod::editing::fields: status " msgstr "Status " +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:894 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:894 msgid "Ce champ est decrit comme un element DublinCore" msgstr "This field has a Dublin Core link" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:903 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:903 msgid "This field represents the title of the document" msgstr "This field is set as the title of the document" -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 -msgid "Retour a laccueil" -msgstr "Back to Home" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:22 +msgid "Upload a csv file for users creation" +msgstr "Upload a CSV file for users creation" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 -msgid "Vous avez recu un nouveau panier" -msgstr "You have a new basket available" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:40 +msgid "An error occured while upload the file. Please retry" +msgstr "An error occurred while uploading the file. Please retry." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 -msgid "Vous avez recu une demande de validation de document sur ce panier" -msgstr "You have received a feedback demand for documents from this basket." +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:46 +msgid "Row login is missing, script has stopped" +msgstr "Row Login is missing. Script has stopped." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 -msgid "action::exporter" -msgstr "Export" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:52 +msgid "Row password is missing, script has stopped" +msgstr "Row Password is missing. Script has stopped." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 -msgid "action::editer" -msgstr "Edit" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:58 +msgid "Row mail is missing, script has stopped" +msgstr "Row mail is missing, script has stopped" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 -msgid "action::Valider" -msgstr "Validate" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:64 +msgid "The file does not contains any user to add" +msgstr "The file doesn't contains any user to add." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "You have pushed this basket for a feedback request" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:108 +msgid "You can download an example by clicking here" +msgstr "Download an example file" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 -msgid "paniers:: panier recu de %pusher%" -msgstr "Basket received from %pusher%" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 -msgid "action::renommer" -msgstr "Rename" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 -msgid "Archive" -msgstr "Archive" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 -msgid "action::detacher" -msgstr "Release from Basket zone" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 -msgid "delete" -msgstr "Delete" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 -msgid "panier:: ordre du panier" -msgstr "Basket order" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 -msgid "panier:: ordre Validation ascendante" -msgstr "Most approved" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 -msgid "panier:: ordre Validation descendante" -msgstr "Less approved" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 -msgid "L'utilisateur approuve ce document" -msgstr "User approves this document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "User hasn't decided yet" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 -msgid "L'utilisateur desapprouve ce document" -msgstr "User disapproves this document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 -msgid "This user does not participate to the validation but is only viewer." -msgstr "" -"This user does not participate to the feedback request but is only viewer." - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 -msgid "General settings" -msgstr "General settings" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 -msgid "your configuration" -msgstr "your configuration" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 -msgid "all caches services have been flushed" -msgstr "all caches services have been flushed" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 -msgid "setup:: administrateurs de l'application" -msgstr "Administrators" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 -msgid "Add an admin" -msgstr "Add an admin" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 -msgid "setup:: Reinitialisation des droits admins" -msgstr "Reset admin rights" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 -msgid "boutton::reinitialiser" -msgstr "Reset" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 -msgid "setup::Tests d'envois d'emails" -msgstr "E-mails send test" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 -msgid "Email test result : %email_status%" -msgstr "E-mail test result: %email_status%" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 -msgid "Reset cache" -msgstr "Reset cache" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 -msgid "Requirements" -msgstr "Requirements" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 -msgid "Recommendations" -msgstr "Recommandations" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 -msgid "Phrasea search-engine configuration" -msgstr "Phrasea search-engine configuration" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 -msgid "Stemming" -msgstr "Stemming" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 -msgid "Enable stemming" -msgstr "Enable stemming" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 -msgid "Default sort" -msgstr "Default sort" - -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:203 -msgid "boutton::publier" -msgstr "Publish" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:116 +msgid "You can download the documentation here" +msgstr "Download a short documentation" +#: tmp/cache_twig/ea/05/08255f94fc4216dbff13166ede04e1c038faf7332a59c93ff40e9e3dd830.php:26 #: tmp/cache_twig/fc/40/b874454c3bf222948d849229781e.php:26 msgid "Caption" msgstr "Caption" +#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 +msgid "validation:: note" +msgstr "Comments" + +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:38 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:38 msgid "thesaurus:: Importer" msgstr "Import" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:101 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:101 msgid "thesaurus:: langue par default" msgstr "Default language" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:109 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:109 msgid "Fichier ASCII tabule" msgstr "Tabulated ASCII file" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:119 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:119 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Delete existing link(s) between thesaurus branch(s) and field(s)" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:125 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:125 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Re-index after import" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 -msgid "Informations personnelles" -msgstr "Your informations" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 -msgid "login:: Changer mon adresse email" -msgstr "Change my e-mail" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -msgid "Password" -msgstr "Password" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "Change password" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 -msgid "Notification par email" -msgstr "E-mail notifications" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 -msgid "FTP" -msgstr "FTP" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "Enable FTP fonction" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "Repository prefix name" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %instance_title%!" -msgstr "Complete the fields below to register on %instance_title%!" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 -msgid "Request access" -msgstr "Access request" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "This field must have %minLength% minimum characters" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "This field can't accept more than %maxLength% characters" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "Indications given below are informal" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 -msgid "" -"Si vous ne les respectez pas, les documents seront correctement indexes, " -"mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" -"If you do not follow them, documents will be correctly indexed but metadatas " -"writing could be incorrect" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 -msgid "" -"Ces informations sont directement fournies par la norme de metadonnees de ce " -"champ : %norm_name%" -msgstr "" -"These informations are directly provided by the metadatas standard for the " -"field %norm_name%" - #: lib/Alchemy/Phrasea/Border/Checker/Colorspace.php:65 msgid "The file does not match available color" msgstr "The file does not match allowed colors" @@ -9305,11 +11756,11 @@ msgstr "Unknown" #: lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php:132 msgid "Mail sent" -msgstr "E-mail sent" +msgstr "E-mail sent." #: lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php:135 msgid "Could not send email" -msgstr "Could not send e-mail" +msgstr "Could not send e-mail." #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:471 msgid "admin::base: vider la base avant de la supprimer" @@ -9375,48 +11826,48 @@ msgstr "Database can't be empty" msgid "Database could not be mounted" msgstr "Database could not be mounted" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:129 msgid "Something wrong happened, please try again or contact an admin." msgstr "" "Something wrong happened. Please try again or contact an administrator." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 #, php-format msgid "%s field has been created with success." msgstr "%s field has been created with success." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 #, php-format msgid "%s field has been deleted with success." msgstr "%s field has been deleted with success." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 #, php-format msgid "Do you really want to delete the field %s ?" msgstr "Do you really want to delete the field %s?" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 msgid "Field can not be blank." msgstr "Field can not be blank." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 msgid "Field name already exists." msgstr "Field name already exists." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 msgid "Field name is not valid." msgstr "Field name is not valid." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 msgid "Field source is not valid." msgstr "Field source is not valid." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 #, php-format msgid "Field %s contains errors." msgstr "Field %s contains errors." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:139 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 msgid "Your configuration has been successfuly saved." msgstr "Your configuration has been successfuly saved." @@ -9474,48 +11925,48 @@ msgstr "Update failed" msgid "Clear" msgstr "Clear" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:555 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:564 msgid "" "login::register:email: Vous avez ete accepte sur les collections suivantes : " -msgstr "Your access has been approved on the following collections : " +msgstr "Your access has been approved on the following collections: " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:558 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:567 msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " -msgstr "Your access has been rejected on the following collections : " +msgstr "Your access has been rejected on the following collections: " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:662 #, php-format msgid "Login line %d is empty" msgstr "Login line %d is empty." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:664 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "The login %s is already defined in the file at line %d." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:667 #, php-format msgid "Login %s already exists in database" msgstr "Login %s already exists in database." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:678 #, php-format msgid "Mail line %d is empty" msgstr "Mail line %d is empty" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Email '%s' for login '%s' already exists in database" -msgstr "Email '%s' for login '%s' already exists in database" +msgstr "E-mail '%s' for login '%s' already exists in database." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:690 #, php-format msgid "Password is empty at line %d" msgstr "Password is empty at line %d." #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1010 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1025 msgid "login::erreur: Erreur d'authentification" msgstr "Authentication error" @@ -9545,7 +11996,7 @@ msgid "" "paniers::Vous etes sur le point de supprimer ce panier. Cette action est " "irreversible. Souhaitez-vous continuer ?" msgstr "" -"You are about to delete a basket. This action can not be undone, continue ?" +"You are about to delete a basket. This action can not be undone, continue?" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:275 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:51 @@ -9553,7 +12004,7 @@ msgid "boutton::renouveller" msgstr "Renew" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Print" msgstr "Print" @@ -9637,11 +12088,11 @@ msgstr "%d documents pending" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 msgid "Export" msgstr "Export" -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:245 +#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:244 msgid "Vocabulary not found" msgstr "Vocabulary not found" @@ -9664,7 +12115,7 @@ msgstr "Export saved in the waiting queue." #: lib/Alchemy/Phrasea/Controller/Prod/Export.php:215 msgid "Something went wrong" -msgstr "Something goes wrong." +msgstr "Something went wrong" #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:155 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:192 @@ -9712,7 +12163,7 @@ msgstr "Do not display anymore" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:39 msgid "Supprimer egalement les documents rattaches a ces regroupements" -msgstr "Delete also documents linked to this story ?" +msgstr "Delete also the documents linked to this story?" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:40 msgid "" @@ -9803,7 +12254,7 @@ msgstr "" msgid "" "cgus :: Vous devez vous reauthentifier pour que vos parametres soient pris " "en compte." -msgstr "Changes will take effect next time you login" +msgstr "Changes will take effect next time you login." #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:67 #, php-format @@ -9874,60 +12325,64 @@ msgstr "No document selected" msgid "List name can not be empty" msgstr "List name can not be emptied" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +msgid "Please provide a name for this selection." +msgstr "Please provide a name for this selection." + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 #, php-format msgid "%d fields have been updated" msgstr "%d fields have been updated" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "No users selected" msgstr "No users selected" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "An error occurred reading this file" msgstr "An error occurred while reading this file" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 msgid "Please select one record" msgstr "Please select one target record" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 msgid "You can choose only one record" msgstr "Only one record can be selected." -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 msgid "An error occured, please retry" msgstr "An error occured, please try again" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Some files are being downloaded" msgstr "Files are beeing downloaded" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 msgid "This feature is not supported by your browser" msgstr "This feature is not supported by your browser" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "No active basket" msgstr "No active basket" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Force sending of the document ?" msgstr "Force sending of documents?" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Share" msgstr "Share" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Move" msgstr "Move" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Tool box" msgstr "Media Tool box" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:113 msgid "Attention !" msgstr "Warning!" @@ -9992,86 +12447,86 @@ msgstr "" "problem persists." #: lib/Alchemy/Phrasea/Controller/Prod/Push.php:154 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:274 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:269 msgid "Unable to send the documents" msgstr "Unable to send the documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:163 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:160 #, php-format msgid "Push from %s" msgstr "Push from %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:166 msgid "No receivers specified" msgstr "No receivers specified" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:170 msgid "No elements to push" msgstr "No documents to push" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:182 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:371 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:361 #, php-format msgid "Unknown user %d" msgstr "Unknown user %d" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:248 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d records have been sent to %2$d users" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:287 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:279 #, php-format msgid "Validation from %s" msgstr "Feedback request from %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:285 msgid "No participants specified" msgstr "No participants specified" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:299 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:289 msgid "No elements to validate" msgstr "No documents to validate" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:365 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:355 #, php-format msgid "Missing mandatory parameter %s" msgstr "Missing mandatory parameter %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:457 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:447 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "%1$d records have been sent for feedback request to %2$d users" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:521 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:511 msgid "You are not allowed to add users" msgstr "You are not allowed to create users" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:514 msgid "First name is required" msgstr "First name is required" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:527 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "Last name is required" msgstr "Last name is required" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:530 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "Email is required" -msgstr "E-mail address required" +msgstr "E-mail address is required." -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:533 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Email is invalid" -msgstr "E-mail is invalid" +msgstr "E-mail address is invalid." -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:547 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 msgid "User already exists" msgstr "User already exists" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:560 msgid "User successfully created" msgstr "User successfully created" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:574 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:564 msgid "Error while creating user" msgstr "Error while creating user" @@ -10227,7 +12682,7 @@ msgstr "%1$d Stories attached to the WorkZone, %2$d already attached" #: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:220 msgid "Story detached from the WorkZone" -msgstr "Story detached from the WorkZone" +msgstr "Story detached from the workzone" #: lib/Alchemy/Phrasea/Controller/Report/Activity.php:136 msgid "report:: nombre de documents" @@ -10377,7 +12832,7 @@ msgid "report:: module" msgstr "Modules" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:591 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:606 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Password update done" @@ -10395,11 +12850,11 @@ msgstr "Wrong password" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:138 msgid "forms::l'email semble invalide" -msgstr "E-mail seems invalid" +msgstr "E-mail address seems invalid." #: lib/Alchemy/Phrasea/Controller/Root/Account.php:144 msgid "forms::les emails ne correspondent pas" -msgstr "E-mails do not match" +msgstr "E-mails do not match." #: lib/Alchemy/Phrasea/Controller/Root/Account.php:156 msgid "phraseanet::erreur: echec du serveur de mail" @@ -10409,11 +12864,13 @@ msgstr "Mail-server error" msgid "" "admin::compte-utilisateur un email de confirmation vient de vous etre " "envoye. Veuillez suivre les instructions contenue pour continuer" -msgstr "Confirmation e-mail sent. Please follow received instructions." +msgstr "" +"A confirmation e-mail has been sent. Please follow the instructions " +"contained to continue." #: lib/Alchemy/Phrasea/Controller/Root/Account.php:188 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" -msgstr "E-mail updated" +msgstr "E-mail address successfully updated." #: lib/Alchemy/Phrasea/Controller/Root/Account.php:192 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" @@ -10431,159 +12888,159 @@ msgstr "Changes saved" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Error when saving modifications" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:204 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Please provide a value." msgstr "Please provide a value." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 #, php-format msgid "Please select at least %s choice." msgstr "Please select at least %s choice(s)." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Please provide a valid email address." msgstr "Please provide a valid e-mail address." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:222 msgid "Please provide a valid IP address." msgstr "Please provide a valid IP address." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:223 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "Please provide a longer value. It must have %s characters or more." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:224 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "Please provide the same passwords." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:225 msgid "Please provide the same emails." msgstr "Please provide the same e-mails." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:226 msgid "Please accept the terms of use to register." msgstr "Please accept the terms of use to register." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:227 msgid "No collection selected" msgstr "No collection selected" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 #, php-format msgid "%d collection selected" msgstr "%d collection selected" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:229 #, php-format msgid "%d collections selected" msgstr "%d collections selected" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:230 msgid "Select all collections" msgstr "Select all collections" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:217 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:232 msgid "Weak" msgstr "Weak" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:233 msgid "Ordinary" msgstr "Ordinary" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:234 msgid "Good" msgstr "Good" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:235 msgid "Great" msgstr "Great" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:263 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:270 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:278 msgid "You tried to register with an unknown provider" msgstr "You tried to register with an unknown provider." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:290 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:305 msgid "Invalid captcha answer." msgstr "Invalid CAPTCHA answer." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:395 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:466 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:410 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:481 msgid "login::notification: demande de confirmation par mail envoyee" -msgstr "E-mail confirmation sent" +msgstr "E-mail confirmation sent." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:398 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:413 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:484 msgid "Unable to send your account unlock email." msgstr "Unable to send e-mail to unlock your account." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:459 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:474 msgid "Invalid link." msgstr "Invalid link." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:508 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:516 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:524 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:523 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:539 msgid "Invalid unlock link." msgstr "Invalid unlock link." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:530 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:545 msgid "Account is already unlocked, you can login." msgstr "Account is already unlocked. You can login." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:541 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:556 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account has been unlocked, you can now login." msgstr "Account has been unlocked. You can now login." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:557 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:572 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" "Account has been unlocked. But you still have to wait for an administration " "approval." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:627 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:642 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Account does not exist" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:633 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:648 msgid "Invalid email address" -msgstr "Invalid e-mail address" +msgstr "Invalid e-mail address." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:649 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet:: Un email vient de vous etre envoye" -msgstr "E-mail has been sent" +msgstr "An e-mail has been sent." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:697 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:712 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "You are now disconnected. See you soon." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:724 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:739 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "No available connection. Please contact system administrator" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:769 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:784 msgid "Phraseanet guest-access is disabled" msgstr "Phraseanet guest-access is disabled." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:889 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:904 #, php-format msgid "Unable to authenticate with %s" msgstr "Unable to authenticate with %s." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:913 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:928 msgid "Unable to retrieve provider identity" msgstr "Unable to retrieve provider identity." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:952 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:967 msgid "Your identity is not recognized." msgstr "Your identity is not recognized." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:984 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" @@ -10591,59 +13048,59 @@ msgstr "" "An unexpected error occurred during authentication process. Please contact " "an administrator." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1014 msgid "Please fill the captcha" msgstr "Please fill the captcha field." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1003 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1018 msgid "login::erreur: Vous n'avez pas confirme votre email" -msgstr "Access denied, you have not confirmed your e-mail address" +msgstr "Access denied, you have not confirmed your e-mail address." #: lib/Alchemy/Phrasea/Controller/Root/Session.php:124 msgid "The application is going down for maintenance, please logout." msgstr "You will be disconnected for maintenance, please quit Phraseanet" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:430 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "File generated : %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:447 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:446 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s file(s) generated" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:449 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:448 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Error during file registration" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:609 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:608 #, php-format msgid "over-indent at line %s" msgstr "Over-indent at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:616 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:615 #, php-format msgid "bad encoding at line %s" msgstr "Bad encoding at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:622 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:621 #, php-format msgid "bad character at line %s" msgstr "Bad character at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1819 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1976 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3195 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1818 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1975 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3194 msgid "thesaurus:: corbeille" msgstr "Stock" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1608 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1616 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "%d record(s) updated" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1611 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1619 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "Too many records to update (requested %1$d, maximum is %2$d)" @@ -10741,23 +13198,23 @@ msgstr "Current password" msgid "Default basket" msgstr "Default basket" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:596 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:599 msgid "Email addess is not valid" -msgstr "E-mail address is not valid" +msgstr "E-mail address is not valid." -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:624 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:627 #, php-format msgid "You will now receive notifications at %s" msgstr "You will now receive notifications at %s" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:635 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:638 #, php-format msgid "You will no longer receive notifications at %s" msgstr "You will no longer receive notifications at %s" #: lib/Alchemy/Phrasea/Helper/User/Manage.php:158 msgid "Invalid mail address" -msgstr "Invalid e-mail address" +msgstr "Invalid e-mail address." #: lib/Alchemy/Phrasea/Helper/User/Manage.php:220 msgid "Invalid template name" @@ -10978,13 +13435,17 @@ msgstr "Start feedback" #: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:62 #, php-format msgid "Validation request from %s : '%s'" -msgstr "Feedback request from %s : %s." +msgstr "Feedback request from %s: %s." -#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:72 #, php-format msgid "You have %d days to validate the selection." msgstr "You have %d days to give your feedback for the selected documents." +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +msgid "You have 1 day to validate the selection." +msgstr "You have 1 day to validate the selection." + #: lib/Alchemy/Phrasea/Notification/Mail/MailRecordsExport.php:21 msgid "Vous avez recu des documents" msgstr "You have received documents" @@ -10996,7 +13457,7 @@ msgstr "Download" #: lib/Alchemy/Phrasea/Notification/Mail/MailRequestEmailConfirmation.php:21 #: lib/Alchemy/Phrasea/Notification/Mail/MailRequestEmailUpdate.php:21 msgid "login::register: sujet email : confirmation de votre adresse email" -msgstr "E-mail address check" +msgstr "E-mail address check." #: lib/Alchemy/Phrasea/Notification/Mail/MailRequestEmailConfirmation.php:29 msgid "" @@ -11005,7 +13466,7 @@ msgid "" "dessous." msgstr "" "To process your registration, please confirm your e-mail address by using " -"the following link" +"the following link:" #: lib/Alchemy/Phrasea/Notification/Mail/MailRequestEmailConfirmation.php:37 msgid "Validate e-mail address" @@ -11057,7 +13518,7 @@ msgstr "Password renewal for login \"%s\" has been requested" msgid "" "login:: Visitez le lien suivant et suivez les instructions pour continuer, " "sinon ignorez cet email et il ne se passera rien" -msgstr "Click on the following link and please follow the instructions" +msgstr "Click on the following link and follow the instructions." #: lib/Alchemy/Phrasea/Notification/Mail/MailSuccessAccessRequest.php:21 #, php-format @@ -11266,6 +13727,3 @@ msgstr "List is not found" #: lib/Doctrine/Repositories/UsrListRepository.php:57 msgid "You have not access to this list" msgstr "You do not have access to this list" - -#~ msgid "Enable Google Chrome frame" -#~ msgstr "Enable Google Chrome frame" diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.mo b/locale/fr_FR/LC_MESSAGES/phraseanet.mo index 5ed7aed3f6..b6e971e6a8 100644 Binary files a/locale/fr_FR/LC_MESSAGES/phraseanet.mo and b/locale/fr_FR/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.po b/locale/fr_FR/LC_MESSAGES/phraseanet.po index 7344849256..985fdc1020 100644 --- a/locale/fr_FR/LC_MESSAGES/phraseanet.po +++ b/locale/fr_FR/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-24 11:11+0100\n" -"PO-Revision-Date: 2013-09-24 15:56+0100\n" +"POT-Creation-Date: 2013-11-12 16:57+0100\n" +"PO-Revision-Date: 2013-11-14 14:08+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 13:42+0000\n" +"X-Launchpad-Export-Date: 2013-11-14 12:56+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -24,69 +24,74 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 +#: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" msgstr "Nettoyage du cache" -#: lib/classes/appbox.php:305 +#: lib/classes/appbox.php:306 msgid "Creating new tables" msgstr "Création de nouvelles tables" -#: lib/classes/appbox.php:319 +#: lib/classes/appbox.php:320 msgid "Purging directories" msgstr "Vidage de Répertoires" -#: lib/classes/appbox.php:342 +#: lib/classes/appbox.php:343 msgid "Copying files" msgstr "Copie des fichiers" -#: lib/classes/appbox.php:361 +#: lib/classes/appbox.php:362 msgid "Upgrading appbox" msgstr "Mise à jour de l'ApplicationBox" -#: lib/classes/appbox.php:369 +#: lib/classes/appbox.php:370 #, php-format msgid "Upgrading %s" msgstr "Mise à jour de %s" -#: lib/classes/appbox.php:377 +#: lib/classes/appbox.php:378 msgid "Post upgrade" msgstr "Publier une mise à jour" -#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 +#: lib/classes/appbox.php:392 lib/classes/appbox.php:394 msgid "" "Your install requires data migration, please execute the following command" msgstr "" "Votre installation requiert une mise à jour, veuillez exécuter la commande " "suivante" -#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 +#: lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "" "Votre installation nécessite probablement une relecture de données techniques" -#: lib/classes/base.php:287 +#: lib/classes/appbox.php:399 +msgid "Your install might need to build some sub-definitions" +msgstr "" +"Votre installation semble nécessiter la génération de sous-définitions." + +#: lib/classes/base.php:288 #, php-format msgid "Updating table %s" msgstr "Mise à jour de la table %s" -#: lib/classes/base.php:300 lib/classes/base.php:522 lib/classes/base.php:736 -#: lib/classes/base.php:749 +#: lib/classes/base.php:301 lib/classes/base.php:523 lib/classes/base.php:737 +#: lib/classes/base.php:750 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Erreur lors de la tentative ; erreur : %s" -#: lib/classes/base.php:319 +#: lib/classes/base.php:320 #, php-format msgid "Creating table %s" msgstr "Création de la table %s" -#: lib/classes/base.php:325 lib/classes/base.php:802 +#: lib/classes/base.php:326 lib/classes/base.php:808 #, php-format msgid "Applying patches on %s" msgstr "Application des patchs sur %s" -#: lib/classes/base.php:766 +#: lib/classes/base.php:767 msgid "Looking for patches" msgstr "Recherche de patchs" @@ -112,12 +117,14 @@ msgstr "" #: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:30 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "Production" #: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:40 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "Classic" @@ -125,6 +132,8 @@ msgstr "Classic" #: lib/classes/phrasea.php:114 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:50 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:139 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "Admin" @@ -132,6 +141,8 @@ msgstr "Admin" #: lib/classes/phrasea.php:115 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:60 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:166 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "Report" @@ -139,12 +150,15 @@ msgstr "Report" #: lib/classes/phrasea.php:116 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:70 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:111 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" #: lib/classes/phrasea.php:117 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:80 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "Lightbox" @@ -152,6 +166,8 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:118 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:90 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 @@ -161,6 +177,7 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:119 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:225 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "Upload" @@ -193,9 +210,13 @@ msgstr "Hier" #: lib/classes/queries.php:168 lib/classes/queries.php:181 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:197 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1402 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:202 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:197 #: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:104 msgid "boutton::chercher" msgstr "Chercher" @@ -213,15 +234,22 @@ msgstr "Cette valeur ne peut être vide" msgid "Url non valide" msgstr "Url non valide" -#: lib/classes/API/V1/adapter.php:1100 lib/classes/API/V1/adapter.php:1146 -#: lib/classes/API/V1/adapter.php:1196 lib/classes/API/V1/adapter.php:1220 +#: lib/classes/API/V1/adapter.php:1103 lib/classes/API/V1/adapter.php:1149 +#: lib/classes/API/V1/adapter.php:1199 lib/classes/API/V1/adapter.php:1223 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:58 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:860 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:228 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:331 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:53 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:46 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:860 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:65 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 @@ -243,7 +271,7 @@ msgstr "Url non valide" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 @@ -259,11 +287,11 @@ msgstr "Url non valide" msgid "An error occured" msgstr "Une erreur est survenue." -#: lib/classes/API/V1/adapter.php:1194 +#: lib/classes/API/V1/adapter.php:1197 msgid "Record Not Found" msgstr "Enregistrement non trouvé" -#: lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1221 msgid "Story Not Found" msgstr "Reportage inconnu" @@ -293,6 +321,7 @@ msgstr "Erreur d'encodage" #: lib/classes/Bridge/Api/Dailymotion.php:546 #: lib/classes/Bridge/Api/Youtube.php:511 +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:136 #: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:136 msgid "En cours d'encodage" msgstr "En cours d'encodage" @@ -362,6 +391,7 @@ msgid "Photos" msgstr "Photos" #: lib/classes/Bridge/Api/Flickr.php:613 +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:43 #: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:43 msgid "Photosets" msgstr "Photosets" @@ -468,7 +498,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "Service Youtube introuvable" -#: lib/classes/caption/record.php:279 +#: lib/classes/caption/record.php:313 msgid "Open the URL in a new window" msgstr "Ouvrir le lien dans une nouvelle fenêtre" @@ -498,6 +528,7 @@ msgstr "Dispositif ciblé" #: lib/classes/deprecated/inscript.api.php:193 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:91 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:91 msgid "login::register: acces authorise sur la collection " msgstr "Accès autorisé sur : " @@ -513,31 +544,42 @@ msgstr "Accès autorisé sur : " #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:247 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:291 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:336 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:101 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:154 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:202 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:247 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:291 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:336 msgid "login::register::CGU: lire les CGU" msgstr "Lire les CGU" #: lib/classes/deprecated/inscript.api.php:203 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:144 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:144 msgid "login::register: acces refuse sur la collection " msgstr "Accès refusé sur : " #: lib/classes/deprecated/inscript.api.php:213 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:191 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:191 msgid "login::register: en attente d'acces sur" msgstr "En attente d'accès sur :" #: lib/classes/deprecated/inscript.api.php:223 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:236 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:236 msgid "login::register: acces temporaire sur" msgstr "Accès temporaire sur :" #: lib/classes/deprecated/inscript.api.php:233 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:281 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:281 msgid "login::register: acces temporaire termine sur " msgstr "Accès temporaire terminé sur : " #: lib/classes/deprecated/inscript.api.php:243 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:325 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:325 msgid "login::register: acces supendu sur" msgstr "Accès suspendu sur :" @@ -547,6 +589,8 @@ msgstr "Accès suspendu sur :" #: lib/classes/deprecated/inscript.api.php:383 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:367 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:430 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:367 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:430 msgid "" "login::register: L'acces aux bases ci-dessous implique l'acceptation des " "Conditions Generales d'Utilisation (CGU) suivantes" @@ -560,6 +604,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:395 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:400 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:454 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:400 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:454 msgid "login::register: Faire une demande d'acces" msgstr "Faire une demande d'accès" @@ -585,7 +631,7 @@ msgstr "Imprimer" msgid "charger d'avantages de notifications" msgstr "Charger davantage de notifications" -#: lib/classes/eventsmanager/broker.php:302 +#: lib/classes/eventsmanager/broker.php:305 msgid "Notifications globales" msgstr "Notifications globales" @@ -604,34 +650,49 @@ msgid "" msgstr "Inscription d'utilisateur" #: lib/classes/eventsmanager/notify/autoregister.php:195 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:843 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:670 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:163 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:670 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:290 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "Nom" #: lib/classes/eventsmanager/notify/autoregister.php:196 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:829 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:683 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:313 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:176 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:683 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "Prénom" #: lib/classes/eventsmanager/notify/autoregister.php:197 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:857 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:327 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:696 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:323 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:327 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:189 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:696 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:314 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 msgid "admin::compte-utilisateur email" msgstr "E-mail" @@ -668,16 +729,16 @@ msgstr "L'export par email a échoué" msgid "Get a notification when a mail export fails" msgstr "Obtenir une notification quand un export par email échoue" -#: lib/classes/eventsmanager/notify/feed.php:149 +#: lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "%1$s a publié %2$s" -#: lib/classes/eventsmanager/notify/feed.php:165 +#: lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "Publications" -#: lib/classes/eventsmanager/notify/feed.php:174 +#: lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "Recevoir une notification lorsqu'une nouvelle publication est publiée." @@ -688,6 +749,7 @@ msgstr "%1$s a passé une %2$scommande%3$s" #: lib/classes/eventsmanager/notify/order.php:161 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:265 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:265 msgid "Orders manager" msgstr "Gestionnaire des commandes" @@ -733,7 +795,7 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "%1$s vous a envoyé un %2$s panier%3$s" #: lib/classes/eventsmanager/notify/push.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Push" msgstr "Push" @@ -780,6 +842,7 @@ msgstr "Recevoir une notification si un document est placé en quarantaine" #: lib/classes/eventsmanager/notify/validationreminder.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:177 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:179 msgid "Validation" msgstr "Validation" @@ -836,14 +899,22 @@ msgid "report:: collections" msgstr "Collections" #: lib/classes/module/report.php:663 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:61 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:143 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:83 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:83 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:44 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:44 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:83 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:83 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:115 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:259 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:44 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:115 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:259 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:61 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:143 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:44 msgid "report:: Connexion" msgstr "Connexions" @@ -878,6 +949,8 @@ msgstr "Date" #: lib/classes/module/report.php:668 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:183 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:287 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:183 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:287 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:239 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:313 @@ -887,6 +960,8 @@ msgstr "Fonction" #: lib/classes/module/report.php:669 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:191 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:295 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:191 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:295 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:313 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:240 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:314 @@ -896,6 +971,8 @@ msgstr "Activité" #: lib/classes/module/report.php:670 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:195 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:299 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:195 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:299 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:314 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:241 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:315 @@ -905,6 +982,8 @@ msgstr "Pays" #: lib/classes/module/report.php:671 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:187 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:291 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:187 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:291 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:315 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:242 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:316 @@ -1064,6 +1143,7 @@ msgstr "Questions" #: lib/classes/module/report/activity.php:213 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:448 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:448 msgid "report:: questions sans reponses" msgstr "Questions sans réponses" @@ -1099,6 +1179,8 @@ msgstr "Détail des connexions" #: lib/classes/module/report/question.php:100 #: lib/classes/module/report/sent.php:120 #: lib/classes/module/report/validate.php:120 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:50 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:68 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:50 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:68 msgid "report:: non-renseigne" @@ -1118,7 +1200,9 @@ msgstr "Connexions" #: lib/classes/module/report/download.php:48 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:48 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:48 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:48 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:48 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:381 msgid "report:: telechargements" msgstr "Téléchargements" @@ -1157,7 +1241,7 @@ msgstr "Modules" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "Informations sur les utilisateurs correspondant à %s" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1388 msgid "phraseanet::utilisateur inconnu" msgstr "Utilisateur inconnu" @@ -1251,7 +1335,7 @@ msgstr "Hot Folder" #: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 #: lib/classes/task/period/ftpPull.php:226 #: lib/classes/task/period/RecordMover.php:288 -#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/subdef.php:222 #: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "intervalle d'éxécution" @@ -1260,7 +1344,7 @@ msgstr "intervalle d'éxécution" #: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 #: lib/classes/task/period/ftpPull.php:229 #: lib/classes/task/period/RecordMover.php:291 -#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/subdef.php:225 #: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "secondes" @@ -1339,7 +1423,7 @@ msgstr "Langue par défaut des termes candidats du thésaurus" #: lib/classes/task/period/cindexer.php:304 msgid "Enable stemming languages" -msgstr "Activer la gestion linguistique des pluriels" +msgstr "Activer la recherche par Stemmes" #: lib/classes/task/period/cindexer.php:307 msgid "example : fr,en" @@ -1465,29 +1549,29 @@ msgstr "\"Record Mover\"" msgid "Log changes" msgstr "Historique des événements" -#: lib/classes/task/period/subdef.php:47 +#: lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "Création des sous définitions des documents" -#: lib/classes/task/period/subdef.php:58 +#: lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" msgstr "Création des sous définitions" -#: lib/classes/task/period/subdef.php:233 +#: lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "Nombre d'enregistrements à traiter par lot" -#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/subdef.php:235 #: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "Redemarrer la tâche tous les n enregistrements" -#: lib/classes/task/period/subdef.php:245 +#: lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "Redemarrer la tâche en cas de fuite mémoire" -#: lib/classes/task/period/subdef.php:252 +#: lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "Essayer d'extraire les vignettes intégrées" @@ -1509,146 +1593,151 @@ msgstr "Effacer les métadonnées" msgid "task::_common_:records, ou si la memoire depasse" msgstr "records, ou si la mémoire dépasse" -#: lib/classes/User/Adapter.php:432 +#: lib/classes/User/Adapter.php:440 #, php-format msgid "A user already exists with email addres %s" msgstr "Un utilisateur existe déjà avec l'adresse email %s" -#: lib/classes/User/Adapter.php:1369 +#: lib/classes/User/Adapter.php:1382 #, php-format msgid "modele %s" msgstr "Modèle %s" -#: lib/conf.d/_GV_template.inc.php:38 +#: lib/conf.d/_GV_template.php:38 msgid "HTTP Server" msgstr "Serveur HTTP" -#: lib/conf.d/_GV_template.inc.php:43 +#: lib/conf.d/_GV_template.php:43 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:34 msgid "Default language" msgstr "Langue par défaut" -#: lib/conf.d/_GV_template.inc.php:52 +#: lib/conf.d/_GV_template.php:52 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:39 msgid "Static URL" msgstr "URL Statique" -#: lib/conf.d/_GV_template.inc.php:53 +#: lib/conf.d/_GV_template.php:53 msgid "optional" msgstr "Facultatif." -#: lib/conf.d/_GV_template.inc.php:58 +#: lib/conf.d/_GV_template.php:58 msgid "Maintenance state" msgstr "Etat de maintenance" -#: lib/conf.d/_GV_template.inc.php:64 +#: lib/conf.d/_GV_template.php:64 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:31 msgid "Maintenance message" msgstr "Message de maintenance" -#: lib/conf.d/_GV_template.inc.php:70 +#: lib/conf.d/_GV_template.php:70 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:36 msgid "Enable maintenance message broadcast" msgstr "Diffuser le massage de maintenance" -#: lib/conf.d/_GV_template.inc.php:76 +#: lib/conf.d/_GV_template.php:76 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:40 msgid "Log errors" msgstr "Log d'erreurs" -#: lib/conf.d/_GV_template.inc.php:81 +#: lib/conf.d/_GV_template.php:81 msgid "Webservices connectivity" msgstr "Connexion à des Webservices" -#: lib/conf.d/_GV_template.inc.php:86 +#: lib/conf.d/_GV_template.php:86 msgid "Use Google API" msgstr "Utiliser l'API Google" -#: lib/conf.d/_GV_template.inc.php:93 +#: lib/conf.d/_GV_template.php:93 msgid "Geonames server address" msgstr "Adresse du serveur de Géolocalisation Geonames" -#: lib/conf.d/_GV_template.inc.php:101 +#: lib/conf.d/_GV_template.php:101 msgid "Use recaptcha API" msgstr "Utiliser l'API reCAPTCHA" -#: lib/conf.d/_GV_template.inc.php:109 +#: lib/conf.d/_GV_template.php:109 msgid "Recaptcha public key" msgstr "Clé publique reCAPTCHA" -#: lib/conf.d/_GV_template.inc.php:115 +#: lib/conf.d/_GV_template.php:115 msgid "Recaptcha private key" msgstr "Clé privée reCAPTCHA" -#: lib/conf.d/_GV_template.inc.php:120 +#: lib/conf.d/_GV_template.php:120 msgid "Youtube connectivity" msgstr "Connexion à YouTube" -#: lib/conf.d/_GV_template.inc.php:125 +#: lib/conf.d/_GV_template.php:125 msgid "Use youtube API" msgstr "Utiliser l'API YouTube" -#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 -#: lib/conf.d/_GV_template.inc.php:181 +#: lib/conf.d/_GV_template.php:126 lib/conf.d/_GV_template.php:157 +#: lib/conf.d/_GV_template.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "" "Créer un compte API %s puis utiliser la valeur suivante %s comme URL de " "Callback." -#: lib/conf.d/_GV_template.inc.php:133 +#: lib/conf.d/_GV_template.php:133 msgid "Youtube public key" msgstr "Clé publique YouTube" -#: lib/conf.d/_GV_template.inc.php:139 +#: lib/conf.d/_GV_template.php:139 msgid "Youtube secret key" msgstr "Clé secrète YouTube" -#: lib/conf.d/_GV_template.inc.php:145 +#: lib/conf.d/_GV_template.php:145 msgid "Youtube developer key" msgstr "Clé développeur YouTube" -#: lib/conf.d/_GV_template.inc.php:146 +#: lib/conf.d/_GV_template.php:146 #, php-format msgid "See %s" msgstr "Voir %s." -#: lib/conf.d/_GV_template.inc.php:151 +#: lib/conf.d/_GV_template.php:151 msgid "FlickR connectivity" msgstr "Connexion Flickr" -#: lib/conf.d/_GV_template.inc.php:156 +#: lib/conf.d/_GV_template.php:156 msgid "Use Flickr API" msgstr "Utiliser l'API Flickr" -#: lib/conf.d/_GV_template.inc.php:164 +#: lib/conf.d/_GV_template.php:164 msgid "Flickr public key" msgstr "Clé publique Flickr" -#: lib/conf.d/_GV_template.inc.php:170 +#: lib/conf.d/_GV_template.php:170 msgid "Flickr secret key" msgstr "Clé secrète Flickr" -#: lib/conf.d/_GV_template.inc.php:175 +#: lib/conf.d/_GV_template.php:175 msgid "Dailymotion connectivity" msgstr "Connexion Dailymotion" -#: lib/conf.d/_GV_template.inc.php:180 +#: lib/conf.d/_GV_template.php:180 msgid "Use Dailymotion API" msgstr "Utiliser l'API Dailymotion" -#: lib/conf.d/_GV_template.inc.php:188 +#: lib/conf.d/_GV_template.php:188 msgid "Dailymotion public key" msgstr "Clé publique Dailymotion" -#: lib/conf.d/_GV_template.inc.php:194 +#: lib/conf.d/_GV_template.php:194 msgid "Dailymotion secret key" msgstr "Clé secrète Dailymotion" -#: lib/conf.d/_GV_template.inc.php:199 +#: lib/conf.d/_GV_template.php:199 msgid "Phraseanet client API" msgstr "API cliente Phraseanet" -#: lib/conf.d/_GV_template.inc.php:204 +#: lib/conf.d/_GV_template.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "Autoriser *Phraseanet Navigator*" -#: lib/conf.d/_GV_template.inc.php:205 +#: lib/conf.d/_GV_template.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" @@ -1656,27 +1745,27 @@ msgstr "" "*Phraseanet Navigator* est une application mobile permettant à des " "utilisateurs de se connecter sur cette instance Phraseanet." -#: lib/conf.d/_GV_template.inc.php:212 +#: lib/conf.d/_GV_template.php:212 msgid "Authorize Microsoft Office Plugin to connect." msgstr "Autoriser la connexion d'un plugin Microsoft Office" -#: lib/conf.d/_GV_template.inc.php:218 +#: lib/conf.d/_GV_template.php:218 msgid "Documents storage" msgstr "Stockage de documents" -#: lib/conf.d/_GV_template.inc.php:224 +#: lib/conf.d/_GV_template.php:224 msgid "Default path for datas" msgstr "Chemin par défaut pour les données" -#: lib/conf.d/_GV_template.inc.php:230 +#: lib/conf.d/_GV_template.php:230 msgid "Executables settings" msgstr "Paramètres d'exécutables" -#: lib/conf.d/_GV_template.inc.php:235 +#: lib/conf.d/_GV_template.php:235 msgid "Enable H264 stream mode" msgstr "Activer H264 en mode flux continu (lecture en streaming)" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1684,320 +1773,331 @@ msgstr "" "Utiliser avec mod_token (requiert les modules Apache mod_token, " "mod_auth_token et mod_h264_streaming)." -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.php:243 msgid "Auth_token mount point" msgstr "Point de montage Auth_token" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.php:250 msgid "Auth_token directory path" msgstr "Chemin du répertoire Auth_token" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.php:256 msgid "Auth_token passphrase" msgstr "Passphrase Auth_token" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.php:257 msgid "Defined in Apache configuration" msgstr "Définie dans la configuration de Apache." -#: lib/conf.d/_GV_template.inc.php:263 +#: lib/conf.d/_GV_template.php:263 msgid "php.ini path" msgstr "Chemin du répertoire de fichier php.ini" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.php:264 msgid "Empty if not used" msgstr "Vider si non utilisé." -#: lib/conf.d/_GV_template.inc.php:271 +#: lib/conf.d/_GV_template.php:271 msgid "Imagine driver" msgstr "\"Imagine Driver\"" -#: lib/conf.d/_GV_template.inc.php:283 +#: lib/conf.d/_GV_template.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Nombre de threads réservés à FFmpeg" -#: lib/conf.d/_GV_template.inc.php:289 +#: lib/conf.d/_GV_template.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Nombre maximum de pages à extraire depuis les documents PDF" -#: lib/conf.d/_GV_template.inc.php:294 +#: lib/conf.d/_GV_template.php:294 msgid "Main configuration" msgstr "Configuration principale" -#: lib/conf.d/_GV_template.inc.php:299 +#: lib/conf.d/_GV_template.php:299 msgid "Admin email" msgstr "Adresse e-mail de l'administrateur" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.php:305 msgid "Display the name of databases and collections" msgstr "Afficher le nom des bases et collections" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.php:312 msgid "Choose the title of the document to export" msgstr "Choix du nom de fichier à l'export du document" -#: lib/conf.d/_GV_template.inc.php:319 +#: lib/conf.d/_GV_template.php:319 msgid "Default export title" msgstr "Nom de fichier attribué par défaut" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.php:322 msgid "Document title" msgstr "Le titre du document" -#: lib/conf.d/_GV_template.inc.php:323 +#: lib/conf.d/_GV_template.php:323 msgid "Original name" msgstr "Le nom de fichier original" -#: lib/conf.d/_GV_template.inc.php:329 +#: lib/conf.d/_GV_template.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Activer le partage sur Facebook et Twitter" -#: lib/conf.d/_GV_template.inc.php:331 +#: lib/conf.d/_GV_template.php:331 msgid "Disabled" msgstr "Désactivé" -#: lib/conf.d/_GV_template.inc.php:332 +#: lib/conf.d/_GV_template.php:332 msgid "Publishers" msgstr "Editeurs" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.php:333 msgid "Enabled" msgstr "Activé" -#: lib/conf.d/_GV_template.inc.php:340 +#: lib/conf.d/_GV_template.php:340 msgid "Homepage" msgstr "Page d'acceuil" -#: lib/conf.d/_GV_template.inc.php:346 +#: lib/conf.d/_GV_template.php:346 msgid "Homepage slideshow" msgstr "Diaporama de page d'accueil" -#: lib/conf.d/_GV_template.inc.php:349 +#: lib/conf.d/_GV_template.php:349 msgid "Single image" msgstr "Image seule" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.php:350 msgid "Slide show" msgstr "Diaporama" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.php:352 +msgid "Carousel" +msgstr "Carrousel" + +#: lib/conf.d/_GV_template.php:353 +msgid "Gallery" +msgstr "Galerie" + +#: lib/conf.d/_GV_template.php:359 msgid "Search engine" msgstr "Moteur de recherche" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.php:365 msgid "Minimum number of letters before truncation" msgstr "Nombre minimal de caractères avant la troncature" -#: lib/conf.d/_GV_template.inc.php:364 +#: lib/conf.d/_GV_template.php:366 msgid "Used in search engine" msgstr "Utilisé dans le moteur de recherche." -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.php:372 msgid "Default query" msgstr "Requête par défaut" -#: lib/conf.d/_GV_template.inc.php:376 +#: lib/conf.d/_GV_template.php:378 msgid "Default searched type" msgstr "Type de média recherchés par défaut" -#: lib/conf.d/_GV_template.inc.php:377 +#: lib/conf.d/_GV_template.php:379 msgid "Used when opening the application" msgstr "Utilisé à l'ouverture de l'application." -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.php:381 msgid "Documents" msgstr "Documents" -#: lib/conf.d/_GV_template.inc.php:380 +#: lib/conf.d/_GV_template.php:382 msgid "Stories" msgstr "Reportages" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.php:388 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:312 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Afficher dans Phraseanet Report" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.php:394 msgid "Anonymous report" msgstr "Report anonyme" -#: lib/conf.d/_GV_template.inc.php:393 +#: lib/conf.d/_GV_template.php:395 msgid "Hide information about users" msgstr "Masquer les informations à propos des utilisateurs." -#: lib/conf.d/_GV_template.inc.php:399 +#: lib/conf.d/_GV_template.php:401 msgid "Additionnal modules" msgstr "Modules additionnels" -#: lib/conf.d/_GV_template.inc.php:405 +#: lib/conf.d/_GV_template.php:407 msgid "Enable thesaurus" msgstr "Activer le thésaurus" -#: lib/conf.d/_GV_template.inc.php:410 +#: lib/conf.d/_GV_template.php:412 msgid "Enable multi-doc mode" msgstr "Activer le mode multi-doc" -#: lib/conf.d/_GV_template.inc.php:415 +#: lib/conf.d/_GV_template.php:417 msgid "Enable HD substitution" msgstr "Activer la substitution de documents sources" -#: lib/conf.d/_GV_template.inc.php:420 +#: lib/conf.d/_GV_template.php:422 msgid "Enable thumbnail substitution" msgstr "Activer la substitution de vignettes" -#: lib/conf.d/_GV_template.inc.php:426 +#: lib/conf.d/_GV_template.php:428 msgid "Emails" msgstr "E-mails" -#: lib/conf.d/_GV_template.inc.php:431 +#: lib/conf.d/_GV_template.php:433 msgid "Default mail sender address" msgstr "Adresse par défaut de l'expéditeur" -#: lib/conf.d/_GV_template.inc.php:437 +#: lib/conf.d/_GV_template.php:439 msgid "Prefix for notification emails" msgstr "Préfixe pour les notifications adressées par email" -#: lib/conf.d/_GV_template.inc.php:443 +#: lib/conf.d/_GV_template.php:445 msgid "Use a SMTP server" msgstr "Utiliser un serveur SMTP" -#: lib/conf.d/_GV_template.inc.php:449 +#: lib/conf.d/_GV_template.php:451 msgid "Enable SMTP authentication" msgstr "Activer l'authentification SMTP" -#: lib/conf.d/_GV_template.inc.php:455 +#: lib/conf.d/_GV_template.php:457 msgid "SMTP host" msgstr "Serveur hôte SMTP" -#: lib/conf.d/_GV_template.inc.php:461 +#: lib/conf.d/_GV_template.php:463 msgid "SMTP port" msgstr "Port SMTP" -#: lib/conf.d/_GV_template.inc.php:467 +#: lib/conf.d/_GV_template.php:469 msgid "SMTP encryption" msgstr "Chiffrement SMTP (SMTP encryption)" -#: lib/conf.d/_GV_template.inc.php:470 +#: lib/conf.d/_GV_template.php:472 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:171 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:466 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:171 msgid "None" msgstr "Aucun" -#: lib/conf.d/_GV_template.inc.php:478 +#: lib/conf.d/_GV_template.php:480 msgid "SMTP user" msgstr "Utilisateur ou identifiant SMTP" -#: lib/conf.d/_GV_template.inc.php:484 +#: lib/conf.d/_GV_template.php:486 msgid "SMTP password" msgstr "Mot de passe SMTP" -#: lib/conf.d/_GV_template.inc.php:489 +#: lib/conf.d/_GV_template.php:491 msgid "FTP Export" msgstr "Export FTP" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.php:496 msgid "Enable FTP export" msgstr "Activer l'export FTP" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.php:497 msgid "Available in multi-export tab" msgstr "Rendre disponible dans les onglets de la fenêtre d'export." -#: lib/conf.d/_GV_template.inc.php:501 +#: lib/conf.d/_GV_template.php:503 msgid "Enable FTP for users" msgstr "Activer l'export FTP pour les utilisateurs" -#: lib/conf.d/_GV_template.inc.php:502 +#: lib/conf.d/_GV_template.php:504 msgid "By default it is available for admins" msgstr "Par défaut cette option est disponible pour les administrateurs." -#: lib/conf.d/_GV_template.inc.php:507 +#: lib/conf.d/_GV_template.php:509 msgid "Client" msgstr "Client" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.php:514 msgid "Maximum megabytes allowed for download" msgstr "Limite maximale autorisée par téléchargement en Megaoctet (Mo)" -#: lib/conf.d/_GV_template.inc.php:513 +#: lib/conf.d/_GV_template.php:515 msgid "If request is bigger, then mail is still available" msgstr "Au-delà le téléchargement par E-mail reste disponible." -#: lib/conf.d/_GV_template.inc.php:519 +#: lib/conf.d/_GV_template.php:521 msgid "Search tab position" msgstr "Position de l'onglet de recherche" -#: lib/conf.d/_GV_template.inc.php:525 +#: lib/conf.d/_GV_template.php:527 msgid "Advanced search tab position" msgstr "Postion de l'onglet de recherche avancée" -#: lib/conf.d/_GV_template.inc.php:531 +#: lib/conf.d/_GV_template.php:533 msgid "Topics tab position" msgstr "Position de l'onglet des thèmes" -#: lib/conf.d/_GV_template.inc.php:537 +#: lib/conf.d/_GV_template.php:539 msgid "Active tab position" msgstr "Activer le positionnement des onglets" -#: lib/conf.d/_GV_template.inc.php:543 +#: lib/conf.d/_GV_template.php:545 msgid "Topics display mode" msgstr "Mode d'affichage des thèmes" -#: lib/conf.d/_GV_template.inc.php:545 +#: lib/conf.d/_GV_template.php:547 msgid "Trees" msgstr "Arborescence thématique" -#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.php:548 lib/conf.d/_GV_template.php:570 msgid "Drop-down" msgstr "Liste déroulante" -#: lib/conf.d/_GV_template.inc.php:553 +#: lib/conf.d/_GV_template.php:555 msgid "Enable roll-over on stories" msgstr "Activer le roll-over sur les reportages" -#: lib/conf.d/_GV_template.inc.php:559 +#: lib/conf.d/_GV_template.php:561 msgid "Enable roll-over on basket elements" msgstr "Activer le roll-over sur les paniers" -#: lib/conf.d/_GV_template.inc.php:565 +#: lib/conf.d/_GV_template.php:567 msgid "Collections display mode" msgstr "Mode d'affichage des collections" -#: lib/conf.d/_GV_template.inc.php:569 +#: lib/conf.d/_GV_template.php:571 msgid "Check-box" msgstr "Case à cocher" -#: lib/conf.d/_GV_template.inc.php:575 +#: lib/conf.d/_GV_template.php:577 msgid "Display the total size of the document basket" msgstr "Afficher la taille des paniers" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.php:583 msgid "Display proposals tab" msgstr "Affichage de l'onglet des propositions de thésaurus" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.php:589 msgid "Require authentication to download documents" msgstr "Exiger de s'authentifier pour télécharger des documents" -#: lib/conf.d/_GV_template.inc.php:588 +#: lib/conf.d/_GV_template.php:590 msgid "Used for guest account" msgstr "Utilisé pour le compte invité." -#: lib/conf.d/_GV_template.inc.php:594 +#: lib/conf.d/_GV_template.php:596 msgid "Users must accept Terms of Use for each export" msgstr "" "Les utilisateurs doivent accepter les conditions générales d'utilisation à " "chaque export" -#: lib/conf.d/_GV_template.inc.php:599 +#: lib/conf.d/_GV_template.php:601 msgid "Registration" msgstr "Inscription" -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.php:606 msgid "Auto select databases" msgstr "Sélection automatique des bases de données" -#: lib/conf.d/_GV_template.inc.php:605 +#: lib/conf.d/_GV_template.php:607 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -2006,88 +2106,128 @@ msgstr "" "l'utilisateur fait une demande d'inscription. L'inscription est alors " "effectuée d'office sur toutes les bases et collections rendues disponibles." -#: lib/conf.d/_GV_template.inc.php:611 +#: lib/conf.d/_GV_template.php:613 msgid "Enable auto registration" msgstr "Activer l'inscription automatique" -#: lib/conf.d/_GV_template.inc.php:616 +#: lib/conf.d/_GV_template.php:618 msgid "Push configuration" msgstr "Configuration de la Validation (Push de validation)" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.php:623 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Nombre de jours avant la fin de la validation pour l'envoi d'un rappel par e-" "mail" -#: lib/conf.d/_GV_template.inc.php:627 +#: lib/conf.d/_GV_template.php:629 msgid "Default validation links duration" msgstr "" "Durée de validité (en jours) des liens générés pour les process de Push et " "de Validation" -#: lib/conf.d/_GV_template.inc.php:628 +#: lib/conf.d/_GV_template.php:630 msgid "If set to 0, duration is permanent" msgstr "Indiquer 0 pour une durée de validité permanente." -#: lib/conf.d/_GV_template.inc.php:633 +#: lib/conf.d/_GV_template.php:635 msgid "Robot indexing" msgstr "Optimisations destinées aux robots d'indexation" -#: lib/conf.d/_GV_template.inc.php:638 +#: lib/conf.d/_GV_template.php:640 msgid "Application title" msgstr "Titre donné à l'instance Phraseanet" -#: lib/conf.d/_GV_template.inc.php:644 +#: lib/conf.d/_GV_template.php:646 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Contenu de la balise Keywords" -#: lib/conf.d/_GV_template.inc.php:650 +#: lib/conf.d/_GV_template.php:652 msgid "Application description" msgstr "Contenu de la balise Description" -#: lib/conf.d/_GV_template.inc.php:656 +#: lib/conf.d/_GV_template.php:658 msgid "Google Analytics identifier" msgstr "Identifiant Google Analytics" -#: lib/conf.d/_GV_template.inc.php:662 +#: lib/conf.d/_GV_template.php:664 msgid "Allow the website to be indexed by search engines like Google" msgstr "" "Permettre l'indexation du site par des moteurs de recherche (comme Google)" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:192 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:120 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:118 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:120 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:25 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:120 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:192 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:25 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:120 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:118 msgid "preview:: demarrer le diaporama" msgstr "Diaporama" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:196 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:124 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:122 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:124 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:29 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:124 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:196 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:29 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:124 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:122 msgid "preview:: arreter le diaporama" msgstr "Arrêter" +#: tmp/cache_twig/00/8b/0fb28f8bb8d0a14368015c09b484797bfd569c40fc293a81c2c9a759de95.php:77 +#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 +msgid "No matches found" +msgstr "Aucune correspondance trouvée" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:29 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:29 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:29 +msgid "%nb_view% vue" +msgstr "%nb_view% vue" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:35 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:35 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:35 +msgid "%nb_view% vues" +msgstr "%nb_view% vues" + #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:36 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:36 msgid "List Name" msgstr "Nom de la liste" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:44 +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:102 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:120 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:44 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:99 #: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:102 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:120 #: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:99 msgid "Save" msgstr "Sauvegarder" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:65 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:65 msgid "Share the list" msgstr "Partager cette liste" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:70 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:70 msgid "Set sharing permission" msgstr "Réglage des partages" @@ -2095,77 +2235,107 @@ msgstr "Réglage des partages" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:85 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:415 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:419 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:72 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:147 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 msgid "Delete" msgstr "Supprimer" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:107 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:107 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:273 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:273 msgid "%length% peoples" msgstr "%length% personne(s)" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:113 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:129 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 msgid "Edit" msgstr "Editer" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:155 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:155 msgid "View" msgstr "Voir" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:121 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:161 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:121 msgid "Push::filter on login" msgstr "Identifiant" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:167 msgid "Push::filter on name" msgstr "Nom/Prénom" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:137 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:173 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:137 msgid "Push::filter on countries" msgstr "Pays" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:145 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:179 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:145 msgid "Push::filter on companies" msgstr "Société" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:153 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:185 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:153 msgid "Push::filter on emails" msgstr "E-mail" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:191 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:191 msgid "Push::filter on templates" msgstr "Dernier modèle" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:158 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:197 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:158 msgid "Push::filter starts" msgstr "Commence par" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:211 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:211 msgid "Activite" msgstr "Activité" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:217 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:217 msgid "Template" msgstr "Modèle" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:223 +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:75 #: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:75 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:223 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:89 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:89 msgid "Company" msgstr "Entreprise" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:229 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:229 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:125 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:125 msgid "Country" msgstr "Pays" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:235 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:235 msgid "Position" msgstr "Poste" @@ -2174,97 +2344,305 @@ msgstr "Poste" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:294 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:319 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:344 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:244 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:269 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:294 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:319 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:344 #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:42 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:42 msgid "All" msgstr "Tout" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:24 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:25 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 +msgid "Reordonner automatiquement" +msgstr "Tri automatique" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:29 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:30 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:475 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:605 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 +msgid "Choisir" +msgstr "Choisir" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:33 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:34 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:687 +msgid "Re-initialiser" +msgstr "Ré-initialiser" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:37 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:133 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:38 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:49 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:44 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:139 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:67 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:67 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:119 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:95 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:49 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:95 +msgid "Titre" +msgstr "Titre" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:42 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:379 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:385 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:513 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:519 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:43 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 +msgid "Re-ordonner" +msgstr "Ordonner" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:46 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:47 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 +msgid "Inverser" +msgstr "Inverser" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:117 +#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:990 +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:221 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:67 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:67 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:74 +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:195 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:125 +#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:231 +#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 +#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:180 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:134 +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:71 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:103 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:734 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:78 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:233 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:103 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:74 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:74 +#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:63 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 +#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:127 +#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:109 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:152 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:42 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:453 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:180 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:103 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:181 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:75 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:503 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:103 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:74 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:480 +#: tmp/cache_twig/b7/01/ac2e3db2f9ba29baaa8de97bd6bf202362051d3b5262c049c62f87947b66.php:81 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:76 +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:315 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:509 +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:129 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:178 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1946 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:131 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:168 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:245 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:462 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:485 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:305 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:120 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:74 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:171 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:160 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:113 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:137 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:111 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 +#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:74 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "Valider" + #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:36 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:36 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 msgid "The records have been properly ordered" msgstr "Les documents ont été correctement commandés" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:42 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:51 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:51 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:42 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 msgid "Order has been sent" msgstr "La commande a été envoyée" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:48 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:57 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:57 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:48 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 msgid "Order has been denied" msgstr "La commande a été refusée" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:61 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:70 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:70 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:61 msgid "An error occured, please retry or contact an admin if problem persists" msgstr "" "Une erreur est survenue. Veuillez réessayer et si le problème persiste, " "contactez un administrateur." #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:75 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:75 msgid "Page %page%" msgstr "Page %page%" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:84 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:84 msgid "Utilisateur" msgstr "Utilisateur" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:88 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:88 msgid "Date de demande" msgstr "Date de demande" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:92 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:104 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:104 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:92 msgid "Deadline" msgstr "Date limite" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:96 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:114 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:114 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:96 msgid "Utilisation prevue" msgstr "Utilisation prévue" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:100 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:100 msgid "Statut" msgstr "Statut" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:139 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:139 msgid "Aucune" msgstr "Aucune" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:175 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:281 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:281 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:175 msgid "Previous" msgstr "Précédent" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:188 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:298 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:298 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:188 msgid "Next" msgstr "Suivants" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:213 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:213 -msgid "You are using an outdated browser." -msgstr "Vous utilisez un navigateur obsolète." - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:217 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:217 -msgid "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." -msgstr "" -"Mettez à jour %browserLink% ou activer %GCFLink% pour un meilleur confort " -"d'utilisation." - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:237 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:237 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:215 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:215 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:215 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:215 msgid "" "Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." msgstr "" "Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:243 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:243 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:221 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:221 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:221 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:221 msgid "" "Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " "Frame." @@ -2272,1086 +2650,368 @@ msgstr "" "Utilisateur d'Internet Explorer, si vous ne pouvez pas installer un autre " "navigateur, utilisez Google Chrome Frame." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:250 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:250 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:228 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:228 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:228 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:228 msgid "Installer Google Chrome" msgstr "Installer Google Chrome" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:256 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:256 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:234 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:234 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:234 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:234 msgid "Installer Google Chrome Frame" msgstr "Installer Google Chrome Frame pour Internet Explorer" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:324 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:324 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:324 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:324 +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:25 #: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 #: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 #: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 msgid "Home" msgstr "Accueil" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:336 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:336 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:330 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:330 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 msgid "Help" msgstr "Aide" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:370 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:364 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:364 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:364 #: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:370 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:364 +#: tmp/cache_twig/74/72/ce1e36331d2c6d8e030e5849e6d9faa747b01380bf11dd14a9fb8681b878.php:34 #: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 msgid "Terms of use" msgstr "Conditions d'utilisation" #: tmp/cache_twig/02/c8/9619136fa97ec62dab06dc28c380.php:30 +#: tmp/cache_twig/8e/c2/d739949fe6a6c8c6d3c4e91956d989a3adbd869aac5c54c923235f3bbfa3.php:30 msgid "Guest access" msgstr "Accès invité" +#: tmp/cache_twig/02/cd/7590eeab80480f95c0887ddc6417fc86f51cab505909c6259f10f11a2e95.php:61 +#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 +#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 +#: tmp/cache_twig/e7/33/fe2890c3af702e61833b0a50667171c7bc225a50e195eb486fba6917e751.php:55 +msgid "%nb_records% records" +msgstr "%nb_records% enregistrement(s)" + #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:35 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:35 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:35 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:35 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:35 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:35 msgid "Deplacement %n_element% elements" msgstr "Déplacement de %n_element% documents" #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:51 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:51 msgid "Which photosets you want to put you %number% photos into ?" msgstr "A quel Photoset souhaitez vous ajouter les %number% photos ?" -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 -#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "Valider" - #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:107 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:996 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:107 #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:78 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:421 #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:107 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:142 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:82 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:107 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:78 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:78 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:78 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:67 #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:78 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:119 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:107 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:421 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:223 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:78 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:213 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:119 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:324 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:188 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:78 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:131 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:78 msgid "boutton::retour" msgstr "Retour" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:28 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:83 #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:381 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:231 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:28 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:144 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:335 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:1024 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:381 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:343 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:29 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:88 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:228 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:488 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1080 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2113 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 msgid "action : exporter" msgstr "Exporter" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:69 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:155 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:35 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:105 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:498 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1090 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:105 msgid "action : print" msgstr "Imprimer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 +#: tmp/cache_twig/9e/7a/714c406cc01b2ef18eaa625a977077a4b2b2545345b30f9715aa3ab4ca50.php:34 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:45 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1109 msgid "action : editer" msgstr "Editer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:57 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:58 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1127 msgid "action : status" msgstr "Propriétés" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:70 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:71 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1145 msgid "action : collection" msgstr "Déplacer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:83 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:84 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1324 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1369 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:96 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:97 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1334 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1379 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 msgid "Feedback" msgstr "Validation" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:107 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:108 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1344 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1394 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2104 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:114 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1354 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1404 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2109 msgid "action : publier" msgstr "Publier" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:126 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:127 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1424 msgid "action : outils" msgstr "Outils" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:370 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:134 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:129 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:325 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1440 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:370 msgid "action : supprimer" msgstr "Supprimer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:147 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:147 msgid "Certaines donnees du reportage ont change" msgstr "Certaines données du reportage ont changé" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:152 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:49 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:152 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:145 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:47 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:62 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:145 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:47 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:62 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:49 msgid "rafraichir" msgstr "Rafraîchir" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 -msgid "VALIDATION" -msgstr "VALIDATION" +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:35 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:95 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 +msgid "report:: activite par jour" +msgstr "Activité par jour" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 -msgid "lightbox::recaptitulatif" -msgstr "Récapitulatif" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:38 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:36 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 +msgid "Renew password" +msgstr "Renouveler le mot de passe" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:100 -msgid "validation:: OUI" -msgstr "OUI" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:51 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:49 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 +msgid "Choose a new password" +msgstr "Choisissez un nouveau mot de passe" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 -msgid "validation:: NON" -msgstr "NON" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:27 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:27 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 +msgid "thesaurus:: Lier la branche de thesaurus" +msgstr "Lier la branche" -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "" -"A quelle liste de lecture souhaitez vous ajouter les %number% documents" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:48 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 +msgid "thesaurus:: suppression du lien du champ %field%" +msgstr "Suppression du lien avec le champ %field%" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 -msgid "admin:: demandes en cours" -msgstr "Demandes en cours" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 -msgid "Requests for the application registrations were recorded successfully" -msgstr "Les demandes d'inscription ont été correctement enregistrées" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -msgid "admin:: refuser l'acces" -msgstr "Refuser l'accès" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "Autoriser la visualisation et le téléchargement des prévisualisations" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "Autoriser le téléchargement des prévisualisations et documents" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 -msgid "admin:: watermarquer les documents" -msgstr "Appliquer le filigrane sur les prévisualisations" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 -msgid "Informations" -msgstr "Informations" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 -msgid "admin::collection" -msgstr "Collection" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 -msgid "Models" -msgstr "Modèles" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "Identifiant" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -msgid "admin::compte-utilisateur societe" -msgstr "Société" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -msgid "admin::compte-utilisateur poste" -msgstr "Poste" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -msgid "admin::compte-utilisateur activite" -msgstr "Activité" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 -msgid "admin::compte-utilisateur telephone" -msgstr "Téléphone" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -msgid "admin::compte-utilisateur adresse" -msgstr "Adresse" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 -msgid "admin:: appliquer le modele" -msgstr "Appliquer le modèle" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 -msgid "No application for registration has been recorded" -msgstr "Aucune demande d'inscription n'a été enregistrée" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -msgid "%nb_view% vue" -msgstr "%nb_view% vue" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 -msgid "%nb_view% vues" -msgstr "%nb_view% vues" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 -msgid "%nb_rating% like" -msgstr "%nb_rating% like" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 -msgid "%nb_rating% likes" -msgstr "%nb_rating% likes" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 -msgid "notice" -msgstr "Notice" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 -msgid "Validations" -msgstr "Validations" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 -msgid "Paniers" -msgstr "Paniers" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 -msgid "boutton::telecharger tous les documents" -msgstr "Tout télécharger" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 -#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 -msgid "Do you want to send your report ?" -msgstr "Souhaitez-vous envoyer votre rapport ?" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 -msgid "Type texte" -msgstr "Type texte" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 -msgid "Type nombre" -msgstr "Type nombre" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 -msgid "Type date" -msgstr "Type date" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 -msgid "Source" -msgstr "Source" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 -msgid "Ce champ n'est pas indexe" -msgstr "Ce champ n'est pas indexé" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 -msgid "Ce champ est multivalue" -msgstr "Ce champ est multivalué" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 -msgid "Ce champ est en lecture seule" -msgstr "Ce champ est en lecture seule" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "Ce champ est lié à une branche de thesaurus" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "Le contenu de ce champ est affiché comme titre dans les interfaces" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 -msgid "Ce champ est requis" -msgstr "Ce champ est obligatoire" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "Ce champ est décrit comme élément du %DublinCoreElementSet%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 -msgid "Par %author%" -msgstr "Par %author%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 -msgid "boutton::editer" -msgstr "Editer" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -msgid "boutton::supprimer" -msgstr "Supprimer" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 -msgid "Derniere mise a jour le %updated_on%" -msgstr "Dernière mise à jour le %updated_on%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 -msgid "dans %feed_name%" -msgstr "dans %feed_name%" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 -msgid "Suppression de %n_element% photosets" -msgstr "Suppression de %n_element% photosets" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "Êtes vous certain de vouloir supprimer %number% photosets ?" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:81 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 msgid "" -"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "Push vers %n_user% utilisateur(s) depuis l'application box %appbox%" +"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" +msgstr "Suppression de la branche de mots candidats pour le champ %field%" -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:96 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 +msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." +msgstr "Enregistrement de la liste modifiée des mots candidats" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:110 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 msgid "" -"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " -"box %appbox%" -msgstr "" -"Demande de validation vers %n_user% utilisateur(s) depuis l'application box " -"%appbox%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 -msgid "report::Edition des meta-donnees" -msgstr "Editions des meta-données" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 -msgid "report::Changement de collection vers : %coll_name%" -msgstr "Changement de collection vers : %coll_name%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 -msgid "report::Edition des status" -msgstr "Edition des status" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 -msgid "report::Impression des formats : %format%" -msgstr "Impression des : %format%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 -msgid "report::Substitution de %dest%" -msgstr "Substitution de %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 -msgid "report::Publication de %dest%" -msgstr "Publication de %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 -msgid "report::Telechargement de %dest%" -msgstr "Téléchargement de %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 -msgid "Envoi par mail a %dest% de %content%" -msgstr "Envoi par mail à %dest% de %content%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "Envoi par ftp à %dest% de %content%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 -msgid "report::supression du document" -msgstr "Suppression du document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 -msgid "report::ajout du documentt" -msgstr "Ajout du document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "Action inconnue sur le document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 -msgid "report:: par %user_infos%" -msgstr "par %user_infos%" - -#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 -msgid "" -"Le connecteur API requis n'est pas configure correctement, veuillez " -"contacter un administrateur" -msgstr "" -"Le connecteur API requis n'est pas configuré correctement, veuillez " -"contacter un administrateur." - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 -msgid "Acces" -msgstr "Accès" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 -msgid "Sessions" -msgstr "Sessions" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 -msgid "Applications" -msgstr "Applications" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 -msgid "Developpeur" -msgstr "Développeur" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 -msgid "Suppression de %n_element% videos" -msgstr "Suppression de %n_element% vidéo(s)" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "Etes vous certain de vouloir supprimer %number% video(s )?" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 -msgid "Rights" -msgstr "Droits" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 -msgid "Infos" -msgstr "Informations" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 -msgid "Reglages:: reglages d acces guest" -msgstr "Réglages d'accès invité" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "Réglages d'auto-inscription" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 -msgid "Edition des droits de %display_name%" -msgstr "Edition des droits de %display_name%" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "Edition des droits de %number% utilisateurs" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 -msgid "Apply a template" -msgstr "Appliquer un modèle" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 -msgid "boutton::choisir" -msgstr "Choisir" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 -msgid "Delete all users rights" -msgstr "Supprimer tous les droits de l'utilisateur" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 -msgid "Allowed to publish" -msgstr "Autoriser à publier" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 -msgid "Manage Thesaurus" -msgstr "Gérer le thesaurus" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 -msgid "Manage Database" -msgstr "Gérer la Base de Données" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 -msgid "Manage DB fields" -msgstr "Gérer les champs documentaires" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 -msgid "Access" -msgstr "Accès" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 -msgid "Active" -msgstr "Actif" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 -msgid "Allowed to add in basket" -msgstr "Autoriser à créer des paniers" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 -msgid "Access to preview" -msgstr "Accès aux sous résolutions" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 -msgid "Remove watermark" -msgstr "Sans filigrane" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 -msgid "Access to HD" -msgstr "Autoriser à télécharger les Documents" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 -msgid "Allowed to order" -msgstr "Autoriser à commander" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 -msgid "Set download quotas" -msgstr "Régler les quotas de téléchargement" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 -msgid "Set time restrictions" -msgstr "Régler les restrictions temporelles" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 -msgid "Set statuses restrictions" -msgstr "Régler les droits d'accès selon les status" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 -msgid "Allowed to add" -msgstr "Autoriser à ajouter des documents" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 -msgid "Allowed to edit" -msgstr "Autoriser à éditer les notices" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 -msgid "Allowed to change statuses" -msgstr "Autoriser à changer les status" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 -msgid "Allowed to delete" -msgstr "Autoriser à supprimer des documents" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 -msgid "Access to image tools" -msgstr "Autoriser à accéder aux outils images" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 -msgid "Manage users" -msgstr "Autoriser à gérer les utilisateurs" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 -msgid "Allowed to access report" -msgstr "Autoriser à consulter Phraseanet Report" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 -msgid "Allowed to push" -msgstr "Autoriser à faire des diffusions" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 -msgid "Manage collection" -msgstr "Autoriser a gérer les paramètres de collection" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 -msgid "Manage values lists" -msgstr "Gérer les valeurs suggérées" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "Civilité" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "Mlle" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "Mme" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "M." - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -msgid "admin::compte-utilisateur code postal" -msgstr "Code postal" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -msgid "admin::compte-utilisateur ville" -msgstr "Ville" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -msgid "admin::compte-utilisateur fax" -msgstr "Fax" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "Etes-vous sûr de vouloir réinitialiser les droits ?" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 -msgid "No results" -msgstr "Aucun résultat" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 -msgid "1 result" -msgstr "1 résultat" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 -msgid "%Total% results" -msgstr "%Total% résultats" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 -msgid "Delete basket" -msgstr "Supprimer le panier" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 -msgid "Received from %user_name%" -msgstr "Reçu de %user_name%" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 -msgid "Sent for validation to %list_participants%" -msgstr "Envoyé pour validation à %list_participants%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:40 -msgid "Grant rights" -msgstr "Accorder les droits" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:51 -msgid "Contributor" -msgstr "Contributeur" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:59 -msgid "See others" -msgstr "Voir les autres" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:70 -msgid "HD Download" -msgstr "Téléchargement HD" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:79 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 -msgid "Lists" -msgstr "Listes" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:85 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:452 -msgid "List Manager" -msgstr "Gestionnaire de Listes" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:93 -msgid "Save this list" -msgstr "Sauvegarder cette liste" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "Utilisateurs" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:156 -msgid "Select a user in the list" -msgstr "Sélectionner un utilisateur dans la liste" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:163 -msgid "or" -msgstr "ou bien" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:168 -msgid "Add user" -msgstr "Ajouter un utilisateur" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:252 -msgid "and %n% more peoples" -msgstr "and %n% autres personnes" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:275 -msgid "" -"Please consider send this push to the following users : %recommendation%" -msgstr "" -"Peut-être devriez-vous ajouter les utilisateurs suivants dans l'envoi de " -"votre Push : %recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:281 -msgid "" -"Please consider send this validation to the following users : %recommendation" -"%" -msgstr "" -"Cette validation peut être adressée aux utilisateurs suivants : " -"%recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:293 -msgid "Users suggestion" -msgstr "Suggestion d'utilisateurs" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:319 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 -msgid "Add" -msgstr "Ajouter" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:340 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" -"«Diffuser»: Envoie un lot de documents à des destinataires. Les " -"destinataires recevront un e-mail, contenant un lien lançant Phraseanet " -"Lightbox. Cette interface donne un accès immédiat en visualisation et/ou " -"téléchargement. Pour les utilisateurs authentifiés, elle est également " -"disponible sous forme d’un panier «Reçu»." - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:346 -msgid "" -"Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" -"«Valider» envoie une demande d'appréciation sur un lot de documents à des " -"destinataires. Ces destinataires recevront un e-mail, contenant un lien " -"lançant Phraseanet Lightbox. Cette interface leur donne un accès immédiat " -"aux documents pour \"appréciation\", et/ou téléchargement. Pour les " -"utilisateurs authentifiés, la «validation» est également disponible sous " -"forme d’un panier." - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:367 -msgid "Select all" -msgstr "Tout sélectionner" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 -msgid "Deselect all" -msgstr "Tout desélectionner" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Send" -msgstr "Envoyer" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:437 -msgid "Back to Push" -msgstr "Retour au Push" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:443 -msgid "Back to Feedback" -msgstr "Retour à la Validation" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:470 -msgid "Welcome to the ListManager !" -msgstr "Bienvenue sur le Gestionnaire de Listes !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:479 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" -"Commencer en utilisant le bouton \"Ajouter\" sur la gauche de l'écran !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:488 -msgid "Select a list on the left and edit it !" -msgstr "Sélectionner une liste sur la gauche puis éditez la !" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 -msgid "You do not have rights to remove all selected documents. Are you sure ?" -msgstr "" -"Vous n'avez pas les droits nécessaires pour supprimer tous les documents " -"sélectionnés. Etes-vous sûr ?" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 -msgid "These records will be definitely deleted and can not be recovered" -msgstr "" -"Ces enregistrements seront définitivement supprimés et ne pourront pas être " -"récupérés." - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 -msgid "Also delete records that rely on groupings." -msgstr "Supprimer également les enregistrements appartenant à des reportages" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 -msgid "Cancel" -msgstr "Annuler" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 -msgid "No document selected" -msgstr "Aucun document sélectionné" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 -msgid "You do not have rights to remove selected documents" -msgstr "Vous n'avez pas les droits pour supprimer les documents sélectionnés" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 -msgid "Creer" -msgstr "Créer" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 -msgid "Actions" -msgstr "Actions" - -#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 -#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 -msgid "Voulez-vous dire %link% ?" -msgstr "Voulez vous dire %link% ?" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:45 -msgid "report:: Du (date)" -msgstr "Du" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:57 -msgid "report:: Au (date)" -msgstr "Au" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 -#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 -#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 -msgid "report:: Dashboard" -msgstr "Tableau de bord" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 -msgid "validation:: votre note" -msgstr "Annotation" - +"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" +msgstr "Suppression des index vers le thesaurus pour le champ %field%" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:125 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 +msgid "thesaurus:: reindexer tous les enregistrements" +msgstr "Ré-indexer tous les enregistrements" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:135 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:79 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:79 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:43 #: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:74 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:968 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:283 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:86 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:43 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2019 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:74 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:54 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:516 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:524 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:196 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:225 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 @@ -3360,41 +3020,769 @@ msgstr "Annotation" msgid "boutton::fermer" msgstr "Fermer" -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 -msgid "boutton::enregistrer" -msgstr "Enregistrer" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:69 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 +msgid "Rights" +msgstr "Droits" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 -msgid "Reorder collections" -msgstr "Réordonner les collections" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:79 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 +msgid "Infos" +msgstr "Informations" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 -msgid "admin::base:collorder: monter" -msgstr "Monter" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:111 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:89 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "Réglages d'accès invité" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 -msgid "admin::base:collorder: descendre" -msgstr "Descendre" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:117 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:97 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "Réglages d'auto-inscription" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "Ordre alphabétique" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:129 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 +msgid "Edition des droits de %display_name%" +msgstr "Edition des droits de %display_name%" -#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 -#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 -msgid "%nb_records% records" -msgstr "%nb_records% enregistrement(s)" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:141 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "Edition des droits de %number% utilisateurs" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:150 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:209 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:209 +msgid "Apply a template" +msgstr "Appliquer un modèle" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:155 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:214 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:214 +msgid "boutton::choisir" +msgstr "Choisir" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:177 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:249 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:249 +msgid "Delete all users rights" +msgstr "Supprimer tous les droits de l'utilisateur" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:461 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 +msgid "Allowed to publish" +msgstr "Autoriser à publier" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:470 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 +msgid "Manage Thesaurus" +msgstr "Gérer le thesaurus" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:479 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 +msgid "Manage Database" +msgstr "Gérer la Base de Données" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:488 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 +msgid "Manage DB fields" +msgstr "Gérer les champs documentaires" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:509 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:113 +#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 +msgid "Access" +msgstr "Accès" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:518 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 +msgid "Active" +msgstr "Actif" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:527 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 +msgid "Allowed to add in basket" +msgstr "Autoriser à créer des paniers" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:536 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 +msgid "Access to preview" +msgstr "Accès aux sous résolutions" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:545 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 +msgid "Remove watermark" +msgstr "Sans filigrane" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:554 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 +msgid "Access to HD" +msgstr "Autoriser à télécharger les Documents" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:563 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 +msgid "Allowed to order" +msgstr "Autoriser à commander" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:572 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 +msgid "Set download quotas" +msgstr "Régler les quotas de téléchargement" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:599 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 +msgid "Set time restrictions" +msgstr "Régler les restrictions temporelles" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:626 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 +msgid "Set statuses restrictions" +msgstr "Régler les droits d'accès selon les status" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:656 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 +msgid "Allowed to add" +msgstr "Autoriser à ajouter des documents" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:665 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 +msgid "Allowed to edit" +msgstr "Autoriser à éditer les notices" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:674 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 +msgid "Allowed to change statuses" +msgstr "Autoriser à changer les status" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:683 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 +msgid "Allowed to delete" +msgstr "Autoriser à supprimer des documents" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:692 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 +msgid "Access to image tools" +msgstr "Autoriser à accéder aux outils images" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:701 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 +msgid "Manage users" +msgstr "Autoriser à gérer les utilisateurs" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:710 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 +msgid "Allowed to access report" +msgstr "Autoriser à consulter Phraseanet Report" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:719 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 +msgid "Allowed to push" +msgstr "Autoriser à faire des diffusions" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:728 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 +msgid "Manage collection" +msgstr "Autoriser a gérer les paramètres de collection" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:737 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 +msgid "Manage values lists" +msgstr "Gérer les valeurs suggérées" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:779 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:279 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 +#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:67 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1558 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:303 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:279 +#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:112 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:105 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:429 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1558 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "Identifiant" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:793 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:118 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "Civilité" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:804 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:645 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:131 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:645 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "Mlle" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:812 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:653 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:142 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:653 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "Mme" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:820 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:661 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:153 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:661 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "M." + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:871 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:748 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:363 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:220 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:748 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:301 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +msgid "admin::compte-utilisateur adresse" +msgstr "Adresse" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:885 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:761 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:233 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:761 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:303 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +msgid "admin::compte-utilisateur code postal" +msgstr "Code postal" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:899 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:774 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:246 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:774 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:302 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +msgid "admin::compte-utilisateur ville" +msgstr "Ville" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:913 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:735 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:339 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:259 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:735 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +msgid "admin::compte-utilisateur poste" +msgstr "Poste" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:927 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:311 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:722 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:331 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:272 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:722 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:298 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +msgid "admin::compte-utilisateur societe" +msgstr "Société" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:941 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:347 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:285 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +msgid "admin::compte-utilisateur activite" +msgstr "Activité" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:956 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:709 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:355 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:298 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:709 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:306 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:305 +msgid "admin::compte-utilisateur telephone" +msgstr "Téléphone" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:970 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:787 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:787 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:306 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +msgid "admin::compte-utilisateur fax" +msgstr "Fax" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:1022 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "Etes-vous sûr de vouloir réinitialiser les droits ?" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:26 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:238 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:27 +msgid "VALIDATION" +msgstr "VALIDATION" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:32 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:265 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:33 +msgid "lightbox::recaptitulatif" +msgstr "Récapitulatif" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:115 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:123 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:115 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:129 +msgid "validation:: OUI" +msgstr "OUI" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:129 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:138 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:129 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:144 +msgid "validation:: NON" +msgstr "NON" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:31 +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:68 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:508 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 +msgid "action : ajouter au panier" +msgstr "Ajouter au panier" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:54 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 +msgid "Remove from basket" +msgstr "Retirer du panier" + +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:51 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:51 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 +msgid "Which playlist you want to put you %number% elements into ?" +msgstr "" +"A quelle liste de lecture souhaitez vous ajouter les %number% documents" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:202 +msgid "admin:: demandes en cours" +msgstr "Demandes en cours" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:214 +msgid "Requests for the application registrations were recorded successfully" +msgstr "Les demandes d'inscription ont été correctement enregistrées" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:232 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:405 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:409 +msgid "admin:: refuser l'acces" +msgstr "Refuser l'accès" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:238 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:416 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:420 +msgid "admin:: donner les droits de telechargement et consultation de previews" +msgstr "Autoriser la visualisation et le téléchargement des prévisualisations" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:244 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:427 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:431 +msgid "admin:: donner les droits de telechargements de preview et hd" +msgstr "Autoriser le téléchargement des prévisualisations et documents" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:250 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:438 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:442 +msgid "admin:: watermarquer les documents" +msgstr "Appliquer le filigrane sur les prévisualisations" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:358 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:260 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:116 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:116 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 +msgid "Informations" +msgstr "Informations" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:264 +msgid "admin::collection" +msgstr "Collection" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:268 +msgid "Models" +msgstr "Modèles" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:456 +msgid "admin:: appliquer le modele" +msgstr "Appliquer le modèle" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:511 +msgid "No application for registration has been recorded" +msgstr "Aucune demande d'inscription n'a été enregistrée" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:25 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:25 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:25 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 +msgid "Ajouter a" +msgstr "Ajouter à" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:58 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:38 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:58 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:58 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:38 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:38 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 +msgid "Actions" +msgstr "Actions" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:73 +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:172 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1535 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:328 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:73 +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:314 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:78 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:86 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:73 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:248 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:53 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:53 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:344 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:378 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:434 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:490 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:494 +msgid "boutton::supprimer" +msgstr "Supprimer" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:57 +msgid "%nb_rating% like" +msgstr "%nb_rating% like" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:63 +msgid "%nb_rating% likes" +msgstr "%nb_rating% likes" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:169 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:195 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:168 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:154 +msgid "notice" +msgstr "Notice" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:73 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:71 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:275 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:251 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 +msgid "Validations" +msgstr "Validations" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:199 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:197 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:308 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:284 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 +msgid "Paniers" +msgstr "Paniers" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:202 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:344 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:318 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:200 +msgid "boutton::telecharger tous les documents" +msgstr "Tout télécharger" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:391 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 +#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 +msgid "Do you want to send your report ?" +msgstr "Souhaitez-vous envoyer votre rapport ?" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:36 +msgid "Type texte" +msgstr "Type texte" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:42 +msgid "Type nombre" +msgstr "Type nombre" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:48 +msgid "Type date" +msgstr "Type date" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:67 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:96 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:160 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 +msgid "Source" +msgstr "Source" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:82 +msgid "Ce champ n'est pas indexe" +msgstr "Ce champ n'est pas indexé" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:94 +msgid "Ce champ est multivalue" +msgstr "Ce champ est multivalué" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:106 +msgid "Ce champ est en lecture seule" +msgstr "Ce champ est en lecture seule" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:118 +msgid "Ce champ est relie a une branche de thesaurus" +msgstr "Ce champ est lié à une branche de thesaurus" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:130 +msgid "Ce champ est utilise en titre a l'affichage" +msgstr "Le contenu de ce champ est affiché comme titre dans les interfaces" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:142 +msgid "Ce champ est requis" +msgstr "Ce champ est obligatoire" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:160 +msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" +msgstr "Ce champ est décrit comme élément du %DublinCoreElementSet%" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:31 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 +msgid "First Name" +msgstr "Prénom" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:42 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 +msgid "Last Name" +msgstr "Nom" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:53 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 +msgid "Email Name" +msgstr "Adresse email" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:64 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 +msgid "Job" +msgstr "Poste" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:86 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 +msgid "City" +msgstr "Ville" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:98 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:350 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:113 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:32 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:406 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:410 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:350 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 +msgid "Add" +msgstr "Ajouter" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:102 +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:117 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:346 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:78 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:346 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:135 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:151 +msgid "Cancel" +msgstr "Annuler" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:63 +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 +msgid "Par %author%" +msgstr "Par %author%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:77 +msgid "boutton::editer" +msgstr "Editer" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:117 +msgid "Derniere mise a jour le %updated_on%" +msgstr "Dernière mise à jour le %updated_on%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:135 +msgid "dans %feed_name%" +msgstr "dans %feed_name%" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:35 +msgid "Suppression de %n_element% photosets" +msgstr "Suppression de %n_element% photosets" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:51 +msgid "Etes vous sur de supprimer %number% photosets ?" +msgstr "Êtes vous certain de vouloir supprimer %number% photosets ?" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:35 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:35 msgid "Suggested values" msgstr "Valeurs suggérées" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:48 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:36 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:55 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 @@ -3407,41 +3795,75 @@ msgstr "Valeurs suggérées" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 msgid "Successful update" msgstr "Mise à jour réussie" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:72 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:72 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:111 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:311 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:111 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:311 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 msgid "phraseanet::chargement" msgstr "Chargement" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:95 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:95 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Valeurs suggérées - Préférences de la collection" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:111 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:104 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 msgid "boutton::vue xml" msgstr "Vue XML" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:115 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:108 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 msgid "boutton::vue graphique" msgstr "Vue Graphique" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:130 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:130 msgid "admin::sugval: champs" msgstr "Champs" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:164 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:53 +msgid "admin::base:collorder: monter" +msgstr "Monter" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:168 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:57 +msgid "admin::base:collorder: descendre" +msgstr "Descendre" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:176 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:61 +msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +msgstr "Ordre alphabétique" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:196 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:196 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:246 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:473 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:246 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:473 msgid "boutton::ajouter" msgstr "Ajouter" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:1062 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:1062 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des " @@ -3452,136 +3874,430 @@ msgstr "" "XML si vous ne l'avez pas préalablement sauvegardé .\n" "Continuer quand même ?" -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 -msgid "report:: activite du site" -msgstr "Activité du site" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:66 +msgid "" +"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +msgstr "Push vers %n_user% utilisateur(s) depuis l'application box %appbox%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 -msgid "Tableau de bord" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:81 +msgid "" +"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " +"box %appbox%" +msgstr "" +"Demande de validation vers %n_user% utilisateur(s) depuis l'application box " +"%appbox%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:87 +msgid "report::Edition des meta-donnees" +msgstr "Editions des meta-données" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:99 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "Changement de collection vers : %coll_name%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:105 +msgid "report::Edition des status" +msgstr "Edition des status" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:114 +msgid "report::Impression des formats : %format%" +msgstr "Impression des : %format%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:123 +msgid "report::Substitution de %dest%" +msgstr "Substitution de %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:132 +msgid "report::Publication de %dest%" +msgstr "Publication de %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:141 +msgid "report::Telechargement de %dest%" +msgstr "Téléchargement de %dest%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:153 +msgid "Envoi par mail a %dest% de %content%" +msgstr "Envoi par mail à %dest% de %content%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:165 +msgid "Envoi par ftp a %dest% de %content%" +msgstr "Envoi par ftp à %dest% de %content%" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:171 +msgid "report::supression du document" +msgstr "Suppression du document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:177 +msgid "report::ajout du documentt" +msgstr "Ajout du document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:183 +msgid "report::Modification du document -- je ne me souviens plus de quoi..." +msgstr "Action inconnue sur le document" + +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:200 +msgid "report:: par %user_infos%" +msgstr "par %user_infos%" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:34 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:43 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:43 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:46 +msgid "report:: Du (date)" +msgstr "Du" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:44 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:55 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:55 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:56 +msgid "report:: Au (date)" +msgstr "Au" + +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:76 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:40 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 +#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:40 +#: tmp/cache_twig/b0/68/8df402b56c39d510a9d6d04c179a52d90fa80d9fd6ad5c68b5c21ea0076f.php:32 +#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 +#: tmp/cache_twig/f0/c8/dec944507ec91ef867d854c9718175767c72a41c78536d7f086c60b949be.php:32 +msgid "report:: Dashboard" msgstr "Tableau de bord" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 -msgid "Setup" -msgstr "Paramétrage" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:44 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 +msgid "The user has been created." +msgstr "L'utilisateur a été créé." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 -msgid "SearchEngine settings" -msgstr "Paramètres du moteur de recherche" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:50 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "%user_count% utilisateurs ont été créés." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "Utilisateurs Connectés" - -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 -msgid "admin::utilisateurs: utilisateurs" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:63 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:182 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:63 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:182 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:91 +#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" msgstr "Utilisateurs" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 -msgid "admin::utilisateurs: demandes en cours" -msgstr "Demandes" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "Nouvel utilisateur" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 -msgid "Publications" -msgstr "Publications" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:75 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:75 +msgid "admin::user: nouveau template" +msgstr "Nouveau modèle" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "Gestionnaire de tâches" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:81 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "Import" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 -msgid "admin::utilisateurs: bases de donnees" -msgstr "Bases" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:85 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "Export" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 -msgid "admin::structure: reglage de la structure" -msgstr "Réglage de la structure" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:112 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:112 +msgid "Filter" +msgstr "Filtrer" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 -msgid "CHAMPS" -msgstr "Champs" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:129 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:295 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:71 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:129 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:295 +msgid "First/Last Name" +msgstr "Prénom / Nom" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 -msgid "SUBDEFS" -msgstr "Sous définition" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:166 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:166 +msgid "Last applied template" +msgstr "Dernier modèle appliqué" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 -msgid "admin::status: reglage des status" -msgstr "Réglage des Status" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:236 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:236 +msgid "boutton::appliquer" +msgstr "Appliquer" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 -msgid "admin:: CGUs" -msgstr "CGU" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:265 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "Id" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 -msgid "admin::collection: ordre des collections" -msgstr "Ordre des collections" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:343 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:343 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:304 +msgid "admin::compte-utilisateur pays" +msgstr "Pays" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 -msgid "admin::base: preferences de collection" -msgstr "Réglages de collection" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:359 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "Dernier modèle appliqué" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 -msgid "Chercher" -msgstr "Chercher" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:375 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "Création" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 -msgid "thesaurus:: le terme" -msgstr "Le terme" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:420 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:420 +msgid "This is a template" +msgstr "Ceci est un modèle" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 -msgid "thesaurus:: est egal a " -msgstr "est égal à " +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:429 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:429 +msgid "This user has no rights" +msgstr "Cet utilisateur ne possède aucun droit" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 -msgid "thesaurus:: commence par" -msgstr "commence par" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:638 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:649 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:660 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:638 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:649 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:660 +msgid "%n_par_page% par page" +msgstr "%n_par_page% par page" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 -msgid "thesaurus:: contient" -msgstr "contient" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:665 +#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 +#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 +#: tmp/cache_twig/73/37/e3b20793b38fb7ab75acd68e87009654ea726d191453f251f2de1b8ef1fd.php:22 +#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:665 +#: tmp/cache_twig/b8/3f/87a926d83151a23e51c94f5bc6b4e980c11a5b5fc693fcb89b5131dfeac5.php:22 +#: tmp/cache_twig/d4/25/a94dbfc016b6e0064d671b20c9ba4a0db1cffe147d3fde0340190faef0b2.php:22 +msgid "boutton::modifier" +msgstr "Modifier" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:669 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:669 +msgid "Supprimer" +msgstr "Supprimer" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:807 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:807 +msgid "boutton::exporter" +msgstr "Exporter" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:831 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:831 +msgid "select at least one user" +msgstr "Sélectionner au moins un utilisateur" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:843 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "Etes-vous sûr de vouloir initialiser les droits des utilisateurs ?" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:867 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:867 +msgid "users rights have been reseted" +msgstr "Les droits utilisateurs ont été ré-initialisés" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:53 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 +msgid "Vous avez recu un nouveau panier" +msgstr "Vous avez reçu un nouveau panier" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:111 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "Vous avez reçu une demande de validation des documents de ce panier" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:134 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:301 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:480 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 +msgid "action::exporter" +msgstr "Exporter" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:145 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:491 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 +msgid "action::editer" +msgstr "Editer" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:170 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:341 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 +msgid "action::Valider" +msgstr "Valider" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:253 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "Vous avez envoyé ce panier pour validation" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:274 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 +msgid "paniers:: panier recu de %pusher%" +msgstr "Panier reçu de %pusher%" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:317 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:323 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 +msgid "action::renommer" +msgstr "Renommer" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:358 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 +msgid "Archive" +msgstr "Archiver" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:504 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 +msgid "action::detacher" +msgstr "Détacher" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:720 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 +msgid "delete" +msgstr "Supprimer" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:809 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 +msgid "panier:: ordre du panier" +msgstr "Ordre du panier" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:817 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 +msgid "panier:: ordre Validation ascendante" +msgstr "Mieux noté" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:825 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 +msgid "panier:: ordre Validation descendante" +msgstr "Moins noté" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:873 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 +msgid "L'utilisateur approuve ce document" +msgstr "L'utilisateur approuve ce document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:879 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "L'utilisateur n'a pas encore donné son avis sur ce document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:885 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 +msgid "L'utilisateur desapprouve ce document" +msgstr "L'utilisateur désapprouve ce document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:894 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 +msgid "This user does not participate to the validation but is only viewer." +msgstr "Cet utilisateur ne participe pas à la validation" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:71 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:71 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 +msgid "veuillez choisir au minimum une collection" +msgstr "Veuillez choisir au moins une collection" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:75 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:75 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:190 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:130 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:99 +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:213 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:237 #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:228 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:47 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:184 #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:119 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:75 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:113 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:75 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:190 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:228 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:108 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:113 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:148 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:828 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1055 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:47 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:184 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:184 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:47 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:107 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:186 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:237 #: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:130 #: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:186 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:148 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:310 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:334 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:188 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:155 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 #: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:99 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:324 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:163 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:240 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:270 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:486 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:828 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1055 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:250 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:489 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:310 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:334 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:108 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:155 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:132 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:213 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 @@ -3589,49 +4305,831 @@ msgstr "contient" msgid "boutton::annuler" msgstr "Annuler" +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:87 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:87 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 +#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:111 +msgid "report::Heures" +msgstr "Heures" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:105 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:105 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 +msgid "report::Nombre de connexions" +msgstr "Nombre de connexions" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:109 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:109 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 +#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 +msgid "report:: jour" +msgstr "Jour" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:113 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:113 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 +msgid "report:: Heures" +msgstr "Heures" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:117 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:117 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 +msgid "report::Nombre de document ajoute" +msgstr "Nombre de documents ajoutés" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:121 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:121 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 +msgid "report::Nombre de document edite" +msgstr "Nombre de documents édités" + +#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 +#: tmp/cache_twig/2e/c8/6a8b65962285cc957b4f1cb0a6d3c6cfcece8142ec2c2d9bcd51db856e63.php:25 +msgid "" +"Le connecteur API requis n'est pas configure correctement, veuillez " +"contacter un administrateur" +msgstr "" +"Le connecteur API requis n'est pas configuré correctement, veuillez " +"contacter un administrateur." + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:35 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:35 +msgid "Suppression de %n_element% playlists" +msgstr "Suppression de %n_element% liste(s) de lecture" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:51 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:51 +msgid "Etes vous sur de supprimer %number% playlists ?" +msgstr "Etes vous certain de vouloir supprimer %number% liste(s) de lecture ?" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:126 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:126 +msgid "Acces" +msgstr "Accès" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:136 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:136 +msgid "Sessions" +msgstr "Sessions" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:146 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:146 +msgid "Applications" +msgstr "Applications" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:156 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:156 +msgid "Developpeur" +msgstr "Développeur" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:79 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:77 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 +msgid "Voici vos validations en cours" +msgstr "Voici vos validations en cours" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:133 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:131 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 +msgid "(validation) session terminee" +msgstr "Session terminée" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:139 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:137 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 +msgid "(validation) envoyee" +msgstr "Rapport de validation envoyé" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:145 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:143 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 +msgid "(validation) a envoyer" +msgstr "Rapport de validation à envoyer" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:154 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:256 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:152 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:254 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 +#, php-format +msgid "%basket_length% documents" +msgstr "%basket_length% documents" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:205 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:203 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 +msgid "Voici vos paniers" +msgstr "Voici vos paniers" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:35 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:35 +msgid "Suppression de %n_element% videos" +msgstr "Suppression de %n_element% vidéo(s)" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:51 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:51 +msgid "Etes vous sur de supprimer %number% videos ?" +msgstr "Etes vous certain de vouloir supprimer %number% video(s )?" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:27 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:139 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 +#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 +#: tmp/cache_twig/fa/6c/5a1478433bb48ba074484fbf8f310f00024e6b7e19d6c1fde38d05b22b30.php:27 +msgid "thesaurus:: export au format texte" +msgstr "Texte" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:124 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 +msgid "thesaurus:: options d'export : " +msgstr "Export " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:128 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 +msgid "thesaurus:: example" +msgstr "exemple" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:147 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 +msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" +msgstr "Synonyme(s) sur la même ligne" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:154 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 +msgid "thesaurus:: exporter avec une ligne par synonyme" +msgstr "Une ligne par synonyme" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:161 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 +msgid "thesaurus:: export : numeroter les lignes " +msgstr "Numéroter les lignes " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:168 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 +msgid "thesaurus:: export : inclure la langue" +msgstr "Inclure la langue" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:175 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 +msgid "thesaurus:: export : inclure les hits" +msgstr "Inclure le nombre de résultats" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:124 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 +msgid "En attente" +msgstr "En attente" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:130 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 +msgid "En cours d'envoi" +msgstr "En cours d'envoi" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:124 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "Remplacement du candidat \"%(from)s\" par \"%(to)s\"" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:259 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "Remplacement..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:322 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "Acceptation..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:415 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "Suppression..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:489 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "Accepter le terme candidat \"%s\" ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:498 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "Accepter les %d termes candidats ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:607 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "Accepter le terme candidat \"%s\"" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:616 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "Accepter les %s termes candidats" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:654 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "Remplacer le terme \"%s\" des fiches par" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:663 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "Remplacer les \"%d\" termes des fiches par" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:703 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "Supprimer le terme \"%s\" des fiches ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:712 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "Supprimer les %d termes des fiches ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:776 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:781 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1035 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 +msgid "prod::thesaurusTab:tree:loading" +msgstr "Chargement..." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1412 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "Accepter comme terme spécifique" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1422 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "Accepter comme synonyme" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1504 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "Accepter en %lng_code%" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1524 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "Remplacer par" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:31 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:282 +msgid "No results" +msgstr "Aucun résultat" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:37 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:288 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:121 +msgid "1 result" +msgstr "1 résultat" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:43 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:294 +msgid "%Total% results" +msgstr "%Total% résultats" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:116 +msgid "Delete basket" +msgstr "Supprimer le panier" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:191 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:93 +msgid "Received from %user_name%" +msgstr "Reçu de %user_name%" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:242 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:144 +msgid "Sent for validation to %list_participants%" +msgstr "Envoyé pour validation à %list_participants%" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:27 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 +msgid "thesaurus:: Lier la branche de thesaurus au champ" +msgstr "Lier la branche de thesaurus au champ" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:90 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 +msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +msgstr "Lier la branche de thesaurus au champ %branch%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:28 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:28 +msgid "None of the selected records can be pushed." +msgstr "Aucun des enregistrements sélectionnés ne peut être envoyés par Push." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:34 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:34 +msgid "None of the selected records can be sent for feedback." +msgstr "" +"Aucun des enregistrements sélectionnés ne peut envoyé pour une demande de " +"validation." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:71 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:71 +msgid "Grant rights" +msgstr "Accorder les droits" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:82 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:82 +msgid "Contributor" +msgstr "Contributeur" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:90 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:90 +msgid "See others" +msgstr "Voir les autres" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:101 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:101 +msgid "HD Download" +msgstr "Téléchargement HD" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:110 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:23 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:110 +msgid "Lists" +msgstr "Listes" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:116 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:535 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:116 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:535 +msgid "List Manager" +msgstr "Gestionnaire de Listes" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:124 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:124 +msgid "Save this list" +msgstr "Sauvegarder cette liste" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:187 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:187 +msgid "Select a user in the list" +msgstr "Sélectionner un utilisateur dans la liste" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:194 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:194 +msgid "or" +msgstr "ou bien" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:199 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:199 +msgid "Add user" +msgstr "Ajouter un utilisateur" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:283 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:283 +msgid "and %n% more peoples" +msgstr "and %n% autres personnes" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:306 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:306 +msgid "" +"Please consider send this push to the following users : %recommendation%" +msgstr "" +"Peut-être devriez-vous ajouter les utilisateurs suivants dans l'envoi de " +"votre Push : %recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:312 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:312 +msgid "" +"Please consider send this validation to the following users : %recommendation" +"%" +msgstr "" +"Cette validation peut être adressée aux utilisateurs suivants : " +"%recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:324 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:324 +msgid "Users suggestion" +msgstr "Suggestion d'utilisateurs" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:371 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "" +"«Diffuser»: Envoie un lot de documents à des destinataires. Les " +"destinataires recevront un e-mail, contenant un lien lançant Phraseanet " +"Lightbox. Cette interface donne un accès immédiat en visualisation et/ou " +"téléchargement. Pour les utilisateurs authentifiés, elle est également " +"disponible sous forme d’un panier «Reçu»." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:377 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:377 +msgid "" +"Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "" +"La Validation envoie une demande d'appréciation sur un lot de documents à " +"des destinataires. Ils reçoivent un e-mail contenant un lien permettant de " +"rejoindre Phraseanet Lightbox, une interface donnant un accès immédiat aux " +"documents pour leur appréciation et/ou téléchargement. Pour les utilisateurs " +"authentifiés, la Validation est également disponible sous forme d’un panier " +"dans la zone de travail." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:405 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:405 +msgid "You are about to push %nb_push_items% records." +msgstr "Vous êtes sur le point d'adresser %nb_push_items% documents." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:414 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:414 +msgid "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." +msgstr "" +"Vous êtes sur le point d'adresser %nb_push_items% documents or seuls " +"%nb_not_available% peuvent être pris en compte." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:429 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:429 +msgid "You are about to ask for feedback for %nb_push_items% records." +msgstr "" +"Vous êtes sur le point d'envoyer une demande de validation pour " +"%nb_push_items% documents." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:438 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:438 +msgid "" +"You are about to ask for feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." +msgstr "" +"Vous êtes sur le point d'envoyer une demande de validation pour " +"%nb_push_items% documents, or seuls %nb_not_available% documents peuvent " +"être pris en compte." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:450 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:80 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:80 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:450 +msgid "Select all" +msgstr "Tout sélectionner" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:454 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:86 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:454 +msgid "Deselect all" +msgstr "Tout desélectionner" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:502 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:175 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:307 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:312 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:262 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 +#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:502 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:107 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +msgid "Send" +msgstr "Envoyer" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:520 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:520 +msgid "Back to Push" +msgstr "Retour au Push" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:526 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:526 +msgid "Back to Feedback" +msgstr "Retour à la Validation" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:553 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:553 +msgid "Welcome to the ListManager !" +msgstr "Bienvenue sur le Gestionnaire de Listes !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:562 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:562 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "" +"Commencer en utilisant le bouton \"Ajouter\" sur la gauche de l'écran !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:571 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:571 +msgid "Select a list on the left and edit it !" +msgstr "Sélectionner une liste sur la gauche puis éditez la !" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:34 +msgid "You do not have rights to remove all selected documents. Are you sure ?" +msgstr "" +"Vous n'avez pas les droits nécessaires pour supprimer tous les documents " +"sélectionnés. Etes-vous sûr ?" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:53 +msgid "These records will be definitely deleted and can not be recovered" +msgstr "" +"Ces enregistrements seront définitivement supprimés et ne pourront pas être " +"récupérés." + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:63 +msgid "Also delete records that rely on groupings." +msgstr "Supprimer également les enregistrements appartenant à des reportages" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:150 +msgid "No document selected" +msgstr "Aucun document sélectionné" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:159 +msgid "You do not have rights to remove selected documents" +msgstr "Vous n'avez pas les droits pour supprimer les documents sélectionnés" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:42 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 +msgid "Oups ! something went wrong !" +msgstr "Un problème est survenu !" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:70 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 +msgid "boutton::retry" +msgstr "Recommencer" + +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:27 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:27 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:27 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 +msgid "Creer" +msgstr "Créer" + +#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 +#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 +#: tmp/cache_twig/7e/d7/fc11a3521d90d05479b8e9e5b7a637086675de8b1e83c76016239918b8f0.php:54 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:57 +#: tmp/cache_twig/ec/97/b5b5bcb1a77a1178342e9aadece33928490fd66f74bf94ac4961513eafd6.php:54 +#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 +msgid "Voulez-vous dire %link% ?" +msgstr "Voulez vous dire %link% ?" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:27 +msgid "validation:: votre note" +msgstr "Annotation" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:83 +msgid "boutton::enregistrer" +msgstr "Enregistrer" + +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:22 +msgid "Reorder collections" +msgstr "Réordonner les collections" + +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:52 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:52 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:458 +msgid "report:: activite du site" +msgstr "Activité du site" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:34 +msgid "Tableau de bord" +msgstr "Tableau de bord" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:22 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:63 +msgid "Setup" +msgstr "Paramétrage" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:74 +msgid "SearchEngine settings" +msgstr "Paramètres du moteur de recherche" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:95 +msgid "admin::utilisateurs: utilisateurs connectes" +msgstr "Utilisateurs Connectés" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:116 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:394 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:461 +msgid "admin::utilisateurs: utilisateurs" +msgstr "Utilisateurs" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "Demandes" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:23 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:23 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1919 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:153 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:247 +msgid "Publications" +msgstr "Publications" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "Gestionnaire de tâches" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "Bases" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "Réglage de la structure" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:300 +msgid "CHAMPS" +msgstr "Champs" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:312 +msgid "SUBDEFS" +msgstr "Sous définition" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:324 +msgid "admin::status: reglage des status" +msgstr "Réglage des Status" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:335 +msgid "admin:: CGUs" +msgstr "CGU" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:347 +msgid "admin::collection: ordre des collections" +msgstr "Ordre des collections" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:438 +msgid "admin::base: preferences de collection" +msgstr "Réglages de collection" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:27 +msgid "Chercher" +msgstr "Chercher" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:70 +msgid "thesaurus:: le terme" +msgstr "Le terme" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:74 +msgid "thesaurus:: est egal a " +msgstr "est égal à " + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:81 +msgid "thesaurus:: commence par" +msgstr "commence par" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:88 +msgid "thesaurus:: contient" +msgstr "contient" + #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:99 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:99 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:99 msgid "Erreur de login / mot de passe" msgstr "Erreur d'identifiant / mot de passe" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:107 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:107 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:107 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "Bonjour, veuillez vous identifier sur %home_title% :" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:845 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:79 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1574 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:116 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:442 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1574 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 msgid "admin::compte-utilisateur mot de passe" msgstr "Mot de passe" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:120 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:120 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:120 msgid "Se connecter" msgstr "Se connecter" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:126 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:126 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:126 msgid "Problèmes de connexion ?" msgstr "Problème de connexion ?" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:143 #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:95 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:95 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:95 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:143 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:143 msgid "Hello %username%" msgstr "Hello %username%" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:157 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:157 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:157 msgid "Autorisation d'accès" msgstr "Autorisation d'accès" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:168 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:168 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:168 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" @@ -3641,23 +5139,28 @@ msgstr "" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:198 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:198 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:198 msgid "Autoriser" msgstr "Autoriser" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:222 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:222 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:222 msgid "Ne pas autoriser" msgstr "Ne pas autoriser" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:37 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:37 msgid "Authorization code" msgstr "Code d'autorisation" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:60 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:60 msgid "Access code" msgstr "Code d'accès" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:66 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:66 msgid "" "Copy the code below, return to your application and paste the code to the " "right place." @@ -3666,14 +5169,17 @@ msgstr "" "bon endroit." #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:46 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:46 msgid "Erreur lors de votre authentification" msgstr "Erreur lors de votre authentification" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:61 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:61 msgid "Vous etes authentifie avec succes" msgstr "Vous êtes authentifié avec succès" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:67 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:67 msgid "" "Si cette fenetre ne se ferme pas automatiquement, fermez la, et " "raffraichissez votre compte" @@ -3682,32 +5188,253 @@ msgstr "" "rafraîchissez votre compte" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:57 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:57 msgid "Ce champ est decrit comme l'element DublinCore %element_name%" msgstr "Ce champ est décrit comme l'élément DublinCore %element_name%" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:63 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:63 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:83 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:147 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:63 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:63 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:128 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:83 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:127 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:63 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:83 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:83 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:147 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:127 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:63 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:83 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:93 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:93 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:128 msgid "Description" msgstr "Description" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:74 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:74 msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "" "Pour obtenir davantage d'informations, consulter le lien suivant %lien%" -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:55 -msgid "Return to login page" -msgstr "Retour à la page de connexion" +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:95 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:95 +msgid "Notify users about this publication" +msgstr "Notifier les utilisateurs à propos de cette publication." + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:99 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:69 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:99 +msgid "publication : titre" +msgstr "Titre de la publication" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:107 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:77 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:107 +msgid "publication : sous titre" +msgstr "Sous titre" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:115 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:85 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:115 +msgid "publication : autheur" +msgstr "Auteur" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:123 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:93 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:123 +msgid "publication : email autheur" +msgstr "Email de l'auteur" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:135 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:105 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:135 +msgid "Fils disponibles" +msgstr "Fils disponibles" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:174 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:232 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:174 +msgid "This feed is public" +msgstr "Ce flux est public" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:209 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:209 +msgid "boutton::publier" +msgstr "Publier" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:47 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 +msgid "Edition" +msgstr "Edition" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:145 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:57 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 +msgid "Sous-titre" +msgstr "Sous-titre" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:150 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:62 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 +msgid "Short description" +msgstr "Description brève" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:159 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:69 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 +msgid "Etendue de la publication" +msgstr "Etendue de la publication" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:170 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:75 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 +msgid "Non-Restreinte (publique)" +msgstr "Non restreinte (publique)" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:223 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:119 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 +msgid "Publique" +msgstr "Publique" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:245 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 +msgid "Liste des personnes habilitees a publier sur ce fil" +msgstr "Liste des utilisateurs autorisés à publier sur ce fil" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:252 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 +msgid "Id" +msgstr "Identifiant" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:257 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:171 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 +msgid "Email" +msgstr "Email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:261 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 +msgid "Owner" +msgstr "Propriétaire" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:360 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 +msgid "Ajouter un publisher" +msgstr "Ajouter un utilisateur" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:365 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 +msgid "Name or email" +msgstr "Nom ou email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:416 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 +msgid "You are not the feed owner" +msgstr "Vous n'êtes pas le propriétaire de ce flux" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:38 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:38 +msgid "report:: 1 - Periode" +msgstr "1 - Période" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:72 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:72 +msgid "report:: 2 - Bases" +msgstr "2 - Bases" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:20 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:20 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 +msgid "Limite temporelle" +msgstr "Liste temporelle" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:27 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:27 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:125 +msgid "Base %base%" +msgstr "Base %base%" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:50 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:488 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:58 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 +msgid "Activer" +msgstr "Activer" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:58 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:66 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 +msgid "De" +msgstr "De" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:73 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:81 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 +msgid "A" +msgstr "A" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:52 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 +msgid "Le champ doit contenir %minLength% caracteres minimum." +msgstr "Le champ doit contenir au minimum %minLength% caractères." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:65 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 +msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +msgstr "Le champ ne peut contenir plus de %maxLength% caractères." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:78 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 +msgid "Les indications donnees ci dessous sont a titre informatif." +msgstr "Les indications données ci-dessous sont à titre informatif." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:82 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 +msgid "" +"Si vous ne les respectez pas, les documents seront correctement indexes, " +"mais les metadonnees inscrites risquent d'etre erronnees" +msgstr "" +"Si vous ne les respectez pas, les documents seront correctement indexés, " +"mais les métadonnées inscrites risquent d’être erronées" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:89 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 +msgid "" +"Ces informations sont directement fournies par la norme de metadonnees de ce " +"champ : %norm_name%" +msgstr "" +"Ces informations sont directement fournies par la norme de métadonnées de ce " +"champ : %norm_name%" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:24 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:24 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:24 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:24 msgid "Details" msgstr "Détails" @@ -3715,27 +5442,36 @@ msgstr "Détails" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:381 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:41 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:25 msgid "Collection" msgstr "Collection" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:55 msgid "Subdef" msgstr "Sous définition" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:61 msgid "Number" msgstr "Nombre" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:65 msgid "Weight" msgstr "Poids" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:111 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:163 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 msgid "Total" msgstr "Total" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:194 msgid "Cumulative total" msgstr "Total cumulé" @@ -3753,149 +5489,287 @@ msgstr "Déconnexion" msgid "Back" msgstr "Retour" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 -msgid "Voici vos validations en cours" -msgstr "Voici vos validations en cours" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:93 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:204 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:93 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:204 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:51 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:154 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:51 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:178 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:151 +msgid "Connection" +msgstr "Connexion" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 -msgid "Voici vos paniers" -msgstr "Voici vos paniers" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:114 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:114 +msgid "Your account is locked, please follow the following link to unlock it" +msgstr "" +"Votre compte est verrouillé. Veuillez suivre le lien suivant pour le " +"déverrouiller." + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:122 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:122 +msgid "login:: Envoyer a nouveau le mail de confirmation" +msgstr "Envoyez moi à nouveau un e-mail de confirmation." + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:179 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:179 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:125 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:149 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:121 +msgid "Forgot password?" +msgstr "Mot de passe oublié ?" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:234 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:82 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:234 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:177 +msgid "Or login with" +msgstr "Ou se connecter avec" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:54 msgid "%value% like" msgstr "%value% like" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:60 msgid "%value% likes" msgstr "%value% likes" +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:46 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 +msgid "Download of documents" +msgstr "Téléchargement de documents" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:57 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 +msgid "" +"Please wait while your files are being gathered for the download, this " +"operation may take a few minutes." +msgstr "" +"Veuillez patienter pendant que vos fichiers sont rassemblés pour le " +"téléchargement. Cette opération peut prendre quelques minutes." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:75 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 +msgid "" +"Your documents are ready. If the download does not start, %before_link%click " +"here%after_link%" +msgstr "" +"Vos documents sont prêts. Si le téléchargement ne démarre pas, %before_link" +"%cliquez ici%after_link%." + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:88 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 +msgid "The file contains the following elements" +msgstr "Le fichier contient les éléments suivants :" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:95 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 +msgid "Base" +msgstr "Base" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:99 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:86 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:49 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:227 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +msgid "Name" +msgstr "Nom" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:103 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 +msgid "Sub definition" +msgstr "Sous-définitions" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:107 +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:80 +msgid "Size" +msgstr "Taille" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:111 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 +msgid "Thumbnail" +msgstr "Vignette" + #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:27 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:27 msgid "thesaurus:: export en topics" msgstr "Thèmes" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:118 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:118 msgid "thesaurus:: exporter" msgstr "Exporter" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:124 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:124 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Exporter pour toutes les langues" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:131 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:131 msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" msgstr "Exporter le thésaurus à l'ecran pour la langue %piv%" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:141 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:141 msgid "phraseanet:: tri" msgstr "Tri" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:147 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:147 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:533 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:537 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:533 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:537 msgid "phraseanet:: tri par date" msgstr "Tri par date" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:157 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:157 msgid "thesaurus:: recherche" msgstr "Recherche" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:163 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:163 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thésaurus *:\"recherche\"" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:170 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:170 msgid "thesaurus:: recherche fulltext" msgstr "Texte-plein" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:177 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:177 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Question complète (avec opérateurs)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:187 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:187 msgid "thesaurus:: presentation" msgstr "Options d'affichage" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:193 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:193 msgid "thesaurus:: presentation : branches refermables" msgstr "Reprendre l'affichage (navigable)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:200 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:200 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reprendre l'affichage (statique)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:207 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:207 msgid "thesaurus:: tout deployer - refermable" msgstr "Tout déployer (navigable)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:214 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:214 msgid "thesaurus:: tout deployer - statique" msgstr "Tout déployer (statique)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:221 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:221 msgid "thesaurus:: tout fermer" msgstr "Tout fermer (navigable)" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:104 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:104 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Utilisateurs uniques " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:125 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:125 msgid "admin::monitor: utilisateur" msgstr "Utilisateur" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:129 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:129 msgid "admin::monitor: modules" msgstr "Modules" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:831 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1528 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:416 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1528 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:85 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:133 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 msgid "phraseanet:: adresse" msgstr "Adresse" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:137 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:137 msgid "admin::monitor: date de connexion" msgstr "Date de connexion" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:141 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:141 msgid "admin::monitor: dernier access" msgstr "Dernière connexion" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:322 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:322 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Bases connectées " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:358 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:358 msgid "Session persistente" msgstr "Session persistente" #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:35 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:35 msgid "Granted bases" msgstr "Accès accordés aux bases" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:31 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:35 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:31 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:35 msgid "Empty quarantine" msgstr "Vider la quarantaine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:64 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:64 msgid "No document in quarantine" msgstr "Aucun document dans la quarantaine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:73 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:73 msgid "You do not have enough rights to access quarantine" msgstr "" "Vous ne disposez pas des autorisations suffisantes pour accéder à la " "quarantaine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:135 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:135 msgid "" "Empty quarantine will remove all items, are you sure you want to continue ?" msgstr "" @@ -3903,41 +5777,54 @@ msgstr "" "vous certain de vouloir continuer ?" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:342 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:342 msgid "Last uploaded version" msgstr "Dernière version ajoutée" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:354 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:354 msgid "Filename" msgstr "Nom du fichier" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:360 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:360 msgid "Date" msgstr "Date" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:374 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:374 msgid "Uploaded by : %username%" msgstr "Ajouté par : %username%" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:427 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:431 msgid "Substitute" msgstr "Substituer" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:466 msgid "A record matches the unique identifier :" msgstr "Un enregistrement correspond à un identifiant unique existant :" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:472 msgid "%record_count% records match the unique identifier :" msgstr "" "%record_count% enregistrements correspondent à des identifiants uniques " "existants :" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:26 msgid "No account yet?" msgstr "Pas encore inscrit ?" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:36 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:38 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:36 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:35 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:36 #: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:35 #: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:36 #: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:38 @@ -3945,332 +5832,48 @@ msgid "Register" msgstr "Inscription" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:39 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:39 msgid "reportage" msgstr "Reportage" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:45 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:45 msgid "image" msgstr "images" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:51 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:244 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:397 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:244 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:397 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:51 msgid "document" msgstr "documents" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:57 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:57 msgid "animation flash" msgstr "animations Flash" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:63 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:63 msgid "video" msgstr "vidéos" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:69 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:69 msgid "audio" msgstr "audios" -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 -msgid "thesaurus has been updated" -msgstr "Le thésaurus a été mis à jour" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 -msgid "phraseanet:: thesaurus" -msgstr "Thésaurus" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 -msgid "" -"Thesaurus ou CTerms invalide\n" -" effacer (OK) ou quitter (Annuler) ?" -msgstr "" -"Thesaurus ou CTerms invalide\n" -" Effacer (OK) ou Quitter (Annuler) ?" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 -msgid "First Name" -msgstr "Prénom" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 -msgid "Last Name" -msgstr "Nom" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 -msgid "Email Name" -msgstr "Adresse email" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 -msgid "Job" -msgstr "Poste" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 -msgid "City" -msgstr "Ville" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 -msgid "report:: 3 - Type de report" -msgstr "3 - Type de report" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 -msgid "report:: (connexions) Par utilisateurs" -msgstr "Groupé par utilisateurs" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 -msgid "report:: Grouper par" -msgstr "Grouper par" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 -msgid "report:: (connexions) Globales" -msgstr "Toutes les connexions" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 -msgid "report:: (connexions) OS et navigateurs" -msgstr "Plateformes et navigateurs" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 -msgid "report:: par utilisateurs" -msgstr "Par utilisateur" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 -msgid "report:: (telechargement) Global" -msgstr "Tous les téléchargements" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 -msgid "report:: (telechargement) Par jours base par base" -msgstr "Par Jour" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "Par document, sur la base" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 -msgid "report::aucune precision" -msgstr "Aucun filtre" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 -msgid "report::la description contient" -msgstr "la description contient" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 -msgid "report:: recordid" -msgstr "recordId" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 -msgid "report:: toutes les questions" -msgstr "Historique des questions" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 -msgid "report:: Les questions les plus posees" -msgstr "Questions les plus posées" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 -msgid "report:: document" -msgstr "Document" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 -msgid "report:: pushe" -msgstr "Poussé" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 -msgid "report:: ajoute" -msgstr "Ajouté" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 -msgid "report:: edite" -msgstr "Edité" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 -msgid "report:: valide" -msgstr "Validé" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 -msgid "Sent" -msgstr "Envoyé" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "Statistiques de visualisation" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 -msgid "preview::statistiques de telechargement" -msgstr "Statistiques de téléchargement" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 -msgid "admin::base:collection: Creer une collection" -msgstr "Créer une collection" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 -msgid "" -"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " -"collection" -msgstr "Collection non créée : vous devez donner un nom à la collection" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 -msgid "An error occured, please retry or contact an admin if problem persist" -msgstr "" -"Une erreur s'est produite. Veuillez réessayer ou contacter un administrateur " -"si le problème persiste." - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "Nom : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 -msgid "" -"admin::base:collection: Vous pouvez choisir une collection de reference pour " -"donenr des acces " -msgstr "Copier les droits utilisateur de la collection : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 -msgid "choisir" -msgstr "Choisir" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 -msgid "" -"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " -"pour continuer" -msgstr "" -"Vous êtes actuellement déconnecté de votre compte, vous devez vous connecter " -"pour continuer." - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 -msgid "login:: connexion" -msgstr "Connexion" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 -msgid "boutton::refresh" -msgstr "Rafraîchir" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 -msgid "Suppression de %n_element% playlists" -msgstr "Suppression de %n_element% liste(s) de lecture" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "Etes vous certain de vouloir supprimer %number% liste(s) de lecture ?" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 -msgid "status:: numero de bit" -msgstr "Status n°" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 -msgid "admin::status: case A" -msgstr "Off" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 -msgid "admin::status: texte a afficher" -msgstr "Texte affiché" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 -msgid "Labels" -msgstr "Libellés" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 -msgid "Symbolized by" -msgstr "Symbolisé par" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 -msgid "Select files..." -msgstr "Sélectionner des fichiers" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 -msgid "admin::status:: aucun symbole" -msgstr "Supprimer l'icône" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 -msgid "admin::status: case B" -msgstr "On" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 -msgid "" -"status:: Afficher le status dans les feuilles de reponses pour tous les " -"utilisateurs" -msgstr "" -"Afficher les symboles du status au-dessus des vignettes pour tous les " -"utilisateurs (si non cochés, seuls les utilisateurs ayant le droit d'éditer " -"les status les verront)." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "Activer les recherches sur ce status dans la recherche avancée." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 -msgid "" -"Invalid file type, only (%supported_file_types%) file formats are supported" -msgstr "" -"Type de fichier non supportés. Seuls les types de fichiers " -"%supported_file_types% sont supportés." - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 -msgid "veuillez choisir au minimum une collection" -msgstr "Veuillez choisir au moins une collection" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 -msgid "report::Heures" -msgstr "Heures" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 -msgid "report::Nombre de connexions" -msgstr "Nombre de connexions" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 -#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 -msgid "report:: jour" -msgstr "Jour" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 -msgid "report:: Heures" -msgstr "Heures" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 -msgid "report::Nombre de document ajoute" -msgstr "Nombre de documents ajoutés" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 -msgid "report::Nombre de document edite" -msgstr "Nombre de documents édités" - +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:25 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:31 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:25 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:31 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:649 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:781 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:944 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1025 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1196 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:25 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:31 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:649 @@ -4280,27 +5883,48 @@ msgstr "Nombre de documents édités" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1196 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:25 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:31 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:25 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:31 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:25 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:31 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:25 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:31 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:25 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:31 msgid "boutton::precedent" msgstr "précédent" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:37 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:37 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:37 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:37 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:37 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:37 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:37 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:37 msgid "boutton::demarrer" msgstr "Diaporama" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:43 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:43 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:43 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:43 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:43 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:43 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:43 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:43 msgid "boutton::pause" msgstr "Pause" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:49 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:55 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:49 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:55 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:539 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:655 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:787 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:950 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1031 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:49 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:55 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:539 @@ -4310,180 +5934,914 @@ msgstr "Pause" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1031 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:49 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:55 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:49 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:55 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:49 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:55 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:49 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:55 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:49 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:55 msgid "boutton::suivant" msgstr "suivant" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:61 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:61 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:61 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:61 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:266 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:61 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:61 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:266 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:61 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:61 msgid "boutton::telecharger" msgstr "Télécharger" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 -msgid "client::answers: rapport de questions par bases" -msgstr "Rapport de questions" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:27 +msgid "thesaurus has been updated" +msgstr "Le thésaurus a été mis à jour" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 -msgid "client::answers: %available_results% reponses" -msgstr "%available_results% résultats" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:46 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:247 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:30 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:267 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:29 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:310 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 +msgid "phraseanet:: thesaurus" +msgstr "Thésaurus" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 -msgid "action : ajouter au panier" -msgstr "Ajouter au panier" - -#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 -msgid "Security" -msgstr "Sécurité" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 -msgid "Client application" -msgstr "Application tierce" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 -msgid "Application" -msgstr "Application" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 -msgid "settings OAuth" -msgstr "Réglage Oauth" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 -msgid "Les parametres oauth de votre application." -msgstr "Les paramètres oauth de votre application." - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 -msgid "URL de callback" -msgstr "Url de Callback" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 -msgid "Modify" -msgstr "Modifier" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 -msgid "Activer le grant_type de type password pour votre application" -msgstr "Activer le grant_type de type password pour votre application" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 -msgid "Votre token d'access" -msgstr "Votre token d'accès" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 -msgid "Les paramétres oauth de votre application." -msgstr "Paramètres Oauth de l'application" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 -msgid "Token" -msgstr "Jeton" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 -msgid "Le token n'a pas encore ete genere" -msgstr "Le jeton n'a pas encore été généré" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 -msgid "boutton::generer" -msgstr "Générer" - -#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "Volumétrie des questions posées sur %home_title%" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:101 +msgid "" +"Thesaurus ou CTerms invalide\n" +" effacer (OK) ou quitter (Annuler) ?" +msgstr "" +"Thesaurus ou CTerms invalide\n" +" Effacer (OK) ou Quitter (Annuler) ?" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:60 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:30 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:37 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:211 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:30 #: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:30 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:35 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:263 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:35 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:233 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:220 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:37 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:35 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:233 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:30 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:60 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:35 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:263 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:220 msgid "Upload" msgstr "Ajouter" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:136 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 +msgid "nouveau" +msgstr "Nouveau" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:146 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 +msgid "Vers quel API voulez vous vous connecter ?" +msgstr "Vers quelle API voulez-vous vous connecter ?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:203 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 +msgid "Aucun bridge disponible. Veuillez contacter un administrateur." +msgstr "Aucun bridge disponible. Veuillez contacter un administrateur." + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:320 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 +msgid "You are about to delete this account. Would you like to continue ?" +msgstr "" +"Vous êtes sur le point de supprimer ce compte. Êtes-vous sûr de vouloir " +"continuer ?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:463 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:376 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:376 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 +msgid "Loading" +msgstr "Chargement en cours" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:558 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:54 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:52 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:52 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:54 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:52 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:558 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:52 msgid "Vous n'avez selectionne aucun element" msgstr "Aucun document sélectionné" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:567 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 +msgid "Vous n'avez pas assez de droits sur les elements selectionnes" +msgstr "" +"Vous ne disposez pas des droits suffisants sur les documents sélectionnés" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:576 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 +msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" +msgstr "" +"Vous ne disposez pas des droits sur certains des documents sélectionnés" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:152 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:269 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:411 +msgid "report:: 3 - Type de report" +msgstr "3 - Type de report" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:165 +msgid "report:: (connexions) Par utilisateurs" +msgstr "Groupé par utilisateurs" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:178 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:282 +msgid "report:: Grouper par" +msgstr "Grouper par" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:209 +msgid "report:: (connexions) Globales" +msgstr "Toutes les connexions" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:219 +msgid "report:: (connexions) OS et navigateurs" +msgstr "Plateformes et navigateurs" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:313 +msgid "report:: par utilisateurs" +msgstr "Par utilisateur" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:326 +msgid "report:: (telechargement) Global" +msgstr "Tous les téléchargements" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:336 +msgid "report:: (telechargement) Par jours base par base" +msgstr "Par Jour" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:346 +msgid "report:: (telechargement) Par documents sur la base" +msgstr "Par document, sur la base" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:351 +msgid "report::aucune precision" +msgstr "Aucun filtre" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:355 +msgid "report::la description contient" +msgstr "la description contient" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:359 +msgid "report:: recordid" +msgstr "recordId" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:428 +msgid "report:: toutes les questions" +msgstr "Historique des questions" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:438 +msgid "report:: Les questions les plus posees" +msgstr "Questions les plus posées" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:468 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 +msgid "report:: document" +msgstr "Document" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:475 +msgid "report:: pushe" +msgstr "Poussé" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:481 +msgid "report:: ajoute" +msgstr "Ajouté" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:487 +msgid "report:: edite" +msgstr "Edité" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:493 +msgid "report:: valide" +msgstr "Validé" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:499 +msgid "Sent" +msgstr "Envoyé" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:51 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:48 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 +msgid "Inscription" +msgstr "Inscription" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:57 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 +msgid "Complete the fields below to register on %instance_title%!" +msgstr "" +"Remplissez les champs ci-dessous pour vous inscrire sur %instance_title%." + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:153 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:149 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 +msgid "I have read the terms of use" +msgstr "J'ai lu les conditions d'utilisation" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:210 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:210 +msgid "Request access" +msgstr "Demande d'accès" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:41 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:41 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:41 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 +msgid "Edition de 1 element" +msgstr "Edition de 1 document" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:99 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:132 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:178 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:159 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:197 +msgid "Tags" +msgstr "Tags" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:115 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:99 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:160 +msgid "Categorie" +msgstr "Catégorie" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:148 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:148 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:204 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:234 +msgid "Confidentialite" +msgstr "Confidentialité" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:158 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:158 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 +msgid "privé" +msgstr "Privé" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:168 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:168 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:221 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:251 +msgid "public" +msgstr "Public" + +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:43 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:43 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 +msgid "Playlist" +msgstr "Liste de lecture" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:66 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 +msgid "General settings" +msgstr "Paramètre généraux" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:68 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 +msgid "your configuration" +msgstr "Votre configuration" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:79 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 +msgid "all caches services have been flushed" +msgstr "Tous les services de caches ont été purgés" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:94 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 +msgid "setup:: administrateurs de l'application" +msgstr "Administrateurs de l'application" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:130 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 +msgid "Add an admin" +msgstr "Ajouter un administrateur Phraseanet" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:147 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 +msgid "setup:: Reinitialisation des droits admins" +msgstr "Ré-initialisation des droits des administrateurs" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:151 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 +msgid "boutton::reinitialiser" +msgstr "Ré-initialiser" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:166 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 +msgid "setup::Tests d'envois d'emails" +msgstr "Tests d'envois d'e-mails" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:184 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 +msgid "Email test result : %email_status%" +msgstr "Résultat du test d'e-mail : %email_status%" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:206 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 +msgid "Reset cache" +msgstr "Réinitialiser le cache" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:258 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 +msgid "Requirements" +msgstr "Prérequis" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:308 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 +msgid "Recommendations" +msgstr "Recommandation" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:27 +msgid "preview::statistiques de visualisation pour le lien" +msgstr "Statistiques de visualisation" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:58 +msgid "preview::statistiques de telechargement" +msgstr "Statistiques de téléchargement" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:285 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:22 +msgid "admin::base:collection: Creer une collection" +msgstr "Créer une collection" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:34 +msgid "" +"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " +"collection" +msgstr "Collection non créée : vous devez donner un nom à la collection" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:45 +msgid "An error occured, please retry or contact an admin if problem persist" +msgstr "" +"Une erreur s'est produite. Veuillez réessayer ou contacter un administrateur " +"si le problème persiste." + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:61 +msgid "admin::base:collection: Nom de la nouvelle collection : " +msgstr "Nom : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:406 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:70 +msgid "" +"admin::base:collection: Vous pouvez choisir une collection de reference pour " +"donenr des acces " +msgstr "Copier les droits utilisateur de la collection : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:411 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1871 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:85 +msgid "choisir" +msgstr "Choisir" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:24 +msgid "" +"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " +"pour continuer" +msgstr "" +"Vous êtes actuellement déconnecté de votre compte, vous devez vous connecter " +"pour continuer." + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:35 +msgid "login:: connexion" +msgstr "Connexion" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:69 +msgid "boutton::refresh" +msgstr "Rafraîchir" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:56 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:56 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 +msgid "Vous devez remplir les champs requis" +msgstr "Vous devez remplir les champs requis" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:35 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:35 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 +msgid "status:: numero de bit" +msgstr "Status n°" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:49 +msgid "admin::status: case A" +msgstr "Off" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:55 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:175 +msgid "admin::status: texte a afficher" +msgstr "Texte affiché" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:93 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:213 +msgid "Labels" +msgstr "Libellés" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:124 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:244 +msgid "Symbolized by" +msgstr "Symbolisé par" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:412 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:69 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:132 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:252 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:399 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:455 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:511 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:567 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:123 +msgid "Select files..." +msgstr "Sélectionner des fichiers" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:154 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:274 +msgid "admin::status:: aucun symbole" +msgstr "Supprimer l'icône" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:169 +msgid "admin::status: case B" +msgstr "On" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:294 +msgid "" +"status:: Afficher le status dans les feuilles de reponses pour tous les " +"utilisateurs" +msgstr "" +"Afficher les symboles du status au-dessus des vignettes pour tous les " +"utilisateurs (si non cochés, seuls les utilisateurs ayant le droit d'éditer " +"les status les verront)." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:304 +msgid "status:: retrouver sous forme de filtre dans la recherche" +msgstr "Activer les recherches sur ce status dans la recherche avancée." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:696 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:350 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:594 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:146 +msgid "" +"Invalid file type, only (%supported_file_types%) file formats are supported" +msgstr "" +"Type de fichier non supportés. Seuls les types de fichiers " +"%supported_file_types% sont supportés." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:43 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:43 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 +msgid "Quarantine" +msgstr "Quarantaine" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:70 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:77 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 +msgid "maximum : %maxFileSizeReadable%" +msgstr "maximum : %maxFileSizeReadable%" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:77 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:84 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 +msgid "You are using the Flash uploader." +msgstr "Vous utilisez l'uploader Flash" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:87 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 +msgid "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" +msgstr "" +"Cette version ne permet pas d'utiliser toutes les fonctionnalités offertes " +"par l'uploader HTML5" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:94 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 +msgid "Use the HTML5 uploader" +msgstr "Utiliser l'uploader HTML5" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:104 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:118 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 +msgid "upload:: Destination (collection) :" +msgstr "Destination" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:191 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:202 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 +msgid "upload:: Status :" +msgstr "Appliquer les status" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:287 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:354 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 +msgid "You can not upload files" +msgstr "Vous ne pouvez ajouter des fichiers" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:299 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 +msgid "Selected files" +msgstr "Fichiers sélectionnés" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:303 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:308 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 +msgid "Clear list" +msgstr "Vider la liste" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:318 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:324 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 +msgid "Transmited files" +msgstr "Fichiers transmis" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:324 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:336 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 +msgid "Cancel all" +msgstr "Annuler tout" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:457 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 +msgid "You have attempted to queue too many files" +msgstr "Trop de fichiers dans la file d'attente" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:464 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 +msgid "Unknow Error" +msgstr "Erreur inconnue" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:474 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 +msgid "Cannot upload Zero Byte files" +msgstr "Impossible d'uploader un fichier vide" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:480 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:584 +msgid "Invalid file type" +msgstr "Type de fichier non valide" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:487 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 +msgid "Unhandled Error" +msgstr "Erreur non gérée" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:520 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 +msgid "Unknow reason" +msgstr "Raison inconnue" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:527 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 +msgid "Bad request, please contact an admin" +msgstr "Requête invalide. Veuillez contacter un administrateur" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:533 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 +msgid "Upload URL is not set, please contact an admin" +msgstr "" +"L'URL d'upload n'est pas paramétrée. Veuillez contacter un administrateur" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:539 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 +msgid "Connection terminates unexpetecdly, please retry" +msgstr "" +"La connexion s'est terminée de manière inattendue. Veuillez contacter un " +"administrateur" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:545 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 +msgid "The upload violates a security restriction, please retry" +msgstr "" +"L'upload va à l'encontre de restrictions de sécurité. Veuillez réessayer" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:551 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 +msgid "File upload limit (%maxFileSizeReadable%) has been reached" +msgstr "La limite fixée pour un upload a été atteinte (%maxFileSizeReadable%)" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:557 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 +msgid "Could not initiate upload, please retry" +msgstr "Initialisation de l'upload impossible. Veuillez réessayer" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:563 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 +msgid "" +"Could not retrieve the file ID, please retry or contact an admin if problem " +"persist" +msgstr "" +"Impossible de récupérer l'identifiant du fichier. Veuillez réessayer et " +"contacter un administrateur si le problème persiste." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:569 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 +msgid "File validation failed" +msgstr "La validation de fichier a échoué" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:575 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 +msgid "File upload has been cancelled" +msgstr "L'upload des fichiers a été interrompu" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:581 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 +msgid "File upload has been stopped" +msgstr "L'upload des fichiers a été interrompu" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:588 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 +msgid "Error while uploading" +msgstr "Une erreur est survenue pendant l'upload" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:682 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 +msgid "Please select at least one valid file" +msgstr "Sélectionnez au moins un fichier autorisé" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:80 +msgid "client::answers: rapport de questions par bases" +msgstr "Rapport de questions" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:101 +msgid "client::answers: %available_results% reponses" +msgstr "%available_results% résultats" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:50 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 +msgid "Completion of your registration" +msgstr "Terminer l'inscription" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:69 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 +msgid "Please complete the information to complete your registration" +msgstr "" +"Veuillez compléter les informations suivantes pour compléter votre " +"inscription." + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:134 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 +msgid "Mandatory fields" +msgstr "Champs obligatoires" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:173 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 +msgid "Resquest access" +msgstr "Demande d'accès" + +#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 +#: tmp/cache_twig/aa/4e/eb6c877afea8239b78d4f3a1e02a6a5341ad8ea4fef1456ffc2c5532dae9.php:23 +msgid "Security" +msgstr "Sécurité" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:35 +msgid "Client application" +msgstr "Application tierce" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:46 +msgid "Application" +msgstr "Application" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:68 +msgid "settings OAuth" +msgstr "Réglage Oauth" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:72 +msgid "Les parametres oauth de votre application." +msgstr "Les paramètres oauth de votre application." + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:94 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:157 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 +msgid "URL de callback" +msgstr "Url de Callback" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:126 +msgid "Modify" +msgstr "Modifier" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:151 +msgid "Activer le grant_type de type password pour votre application" +msgstr "Activer le grant_type de type password pour votre application" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:173 +msgid "Votre token d'access" +msgstr "Votre token d'accès" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:177 +msgid "Les paramétres oauth de votre application." +msgstr "Paramètres Oauth de l'application" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:186 +msgid "Token" +msgstr "Jeton" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:202 +msgid "Le token n'a pas encore ete genere" +msgstr "Le jeton n'a pas encore été généré" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:212 +msgid "boutton::generer" +msgstr "Générer" + +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:62 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 +msgid "Create an account manually" +msgstr "Créez un compte manuellement" + +#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 +#: tmp/cache_twig/b7/0f/7aa39ae06305bf2523f0b48646f315a3568a7f17c1336ef36524a7646498.php:169 +msgid "report:: Volumetrie des questions posees sur %home_title%" +msgstr "Volumétrie des questions posées sur %home_title%" + #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:58 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:56 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:56 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:58 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:56 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:56 msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" msgstr "" "Les documents ne peuvent être ajoutés (problème de type de fichiers ou de " "droits)" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:61 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:61 msgid "Le bridge FlickR ne prend en charge que les photos" msgstr "Le Bridge Flickr ne prend en charge que les photos" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:71 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:71 msgid "%n_elements% elements ne peuvent etre uploades" msgstr "%n_elements% documents ne peuvent être ajoutés" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:83 #, php-format msgid "Upload sur Flickr de %elements_length% elements" msgstr "Upload sur Flickr de %elements_length% elements" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 -msgid "Titre" -msgstr "Titre" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 -msgid "Tags" -msgstr "Tags" - #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:197 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:197 msgid "2000 caracteres maximum, separe par des espaces" msgstr "2000 caractères maximum, séparés par des espaces" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:40 -msgid "report:: 1 - Periode" -msgstr "1 - Période" - -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:70 -msgid "report:: 2 - Bases" -msgstr "2 - Bases" +#: tmp/cache_twig/40/63/092bad36e7ddb1be21251c76b7ae07f9bd347b7e0a473d74c9344f5ae86c.php:54 +#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 +msgid "Incorrect please try again" +msgstr "Incorrect. Veuillez réessayer" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:39 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:39 msgid "Change my email address" msgstr "Changer mon adresse e-mail" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:89 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:89 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Nouvelle adresse e-mail" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:99 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:99 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Confirmer l'adresse e-mail" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:120 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:120 msgid "" "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " "changer mon adresse email ?" @@ -4491,6 +6849,7 @@ msgstr "" "Pourquoi me demande t-on mon mot de passe, pour changer mon adresse e-mail ?" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:125 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:125 msgid "" "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " "perte de votre mot de passe afin de pouvoir le reinitialiser, il est " @@ -4500,31 +6859,69 @@ msgstr "" "pouvoir le réinitialiser, il est important que vous soyez la seule personne " "à pouvoir la changer." +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:84 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:91 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 +msgid "You are using the HTML5 uploader." +msgstr "Vous utilisez l'uploader HTML5" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:97 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 +msgid "Your browser does not support all HTML5 features properly." +msgstr "Votre navigateur ne supporte pas toutes les fonctionnalités de HTML5" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:107 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 +msgid "Use the Flash uploader" +msgstr "Utiliser l'uploader Flash" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:304 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 +msgid "%quantity%selected files" +msgstr "%quantity% fichiers sélectionnés." + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:33 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 +msgid "admin::base: objet" +msgstr "Objet" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:37 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 +msgid "admin::base: nombre" +msgstr "Nombre" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:41 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:45 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 +msgid "admin::base: poids" +msgstr "Taille" + #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:33 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:33 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:33 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:33 msgid "Creer une playlist" msgstr "Créer une liste de lecture" #: tmp/cache_twig/43/8b/3aebe83dca4c51e99b80c87c269b.php:26 +#: tmp/cache_twig/5a/95/cbfb14ffec5d45fdbe9e888e221cfd3d5c2185e3d55529cf005d7b2069b8.php:26 msgid "Technical Informations" msgstr "Informations techniques" -#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 -#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 -#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 -msgid "boutton::modifier" -msgstr "Modifier" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:213 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:213 msgid "Create new subdef" msgstr "Créer une nouvelle sous résolution" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:217 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:217 msgid "Delete the subdef ?" msgstr "Supprimer cette sous résolution" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:223 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:223 msgid "" "These subdef will be permanently deleted and cannot be recovered. Are you " "sure?" @@ -4533,88 +6930,106 @@ msgstr "" "résolution? Cette opération est irréversible" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:234 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:234 msgid "Subdef name" msgstr "Nom de la sous résolution" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:239 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:239 msgid "classe d'acces" msgstr "Classe des sous résolutions" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:248 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:405 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:248 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:405 msgid "preview" msgstr "Sous Résolution" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:252 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:413 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:252 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:413 msgid "tout le monde" msgstr "Tout le monde" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:359 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:359 msgid "Telechargeable" msgstr "Téléchargeable" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:377 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:389 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:377 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:389 msgid "classe" msgstr "Classe" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:439 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:439 msgid "Write Metas" msgstr "Ecriture des métadonnées" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:460 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:460 msgid "mediatype" msgstr "Type média" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 -msgid "Choisir" -msgstr "Choisir" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:639 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:207 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:178 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:178 msgid "yes" msgstr "Oui" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:648 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:213 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:174 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:174 #: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:61 msgid "no" msgstr "Non" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:29 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:29 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:29 msgid "Fail" msgstr "Echec de la publication" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1359 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:35 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1359 msgid "Success" msgstr "Succès" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:110 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:110 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:110 msgid "Erreur" msgstr "Erreur" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:117 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:117 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:117 msgid "%error%" msgstr "%error%" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:133 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:133 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:133 msgid "Code d'acces" msgstr "Code d'accès" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:140 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:140 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:140 msgid "" "Copiez le code ci-dessous, retournez dans votre application et collez-le " "à l'endroit requis :" @@ -4622,577 +7037,122 @@ msgstr "" "Copiez le code ci-dessous, retournez dans votre application et collez-le à " "l'endroit requis :" -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 -#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 -msgid "thesaurus:: export au format texte" -msgstr "Texte" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 -msgid "thesaurus:: options d'export : " -msgstr "Export " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 -msgid "thesaurus:: example" -msgstr "exemple" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "Synonyme(s) sur la même ligne" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "Une ligne par synonyme" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "Numéroter les lignes " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 -msgid "thesaurus:: export : inclure la langue" -msgstr "Inclure la langue" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 -msgid "thesaurus:: export : inclure les hits" -msgstr "Inclure le nombre de résultats" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 -msgid "Do not forget to restart the tasks scheduler" -msgstr "N'oubliez pas de redémarrer le Gestionnaire de tâches." - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 -msgid "version" -msgstr "Version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 -msgid "admin::base: Version" -msgstr "Version" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "Votre application nécessite une mise à jour vers : " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 -msgid "update::Votre version est a jour : " -msgstr "Votre version est à jour : " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 -msgid "Propositions de modifications des tables" -msgstr "Proposition(s) de modification des tables" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 -msgid "update::Verifier els tables" -msgstr "Réparer les tables" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 -msgid "admin::base: creer une base" -msgstr "Créer une base" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -msgid "" -"phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "Créer une base sur un autre serveur" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 -msgid "phraseanet:: hostname" -msgstr "Nom de l'hôte" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 -msgid "phraseanet:: port" -msgstr "Port" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 -msgid "phraseanet:: user" -msgstr "Utilisateur" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 -msgid "phraseanet:: password" -msgstr "Mot de passe" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 -msgid "phraseanet:: dbname" -msgstr "Nom de la base" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 -msgid "phraseanet:: Modele de donnees" -msgstr "Modèles de structure XML" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "boutton::creer" -msgstr "Créer" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 -msgid "admin::base: Monter une base" -msgstr "Monter une base" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 -msgid "" -"phraseanet:: Monter une base provenant d'un serveur different de " -"l'application box" -msgstr "Monter une base provenant d'un serveur different de l'application box" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 -msgid "boutton::monter" -msgstr "Monter" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 -msgid "Inscription" -msgstr "Inscription" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 -msgid "Create an account manually" -msgstr "Créez un compte manuellement" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 -msgid "Or login with" -msgstr "Ou se connecter avec" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 -msgid "Connection" -msgstr "Connexion" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 -msgid "Your account is locked, please follow the following link to unlock it" -msgstr "" -"Votre compte est verrouillé. Veuillez suivre le lien suivant pour le " -"déverrouiller." - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "Envoyez moi à nouveau un e-mail de confirmation." - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 -msgid "Forgot password?" -msgstr "Mot de passe oublié ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 -msgid "element(s)" -msgstr "élément(s)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 -msgid "User contribute to the feedback" -msgstr "L'utilisateur peut participer aux demandes de validations" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 -msgid "User can see others choices" -msgstr "L'utilisateur peut consulter les choix des autres utilisateurs" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 -msgid "User can download HD" -msgstr "L'utilisateur peut télécharger des documents HD" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "New list name ?" -msgstr "Nom de la nouvelle liste ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Are you sure you want to delete this list ?" -msgstr "Voulez-vous vraiment supprimer cette liste?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "Time for feedback (days)" -msgstr "Durée de la validation (en jours)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Name" -msgstr "Nom" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Message" -msgstr "Message" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Accuse de reception" -msgstr "Accusé de réception" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 -msgid "Apparait aussi dans ces reportages" -msgstr "Aussi dans les reportages suivants" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 -msgid "Apparait aussi dans ces paniers" -msgstr "Aussi dans les paniers suivants" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 -msgid "%displayName% wants to place an order" -msgstr "%displayName% souhaite passer une commande" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 -msgid "Destinataire" -msgstr "Destinataire" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 -msgid "Date de commande" -msgstr "Date de commande" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 -msgid "Nombre total d'element commandes" -msgstr "Nombre total d'éléments commandés" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 -msgid "" -"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " -"elements correspondants aux collections sur lesquelles vous gerez les " -"commandes" -msgstr "" -"La vue de cette commande est peut être incomplète, vous ne pouvez voir que " -"les documents provenant de collections sur lesquelles vous gérez les " -"commandes." - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 -msgid "Document refuse par %name%" -msgstr "Document refusé par %name%" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 -msgid "Forcer l'envoi du document" -msgstr "Forcer l'envoi du document" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 -msgid "Document envoye par %name%" -msgstr "Document envoyé par %name%" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 -msgid "Selectionnez des documents et " -msgstr "Sélectionnez des documents et " - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "Refuser" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 -msgid "Retour aux commandes" -msgstr "Retour aux commandes" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 -msgid "Story_id" -msgstr "Story_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 -msgid "Record_id" -msgstr "Record_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 -msgid "Nom Original" -msgstr "Nom original" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 -msgid "Size" -msgstr "Taille" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 -msgid "Camera Model" -msgstr "Type d'appareil numérique" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 -msgid "Color space" -msgstr "Espace colorimétrique" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 -msgid "Channels" -msgstr "Canaux" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 -msgid "Color Depth" -msgstr "Profondeur colorimétrique" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 -msgid "ISO sensibility" -msgstr "Sensibilité ISO" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 -msgid "Flash" -msgstr "Flash" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 -msgid "Shutter speed" -msgstr "Vitesse d'obturateur" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 -msgid "Aperture" -msgstr "Ouverture" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 -msgid "Focal length" -msgstr "Longueur de focale" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 -msgid "Hyperfocal distance" -msgstr "Distance hyper focale" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 -msgid "Light Value" -msgstr "Luminance" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 -msgid "Duree" -msgstr "Durée" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 -msgid "Images par secondes" -msgstr "Images par seconde" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 -msgid "Codec Audio" -msgstr "Codec audio" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 -msgid "Codec Video" -msgstr "Codec vidéo" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 -msgid "Frequence d'echantillonage" -msgstr "Fréquence d'échantillonnage" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 -msgid "Back to basket list" -msgstr "Retour à la liste des paniers" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 -msgid "No records" -msgstr "Aucun enregistrement" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 -msgid "1 record" -msgstr "1 enregistrement" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 -msgid "%ElementsCount% records" -msgstr "%ElementsCount% enregistrement(s)" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 -msgid "Fichiers envoyes" -msgstr "Documents envoyés" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 -msgid "phraseanet:: deconnection" -msgstr "Déconnexion" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 -msgid "Terms of service" -msgstr "Conditions Générales d'Utilisation" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 -msgid "Quarantine" -msgstr "Quarantaine" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 -msgid "maximum : %maxFileSizeReadable%" -msgstr "maximum : %maxFileSizeReadable%" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 -msgid "You are using the HTML5 uploader." -msgstr "Vous utilisez l'uploader HTML5" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 -msgid "Your browser does not support all HTML5 features properly." -msgstr "Votre navigateur ne supporte pas toutes les fonctionnalités de HTML5" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 -msgid "Use the Flash uploader" -msgstr "Utiliser l'uploader Flash" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 -msgid "upload:: Destination (collection) :" -msgstr "Destination" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 -msgid "upload:: Status :" -msgstr "Appliquer les status" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 -msgid "%quantity%selected files" -msgstr "%quantity% fichiers sélectionnés." - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 -msgid "Clear list" -msgstr "Vider la liste" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 -msgid "Transmited files" -msgstr "Fichiers transmis" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 -msgid "Cancel all" -msgstr "Annuler tout" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 -msgid "You can not upload files" -msgstr "Vous ne pouvez ajouter des fichiers" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 -msgid "Limite temporelle" -msgstr "Liste temporelle" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 -msgid "Base %base%" -msgstr "Base %base%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 -msgid "Collection %collection%" -msgstr "Collection %collection%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 -msgid "Activer" -msgstr "Activer" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 -msgid "De" -msgstr "De" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 -msgid "A" -msgstr "A" - +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:65 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:65 msgid "Erreur lors du contact avec le serveur WEB" msgstr "Erreur de connexion avec le serveur web" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:69 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:69 msgid "Delai depasse lors du contact avec le serveur WEB" msgstr "Délai dépassé lors de la connexion avec le serveur web" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:73 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:73 msgid "Required" msgstr "Obligatoire" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:77 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:77 msgid "forms::merci d'entrer une adresse e-mail valide" msgstr "Veuillez saisir une adresse e-mail valide" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:81 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:85 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:81 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:85 msgid "forms::ce champ est requis" msgstr "Ce champ est requis" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:89 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:89 msgid "forms::les mots de passe ne correspondent pas" msgstr "Les mots de passe ne correspondent pas" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:93 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:93 msgid "Vous devez specifier une adresse email et un mot de passe valides" msgstr "Vous devez spécifier une adresse e-mail et un mot de passe valides" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:97 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:97 msgid "Le nom de base de donnee est incorrect" msgstr "Le nom de base de données est incorrect" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:101 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:101 msgid "Il y a des erreurs, merci de les corriger avant de continuer" msgstr "Il y a des erreurs, veuillez les corriger avant de continuer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:108 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:108 msgid "forms::le mot de passe est trop similaire a l'identifiant" msgstr "Trop similaire à l'identifiant" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:112 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:112 msgid "forms::la valeur donnee est trop courte" msgstr "Trop court" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:116 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:120 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:116 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:120 msgid "forms::le mot de passe est trop simple" msgstr "Trop simple" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:124 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:124 msgid "forms::le mot de passe est bon" msgstr "Bon" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:128 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:128 msgid "forms::le mot de passe est tres bon" msgstr "Très bon" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:174 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:174 msgid "Veuillez corriger les erreurs avant de poursuivre" msgstr "Veuillez corriger les erreurs avant de poursuivre" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:319 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:319 msgid "Successfull connection" msgstr "Connexion réussie" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:325 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:325 msgid "Warning, this database is not empty" msgstr "Attention cette base n'est pas vide" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:338 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:338 msgid "Connection is OK but database does not exists or can not be accessed" msgstr "" "Connexion réussie mais la base de données n'existe pas ou n'est pas " "accessible." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:345 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:357 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:365 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:345 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:357 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:365 msgid "Unable to connect to MySQL server" msgstr "Connexion impossible avec le serveur MySQL" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:417 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:417 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Bonjour, vous êtes sur le point d'installer Phraseanet." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:423 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:423 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Consultez en ligne les pré-requis et la configuration du serveur web" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:429 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:429 msgid "" "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage " @@ -5203,6 +7163,7 @@ msgstr "" "pour vos documents, et de configurer votre serveur web pour qu'il publie " "certains de ces répertoires de stockage." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:439 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:439 msgid "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " @@ -5211,26 +7172,32 @@ msgstr "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " "continuer sans corriger ces problèmes." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:499 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:499 msgid "Review system configuration" msgstr "Examen de la configuration du système" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:521 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:521 msgid "Prerequisite and Configuration" msgstr "Prérequis et Configuration" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:555 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:555 msgid "Executables externes" msgstr "Exécutables externes" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:598 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:598 msgid "Required field" msgstr "Champ obligatoire" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:622 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:622 msgid "Phraseanet may require many binaries." msgstr "Phraseanet peut utiliser de nombreux éxécutables" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:628 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:628 msgid "" "Some of them are required, like the indexer, Exiftool or ImageMagick " @@ -5241,30 +7208,37 @@ msgstr "" "sont facultatifs comme FFmpeg utilisé pour construire les sous résolutions " "des Vidéos" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:634 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:634 msgid "Don't worry, You can modify your configuration later" msgstr "Vous pouvez modifier cette configuration plus tard" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:673 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:673 msgid "Creation de votre compte" msgstr "Création de votre compte" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:685 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:685 msgid "Votre adresse email" msgstr "Votre adresse email" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:692 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:692 msgid "Votre mot de passe" msgstr "Votre mot de passe" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:711 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:711 msgid "Confirmation de votre mot de passe" msgstr "Confirmation de votre mot de passe" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:721 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:721 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "A propos de la sécurité des mots de passe :" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:725 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:725 msgid "" "admin::compte-utilisateur Les mots de passe doivent etre clairement " @@ -5274,63 +7248,89 @@ msgstr "" "Les mots de passe doivent être clairement distincts du login et contenir au " "moins deux types parmi les caractères suivants :" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:730 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:730 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Spéciaux" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:734 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:734 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Majuscules" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:738 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:738 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Minuscules" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:742 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:742 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Numériques" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:762 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:762 msgid "Your email will be used to log in the application." msgstr "Votre adresse email sera utilisée pour vous connecter à l'application" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:766 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:766 msgid "Please be sure it is still valid and you can access it" msgstr "Assurez vous que cette adresse est valide et que vous y accédez" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:811 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:811 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "Configuration de la base de compte ApplicationBox" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:824 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1060 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:824 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1060 msgid "MySQL database connection parameters" msgstr "Paramètres de connexion à la base de données MySQL" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:838 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:838 msgid "Database user" msgstr "Utilisateur" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:852 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 +#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:247 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:328 +msgid "phraseanet:: port" +msgstr "Port" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:859 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1075 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:859 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1075 msgid "Database" msgstr "Base de données" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:867 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1083 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:867 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1083 msgid "boutton::tester" msgstr "Tester" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:887 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:887 msgid "" "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage " "d'options%fin_lien%" msgstr "%debut_lien%Afficher davantage d'options%fin_lien%" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:906 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:906 msgid "ApplicationBox is a Mysql database." msgstr "l'ApplicationBox est une base de données Mysql ." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:912 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:912 msgid "" "It stores users datas, rights, and references to DataBoxes where records are " @@ -5339,6 +7339,7 @@ msgstr "" "Elle stocke les informations utilisateurs et les références vers les " "DataBoxes où les documents sont stockés" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:924 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:924 msgid "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " @@ -5347,14 +7348,17 @@ msgstr "" "Phraseanet recommande fortement l'utilisation de %link_start%MariaDB%link_end" "% à la place de MySQL." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:968 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:968 msgid "setup::Configuration des repertoires de stockage" msgstr "Configuration des répertoires de stockage" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:980 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:980 msgid "Repertoire de stockage des fichiers" msgstr "Répertoire de stockage des fichiers" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:998 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:998 msgid "" "Your medias and their subdefinitions (previews, thumbnails..) will be stored " @@ -5363,6 +7367,7 @@ msgstr "" "Vos documents et leurs sous résolutions (sous définitions, vignettes...) " "seront stockés dans ces répertoires" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1004 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1004 msgid "" "Thumbnails directory is mounted to be accessible via HTTP, while other files " @@ -5371,6 +7376,7 @@ msgstr "" "Le répertoire des vignettes est monté pour être accessible en HTTP, les " "autres non." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1010 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1010 msgid "" "If you plan to store large files, be sure it will fit in these directories." @@ -5378,22 +7384,27 @@ msgstr "" "Si vous prévoyez de stocker des fichiers volumineux, assurez vous que les " "répertoires de stockages sont prévus pour." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1048 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1048 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Configuration de la base de stockage DataBox" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1067 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1067 msgid "Ne pas creer de DataBox maintenant" msgstr "Ne pas créer de DataBox maintenant" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1095 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1095 msgid "Modele de donnees" msgstr "Modèle de données" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1126 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1126 msgid "Creation des taches" msgstr "Création des tâches" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1131 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1131 msgid "" "Phraseanet embarque un moteur de taches pour la lecture / ecriture des " @@ -5402,18 +7413,22 @@ msgstr "" "Phraseanet embarque un moteur de tâches pour la lecture / écriture des " "métadonnées, et réaliser d'autres opérations" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1142 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1142 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Créer la tâche d'écriture des métadonnées" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1151 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1151 msgid "Creer la tache de creation des sous-definitions" msgstr "Créer la tâche de création des sous-définitions" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1160 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1160 msgid "Creer la tache d'indexation" msgstr "Créer la tâche d'indexation" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1177 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1177 msgid "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " @@ -5422,37 +7437,645 @@ msgstr "" "Les Databoxes Phraseanet sont des bases de données MySQL, requêtables par " "l'ApplicationBox Phraseanet." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1181 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1181 msgid "Databoxes store records, metadatas and their classifications" msgstr "" "Les Databoxes stockent les enregistrements, métadonnées et leurs " "classifications" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1202 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1202 msgid "button::Install" msgstr "Installer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1212 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1212 msgid "Install in progess" msgstr "Installation en cours" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1218 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1218 msgid "Installation is currenlty processing, please wait..." msgstr "L'installation est en cours, patientez..." +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:76 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 +msgid "%nb_elements% elements" +msgstr "%nb_elements% document(s)" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:158 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 +msgid "Imagette indisponible" +msgstr "Vignette indisponible" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:207 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 +msgid "Aucune description." +msgstr "Aucune description" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:229 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 +msgid "dans %category%" +msgstr "dans %category%" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:245 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 +msgid "Confidentialite : privee" +msgstr "Privée" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:251 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 +msgid "Confidentialite : publique" +msgstr "Publique" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:71 +msgid "Do not forget to restart the tasks scheduler" +msgstr "N'oubliez pas de redémarrer le Gestionnaire de tâches." + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:101 +msgid "version" +msgstr "Version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:132 +msgid "admin::base: Version" +msgstr "Version" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:140 +msgid "update::Votre application necessite une mise a jour vers : " +msgstr "Votre application nécessite une mise à jour vers : " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:148 +msgid "update::Votre version est a jour : " +msgstr "Votre version est à jour : " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:189 +msgid "Propositions de modifications des tables" +msgstr "Proposition(s) de modification des tables" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:217 +msgid "update::Verifier els tables" +msgstr "Réparer les tables" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:225 +msgid "admin::base: creer une base" +msgstr "Créer une base" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 +msgid "" +"phraseanet:: Creer une base sur un serveur different de l'application box" +msgstr "Créer une base sur un autre serveur" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 +msgid "phraseanet:: hostname" +msgstr "Nom de l'hôte" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:252 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:333 +msgid "phraseanet:: user" +msgstr "Utilisateur" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:257 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:338 +msgid "phraseanet:: password" +msgstr "Mot de passe" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:263 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:344 +msgid "phraseanet:: dbname" +msgstr "Nom de la base" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:268 +msgid "phraseanet:: Modele de donnees" +msgstr "Modèles de structure XML" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:297 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 +msgid "boutton::creer" +msgstr "Créer" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:306 +msgid "admin::base: Monter une base" +msgstr "Monter une base" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:317 +msgid "" +"phraseanet:: Monter une base provenant d'un serveur different de " +"l'application box" +msgstr "Monter une base provenant d'un serveur different de l'application box" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 +msgid "boutton::monter" +msgstr "Monter" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:27 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 +msgid "%displayName% wants to place an order" +msgstr "%displayName% souhaite passer une commande" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:82 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 +msgid "Destinataire" +msgstr "Destinataire" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:94 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 +msgid "Date de commande" +msgstr "Date de commande" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:124 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 +msgid "Nombre total d'element commandes" +msgstr "Nombre total d'éléments commandés" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:136 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 +msgid "" +"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " +"elements correspondants aux collections sur lesquelles vous gerez les " +"commandes" +msgstr "" +"La vue de cette commande est peut être incomplète, vous ne pouvez voir que " +"les documents provenant de collections sur lesquelles vous gérez les " +"commandes." + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:179 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 +msgid "Document refuse par %name%" +msgstr "Document refusé par %name%" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:188 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 +msgid "Forcer l'envoi du document" +msgstr "Forcer l'envoi du document" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:211 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 +msgid "Document envoye par %name%" +msgstr "Document envoyé par %name%" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:259 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 +msgid "Selectionnez des documents et " +msgstr "Sélectionnez des documents et " + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:266 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:95 +#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 +msgid "Deny" +msgstr "Refuser" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:270 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 +msgid "Retour aux commandes" +msgstr "Retour aux commandes" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:37 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 +msgid "you are about to change the representation thumbnail of your video" +msgstr "Vous vous apprêtez à changer la vignette de représentation de la vidéo" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:47 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 +msgid "do you want to validate" +msgstr "Souhaitez vous valider l'opération?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:69 +msgid "element(s)" +msgstr "élément(s)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:111 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:115 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 +msgid "User contribute to the feedback" +msgstr "L'utilisateur peut participer aux demandes de validations" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:122 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:126 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +msgid "User can see others choices" +msgstr "L'utilisateur peut consulter les choix des autres utilisateurs" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:133 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:137 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:279 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:283 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 +msgid "User can download HD" +msgstr "L'utilisateur peut télécharger des documents HD" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:157 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +msgid "New list name ?" +msgstr "Donnez un nom à la nouvelle liste de destinataires :" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:167 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +msgid "Are you sure you want to delete this list ?" +msgstr "Voulez-vous vraiment supprimer cette liste?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +msgid "Time for feedback (days)" +msgstr "Durée de la validation (en jours)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:234 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +msgid "Message" +msgstr "Message" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:243 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +msgid "Accuse de reception" +msgstr "Accusé de réception" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:27 +msgid "Apparait aussi dans ces reportages" +msgstr "Aussi dans les reportages suivants" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:73 +msgid "Apparait aussi dans ces paniers" +msgstr "Aussi dans les paniers suivants" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:28 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 +msgid "Save all changes" +msgstr "Sauvegarder toutes les modifications" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:40 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 +msgid "Close" +msgstr "Fermer" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:44 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 +msgid "Ok" +msgstr "Ok" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:56 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 +msgid "Live search" +msgstr "Recherche dynamique" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:74 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:80 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 +msgid "Add a new field" +msgstr "Ajouter un nouveau champ" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:108 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:189 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 +msgid "Multivalued" +msgstr "Multivalué" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:133 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 +msgid "Order" +msgstr "Ordre d'affichage :" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:174 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 +msgid "DCES" +msgstr "Entrée/Sortie Dublin Core" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:197 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 +msgid "Advanced field parameters" +msgstr "Paramètres avancés du champ" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:203 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 +msgid "Thesaurus branch" +msgstr "Branche de thésaurus" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:210 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 +msgid "Type" +msgstr "Type" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:225 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 +msgid "Vocabulary type" +msgstr "Liste de vocabulaire" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:243 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 +msgid "Limited vocabulary" +msgstr "Vocabulaire limité" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:255 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 +msgid "Business Fields" +msgstr "Champ métier" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:263 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 +msgid "Separator" +msgstr "Séparateur de valeurs" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:270 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 +msgid "Display & action settings" +msgstr "Paramétrage d'affichage et d'action" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:279 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 +msgid "Mandatory" +msgstr "Obligatoire" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:290 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 +msgid "Indexable" +msgstr "Indexable" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:301 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 +msgid "Read-only" +msgstr "Lecture seule" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:320 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 +msgid "Display thumbnails" +msgstr "Afficher comme titre" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:326 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 +msgid "Tous" +msgstr "Tous" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:330 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 +msgid "Aucun" +msgstr "Aucun" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:395 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 +msgid "Current configuration contains some errors" +msgstr "Le paramétrage actuel de la configuration contient des erreurs" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:22 +msgid "Story_id" +msgstr "Story_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:30 +msgid "Record_id" +msgstr "Record_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:50 +msgid "Nom Original" +msgstr "Nom original" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:130 +msgid "Camera Model" +msgstr "Type d'appareil numérique" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:144 +msgid "Color space" +msgstr "Espace colorimétrique" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:158 +msgid "Channels" +msgstr "Canaux" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:172 +msgid "Color Depth" +msgstr "Profondeur colorimétrique" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:186 +msgid "ISO sensibility" +msgstr "Sensibilité ISO" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:200 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:651 +msgid "Flash" +msgstr "Flash" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:226 +msgid "Shutter speed" +msgstr "Vitesse d'obturateur" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:240 +msgid "Aperture" +msgstr "Ouverture" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:254 +msgid "Focal length" +msgstr "Longueur de focale" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:268 +msgid "Hyperfocal distance" +msgstr "Distance hyper focale" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:282 +msgid "Light Value" +msgstr "Luminance" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:298 +msgid "Duree" +msgstr "Durée" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:312 +msgid "Images par secondes" +msgstr "Images par seconde" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:326 +msgid "Codec Audio" +msgstr "Codec audio" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:340 +msgid "Codec Video" +msgstr "Codec vidéo" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:354 +msgid "Frequence d'echantillonage" +msgstr "Fréquence d'échantillonnage" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:28 +msgid "Back to basket list" +msgstr "Retour à la liste des paniers" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:171 +msgid "No records" +msgstr "Aucun enregistrement" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:177 +msgid "1 record" +msgstr "1 enregistrement" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:183 +msgid "%ElementsCount% records" +msgstr "%ElementsCount% enregistrement(s)" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:152 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:152 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 +msgid "Fichiers envoyes" +msgstr "Documents envoyés" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:169 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:169 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:418 +msgid "phraseanet:: deconnection" +msgstr "Déconnexion" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:234 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:234 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 +msgid "Terms of service" +msgstr "Conditions Générales d'Utilisation" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:35 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 +msgid "Client applications" +msgstr "Applications clientes" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:48 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 +msgid "Mes applications" +msgstr "Mes applications" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:83 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 +msgid "button::supprimer" +msgstr "Supprimer" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:101 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 +msgid "Are you sure you want to delete this application?" +msgstr "Etes-vous sûr de vouloir supprimer cette application ?" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:107 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 +msgid "No" +msgstr "Non" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:113 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:55 +msgid "Yes" +msgstr "Oui" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:156 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 +msgid "Aucune application creee." +msgstr "Aucune application créée" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:168 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 +msgid "Decouvrez la documentation" +msgstr "Découvrez la documentation" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:173 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 +msgid "Demarrer avec l'API Phraseanet" +msgstr "Démarrer avec l'API Phraseanet" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:180 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 +msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +msgstr "Créer une application pour commencer à utiliser l'API Phraseanet" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:188 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 +msgid "Creer une nouvelle applications" +msgstr "Créer une nouvelle application" + +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:35 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:133 +msgid "Collection %collection%" +msgstr "Collection %collection%" + #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:44 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:44 msgid "Votre recherche ne retourne aucun resultat" msgstr "Votre recherche ne retourne aucun résultat" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:76 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:76 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." msgstr "" -"La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " -"gauche de l'écran" +"La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut " +"de l'écran." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:79 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:79 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" @@ -5461,6 +8084,7 @@ msgstr "" "suivants :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:83 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:83 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" @@ -5469,44 +8093,54 @@ msgstr "" "LAST , ALL)" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:88 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:88 msgid "Caractères de troncature" msgstr "Caractères de troncature" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:95 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:95 msgid "auto*" msgstr "auto*" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:99 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:99 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "" "retourne des résultats pour : \"automobile\", \"automate\", \"autoroute" "\", ..." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:105 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:105 msgid "dé?it" msgstr "dé?it" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:109 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:109 msgid "retourne \"délit\", \"débit\", ..." msgstr "retourne des résultats pour : \"délit\", \"débit\", ..." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:116 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:116 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "Pour chercher tous les documents / les derniers documents" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:122 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:122 msgid "TOUT" msgstr "TOUT" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:126 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:126 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "retourne tous les enregistrements des collections selectionnées" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:132 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:132 msgid "LAST 20" msgstr "Dernier 20" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:136 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:136 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" @@ -5515,10 +8149,12 @@ msgstr "" "sélectionnées" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:143 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:143 msgid "Recherche multicritères" msgstr "Recherche multicritères" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:147 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:147 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" @@ -5527,38 +8163,47 @@ msgstr "" "DANS" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:153 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:153 msgid "sport" msgstr "sport" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:155 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:155 msgid "automobile" msgstr "automobile" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:159 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:159 msgid "retourne les documents comprenant les deux mots." msgstr "retourne les documents comprenant les deux mots." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:165 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:165 msgid "journal OU jt" msgstr "journal OU jt" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:169 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:169 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "retourne les documents comprenant un mot et/ou l'autre." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:175 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:175 msgid "cannes SAUF festival" msgstr "cannes SAUF festival" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:179 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:179 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "retourne les documents comprenant cannes sans le mot festival." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:185 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:185 msgid "thalassa DANS titre" msgstr "thalassa DANS titre" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:189 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:189 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." @@ -5567,12 +8212,15 @@ msgstr "" "évitant par exemple celles où le terme est uniquement cité dans la légende." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:120 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:197 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:120 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "Attention" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:201 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:201 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" @@ -5581,559 +8229,702 @@ msgstr "" "guillemets :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:205 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:205 msgid "C dans l'air" msgstr "C dans l'air" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:209 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:209 msgid "Et Dieu créa la femme" msgstr "Et Dieu créa la femme" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:213 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:213 msgid "bijou en or" msgstr "bijou en or" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:217 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:217 msgid "tout le sport" msgstr "tout le sport" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:36 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:36 msgid "Forgotten password" msgstr "Mot de passe oublié" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:49 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:49 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:55 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:55 msgid "Enter your e-mail address to retrieve your password" msgstr "Entrez votre adresse e-mail pour récupérer votre mot de passe" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:70 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:70 msgid "report :: configurer le tableau" msgstr "Configurer le tableau" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:79 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:79 msgid "report :: imprimer le tableau" msgstr "Imprimer le tableau" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:127 msgid "%total_count% results" msgstr "%total_count% résultats" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:173 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:177 msgid "Trier" msgstr "Trier" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:204 msgid "Filtrer" msgstr "Filtrer" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:208 msgid "report :: filtrer" msgstr "Filtrer" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:219 msgid "Grouper" msgstr "Grouper" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:223 msgid "report :: grouper" msgstr "Grouper" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:389 msgid "report :: aucun resultat trouve" msgstr "Aucun résultat trouvé" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:188 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:188 msgid "Chargement" msgstr "Chargement..." #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:452 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:235 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:239 msgid "phraseanet:: propositions" msgstr "Propositions" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:258 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:258 msgid "Close the WorkZone" msgstr "Fermer la zone de travail" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:284 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:284 msgid "prod::thesaurusTab:thesaurus" msgstr "Thésaurus" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:291 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:291 msgid "prod::thesaurusTab:candidats" msgstr "Candidats" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:306 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:306 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Accepter le terme candidat" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:312 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:312 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Remplacer le terme" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:419 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:320 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:588 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 msgid "boutton::rechercher" msgstr "Rechercher" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:368 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:436 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:368 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:436 msgid "chargement" msgstr "Chargement" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:477 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:483 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:487 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:483 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:487 msgid "action:: nouveau panier" msgstr "Nouveau panier" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:494 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:500 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:494 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:500 msgid "Browse Baskets" msgstr "Parcourir les paniers" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:511 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:517 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:521 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:511 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:517 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:521 msgid "action:: nouveau reportage" msgstr "Nouveau reportage" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:545 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:549 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:545 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:549 msgid "phraseanet:: tri par nom" msgstr "Tri alphabétique" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:557 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1658 msgid "Preferences" msgstr "Préférences" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:583 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:583 msgid "Advanced Search" msgstr "Recherche avancée" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:397 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:606 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1049 msgid "phraseanet::type:: documents" msgstr "Documents" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:405 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:618 msgid "phraseanet::type:: reportages" msgstr "Reportage" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:631 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:631 msgid "Tout type" msgstr "Tout type" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:635 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:635 msgid "Image" msgstr "Image" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:639 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:639 msgid "Video" msgstr "Vidéo" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:643 msgid "Audio" msgstr "Audio" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:647 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:647 msgid "Document" msgstr "Document" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:478 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:668 msgid "boutton:: selectionner toutes les bases" msgstr "Toutes" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:482 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:673 msgid "boutton:: selectionner aucune base" msgstr "Aucune" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 -msgid "Re-initialiser" -msgstr "Ré-initialiser" - #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:693 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:693 msgid "Trier par " msgstr "Trier par " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:745 msgid "rechercher par stemme" msgstr "Rechercher par Stemme" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:755 msgid "Les termes apparaissent dans le(s) champs" msgstr "Le(s) mot(s) contenu(s) dans le(s) champ(s)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:760 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:941 msgid "rechercher dans tous les champs" msgstr "Tous les champs" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:801 msgid "Status des documents a rechercher" msgstr "Status des documents pour la recherche" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:913 msgid "Rechercher dans un champ date" msgstr "Dans un champ date" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:703 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:950 msgid "phraseanet::time:: de" msgstr "De" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:709 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:960 msgid "phraseanet::time:: a" msgstr "A" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1022 msgid "reponses:: selectionner tout" msgstr "Tout" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1031 msgid "reponses:: selectionner rien" msgstr "Aucun" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1040 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1058 msgid "phraseanet::type:: videos" msgstr "Vidéos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1067 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1538 msgid "raccourci :: a propos des raccourcis claviers" msgstr "A propos des raccourcis clavier" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1543 msgid "Raccourcis claviers en cours de recherche : " msgstr "Raccourcis de la fenêtre principale " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1548 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1584 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : sélectionner tout " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1552 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1588 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : imprimer la sélection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1556 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1592 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : éditer la sélection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1560 msgid "Raccourcis::fleche gauche : page precedente " msgstr "flèche gauche : page précédente " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1564 msgid "Raccourcis::fleche droite : page suivante " msgstr "flèche droite : page suivante " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1568 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "flèche haute : défilement vers le haut " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1572 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "flèche basse : défilement vers le bas " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1579 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Raccourcis de la zone des paniers & reportages " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1599 msgid "Raccourcis claviers en cours de editing : " msgstr "Raccourci de la fenêtre d'édition " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1604 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "Tab/shift-tab : Changer de champs " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1611 msgid "Raccourcis claviers en cours de preview : " msgstr "Raccourcis de la fenêtre vue détaillée " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1616 msgid "Raccourcis::fleche gauche : en avant " msgstr "flèche droite : document suivant " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1620 msgid "Raccourcis::fleche gauche : en arriere " msgstr "flèche gauche : document précédent " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1624 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espace : démarrer/arrêter le diaporama " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1632 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "" "Vous pouvez fermer la plupart des fênetres en sur impression avec la touche " "echap " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1643 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Ne plus montrer cette aide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1664 msgid "Affichage" msgstr "Affichage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1668 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1676 msgid "Mode de presentation" msgstr "Mode de présentation" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1691 msgid "reponses:: mode vignettes" msgstr "Vignettes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1703 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1710 msgid "Theme" msgstr "Thème" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1719 msgid "Selecteur de theme" msgstr "Sélecteur de thème" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1741 msgid "Presentation de vignettes" msgstr "Présentation de vignettes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1752 msgid "Iconographe (description au rollover)" msgstr "Iconographe (description au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1764 msgid "Graphiste (preview au rollover)" msgstr "Graphiste (prévisualisation au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1774 msgid "Informations techniques" msgstr "Informations techniques" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1785 msgid "Afficher" msgstr "Afficher" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1797 msgid "Afficher dans la notice" msgstr "Afficher dans la notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1809 msgid "Ne pas afficher" msgstr "Ne pas afficher" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1819 msgid "Type de documents" msgstr "Type de document" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1830 msgid "Afficher une icone" msgstr "Afficher une icône" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1839 msgid "reponses:: images par pages : " msgstr "Résultats par page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1852 msgid "reponses:: taille des images : " msgstr "Taille des vignettes " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1866 msgid "Couleur de selection" msgstr "Couleur de sélection" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1881 msgid "Affichage au demarrage" msgstr "Afficher au démarrage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1897 msgid "Ma derniere question" msgstr "Ma dernière question" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1908 msgid "Une question personnelle" msgstr "La question" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1930 msgid "Aide" msgstr "Aide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:987 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1977 msgid "preview:: Description" msgstr "Notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:991 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1981 msgid "preview:: Historique" msgstr "Historique" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:995 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1988 msgid "preview:: Popularite" msgstr "Popularité" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2037 msgid "Presentation de vignettes de panier" msgstr "Présentation des vignettes de panier" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2055 msgid "Afficher les status" msgstr "Afficher les Status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2075 msgid "Afficher la fiche descriptive" msgstr "Afficher la notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2095 msgid "Afficher le titre" msgstr "Afficher le titre" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 -msgid "%nb_elements% elements" -msgstr "%nb_elements% document(s)" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:38 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:53 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:38 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:40 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +msgid "Login" +msgstr "Identifiant" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 -msgid "Imagette indisponible" -msgstr "Vignette indisponible" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 -msgid "Aucune description." -msgstr "Aucune description" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 -msgid "dans %category%" -msgstr "dans %category%" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 -msgid "Confidentialite : privee" -msgstr "Privée" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 -msgid "Confidentialite : publique" -msgstr "Publique" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:70 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:94 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 +msgid "Login to link your account" +msgstr "Connectez-vous pour lier votre compte" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:43 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:43 msgid "forms::operation effectuee OK" msgstr "Modifications effectuées" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:81 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:81 msgid "admin::base: Alias" msgstr "Alias" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:99 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:99 msgid "Rename" msgstr "Renommer" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:112 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Nombre d'enregistrements :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:122 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:107 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:122 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:107 msgid "phraseanet:: details" msgstr "Détails" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:133 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:133 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Mots uniques sur la base : " #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:142 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:142 msgid "admin::base: nombre de mots indexes sur la base" msgstr "Mots indexés sur la base :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:155 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:155 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Termes de thésaurus indexés :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:174 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:174 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Documents indexés en texte-plein" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:185 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:185 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Documents indexés via Thésaurus" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:210 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:210 msgid "admin::base: Cette base est indexable" msgstr "base indexable" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:268 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:271 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:268 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:271 msgid "Set labels" msgstr "Définir les labels" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:296 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:296 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Supprimer l'intégralité des logs de la base ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:301 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:301 msgid "admin::base: supprimer tous les logs" msgstr "Supprimer tous les logs" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:312 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:312 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Stopper la publication de la base ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:317 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:317 msgid "admin::base: arreter la publication de la base" msgstr "Arrêter la publication" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:328 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:328 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Supprimer l'intégralité du contenu de la base ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:333 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:333 msgid "admin::base: vider la base" msgstr "Vider la base" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:344 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:344 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirmer la suppression de la base" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:349 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:349 msgid "admin::base: supprimer la base" msgstr "Supprimer la base" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:361 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:361 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Confirmez-vous la ré-indexation de la base ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:365 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:365 msgid "base:: re-indexer" msgstr "" "Ré-indexer la base maintenant (selon le nombre de documents, cette opération " @@ -6141,22 +8932,28 @@ msgstr "" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:379 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:438 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:379 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:438 msgid "admin::base:collection: Monter une collection" msgstr "Monter une collection" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:397 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:397 msgid "Monter" msgstr "Monter" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:466 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:466 msgid "Activer une collection" msgstr "Activer la collection" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:510 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:510 msgid "admin::base: logo impression PDF" msgstr "Logo pour impression" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:526 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:526 msgid "admin::base:collection: supprimer le logo" msgstr "Supprimer le logo" @@ -6165,129 +8962,107 @@ msgstr "Supprimer le logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:536 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:389 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:445 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:501 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:557 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Aucun fichier" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:546 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:546 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Envoyer un logo (jpeg 35px max en hauteur)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:569 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 msgid "admin::base: aucun alias" msgstr "Aucun Alias" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 -msgid "Download of documents" -msgstr "Téléchargement de documents" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:107 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 +msgid "E-Mail" +msgstr "Email" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 -msgid "" -"Please wait while your files are being gathered for the download, this " -"operation may take a few minutes." -msgstr "" -"Veuillez patienter pendant que vos fichiers sont rassemblés pour le " -"téléchargement. Cette opération peut prendre quelques minutes." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:143 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 +msgid "Last Template" +msgstr "Dernier modèle" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 -msgid "" -"Your documents are ready. If the download does not start, %before_link%click " -"here%after_link%" -msgstr "" -"Vos documents sont prêts. Si le téléchargement ne démarre pas, %before_link" -"%cliquez ici%after_link%." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:161 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 +msgid "Creation date" +msgstr "Date de création" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 -msgid "The file contains the following elements" -msgstr "Le fichier contient les éléments suivants :" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 -msgid "Base" -msgstr "Base" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 -msgid "Sub definition" -msgstr "Sous-définitions" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 -msgid "Thumbnail" -msgstr "Vignette" - -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 -msgid "Login" -msgstr "Identifiant" +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:22 +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:27 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:22 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:27 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 +msgid "validation::envoyer mon rapport" +msgstr "Envoyer mon rapport" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:60 msgid "Your %provider_name% account matchs a Phraseanet account" msgstr "Votre compte %provider_name% correspond à un compte Phraseanet." -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 -msgid "Login to link your account" -msgstr "Connectez-vous pour lier votre compte" - #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:192 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:192 msgid "These informations do not match?" msgstr "Ces informations ne correspondent pas ?" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:204 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:204 msgid "Use my Phraseanet account" msgstr "Utiliser mon compte Phraseanet" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:59 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:59 msgid "Le bridge Youtube ne prend en charge que les videos" msgstr "Le bridge Youtube ne prend en charge que les vidéos" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:63 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:63 msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" msgstr "Vous ne pouvez ajouter des documents sur Youtube que un par un" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:100 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:100 msgid "100 caracteres maximum" msgstr "100 caractères maximum" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:133 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:133 msgid "2000 caracteres maximum" msgstr "2000 caractères maximum" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 -msgid "Categorie" -msgstr "Catégorie" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:203 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:203 msgid "500 caracteres maximum" msgstr "500 caractères maximum" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:207 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:207 msgid "separe par un espace" msgstr "séparé par un espace" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 -msgid "Confidentialite" -msgstr "Confidentialité" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:241 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:211 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:241 msgid "prive" msgstr "Privé" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 -msgid "public" -msgstr "Public" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:279 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:279 msgid "" "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " "le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " @@ -6301,125 +9076,158 @@ msgstr "" "%lien_term_youtube%" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:299 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:299 msgid "Retour" msgstr "Retour" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:24 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:24 msgid "Nom du nouveau panier" msgstr "Nom du nouveau panier" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:30 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:30 msgid "paniers::description du nouveau panier" msgstr "Donner une description au nouveau panier" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:38 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:59 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:38 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:59 msgid "Ajouter ma selection courrante" msgstr "Ajouter ma sélection courante" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:34 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:34 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:277 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:277 msgid "phraseanet:: preview" msgstr "Prévisualisation" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:41 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:41 msgid "print:: image de choix seulement" msgstr "Prévisualisation" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:48 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:48 msgid "print:: image de choix et description" msgstr "Prévisualisation et Légende" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:55 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:55 msgid "print:: image de choix et description avec planche contact" msgstr "Prévisualisation et Légende avec planche contact" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:66 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:66 msgid "print:: imagette" msgstr "Imagette" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:73 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:73 msgid "print:: liste d'imagettes" msgstr "Liste de vignettes" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:80 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:80 msgid "print:: planche contact (mosaique)" msgstr "Planche contact" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:99 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:99 msgid "boutton::imprimer" msgstr "Imprimer" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:109 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:109 msgid "None of the selected records can be printed" msgstr "Aucun des documents sélectionnés ne peut être imprimé" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:115 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:115 msgid "export:: erreur : aucun document selectionne" msgstr "Erreur : aucun document sélectionné" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:118 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:118 msgid "Quotas" msgstr "Quotas" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:139 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:139 msgid "Restrictions de telechargement" msgstr "Restrictions de téléchargement" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:153 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:147 #: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:147 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:153 msgid "Restriction" msgstr "Restriction" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:161 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:161 msgid "Droits" msgstr "Droits" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:169 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:169 msgid "par mois" msgstr "par mois" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:173 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:173 msgid "Reste" msgstr "Reste" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:35 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:35 msgid "Granted third party applications" msgstr "Applications tierces liées" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:47 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:47 msgid "Vous avez autorise ces applications a acceder a votre compte" msgstr "Vous avez autorisé ces applications à accéder à votre compte" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:77 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:77 msgid "Revoquer l'access" msgstr "Révoquer l'accès" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:89 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:89 msgid "Authoriser l'access" msgstr "Autoriser l'accès" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:111 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:111 msgid "par %user_name%" msgstr "par %user_name%" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:125 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:125 msgid "Not Allowed" msgstr "Non autorisé" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:133 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:133 msgid "Allowed" msgstr "Autorisé" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:155 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:155 msgid "Aucune application n'a accés à vos données." msgstr "Aucune application n'a accès à vos données" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:167 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:167 msgid "Third-party applications" msgstr "Applications tierces" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:172 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:172 msgid "" "A third-party application is a product developed apart from Phraseanet and " "that would access Phraseanet data." @@ -6428,10 +9236,12 @@ msgstr "" "qui accède à des données Phraseanet." #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:180 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:180 msgid "Developpeurs" msgstr "Développeurs" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:185 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:185 msgid "" "Les developpeurs peuvent editer l'enregistrement de leurs application grace " "a l'onglet 'developpeurs' ci-dessus" @@ -6440,217 +9250,294 @@ msgstr "" "'Développeurs' ci-dessus." #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:20 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:20 msgid "SphinxSearch search-engine configuration" msgstr "Configuration du moteur de recherche Sphinx" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:29 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:29 msgid "Sphinx Search connection configuration" msgstr "Configuration de la connexion du moteur Sphinx" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:34 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:34 msgid "Sphinx Search server" msgstr "Serveur Sphinx" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:46 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:46 msgid "Sphinx Search RealTime server" msgstr "Server d'indexation temps-réel SphinxSearch" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:59 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:59 msgid "Charset to use for indexation" msgstr "Jeu de caractères à utiliser pour l'indexation" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:85 msgid "Date fields available for search" msgstr "Champs de type date disponibles pour la recherche" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:35 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:364 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 +msgid "paniers:: %nb_basket_elements% documents dans le panier" +msgstr "%nb_basket_elements% documents dans le panier" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:62 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 +msgid "paniers::categories: mes paniers" +msgstr "Mes paniers" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:91 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 +msgid "paniers::categories: paniers recus" +msgstr "Paniers reçus" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:168 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 +msgid "action : ouvrir dans le comparateur" +msgstr "Lancer Lightbox" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:188 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 +msgid "paniers:: panier emis par %pusher_name%" +msgstr "Panier adressé par %pusher_name%" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:380 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 +msgid "paniers:: vous avez de nouveaux paniers non consultes" +msgstr "Nouveau(x) panier(s) reçu(s) (Vous avez reçu des nouveaux paniers)" + #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:29 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:29 msgid "Search baskets" msgstr "Rechercher des paniers" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:34 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:34 msgid "See" msgstr "Voir" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:54 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:54 msgid "My baskets" msgstr "Mes Paniers" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:66 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:66 msgid "Received baskets" msgstr "Paniers reçus" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:78 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:78 msgid "Validations sent" msgstr "Validations envoyées" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:90 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:90 msgid "Validations received" msgstr "Validations reçues" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:97 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:97 msgid "When" msgstr "Quand" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:105 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:105 msgid "Any time" msgstr "N'importe quand" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:121 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:121 msgid "This year" msgstr "Cette année" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:137 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:137 msgid "Past year" msgstr "L'année dernière" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:321 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:321 msgid "Something wrong happened, please retry or contact an admin." msgstr "" "Quelque chose d'inattendu s'est produit. Veuillez réessayer ou contacter un " "administrateur." #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:336 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:336 msgid "You are about to delete this basket. Would you like to continue ?" msgstr "Vous êtes sur le point de supprimer ce panier. Continuer ?" -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 -msgid "Edition de 1 element" -msgstr "Edition de 1 document" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:142 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:142 +msgid "validation:: editer ma note" +msgstr "Modifier mon annotation" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:35 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:35 msgid "Suppression de %n_element% photos" msgstr "Suppression de %n_element% photo(s)" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:51 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:51 msgid "Etes vous sur de supprimer %number% photos ?" msgstr "Etes vous certain de vouloir supprimer %number% photo(s)?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:40 msgid "phraseanet:: collection" msgstr "Collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "ID de collection distante" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:97 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:97 msgid "admin::base:collection: etat de la collection" msgstr "Etat de la collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: activer la collection" msgstr "Collection activé" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: descativer la collection" msgstr "Désactiver la collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:118 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Gestionnaires des commandes" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:166 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "Ajouter un gestionnaire des commandes" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:180 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" msgstr "Option d'affichage des documents partagés hors application" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:193 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "Par défaut" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:203 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "Fichier de filigrane" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:213 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "Bandeau de notice" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:291 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:291 msgid "admin::base:collection: renommer la collection" msgstr "Renommer" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "Confirmer l'arrêt la publication de cette collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Confirmer la publication cette collection" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:323 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Êtes-vous sûr de vouloir vider la collection ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:328 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:328 msgid "admin::base:collection: vider la collection" msgstr "Vider" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:339 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confirmer la suppression de la collection ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:358 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "Minilogo actuel" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:414 msgid "Watermark" msgstr "Filigrane" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:470 msgid "Stamp logo" msgstr "Logo de Stamp" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:526 msgid "admin::base:collection: image de presentation : " msgstr "Bandeau de présentation de la collection " -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "Type de fichier non valide" - #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:118 msgid "regeneration of sub-definitions" msgstr "Régénération des sous définitions" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:138 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:138 msgid "video tool" msgstr "Outils vidéos" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:161 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:161 msgid "image tool" msgstr "Rotation" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:175 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:175 msgid "substitution" msgstr "Substitution" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:189 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:189 msgid "meta-datas" msgstr "Métadonnées" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:208 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:208 msgid "Reconstruire les sous definitions" msgstr "Reconstruire les sous-définitions" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:217 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" -msgstr "Attention, certains documents ont des sous-définitions substituées" +msgstr "Attention, certains documents ont des sous-définitions substituées." #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:224 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" @@ -6659,10 +9546,12 @@ msgstr "" "substituées" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:240 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:240 msgid "recreer aucune sous-definitions" msgstr "Ne pas recréer les sous définitions" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:246 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:246 msgid "recreer toutes les sous-definitions" msgstr "Recréer toutes les sous-définitions" @@ -6672,6 +9561,12 @@ msgstr "Recréer toutes les sous-définitions" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:531 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:610 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:659 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:260 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:429 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:459 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:531 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:610 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:659 msgid "validate" msgstr "Valider" @@ -6679,115 +9574,371 @@ msgstr "Valider" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:535 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:614 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:663 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:264 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:535 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:614 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:663 msgid "cancel" msgstr "Annuler" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:287 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:287 msgid "screenshot video" msgstr "Capture d'écran vidéo" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:353 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:353 msgid "No preview available" msgstr "Pas de prévisualisation disponible" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:364 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:475 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:364 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:475 msgid "take a screenshot" msgstr "Faire une capture" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:380 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:380 msgid "To take a screenshot click on camera" msgstr "Pour faire une capture, cliquer sur l'appareil photo" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:410 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:410 msgid "brightness settings" msgstr "Réglage de luminosité" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:440 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:440 msgid "contrast settings" msgstr "Réglage de contraste" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:504 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:504 msgid "image rotation" msgstr "Rotation d'images" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:510 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:510 msgid "rotation 90 degres horaire" msgstr "Rotation 90 degrés horaire" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:518 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:518 msgid "rotation 90 degres anti-horaires" msgstr "Rotation 90 degrés anti-horaires" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:561 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:561 msgid "Substitution is not possible for this kind of record" msgstr "La substitution de ce type d'enregistrement n'est pas possible" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:583 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:583 msgid "substitution HD" msgstr "Substitution de document" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:592 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "Mettre à jour le nom original du fichier après substitution" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:641 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:641 msgid "substitution SD" msgstr "Substitution de la vignette thumbnail" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:988 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:988 msgid "alert" msgstr "Alerte" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:999 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:999 msgid "no image selected" msgstr "Aucune image sélectionnée" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1055 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1055 msgid "processing" msgstr "En cours..." #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1070 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "une erreur est survenue" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1084 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1084 msgid "thumbnail validation" msgstr "Validation de la vignette" +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:51 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:51 +msgid "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." +msgstr "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:198 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:198 +msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." +msgstr "Le contenu de cet email est confidentiel. Ne le divulguez pas." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:210 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:210 +msgid "Message automatique de Phraseanet" +msgstr "Message automatique de Phraseanet" + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:228 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:228 +msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" +msgstr "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:39 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 +msgid "Ajouter une publication" +msgstr "Ajouter une publication" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:49 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 +msgid "Feed name" +msgstr "Nom du flux" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:143 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 +msgid "Date Creation" +msgstr "Date de Création" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:151 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 +msgid "Public" +msgstr "Publique" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:278 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 +msgid "" +"Une fois la publication supprimee, les donnees publiees seront " +"definitivement perdues. Continuer ?" +msgstr "" +"Une fois la publication supprimée, les informations publiées seront " +"définitivement perdues. Continuer ?" + #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:143 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:143 msgid "Certaines donnees du panier ont change" msgstr "Certaines données du panier ont changé" +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:80 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:80 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 +msgid "" +"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " +"contactez le support technique" +msgstr "" +"Une erreur est survenue, si le problème persiste, contactez le support " +"technique" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:84 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:84 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 +msgid "" +"phraseanet::erreur: La connection au serveur Phraseanet semble etre " +"indisponible" +msgstr "La connexion au serveur Phraseanet semble être indisponible." + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:88 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:88 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 +msgid "" +"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" +msgstr "Votre session a expiré. Veuillez vous ré-authentifier" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:92 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:92 +msgid "Cocher toute la colonne" +msgstr "Cocher toute la colonne" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:96 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:96 +msgid "Decocher toute la colonne" +msgstr "Décocher toute la colonne" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:100 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:100 +msgid "Creer un model" +msgstr "Créer un modèle" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:104 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:104 +msgid "Creer un utilisateur" +msgstr "Créer un utilisateur" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:112 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +msgid "This file is too big" +msgstr "Ce fichier est trop volumineux" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:116 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:116 +msgid "This field is required" +msgstr "Ce champ est obligatoire" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:124 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:124 +msgid "Reset and apply" +msgstr "Réinitialiser et appliquer" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:128 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "" +"Confirmez la réinitialisation les droits utilisateurs avant d'appliquer le " +"modèle." + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:132 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "" +"Les droits seront effacés avant d'appliquer le modèle. Confirmez-vous " +"l'action ?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:136 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:136 +msgid "Reset and apply template" +msgstr "Réinitialiser et appliquer le modèle" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:140 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:140 +msgid "Apply template" +msgstr "Appliquer le modèle" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:144 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:144 +msgid "Reset rights before applying template?" +msgstr "Réinitialiser les droits avant d'appliquer modèle ?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:148 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:148 +msgid "Would you like to reset rights before applying the template?" +msgstr "Souhaitez-vous réinitialiser les droits avant d'appliquer le modèle ?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:328 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:328 +msgid "Successful install" +msgstr "Installation réussie" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:346 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:346 +msgid "Ajouter un nouvel utilisateur" +msgstr "Ajouter un nouvel utilisateur" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:351 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:351 +msgid "Adresse email du nouvel utilisateur" +msgstr "Adresse email du nouvel utilisateur" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:358 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:358 +msgid "Send an email to the user to setup his password" +msgstr "Envoyer un email à l'utilisateur pour créer son mot de passe" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:365 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:365 +msgid "Require email validation to activate the account" +msgstr "Demander une confirmation par mail pour valider le compte" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:373 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:373 +msgid "Creer un modele" +msgstr "Créer un modèle" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:378 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:378 +msgid "Nom du nouveau modele" +msgstr "Nom du nouveau modèle" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:38 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 +msgid "Records Statut" +msgstr "Statut des enregistrements" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:45 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 +msgid "Records type" +msgstr "Type des enregistrements" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:57 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 +msgid "You have selected one record." +msgstr "Vous avez sélectionné un enregistrement." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:63 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 +msgid "You have selected %nbReceivedDocuments% records." +msgstr "Vous avez sélectionné %nbReceivedDocuments% enregistrements." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:74 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 +msgid "None of the records can be modified." +msgstr "Aucun enregistrement ne peut être modifié." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:86 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 +msgid "Only one record can be modified." +msgstr "Seul un enregistrement peut être modifié." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:92 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 +msgid "Only %nbEditableDocuments% records can be modified." +msgstr "Seuls %nbEditableDocuments% enregistrements peuvent être modifiés." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:151 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 +msgid "Stories status edition" +msgstr "Edition des Status bits de reportage" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:157 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 +msgid "Records status edition" +msgstr "Edition des Status bits des documents" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:310 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:310 +msgid "Apply status on stories children." +msgstr "Appliquer les status sur les documents des reportages." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:316 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:316 +msgid "Apply status on story children." +msgstr "Appliquer les status sur les documents du reportage." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:340 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:340 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:147 +msgid "Apply changes" +msgstr "Appliquer les modifications" + #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:26 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:26 msgid "panier:: nom" msgstr "Nom du panier" #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:34 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:34 msgid "panier:: description" msgstr "Description du panier" -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 -msgid "Reordonner automatiquement" -msgstr "Tri automatique" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 -msgid "Re-ordonner" -msgstr "Ordonner" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 -msgid "Inverser" -msgstr "Inverser" - #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:33 msgid "" "prod::Les enregistrements ne provienent pas tous de la meme base et ne " "peuvent donc etre traites ensemble" @@ -6796,74 +9947,90 @@ msgstr "" "bases différentes." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:42 msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "" "Vous ne possédez pas les autorisations d'accès requises sur les documents " "pour effectuer cette action." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:51 msgid "erreur : Vous n'avez pas les droits" msgstr "Vous ne possédez pas les autorisations d'accès requises" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:74 msgid "One document can not be modified." msgstr "Un document ne peut être modifié." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:80 #, php-format msgid "%countable% documents can not be modified." msgstr "%countable% documents ne peuvent être modifiés." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:99 msgid "Move one record to the chosen collection in the list." msgstr "Déplacer l'enregistrement vers la collection choisie dans la liste." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:105 msgid "Move %countable% records to the chosen collection in the list." msgstr "" "Déplacer les %countable% enregistrements sélectionnés vers la collection " "choisie dans la liste." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:142 msgid "" "prod::collection deplacer egalement les documents rattaches a ce(s) " "regroupement(s)" msgstr "Déplacer également les documents de ces reportages ?" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:59 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:59 msgid "Le bridge Dailymotion ne prend en charge que les videos" msgstr "Le bridge Dailymotion ne prend en charge que les vidéos" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:63 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:63 msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" msgstr "Vous ne pouvez ajouter des documents sur Dailymotion que un par un" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:100 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:100 msgid "255 caracteres maximum" msgstr "255 caractères maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:132 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:132 msgid "1000 caracteres maximum" msgstr "1000 caractères maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:165 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:165 msgid "250 caracteres maximum" msgstr "250 caractères maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:169 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:169 msgid "10 tags maximum" msgstr "10 tags maximum" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:173 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:173 msgid "Séparez les tags par un espace: Paris vacances restaurant" msgstr "" "Séparez les mots clés ou tags par un espace : Paris vacances restaurant" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:177 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:177 msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" msgstr "Groupez 2 ou plusieurs mots avec des guillemets: \"Tour Eiffel\"" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:245 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:245 msgid "" "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " "contenu de la vidéo que vous allez mettre en ligne est conforme aux " @@ -6874,79 +10041,102 @@ msgstr "" "conditions générales d'utilisation." #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:28 msgid "Aucune notification" msgstr "Aucune notification" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:37 msgid "toutes les notifications" msgstr "Toutes les notifications" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:203 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:243 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:203 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:243 msgid "thesaurus::menu: proprietes" msgstr "Propriétés" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:207 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:207 msgid "thesaurus::menu: refuser" msgstr "Refuser" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:211 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:211 msgid "thesaurus::menu: accepter" msgstr "Accepter" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:216 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:255 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:111 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:111 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:216 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:255 msgid "thesaurus::menu: supprimer" msgstr "Supprimer" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:220 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:220 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Supprimer les candidats sans réponse" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:225 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:260 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:225 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:260 msgid "thesaurus::menu: chercher" msgstr "Chercher" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:229 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:264 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:229 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:264 msgid "thesaurus::menu: exporter" msgstr "Exporter" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:236 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:236 msgid "thesaurus::menu: importer" msgstr "Importer" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:247 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:247 msgid "thesaurus::menu: Nouveau terme" msgstr "Nouveau terme" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:251 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:251 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Nouveau synonyme" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:268 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:268 msgid "thesaurus::menu: export topics" msgstr "Exporter comme thèmes" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:273 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:273 msgid "thesaurus::menu: lier au champ" msgstr "Lier au champ" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:321 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:321 msgid "thesaurus:: onglet stock" msgstr "Candidats" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:327 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:327 msgid "thesaurus:: afficher les termes refuses" msgstr "Afficher les termes refusés" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:341 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:341 msgid "thesaurus:: onglet thesaurus" msgstr "Thésaurus" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:546 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:546 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" @@ -6955,6 +10145,7 @@ msgstr "" "candidats à la prochaine indexation)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:551 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:551 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " @@ -6964,10 +10155,12 @@ msgstr "" "termes concernés remonteront en candidats à la prochaine indexation)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:605 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:605 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Tous les termes renvoient des résultats" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:614 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:614 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" @@ -6975,47 +10168,161 @@ msgstr "" "Des termes de cette branche ne renvoient aucun résultat. Les supprimer ?" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:1217 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:1217 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Déplacer le terme dans le stock ?" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:58 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:66 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 +msgid "admin::tasks: nom de la tache" +msgstr "Nom" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:73 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 +msgid "admin::tasks: lancer au demarrage du scheduler" +msgstr "Lancer au démarrage du planificateur" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:85 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 +msgid "admin::tasks: Nombre de crashes : " +msgstr "Echecs " + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:93 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 +msgid "admin::tasks: reinitialiser el compteur de crashes" +msgstr "Ré-initialiser le compteur d'échecs" + #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:33 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:33 msgid "Creer un Photoset" msgstr "Créer un Photoset" #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:82 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:82 msgid "Photo principale" msgstr "Photo principale" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 -msgid "paniers:: %nb_basket_elements% documents dans le panier" -msgstr "%nb_basket_elements% documents dans le panier" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:146 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 +msgid "client:: recherche" +msgstr "Recherche" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 -msgid "paniers::categories: mes paniers" -msgstr "Mes paniers" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:165 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 +msgid "client:: recherche avancee" +msgstr "Recherche avancée" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 -msgid "paniers::categories: paniers recus" -msgstr "Paniers reçus" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:184 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 +msgid "client:: topics" +msgstr "Thèmes" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 -msgid "action : ouvrir dans le comparateur" -msgstr "Lancer Lightbox" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:219 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:221 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:242 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:244 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:533 +msgid "phraseanet::technique:: et" +msgstr "Et" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 -msgid "paniers:: panier emis par %pusher_name%" -msgstr "Panier adressé par %pusher_name%" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:225 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:227 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:248 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:250 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 +msgid "phraseanet::technique:: or" +msgstr "Ou" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "Nouveau(x) panier(s) reçu(s) (Vous avez reçu des nouveaux paniers)" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:231 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:233 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:254 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:256 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 +msgid "phraseanet::technique:: except" +msgstr "Sauf" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:269 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 +msgid "client::recherche: rechercher dans les bases :" +msgstr "Rechercher :" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:279 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 +msgid "client::recherche: rechercher dans toutes les bases" +msgstr "Toutes les bases" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:343 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 +msgid "phraseanet:: presentation des resultats" +msgstr "Présentation" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:434 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 +msgid "phraseanet:: collections" +msgstr "Collections" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:436 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " +"base" +msgstr "Cliquer ici pour désactiver tous les filtres" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:463 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 +msgid "phraseanet:: historique" +msgstr "Historique" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:521 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" +msgstr "Désactiver tous les filtres" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:793 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 +msgid "client::recherche: filter sur" +msgstr "Filtrer" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:806 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 +msgid "client::recherche: filtrer par dates" +msgstr "Par date" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:819 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 +msgid "client::recherche: filtrer par status" +msgstr "Par status" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:832 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 +msgid "client::recherche: filtrer par champs" +msgstr "Par champ" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:841 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 +msgid "client::recherche: filtrer par champs : tous les champs" +msgstr "Tous les champs" #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:63 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:63 msgid "Hi, Please log in" msgstr "Bonjour. Veuillez vous identifier" #: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:53 +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:48 #: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:48 msgid "Erreur !" msgstr "Erreur" @@ -7028,60 +10335,124 @@ msgstr "Le panier demandé n'existe plus" msgid "Retour a l'accueil" msgstr "Retour à l'accueil" +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:247 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:298 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 +msgid "erreur avec la valeur %name%" +msgstr "Erreur avec la valeur %name%" + #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:22 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:22 msgid "Terms Of Use" msgstr "Conditions Générales d'Utilisation" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:35 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:35 msgid "" "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" msgstr "Les utlisateurs enregistrés doivent accepter les CGU modifiées" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:40 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:40 msgid "Mettre a jour" msgstr "Mettre à jour" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:30 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 +msgid "" +"Cochez les cases correspondantes aux colonnes que vous desirez voire " +"apparaitre dans le report" +msgstr "" +"Cochez les cases correspondantes aux colonnes que vous désirez voir " +"apparaître dans le Report" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:36 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 +msgid "cocher tout" +msgstr "Tout cocher" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:43 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 +msgid "tout decocher" +msgstr "Tout décocher" + +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:62 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 +msgid "language" +msgstr "Langue" + +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:33 +#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 +msgid "report:: Enlever le filtre" +msgstr "Enlever le filtre" + +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:62 +#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 +msgid "Retour a laccueil" +msgstr "Retour à l'accueil" + #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:50 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:191 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:50 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:191 msgid "Les documents ne peuvent pas etre exportes" msgstr "Les documents ne peuvent pas être exportés" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:68 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:104 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:68 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:104 msgid "export:: telechargement" msgstr "Téléchargement" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:72 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:280 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:72 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:280 msgid "export:: envoi par mail" msgstr "E-Mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:81 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:81 msgid "export:: commande" msgstr "Commander" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:843 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:90 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:843 msgid "export:: FTP" msgstr "FTP" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:559 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:952 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:172 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:385 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:559 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:952 msgid "Documents indisponibles" msgstr "Documents indisponibles" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1012 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:230 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:445 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1012 msgid "Include Business-fields in caption" msgstr "Inclure les champs métier dans la notice" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1035 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:256 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:471 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:812 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1035 msgid "" "By checking this box, you accept %beginning_link% Terms of Use %end_link%" msgstr "" @@ -7089,114 +10460,147 @@ msgstr "" "générales d'utilisation %end_link%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:297 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:297 msgid "export::mail: destinataire" msgstr "A" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:311 msgid "Recevoir un accuse de reception a %my_email%" msgstr "Demander un accusé de reception à transmettre à l'adresse %my_email%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:320 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:320 msgid "" "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" msgstr "" "Accusé de récéption indisponible ; vous n'avez pas déclaré d'adresse e-mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:328 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:328 msgid "Entrez plusieurs adresses email en les separant par des points-virgules" msgstr "" "Entrez plusieurs adresses e-mail en les séparant par des points-virgules" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:334 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:334 msgid "export::mail: contenu du mail" msgstr "Texte" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:908 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:341 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:908 msgid "export::mail: fichiers joint" msgstr "Fichier(s) joint(s)" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:570 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:971 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:404 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:570 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:971 msgid "La sous resolution n'est pas disponible pour les documents suivants" msgstr "La sous-résolution n'est pas disponible pour les documents suivants" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1050 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:481 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1050 msgid "boutton::envoyer" msgstr "Envoyer" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:517 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:517 msgid "Un document commande" msgstr "Un document commandé." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:523 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:523 #, php-format msgid "%docs_orderable% documents commandes" msgstr "%docs_orderable% documents commandés" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:538 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:538 msgid "Un document ne peut etre commande" msgstr "Un document ne peut être commandé." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:544 #, php-format msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" msgstr "%docs_not_orderable% document ne peuvent être commandés" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:615 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:615 msgid "commande::utilisation prevue" msgstr "Utilisation prévue" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:625 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:625 msgid "commande::deadline" msgstr "Date limite" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:635 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:635 msgid "Civility" msgstr "Civilité" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:823 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:823 msgid "boutton::commander" msgstr "Commander" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:861 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:861 msgid "phraseanet:: prereglages" msgstr "Pré-réglages" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1045 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1045 msgid "boutton::essayer" msgstr "Essayer" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1098 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1098 msgid "You must agree to the Terms of Use to continue." msgstr "" "Vous devez accepter les conditions générales d'utilisation pour poursuivre." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1110 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1166 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1196 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1364 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1421 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1448 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1110 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1166 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1196 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1364 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1421 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1448 msgid "Warning !" msgstr "Attention !" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1154 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1154 msgid "Certains champs sont obligatoires, veuillez les remplir" msgstr "Certains champs sont obligatoires, veuillez les completer" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1184 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1184 msgid "Vous devez selectionner un type de sous definitions" msgstr "Vous devez sélectionner un type de sous résolution" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1216 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1216 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 msgid "Terms of Use" msgstr "Conditions générales d'utilisation" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1285 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1285 msgid "" "You can not directly download more than %max_download% Mo ; time to package " "all documents is too long" @@ -7204,85 +10608,109 @@ msgstr "" "Vous ne pouvez pas télécharger directement plus de %max_download% Mo de " "données. Le temps nécessaire pour zipper tous les documents serait trop long." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1294 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1294 msgid "You can alternatively receive an email when the download is ready." msgstr "" "Vous pouvez être informé par email quand votre téléchargement est prêt." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1303 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1303 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Souhaitez vous recevoir un email quand votre téléchargement est prêt ?" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1544 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1590 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:483 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1590 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Utiliser le mode passif" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1608 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:497 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1608 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Nombre d'essais" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1624 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:455 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1624 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Dossier distant" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1640 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1640 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Créer un dossier" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1668 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1668 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Ecrire un fichier de Log" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1710 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1710 msgid "Nom des fichiers a l'export" msgstr "Nom des fichiers à l'export" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1727 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1727 msgid "export::titre: titre du documument" msgstr "Titre" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1744 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1744 msgid "export::titre: nom original du document" msgstr "Nom original" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:28 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:28 msgid "thesaurus:: Nouveau terme specifique" msgstr "Nouveau terme spécifique" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:30 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:29 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:30 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:29 msgid "thesaurus:: Nouveau synonyme" msgstr "Nouveau synonyme" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:68 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:68 msgid "thesaurus:: le terme %term% avec contexte %context%" msgstr "Le terme %term% avec le contexte %context%" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:80 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:80 msgid "thesaurus:: le terme %term% sans contexte" msgstr "Le terme %term% sans contexte" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:97 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:97 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "est déjà candidat en provenance du champ acceptable " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:103 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:103 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "est déjà candidat en provenance des champs acceptables : " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:155 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:155 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Sélectionner la provenance à accepter" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:184 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:190 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:184 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:190 msgid "" "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " "a cet emplacement du thesaurus" @@ -7291,763 +10719,118 @@ msgstr "" "emplacement" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:201 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:201 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "n'est pas présent parmi les candidats" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:209 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:209 msgid "thesaurus:: attention :" msgstr "Attention :" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:229 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:229 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Ajouter le terme sans ré-indexer" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:234 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:234 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Ajouter le terme et ré-indexer" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:27 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 +msgid "No preview available." +msgstr "Pas d'aperçu disponible" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:33 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 +msgid "No permalink available." +msgstr "Pas de permalien disponible" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:62 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 +msgid "Send to Twitter" +msgstr "Envoyer vers Twitter" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:74 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 +msgid "Send to Facebook" +msgstr "Envoyer vers Facebook" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:83 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 +msgid "Resource URL" +msgstr "URL de la ressource" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:91 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 +msgid "Detailed view URL" +msgstr "URL de la vue détaillée" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:102 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 +msgid "Embed code" +msgstr "Code d'intégration (Embed code)" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:138 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 +msgid "No URL available" +msgstr "Aucune URL de disponible" + #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:47 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:47 msgid "admin::monitor: Ancienne version (client)" msgstr "Classic" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:66 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:66 msgid "admin::monitor: Nouvelle version (prod)" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:79 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:79 msgid "admin::monitor: production" msgstr "Prod" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:270 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:270 msgid "Commandes" msgstr "Commandes" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:297 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:297 msgid "Notifications" msgstr "Notifications" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:334 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:334 msgid "Guest" msgstr "Invité" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:78 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:343 msgid "login:: Mon compte" msgstr "Mon Compte" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:364 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:364 msgid "phraseanet:: aide" msgstr "Aide" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:382 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:382 msgid "phraseanet:: raccourcis clavier" msgstr "Raccourcis" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:398 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:398 msgid "phraseanet:: a propos" msgstr "A propos" -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 -msgid "report:: activite par jour" -msgstr "Activité par jour" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 -msgid "Apply to all selected documents" -msgstr "Appliquer à tous les documents sélectionnés" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 -msgid "Apply changes" -msgstr "Appliquer les modifications" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 -msgid "Refresh" -msgstr "Rafraîchir" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 -msgid "(%length%)" -msgstr "(%length%)" - -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 -msgid "privé" -msgstr "Privé" - -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 -msgid "Vous devez remplir les champs requis" -msgstr "Vous devez remplir les champs requis" - -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 -msgid "validation::envoyer mon rapport" -msgstr "Envoyer mon rapport" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 -msgid "First/Last Name" -msgstr "Prénom / Nom" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 -msgid "E-Mail" -msgstr "Email" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 -msgid "Last Template" -msgstr "Dernier modèle" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 -msgid "Creation date" -msgstr "Date de création" - -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 -msgid "More" -msgstr "Plus" - -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 -msgid "Remove from basket" -msgstr "Retirer du panier" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 -msgid "Client applications" -msgstr "Applications clientes" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 -msgid "Mes applications" -msgstr "Mes applications" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 -msgid "button::supprimer" -msgstr "Supprimer" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 -msgid "Are you sure you want to delete this application?" -msgstr "Etes-vous sûr de vouloir supprimer cette application ?" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 -msgid "No" -msgstr "Non" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 -msgid "Yes" -msgstr "Oui" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 -msgid "Aucune application creee." -msgstr "Aucune application créée" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 -msgid "Decouvrez la documentation" -msgstr "Découvrez la documentation" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 -msgid "Demarrer avec l'API Phraseanet" -msgstr "Démarrer avec l'API Phraseanet" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "Créer une application pour commencer à utiliser l'API Phraseanet" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 -msgid "Creer une nouvelle applications" -msgstr "Créer une nouvelle application" - -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 -msgid "Story name" -msgstr "Nom du reportage" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 -msgid "Toutes les publications" -msgstr "Toutes les publications" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 -msgid "publications:: s'abonner aux publications" -msgstr "S'abonner" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 -msgid "Aller a" -msgstr "Aller à" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 -msgid "Aucune entree pour le moment" -msgstr "Aucune entrée pour le moment" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 -msgid "charger d'avantage de publications" -msgstr "Charger davantage de publications" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 -msgid "thesaurus:: Editer le thesaurus" -msgstr "Editer le thésaurus" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 -msgid "phraseanet:: choisir" -msgstr "Choisir" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 -msgid "thesaurus:: langue pivot" -msgstr "Sélectionner une langue d'édition" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "Vous n'avez accès à aucune base" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 -msgid "Renew password" -msgstr "Renouveler le mot de passe" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 -msgid "Choose a new password" -msgstr "Choisissez un nouveau mot de passe" - -#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 -msgid "No matches found" -msgstr "Aucune correspondance trouvée" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 -msgid "Edition" -msgstr "Edition" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 -msgid "Sous-titre" -msgstr "Sous-titre" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 -msgid "Short description" -msgstr "Description brève" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 -msgid "Etendue de la publication" -msgstr "Etendue de la publication" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 -msgid "Non-Restreinte (publique)" -msgstr "Non restreinte (publique)" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 -msgid "Publique" -msgstr "Publique" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "Liste des utilisateurs autorisés à publier sur ce fil" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 -msgid "Id" -msgstr "Identifiant" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 -msgid "Email" -msgstr "Email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 -msgid "Owner" -msgstr "Propriétaire" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 -msgid "Ajouter un publisher" -msgstr "Ajouter un utilisateur" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 -msgid "Name or email" -msgstr "Nom ou email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 -msgid "You are not the feed owner" -msgstr "Vous n'êtes pas le propriétaire de ce flux" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 -msgid "client:: recherche" -msgstr "Recherche" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 -msgid "client:: recherche avancee" -msgstr "Recherche avancée" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 -msgid "client:: topics" -msgstr "Thèmes" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 -msgid "phraseanet::technique:: et" -msgstr "Et" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 -msgid "phraseanet::technique:: or" -msgstr "Ou" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 -msgid "phraseanet::technique:: except" -msgstr "Sauf" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 -msgid "client::recherche: rechercher dans les bases :" -msgstr "Rechercher :" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "Toutes les bases" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 -msgid "phraseanet:: presentation des resultats" -msgstr "Présentation" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 -msgid "phraseanet:: collections" -msgstr "Collections" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " -"base" -msgstr "Cliquer ici pour désactiver tous les filtres" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 -msgid "phraseanet:: historique" -msgstr "Historique" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "Désactiver tous les filtres" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 -msgid "client::recherche: filter sur" -msgstr "Filtrer" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 -msgid "client::recherche: filtrer par dates" -msgstr "Par date" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 -msgid "client::recherche: filtrer par status" -msgstr "Par status" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 -msgid "client::recherche: filtrer par champs" -msgstr "Par champ" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "Tous les champs" - -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 -msgid "validation:: editer ma note" -msgstr "Modifier mon annotation" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 -msgid "publications:: dernieres publications" -msgstr "Dernières Publications" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 -msgid "publications:: derniere mise a jour" -msgstr "Dernière mise à jour" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 -msgid "The user has been created." -msgstr "L'utilisateur a été créé." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#, php-format -msgid "%user_count% users have been created." -msgstr "%user_count% utilisateurs ont été créés." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 -msgid "admin::user: nouvel utilisateur" -msgstr "Nouvel utilisateur" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 -msgid "admin::user: nouveau template" -msgstr "Nouveau modèle" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 -msgid "admin::user: import d'utilisateurs" -msgstr "Import" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 -msgid "admin::user: export d'utilisateurs" -msgstr "Export" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 -msgid "Filter" -msgstr "Filtrer" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 -msgid "Last applied template" -msgstr "Dernier modèle appliqué" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 -msgid "boutton::appliquer" -msgstr "Appliquer" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "Id" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 -msgid "admin::compte-utilisateur pays" -msgstr "Pays" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "Dernier modèle appliqué" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 -msgid "admin::compte-utilisateur date de creation" -msgstr "Création" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 -msgid "This is a template" -msgstr "Ceci est un modèle" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 -msgid "This user has no rights" -msgstr "Cet utilisateur ne possède aucun droit" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 -msgid "%n_par_page% par page" -msgstr "%n_par_page% par page" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 -msgid "Supprimer" -msgstr "Supprimer" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 -msgid "boutton::exporter" -msgstr "Exporter" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 -msgid "select at least one user" -msgstr "Sélectionner au moins un utilisateur" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 -msgid "Are you sure you want delete users rights ?" -msgstr "Etes-vous sûr de vouloir initialiser les droits des utilisateurs ?" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 -msgid "users rights have been reseted" -msgstr "Les droits utilisateurs ont été ré-initialisés" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 -msgid "" -"%name% est momentanement indisponible a cause d'un trop grand nombre de " -"requetes" -msgstr "" -"%name% est momentanément indisponible à cause d'un trop grand nombre de " -"requêtes" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "Le service sera de nouveau disponible dans quelques minutes." - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "Lier la branche de thesaurus au champ" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 -msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" -msgstr "Lier la branche de thesaurus au champ %branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "Lier la branche" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" -msgstr "Ce champ a été modifié. Ancienne branche : %old_branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 -msgid "thesaurus:: nouvelle branche" -msgstr "Nouvelle branche" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 -msgid "" -"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " -"candidats seront supprimes" -msgstr "" -"Ce champ n'est plus lié au Thésaurus, les termes indexés et les candidats " -"seront supprimés" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 -msgid "" -"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " -"est necessaire" -msgstr "" -"Ce champ doit être lié au Thésaurus. La ré-indexation de la base est " -"nécessaire" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 -msgid "" -"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " -"base est necessaire" -msgstr "" -"Le lien au thésaurus doit être modifié, la ré-indexation de la base est " -"nécessaire" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 -msgid "thesaurus:: reindexation necessaire" -msgstr "Ré-indexation nécessaire" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 -msgid "thesaurus:: pas de reindexation" -msgstr "Pas de ré-indexation" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 -msgid "thesaurus:: suppression du lien du champ %field%" -msgstr "Suppression du lien avec le champ %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 -msgid "" -"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" -msgstr "Suppression de la branche de mots candidats pour le champ %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "Enregistrement de la liste modifiée des mots candidats" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 -msgid "" -"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" -msgstr "Suppression des index vers le thesaurus pour le champ %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "Ré-indexer tous les enregistrements" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 -msgid "En attente" -msgstr "En attente" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 -msgid "En cours d'envoi" -msgstr "En cours d'envoi" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 -msgid "Oups ! something went wrong !" -msgstr "Un problème est survenu !" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 -msgid "boutton::retry" -msgstr "Recommencer" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 -msgid "admin::tasks: nom de la tache" -msgstr "Nom" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "Lancer au démarrage du planificateur" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 -msgid "admin::tasks: Nombre de crashes : " -msgstr "Echecs " - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "Ré-initialiser le compteur d'échecs" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 -msgid "You are using the Flash uploader." -msgstr "Vous utilisez l'uploader Flash" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 -msgid "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" -msgstr "" -"Cette version ne permet pas d'utiliser toutes les fonctionnalités offertes " -"par l'uploader HTML5" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 -msgid "Use the HTML5 uploader" -msgstr "Utiliser l'uploader HTML5" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "Fichiers sélectionnés" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 -msgid "You have attempted to queue too many files" -msgstr "Trop de fichiers dans la file d'attente" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 -msgid "Unknow Error" -msgstr "Erreur inconnue" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 -msgid "Cannot upload Zero Byte files" -msgstr "Impossible d'uploader un fichier vide" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 -msgid "Unhandled Error" -msgstr "Erreur non gérée" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 -msgid "Unknow reason" -msgstr "Raison inconnue" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 -msgid "Bad request, please contact an admin" -msgstr "Requête invalide. Veuillez contacter un administrateur" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 -msgid "Upload URL is not set, please contact an admin" -msgstr "" -"L'URL d'upload n'est pas paramétrée. Veuillez contacter un administrateur" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 -msgid "Connection terminates unexpetecdly, please retry" -msgstr "" -"La connexion s'est terminée de manière inattendue. Veuillez contacter un " -"administrateur" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 -msgid "The upload violates a security restriction, please retry" -msgstr "" -"L'upload va à l'encontre de restrictions de sécurité. Veuillez réessayer" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 -msgid "File upload limit (%maxFileSizeReadable%) has been reached" -msgstr "La limite fixée pour un upload a été atteinte (%maxFileSizeReadable%)" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 -msgid "Could not initiate upload, please retry" -msgstr "Initialisation de l'upload impossible. Veuillez réessayer" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 -msgid "" -"Could not retrieve the file ID, please retry or contact an admin if problem " -"persist" -msgstr "" -"Impossible de récupérer l'identifiant du fichier. Veuillez réessayer et " -"contacter un administrateur si le problème persiste." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 -msgid "File validation failed" -msgstr "La validation de fichier a échoué" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 -msgid "File upload has been cancelled" -msgstr "L'upload des fichiers a été interrompu" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 -msgid "File upload has been stopped" -msgstr "L'upload des fichiers a été interrompu" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 -msgid "Error while uploading" -msgstr "Une erreur est survenue pendant l'upload" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 -msgid "Please select at least one valid file" -msgstr "Sélectionnez au moins un fichier autorisé" - -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 -msgid "report:: Enlever le filtre" -msgstr "Enlever le filtre" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 -msgid "thesaurus:: accepter..." -msgstr "Accepter" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 -msgid "thesaurus:: removed_src" -msgstr "removed_src" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 -msgid "thesaurus:: refresh" -msgstr "Rafraîchir" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 -msgid "thesaurus:: removed tgt" -msgstr "removed_tgt" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 -msgid "thesaurus:: Accepter le terme comme" -msgstr "Accepter le terme comme :" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 -msgid "thesaurus:: comme terme specifique" -msgstr "Terme spécifique" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 -msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" -msgstr "en tant que synonyme de %fullpath_tgt_raw%" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 -msgid "thesaurus:: Accepter la branche comme" -msgstr "Accepter la branche comme" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 -msgid "" -"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " -"ne peut etre accepte" -msgstr "" -"A cet emplacement du thesaurus, un terme candidat du champ %cfield% ne peut " -"pas être accepté." - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 -msgid "(validation) session terminee" -msgstr "Session terminée" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 -msgid "(validation) envoyee" -msgstr "Rapport de validation envoyé" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 -msgid "(validation) a envoyer" -msgstr "Rapport de validation à envoyer" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 -#, php-format -msgid "%basket_length% documents" -msgstr "%basket_length% documents" - +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:22 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:22 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:320 @@ -8059,827 +10842,138 @@ msgstr "%basket_length% documents" msgid "You are not authorized to do this" msgstr "Vous ne disposez pas des droits nécessaires pour cette action" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:29 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:29 msgid "About Roles : " msgstr "A propos des rôles : " +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:34 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:34 msgid "Admin can edit shares, modify content" msgstr "L'administrateur peut éditer les partages et modifier les contenus" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:40 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:40 msgid "Editor can modify content" msgstr "Un éditeur peut modifier le contenu" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:46 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:46 msgid "Access user have readonly access" msgstr "Accès ne permet que d'utiliser" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:54 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:54 msgid "Find a user" msgstr "Chercher un utilisateur" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:91 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:91 msgid "You are Admin" msgstr "Vous êtes administrateur" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:100 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:100 msgid "Role" msgstr "Rôle" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:126 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:126 msgid "Editor" msgstr "Editeur" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:139 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:139 msgid "Admin" msgstr "Administrateur" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:155 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:155 msgid "Remove" msgstr "Retirer" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:164 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:164 msgid "Notify" msgstr "Notifier" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 -msgid "Records Statut" -msgstr "Statut des enregistrements" +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:35 +msgid "Apply to all selected documents" +msgstr "Appliquer à tous les documents sélectionnés" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 -msgid "Records type" -msgstr "Type des enregistrements" +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:41 +msgid "Refresh" +msgstr "Rafraîchir" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 -msgid "You have selected one record." -msgstr "Vous avez sélectionné un enregistrement." +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:77 +msgid "(%length%)" +msgstr "(%length%)" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 -msgid "You have selected %nbReceivedDocuments% records." -msgstr "Vous avez sélectionné %nbReceivedDocuments% enregistrements." +#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 +#: tmp/cache_twig/9a/af/a1037f8c999f73036a656301976bf104ace3fbd735257245a01214edc010.php:122 +#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 +#: tmp/cache_twig/b0/d1/517f30cd82f5d4ead4063de4342d258e96da49577fc507c20e2018163776.php:122 +msgid "More" +msgstr "Plus" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 -msgid "None of the records can be modified." -msgstr "Aucun enregistrement ne peut être modifié." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:90 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 +msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +msgstr "Ce champ a été modifié. Ancienne branche : %old_branch%" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 -msgid "Only one record can be modified." -msgstr "Seul un enregistrement peut être modifié." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:97 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 +msgid "thesaurus:: nouvelle branche" +msgstr "Nouvelle branche" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 -msgid "Only %nbEditableDocuments% records can be modified." -msgstr "Seuls %nbEditableDocuments% enregistrements peuvent être modifiés." - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 -msgid "Stories status edition" -msgstr "Edition des Status bits de reportage" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 -msgid "Records status edition" -msgstr "Edition des Status bits des documents" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 -msgid "Loading" -msgstr "Chargement en cours" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 -msgid "Access history" -msgstr "Historique d'accès" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:110 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 msgid "" -"If you notice any unfamiliar devices or locations, click 'End Activity' to " -"end the session." +"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " +"candidats seront supprimes" msgstr "" -"Si vous remarquez des périphériques ou des localisations inconnus, cliquer " -"sur \"Mettre fin à la session\"." +"Ce champ n'est plus lié au Thésaurus, les termes indexés et les candidats " +"seront supprimés" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 -msgid "Date de connexion" -msgstr "Date de connexion" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 -msgid "Dernier access" -msgstr "Dernier accès" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 -msgid "IP" -msgstr "Adresse IP" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 -msgid "Browser" -msgstr "Navigateur" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 -msgid "End Activity" -msgstr "Mettre fin à la session" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 -msgid "End session activity" -msgstr "Clore la session" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 -msgid "Do you really want to end the activity of this session?" -msgstr "Voulez-vous vraiment mettre fin à l'activité de cette session ?" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 -msgid "thesaurus:: Nouveau terme" -msgstr "Nouveau terme" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 -msgid "thesaurus:: terme" -msgstr "Terme" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 -msgid "thesaurus:: synonyme" -msgstr "Synonyme" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 -msgid "thesaurus:: contexte" -msgstr "Contexte" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 -msgid "phraseanet:: language" -msgstr "Langue" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 -msgid "The following errors have been detected" -msgstr "Les erreurs suivantes ont été détectées." - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 -msgid "Would you like to continue ?" -msgstr "Voulez-vous continuer ?" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 -msgid "Apply a model" -msgstr "Appliquer un modèle" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 -msgid "You need define a model before importing a list of users" -msgstr "Vous devez définir un modèle avant d'importer une liste d'utilisateurs" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 -msgid "There is no user to add." -msgstr "Il n'y a pas d'utilisateur à ajouter." - -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 -msgid "Ajouter a" -msgstr "Ajouter à" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 -msgid "nouveau" -msgstr "Nouveau" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "Vers quelle API voulez-vous vous connecter ?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 -msgid "Aucun bridge disponible. Veuillez contacter un administrateur." -msgstr "Aucun bridge disponible. Veuillez contacter un administrateur." - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 -msgid "You are about to delete this account. Would you like to continue ?" -msgstr "" -"Vous êtes sur le point de supprimer ce compte. Êtes-vous sûr de vouloir " -"continuer ?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "" -"Vous ne disposez pas des droits suffisants sur les documents sélectionnés" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "" -"Vous ne disposez pas des droits sur certains des documents sélectionnés" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:129 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" -msgstr "Remplacement du candidat \"%(from)s\" par \"%(to)s\"" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "Remplacement..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "Acceptation..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "Suppression..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "Accepter le terme candidat \"%s\" ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "Accepter les %d termes candidats ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 -#, php-format -msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "Accepter le terme candidat \"%s\"" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "Accepter les %s termes candidats" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "Remplacer le terme \"%s\" des fiches par" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "Remplacer les \"%d\" termes des fiches par" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "Supprimer le terme \"%s\" des fiches ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "Supprimer les %d termes des fiches ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 -msgid "prod::thesaurusTab:tree:loading" -msgstr "Chargement..." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "Accepter comme terme spécifique" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "Accepter comme synonyme" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "Accepter en %lng_code%" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "Remplacer par" - -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 -msgid "Playlist" -msgstr "Liste de lecture" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:93 -msgid "publication : titre" -msgstr "Titre de la publication" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:101 -msgid "publication : sous titre" -msgstr "Sous titre" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:109 -msgid "publication : autheur" -msgstr "Auteur" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:117 -msgid "publication : email autheur" -msgstr "Email de l'auteur" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:129 -msgid "Fils disponibles" -msgstr "Fils disponibles" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 -msgid "boutton::mettre a jour" -msgstr "Mettre à jour" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 -msgid "you are about to change the representation thumbnail of your video" -msgstr "Vous vous apprêtez à changer la vignette de représentation de la vidéo" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 -msgid "do you want to validate" -msgstr "Souhaitez vous valider l'opération?" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" -msgstr "Objet" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" -msgstr "Nombre" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" -msgstr "Taille" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 -msgid "Updated structure" -msgstr "Structure mise à jour" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 -msgid "Structure has been successfully updated" -msgstr "La structure a été mise à jour" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 -msgid "Structure errors" -msgstr "Erreurs dans la structure" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "Le XML n'est pas valide, les changements ne seront pas appliqués" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 -msgid "admin::base: structure" -msgstr "Structure" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 -msgid "new client application" -msgstr "Nouvelle application cliente" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 -msgid "Nom" -msgstr "Nom" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 -msgid "Site web" -msgstr "Site Internet" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 -msgid "Type d'application" -msgstr "Type d'application" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 -msgid "Application web" -msgstr "Application Internet" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 -msgid "Application desktop" -msgstr "Application" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 -msgid "" -"Cochez les cases correspondantes aux colonnes que vous desirez voire " -"apparaitre dans le report" +"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " +"est necessaire" msgstr "" -"Cochez les cases correspondantes aux colonnes que vous désirez voir " -"apparaître dans le Report" +"Ce champ doit être lié au Thésaurus. La ré-indexation de la base est " +"nécessaire" -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 -msgid "cocher tout" -msgstr "Tout cocher" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 -msgid "tout decocher" -msgstr "Tout décocher" - -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 -msgid "language" -msgstr "Langue" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 -msgid "Save all changes" -msgstr "Sauvegarder toutes les modifications" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 -msgid "Close" -msgstr "Fermer" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 -msgid "Ok" -msgstr "Ok" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 -msgid "Live search" -msgstr "Recherche dynamique" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 -msgid "Add a new field" -msgstr "Ajouter un nouveau champ" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 -msgid "Multivalued" -msgstr "Multivalué" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 -msgid "Order" -msgstr "Ordre d'affichage :" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 -msgid "DCES" -msgstr "Entrée/Sortie Dublin Core" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 -msgid "Advanced field parameters" -msgstr "Paramètres avancés du champ" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 -msgid "Thesaurus branch" -msgstr "Branche de thésaurus" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 -msgid "Type" -msgstr "Type" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 -msgid "Vocabulary type" -msgstr "Liste de vocabulaire" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 -msgid "Limited vocabulary" -msgstr "Vocabulaire limité" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 -msgid "Business Fields" -msgstr "Champ métier" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 -msgid "Separator" -msgstr "Séparateur de valeurs" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 -msgid "Display & action settings" -msgstr "Paramétrage d'affichage et d'action" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 -msgid "Mandatory" -msgstr "Obligatoire" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 -msgid "Indexable" -msgstr "Indexable" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 -msgid "Read-only" -msgstr "Lecture seule" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 -msgid "Display thumbnails" -msgstr "Afficher comme titre" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 -msgid "Tous" -msgstr "Tous" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 -msgid "Aucun" -msgstr "Aucun" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 -msgid "Current configuration contains some errors" -msgstr "Le paramétrage actuel de la configuration contient des erreurs" - -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 -msgid "reponses:: partager" -msgstr "Partager" - -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 -#, php-format -msgid "%entry_length% documents" -msgstr "%entry_length% documents" - -#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 -msgid "Loading database documentary structure ..." -msgstr "Chargement de la structure documentaire" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 -msgid "Upload a csv file for users creation" -msgstr "Importer un fichier CSV pour créer des utilisateurs" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 -msgid "An error occured while upload the file. Please retry" -msgstr "" -"Une erreur s'est produite lors du chargement du fichier. Veuillez réessayer." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 -msgid "Row login is missing, script has stopped" -msgstr "La colonne Login est manquante. Le script s'est arrêté." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 -msgid "Row password is missing, script has stopped" -msgstr "La colonne Password est manquante. Le script s'est arrêté." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 -msgid "Row mail is missing, script has stopped" -msgstr "La colonne Mail est manquante. Le programme s'est arrêté." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 -msgid "The file does not contains any user to add" -msgstr "Le fichier ne contient pas d'utilisateurs à ajouter." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 -msgid "You can download an example by clicking here" -msgstr "Télécharger un exemple de fichier CSV" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 -msgid "You can download the documentation here" -msgstr "Télécharger une documentation succincte" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 -msgid "Ajouter une publication" -msgstr "Ajouter une publication" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 -msgid "Feed name" -msgstr "Nom du flux" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 -msgid "Date Creation" -msgstr "Date de Création" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 -msgid "Public" -msgstr "Publique" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:168 -msgid "This feed is public" -msgstr "Ce flux est public" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:137 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 msgid "" -"Une fois la publication supprimee, les donnees publiees seront " -"definitivement perdues. Continuer ?" +"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " +"base est necessaire" msgstr "" -"Une fois la publication supprimée, les informations publiées seront " -"définitivement perdues. Continuer ?" +"Le lien au thésaurus doit être modifié, la ré-indexation de la base est " +"nécessaire" -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 -msgid "thesaurus:: Proprietes" -msgstr "Propriétés" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:167 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 +msgid "thesaurus:: reindexation necessaire" +msgstr "Ré-indexation nécessaire" -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 -msgid "thesaurus:: remplacer" -msgstr "Remplacer" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 -msgid "thesaurus:: %hits% reponses retournees" -msgstr "%hits% enregistrements retournés" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 -msgid "thesaurus:: synonymes" -msgstr "Synonymes" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 -msgid "thesaurus:: hits" -msgstr "hits" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 -msgid "thesaurus:: ids" -msgstr "Nom de l'utilisateur" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "Confirmer la suppression du terme \"%s\"" - -#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 -msgid "Incorrect please try again" -msgstr "Incorrect. Veuillez réessayer" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 -msgid "No preview available." -msgstr "Pas d'aperçu disponible" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 -msgid "No permalink available." -msgstr "Pas de permalien disponible" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 -msgid "Send to Twitter" -msgstr "Envoyer vers Twitter" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 -msgid "Send to Facebook" -msgstr "Envoyer vers Facebook" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 -msgid "Resource URL" -msgstr "URL de la ressource" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 -msgid "Detailed view URL" -msgstr "URL de la vue détaillée" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 -msgid "Embed code" -msgstr "Code d'intégration (Embed code)" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 -msgid "No URL available" -msgstr "Aucune URL de disponible" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 -msgid "admin::tasks: planificateur de taches" -msgstr "Planificateur de tâches" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 -msgid "Last update at" -msgstr "Dernière mise à jour à" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 -msgid "admin::tasks: statut de la tache" -msgstr "Statut" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 -msgid "admin::tasks: process_id de la tache" -msgstr "Process_id" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 -msgid "admin::tasks: etat de progression de la tache" -msgstr "Progression" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 -msgid "Start" -msgstr "Démarrer" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 -msgid "Stop" -msgstr "Arrêter" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 -msgid "Logs" -msgstr "Historique" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 -msgid "admin::tasks: Nouvelle tache" -msgstr "Nouvelle tâche" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 -msgid "admin::tasks: supprimer la tache ?" -msgstr "Supprimer la tâche ?" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 -msgid "phraseanet::status bit" -msgstr "Status" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 -msgid "status:: nom" -msgstr "Nom" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 -msgid "status:: cherchable par tous" -msgstr "Cherchable par tous" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 -msgid "status:: Affichable pour tous" -msgstr "Symboles affichés" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "oui" -msgstr "Oui" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "non" -msgstr "Non" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 -msgid "An error occurred" -msgstr "Un erreur est survenue" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 -msgid "" -"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " -"contactez le support technique" -msgstr "" -"Une erreur est survenue, si le problème persiste, contactez le support " -"technique" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 -msgid "" -"phraseanet::erreur: La connection au serveur Phraseanet semble etre " -"indisponible" -msgstr "La connexion au serveur Phraseanet semble être indisponible." - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 -msgid "" -"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "Votre session a expiré. Veuillez vous ré-authentifier" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 -msgid "Cocher toute la colonne" -msgstr "Cocher toute la colonne" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 -msgid "Decocher toute la colonne" -msgstr "Décocher toute la colonne" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 -msgid "Creer un model" -msgstr "Créer un modèle" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 -msgid "Creer un utilisateur" -msgstr "Créer un utilisateur" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "This file is too big" -msgstr "Ce fichier est trop volumineux" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 -msgid "This field is required" -msgstr "Ce champ est obligatoire" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 -msgid "Successful install" -msgstr "Installation réussie" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 -msgid "Ajouter un nouvel utilisateur" -msgstr "Ajouter un nouvel utilisateur" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 -msgid "Adresse email du nouvel utilisateur" -msgstr "Adresse email du nouvel utilisateur" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 -msgid "Send an email to the user to setup his password" -msgstr "Envoyer un email à l'utilisateur pour créer son mot de passe" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 -msgid "Require email validation to activate the account" -msgstr "Demander une confirmation par mail pour valider le compte" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 -msgid "Creer un modele" -msgstr "Créer un modèle" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 -msgid "Nom du nouveau modele" -msgstr "Nom du nouveau modèle" - -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 -msgid "erreur avec la valeur %name%" -msgstr "Erreur avec la valeur %name%" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 -msgid "Completion of your registration" -msgstr "Terminer l'inscription" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 -msgid "Please complete the information to complete your registration" -msgstr "" -"Veuillez compléter les informations suivantes pour compléter votre " -"inscription." - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 -msgid "Mandatory fields" -msgstr "Champs obligatoires" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 -msgid "I have read the terms of use" -msgstr "J'ai lu les conditions d'utilisation" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 -msgid "Resquest access" -msgstr "Demande d'accès" - -#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 -msgid "Page" -msgstr "Page" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:173 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 +msgid "thesaurus:: pas de reindexation" +msgstr "Pas de ré-indexation" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:37 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:60 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:37 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:60 msgid "Authorization Access" msgstr "Autorisation d'accès" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:77 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:77 msgid "" "Do you authorize the application %application_name% to access to your " @@ -8888,18 +10982,524 @@ msgstr "" "Autoriser l'application %application_name% à accéder à des contenus " "Phraseanet ?" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:89 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:89 msgid "Authorize" msgstr "Autoriser" -#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 -msgid "validation:: note" -msgstr "Annotation" +#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:51 +msgid "Story name" +msgstr "Nom du reportage" +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:40 +msgid "Toutes les publications" +msgstr "Toutes les publications" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:76 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:84 +msgid "publications:: s'abonner aux publications" +msgstr "S'abonner" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:97 +msgid "Aller a" +msgstr "Aller à" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:165 +msgid "Aucune entree pour le moment" +msgstr "Aucune entrée pour le moment" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:188 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:199 +msgid "charger d'avantage de publications" +msgstr "Charger davantage de publications" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:57 +msgid "thesaurus:: Editer le thesaurus" +msgstr "Editer le thésaurus" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:62 +msgid "phraseanet:: choisir" +msgstr "Choisir" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:99 +msgid "thesaurus:: langue pivot" +msgstr "Sélectionner une langue d'édition" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:138 +msgid "thesaurus:: Vous n'avez acces a aucune base" +msgstr "Vous n'avez accès à aucune base" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:23 +msgid "publications:: dernieres publications" +msgstr "Dernières Publications" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:86 +msgid "publications:: derniere mise a jour" +msgstr "Dernière mise à jour" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:28 +msgid "" +"%name% est momentanement indisponible a cause d'un trop grand nombre de " +"requetes" +msgstr "" +"%name% est momentanément indisponible à cause d'un trop grand nombre de " +"requêtes" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:33 +msgid "le service sera de nouveau disponible dans quelques minutes" +msgstr "Le service sera de nouveau disponible dans quelques minutes." + +#: tmp/cache_twig/ad/f2/729310ca9a232e57a4b9b0a8712f22ac9f3beed123d66108eb967410eb92.php:35 +#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 +msgid "Loading database documentary structure ..." +msgstr "Chargement de la structure documentaire" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:37 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 +msgid "thesaurus:: Proprietes" +msgstr "Propriétés" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:115 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 +msgid "thesaurus:: remplacer" +msgstr "Remplacer" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:138 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 +msgid "thesaurus:: %hits% reponses retournees" +msgstr "%hits% enregistrements retournés" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:160 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 +msgid "thesaurus:: synonymes" +msgstr "Synonymes" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:164 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 +msgid "thesaurus:: hits" +msgstr "hits" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:168 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 +msgid "thesaurus:: ids" +msgstr "Nom de l'utilisateur" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:438 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 +#, php-format +msgid "thesaurus:: Confirmer la suppression du terme %s" +msgstr "Confirmer la suppression du terme \"%s\"" + +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:126 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 +msgid "reponses:: partager" +msgstr "Partager" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:37 +msgid "thesaurus:: accepter..." +msgstr "Accepter" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:181 +msgid "thesaurus:: removed_src" +msgstr "removed_src" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:187 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:216 +msgid "thesaurus:: refresh" +msgstr "Rafraîchir" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:210 +msgid "thesaurus:: removed tgt" +msgstr "removed_tgt" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:261 +msgid "thesaurus:: Accepter le terme comme" +msgstr "Accepter le terme comme :" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:269 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:292 +msgid "thesaurus:: comme terme specifique" +msgstr "Terme spécifique" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:278 +msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +msgstr "en tant que synonyme de %fullpath_tgt_raw%" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:289 +msgid "thesaurus:: Accepter la branche comme" +msgstr "Accepter la branche comme" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:323 +msgid "" +"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " +"ne peut etre accepte" +msgstr "" +"A cet emplacement du thesaurus, un terme candidat du champ %cfield% ne peut " +"pas être accepté." + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:35 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 +msgid "Access history" +msgstr "Historique d'accès" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:47 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +msgid "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." +msgstr "" +"Si vous remarquez des périphériques ou des localisations inconnus, cliquer " +"sur \"Mettre fin à la session\"." + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:57 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +msgid "Date de connexion" +msgstr "Date de connexion" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:63 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +msgid "Dernier access" +msgstr "Dernier accès" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:69 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +msgid "IP" +msgstr "Adresse IP" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:75 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 +msgid "Browser" +msgstr "Navigateur" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:101 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:103 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +msgid "End Activity" +msgstr "Mettre fin à la session" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:109 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:109 +msgid "Current session" +msgstr "Session en cours" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:162 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +msgid "End session activity" +msgstr "Clore la session" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:168 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +msgid "Do you really want to end the activity of this session?" +msgstr "Voulez-vous vraiment mettre fin à l'activité de cette session ?" + +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:184 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 +msgid "boutton::mettre a jour" +msgstr "Mettre à jour" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:22 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 +msgid "Phrasea search-engine configuration" +msgstr "Configuration du moteur de recherche Phrasea" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:33 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemmes" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:37 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Activiter les Stemmes" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:47 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 +msgid "Default sort" +msgstr "Tri par défaut" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:22 +msgid "thesaurus:: Nouveau terme" +msgstr "Nouveau terme" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:25 +msgid "thesaurus:: terme" +msgstr "Terme" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:32 +msgid "thesaurus:: synonyme" +msgstr "Synonyme" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:103 +msgid "thesaurus:: contexte" +msgstr "Contexte" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:111 +msgid "phraseanet:: language" +msgstr "Langue" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:29 +msgid "The following errors have been detected" +msgstr "Les erreurs suivantes ont été détectées." + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:50 +msgid "Would you like to continue ?" +msgstr "Voulez-vous continuer ?" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:87 +msgid "Apply a model" +msgstr "Appliquer un modèle" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:146 +msgid "You need define a model before importing a list of users" +msgstr "Vous devez définir un modèle avant d'importer une liste d'utilisateurs" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:155 +msgid "There is no user to add." +msgstr "Il n'y a pas d'utilisateur à ajouter." + +#: tmp/cache_twig/cf/3e/e1d89f6514485729bfa2ba6dc3be1d53c29c1d22dce9eee2e2b2faacbf67.php:35 +#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 +msgid "Page" +msgstr "Page" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:22 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 +msgid "admin::tasks: planificateur de taches" +msgstr "Planificateur de tâches" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:27 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 +msgid "Last update at" +msgstr "Dernière mise à jour à" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:54 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 +msgid "admin::tasks: statut de la tache" +msgstr "Statut" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:58 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 +msgid "admin::tasks: process_id de la tache" +msgstr "Process_id" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:62 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 +msgid "admin::tasks: etat de progression de la tache" +msgstr "Progression" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:135 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +msgid "Start" +msgstr "Démarrer" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:141 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +msgid "Stop" +msgstr "Arrêter" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:153 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +msgid "Logs" +msgstr "Historique" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:216 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 +msgid "admin::tasks: Nouvelle tache" +msgstr "Nouvelle tâche" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:468 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 +msgid "admin::tasks: supprimer la tache ?" +msgstr "Supprimer la tâche ?" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:100 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 +msgid "Informations personnelles" +msgstr "Informations personnelles" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:198 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 +msgid "login:: Changer mon adresse email" +msgstr "Changer mon adresse e-mail" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:206 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 +msgid "Password" +msgstr "Mot de passe" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:213 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 +msgid "admin::compte-utilisateur changer mon mot de passe" +msgstr "Changer mon mot de passe" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:324 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 +msgid "Notification par email" +msgstr "Notifications par e-mail" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:386 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 +msgid "FTP" +msgstr "Serveur FTP" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:393 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 +msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +msgstr "Activer la fonction FTP" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:468 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 +msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +msgstr "Préfixe des noms de dossier" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:25 +msgid "Updated structure" +msgstr "Structure mise à jour" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:29 +msgid "Structure has been successfully updated" +msgstr "La structure a été mise à jour" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:45 +msgid "Structure errors" +msgstr "Erreurs dans la structure" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:49 +msgid "admin::base: xml invalide, les changements ne seront pas appliques" +msgstr "Le XML n'est pas valide, les changements ne seront pas appliqués" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:105 +msgid "admin::base: structure" +msgstr "Structure" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:35 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 +msgid "new client application" +msgstr "Nouvelle application cliente" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:80 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 +msgid "Nom" +msgstr "Nom" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:106 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 +msgid "Site web" +msgstr "Site Internet" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:123 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 +msgid "Type d'application" +msgstr "Type d'application" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:133 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 +msgid "Application web" +msgstr "Application Internet" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:144 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 +msgid "Application desktop" +msgstr "Application" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:27 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 +msgid "phraseanet::status bit" +msgstr "Status" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:40 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 +msgid "status:: nom" +msgstr "Nom" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:44 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 +msgid "status:: cherchable par tous" +msgstr "Cherchable par tous" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:48 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 +msgid "status:: Affichable pour tous" +msgstr "Symboles affichés" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "oui" +msgstr "Oui" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "non" +msgstr "Non" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:184 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 +msgid "An error occurred" +msgstr "Un erreur est survenue" + +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 +#, php-format +msgid "%entry_length% documents" +msgstr "%entry_length% documents" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:158 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:158 msgid "Aucun statut editable" msgstr "Aucun status à éditer" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:164 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:164 msgid "" "Les status de certains documents ne sont pas accessibles par manque de droits" @@ -8907,86 +11507,107 @@ msgstr "" "Vous ne disposez pas des droits nécessaires pour accéder aux status de " "certains documents" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:242 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:242 msgid "boutton::remplacer" msgstr "Remplacer" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:273 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:273 msgid "phraseanet:: presse-papier" msgstr "Presse-papier" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:281 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:281 msgid "prod::editing: rechercher-remplacer" msgstr "Rechercher / Remplacer" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:285 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:285 msgid "prod::editing: modeles de fiches" msgstr "Modèles" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:332 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:332 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Remplacer dans le champ" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:338 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:338 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Remplacer dans tous les champs" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:363 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:363 msgid "prod::editing:replace: chaine a rechercher" msgstr "Rechercher" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:372 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:372 msgid "prod::editing:remplace: chaine remplacante" msgstr "Remplacer par" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:381 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:381 msgid "prod::editing:remplace: options de remplacement" msgstr "Options" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:387 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:387 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Expression régulière" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:418 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:418 msgid "Aide sur les expressions regulieres" msgstr "Aide sur les expressions régulières" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:427 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:427 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Remplacer tout" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:433 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:433 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Insensible à la casse" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:440 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:440 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Champ complet" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:446 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:446 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "Contenu dans le champ" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:452 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:452 msgid "prod::editing:remplace::option respecter la casse" msgstr "Respecter la casse" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:503 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:503 msgid "prod::editing:indexation en cours" msgstr "Indexation en cours" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:528 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:528 msgid "prod::editing: valider ou annuler les modifications" msgstr "Valider ou annuler les modifications" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:536 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:536 msgid "edit::preset:: titre" msgstr "Nom du modèle" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:545 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:545 msgid "Edition impossible" msgstr "Edition impossible" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:554 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:554 msgid "" "prod::edit: Impossible d'editer simultanement des documents provenant de " @@ -8995,6 +11616,7 @@ msgstr "" "Impossible d'éditer simultanément des documents provenant de bases " "différentes" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:560 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:560 msgid "" "prod::editing: aucun documents ne peuvent etre edites car vos droits sont " @@ -9003,6 +11625,7 @@ msgstr "" "Aucun document ne peut être édité car vous ne disposez pas des autorisations " "nécessaires" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:597 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:597 msgid "" "prod::editing: %not_actionable% documents ne peuvent etre edites car vos " @@ -9011,6 +11634,7 @@ msgstr "" "%not_actionable% document(s) éditables, vous ne disposez pas des " "autorisations nécessaires" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:603 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:603 msgid "" "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" @@ -9018,270 +11642,106 @@ msgstr "" "Vous ne possédez pas les autorisations d'accès requises pour éditer 1 " "document" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:764 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:764 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Certains champs doivent être remplis pour valider" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:797 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:797 msgid "edit: chosiir limage du regroupement" msgstr "Définir comme image principale" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:843 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:843 msgid "prod::editing::fields: status " msgstr "Status " +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:894 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:894 msgid "Ce champ est decrit comme un element DublinCore" msgstr "Ce champ est décrit comme un élément DublinCore" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:903 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:903 msgid "This field represents the title of the document" msgstr "Ce champ est utilisé pour affecter un titre à l'enregistrement" -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 -msgid "Retour a laccueil" -msgstr "Retour à l'accueil" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:22 +msgid "Upload a csv file for users creation" +msgstr "Importer un fichier CSV pour créer des utilisateurs" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 -msgid "Vous avez recu un nouveau panier" -msgstr "Vous avez reçu un nouveau panier" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:40 +msgid "An error occured while upload the file. Please retry" +msgstr "" +"Une erreur s'est produite lors du chargement du fichier. Veuillez réessayer." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 -msgid "Vous avez recu une demande de validation de document sur ce panier" -msgstr "Vous avez reçu une demande de validation des documents de ce panier" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:46 +msgid "Row login is missing, script has stopped" +msgstr "La colonne Login est manquante. Le script s'est arrêté." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 -msgid "action::exporter" -msgstr "Exporter" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:52 +msgid "Row password is missing, script has stopped" +msgstr "La colonne Password est manquante. Le script s'est arrêté." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 -msgid "action::editer" -msgstr "Editer" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:58 +msgid "Row mail is missing, script has stopped" +msgstr "La colonne Mail est manquante. Le programme s'est arrêté." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 -msgid "action::Valider" -msgstr "Valider" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:64 +msgid "The file does not contains any user to add" +msgstr "Le fichier ne contient pas d'utilisateurs à ajouter." -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "Vous avez envoyé ce panier pour validation" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:108 +msgid "You can download an example by clicking here" +msgstr "Télécharger un exemple de fichier CSV" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 -msgid "paniers:: panier recu de %pusher%" -msgstr "Panier reçu de %pusher%" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 -msgid "action::renommer" -msgstr "Renommer" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 -msgid "Archive" -msgstr "Archiver" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 -msgid "action::detacher" -msgstr "Détacher" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 -msgid "delete" -msgstr "Supprimer" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 -msgid "panier:: ordre du panier" -msgstr "Ordre du panier" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 -msgid "panier:: ordre Validation ascendante" -msgstr "Mieux noté" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 -msgid "panier:: ordre Validation descendante" -msgstr "Moins noté" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 -msgid "L'utilisateur approuve ce document" -msgstr "L'utilisateur approuve ce document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "L'utilisateur n'a pas encore donné son avis sur ce document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 -msgid "L'utilisateur desapprouve ce document" -msgstr "L'utilisateur désapprouve ce document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 -msgid "This user does not participate to the validation but is only viewer." -msgstr "Cet utilisateur ne participe pas à la validation" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 -msgid "General settings" -msgstr "Paramètre généraux" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 -msgid "your configuration" -msgstr "Votre configuration" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 -msgid "all caches services have been flushed" -msgstr "Tous les services de caches ont été purgés" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 -msgid "setup:: administrateurs de l'application" -msgstr "Administrateurs de l'application" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 -msgid "Add an admin" -msgstr "Ajouter un administrateur Phraseanet" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 -msgid "setup:: Reinitialisation des droits admins" -msgstr "Ré-initialisation des droits des administrateurs" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 -msgid "boutton::reinitialiser" -msgstr "Ré-initialiser" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 -msgid "setup::Tests d'envois d'emails" -msgstr "Tests d'envois d'e-mails" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 -msgid "Email test result : %email_status%" -msgstr "Résultat du test d'e-mail : %email_status%" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 -msgid "Reset cache" -msgstr "Réinitialiser le cache" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 -msgid "Requirements" -msgstr "Prérequis" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 -msgid "Recommendations" -msgstr "Recommandation" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 -msgid "Phrasea search-engine configuration" -msgstr "Configuration du moteur de recherche Phrasea" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 -msgid "Stemming" -msgstr "Stemmes" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 -msgid "Enable stemming" -msgstr "Activiter les Stemmes" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 -msgid "Default sort" -msgstr "Tri par défaut" - -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:203 -msgid "boutton::publier" -msgstr "Publier" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:116 +msgid "You can download the documentation here" +msgstr "Télécharger une documentation succincte" +#: tmp/cache_twig/ea/05/08255f94fc4216dbff13166ede04e1c038faf7332a59c93ff40e9e3dd830.php:26 #: tmp/cache_twig/fc/40/b874454c3bf222948d849229781e.php:26 msgid "Caption" msgstr "Description" +#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 +msgid "validation:: note" +msgstr "Annotation" + +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:38 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:38 msgid "thesaurus:: Importer" msgstr "Importer" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:101 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:101 msgid "thesaurus:: langue par default" msgstr "Langue par défaut" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:109 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:109 msgid "Fichier ASCII tabule" msgstr "Fichier ASCII tabulé" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:119 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:119 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Supprimer le(s) lien(s) entre le(s) branche(s) et le(s) champ(s)" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:125 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:125 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Ré-indexer après l'import" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 -msgid "Informations personnelles" -msgstr "Informations personnelles" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 -msgid "login:: Changer mon adresse email" -msgstr "Changer mon adresse e-mail" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -msgid "Password" -msgstr "Mot de passe" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "Changer mon mot de passe" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 -msgid "Notification par email" -msgstr "Notifications par e-mail" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 -msgid "FTP" -msgstr "Serveur FTP" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "Activer la fonction FTP" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "Préfixe des noms de dossier" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %instance_title%!" -msgstr "" -"Remplissez les champs ci-dessous pour vous inscrire sur %instance_title%." - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 -msgid "Request access" -msgstr "Demande d'accès" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "Le champ doit contenir au minimum %minLength% caractères." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "Le champ ne peut contenir plus de %maxLength% caractères." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "Les indications données ci-dessous sont à titre informatif." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 -msgid "" -"Si vous ne les respectez pas, les documents seront correctement indexes, " -"mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" -"Si vous ne les respectez pas, les documents seront correctement indexés, " -"mais les métadonnées inscrites risquent d’être erronées" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 -msgid "" -"Ces informations sont directement fournies par la norme de metadonnees de ce " -"champ : %norm_name%" -msgstr "" -"Ces informations sont directement fournies par la norme de métadonnées de ce " -"champ : %norm_name%" - #: lib/Alchemy/Phrasea/Border/Checker/Colorspace.php:65 msgid "The file does not match available color" msgstr "Ce fichier ne correspond pas aux espaces couleurs autorisés" @@ -9486,49 +11946,49 @@ msgstr "Le base de données ne peut pas être vide" msgid "Database could not be mounted" msgstr "Le base de données ne peut pas être montée" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:129 msgid "Something wrong happened, please try again or contact an admin." msgstr "" "Quelque chose ne fonctionne pas correctement. Veuillez réessayer ou " "contactez un administrateur." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 #, php-format msgid "%s field has been created with success." msgstr "Le champ %s a été créé avec succès." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 #, php-format msgid "%s field has been deleted with success." msgstr "Le champ %s a été supprimé avec succès." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 #, php-format msgid "Do you really want to delete the field %s ?" msgstr "Voulez-vous vraiment supprimer le champ %s ?" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 msgid "Field can not be blank." msgstr "Le champ ne peut être vide." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 msgid "Field name already exists." msgstr "Le nom de champ existe déjà." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 msgid "Field name is not valid." msgstr "Le nom du champ est incorrect" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 msgid "Field source is not valid." msgstr "La source du champ est incorrecte" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 #, php-format msgid "Field %s contains errors." msgstr "Le champ %s contient des erreurs." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:139 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 msgid "Your configuration has been successfuly saved." msgstr "La configuration a été sauvegardée avec succès." @@ -9588,50 +12048,50 @@ msgstr "La mise à jour a échoué" msgid "Clear" msgstr "Effacer" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:555 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:564 msgid "" "login::register:email: Vous avez ete accepte sur les collections suivantes : " msgstr "Votre accès a été validé pour les collections suivantes : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:558 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:567 msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " msgstr "Votre accès à été refusé pour les collections suivantes : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:662 #, php-format msgid "Login line %d is empty" msgstr "La ligne Login %d est vide" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:664 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "Le Login %s existe déjà à la ligne %d." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:667 #, php-format msgid "Login %s already exists in database" msgstr "Le Login %s existe déjà dans la base." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:678 #, php-format msgid "Mail line %d is empty" msgstr "La colonne Mail de la ligne %d est vide." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Email '%s' for login '%s' already exists in database" msgstr "" "L'adresse e-mail '%s' pour l'identifiant '%s' existe déjà dans la base de " "données." -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:690 #, php-format msgid "Password is empty at line %d" msgstr "Le mot de passe (Password) est vide à la ligne %d" #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1010 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1025 msgid "login::erreur: Erreur d'authentification" msgstr "Erreur d'authentification" @@ -9672,7 +12132,7 @@ msgid "boutton::renouveller" msgstr "Renouveler" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Print" msgstr "Imprimer" @@ -9756,11 +12216,11 @@ msgstr "%d documents en attente" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 msgid "Export" msgstr "Exporter" -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:245 +#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:244 msgid "Vocabulary not found" msgstr "Vocabulaire non trouvé" @@ -10009,60 +12469,64 @@ msgstr "Aucun document sélectionné" msgid "List name can not be empty" msgstr "Le nom de la liste ne peut être vide" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +msgid "Please provide a name for this selection." +msgstr "Veuillez indiquer un nom pour cette sélection." + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 #, php-format msgid "%d fields have been updated" msgstr "%d ont été mis à jour" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "No users selected" msgstr "Aucun utilisateur sélectionné" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "An error occurred reading this file" msgstr "Une erreur est survenue à la lecture de ce fichier" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 msgid "Please select one record" msgstr "Veuillez choisir un enregistrement" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 msgid "You can choose only one record" msgstr "Vous ne pouvez choisir qu'un seul enregistrement" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 msgid "An error occured, please retry" msgstr "Une erreur est survenue, veuillez essayer à nouveau" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Some files are being downloaded" msgstr "Des documents sont en cours de téléchargement" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 msgid "This feature is not supported by your browser" msgstr "Cette fonction n'est pas supportée par votre navigateur" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "No active basket" msgstr "Aucun panier actif" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Force sending of the document ?" msgstr "Forcer l'envoi du document ?" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Share" msgstr "Partager" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Move" msgstr "Déplacer" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Tool box" msgstr "Outils" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:113 msgid "Attention !" msgstr "Attention !" @@ -10131,87 +12595,87 @@ msgstr "" "administrateur si le problème persiste" #: lib/Alchemy/Phrasea/Controller/Prod/Push.php:154 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:274 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:269 msgid "Unable to send the documents" msgstr "Impossible d'envoyer les documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:163 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:160 #, php-format msgid "Push from %s" msgstr "Push de %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:166 msgid "No receivers specified" msgstr "Aucun destinataire indiqué" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:170 msgid "No elements to push" msgstr "Aucun élément à Pusher" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:182 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:371 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:361 #, php-format msgid "Unknown user %d" msgstr "User %d inconnu" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:248 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d enregistrements ont été envoyés à %2$d utilisateurs" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:287 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:279 #, php-format msgid "Validation from %s" msgstr "Validation de %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:285 msgid "No participants specified" msgstr "Aucun participant indiqué" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:299 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:289 msgid "No elements to validate" msgstr "Il n'y a pas de documents à valider" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:365 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:355 #, php-format msgid "Missing mandatory parameter %s" msgstr "Paramètre obligatoire manquant : %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:457 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:447 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" "%1$d enregistrements ont été envoyés pour validation à %2$d utilisateurs" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:521 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:511 msgid "You are not allowed to add users" msgstr "Vous n'êtes pas autorisé à ajouter des utilisateurs" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:514 msgid "First name is required" msgstr "Le prénom est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:527 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "Last name is required" msgstr "Le nom est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:530 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "Email is required" msgstr "L'adresse email est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:533 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Email is invalid" msgstr "L'email est invalide" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:547 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 msgid "User already exists" msgstr "L'utilisateur existe déjà" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:560 msgid "User successfully created" msgstr "Utilisateur créé avec succès" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:574 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:564 msgid "Error while creating user" msgstr "Erreur lors de la création de l'utilisateur" @@ -10518,7 +12982,7 @@ msgid "report:: module" msgstr "Module" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:591 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:606 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Mise à jour du mot de passe effectuée" @@ -10575,159 +13039,159 @@ msgstr "Changements confirmés" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Erreur lors de l'enregistrement des modifications" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:204 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Please provide a value." msgstr "Veuillez indiquer une valeur." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 #, php-format msgid "Please select at least %s choice." msgstr "Sélectionnez au moins %s choix." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Please provide a valid email address." msgstr "Veuillez indiquer une adresse e-mail valide." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:222 msgid "Please provide a valid IP address." msgstr "Veuillez indiquer une adresse IP valide." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:223 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "Veuillez indiquer une valeur plus grande : %s caractères ou plus." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:224 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "Veuillez indiquer des mots de passe identiques" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:225 msgid "Please provide the same emails." msgstr "Veuillez indiquer les mêmes adresses e-mails." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:226 msgid "Please accept the terms of use to register." msgstr "Veuillez accepter les condtions d'utilisation pour vous inscrire." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:227 msgid "No collection selected" msgstr "Aucune collection sélectionnée" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 #, php-format msgid "%d collection selected" msgstr "%d collection sélectionnée" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:229 #, php-format msgid "%d collections selected" msgstr "%d collections sélectionnées" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:230 msgid "Select all collections" msgstr "Sélectionner toutes les collections" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:217 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:232 msgid "Weak" msgstr "Faible" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:233 msgid "Ordinary" msgstr "Normale" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:234 msgid "Good" msgstr "Bonne" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:235 msgid "Great" msgstr "Excellente" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:263 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:270 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:278 msgid "You tried to register with an unknown provider" msgstr "Vous tentez de vous inscrire auprès d'un fournisseur inconnu." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:290 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:305 msgid "Invalid captcha answer." msgstr "La réponse au code CAPTCHA est incorrecte." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:395 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:466 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:410 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:481 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "Demande de confirmation envoyée par e-mail" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:398 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:413 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:484 msgid "Unable to send your account unlock email." msgstr "Impossible d'adresser l'e-mail de déverrouillage du compte." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:459 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:474 msgid "Invalid link." msgstr "Lien non valide." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:508 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:516 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:524 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:523 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:539 msgid "Invalid unlock link." msgstr "Lien de déverrouillage non valide." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:530 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:545 msgid "Account is already unlocked, you can login." msgstr "Le compte est déjà déverrouillé. Vous pouvez vous connecter." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:541 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:556 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account has been unlocked, you can now login." msgstr "Le compte a été débloqué. Vous pouvez maintenant vous connecter." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:557 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:572 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" "Le compte a été débloqué. Vous devez toutefois attendre l'approbation d'un " "administrateur." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:627 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:642 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Le compte n'a pas été trouvé" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:633 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:648 msgid "Invalid email address" msgstr "Adresse E-mail invalide" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:649 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Un e-mail vient de vous être envoyé" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:697 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:712 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "Vous êtes maintenant déconnecté. A bientôt." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:724 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:739 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "Connexion impossible, contactez un administrateur système" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:769 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:784 msgid "Phraseanet guest-access is disabled" msgstr "L'accès invité de Phraseanet est désactivé." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:889 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:904 #, php-format msgid "Unable to authenticate with %s" msgstr "Impossible de s'authentifier avec %s" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:913 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:928 msgid "Unable to retrieve provider identity" msgstr "Impossible de récupérer l'identité auprès du fournisseur." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:952 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:967 msgid "Your identity is not recognized." msgstr "Votre identité n'est pas reconnue." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:984 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" @@ -10735,11 +13199,11 @@ msgstr "" "Une erreur inattendue s'est produite pendant le processus " "d'authentification. Veuillez contacter un administrateur." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1014 msgid "Please fill the captcha" msgstr "Veuillez remplir le champ CAPTCHA" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1003 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1018 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Accès impossible, vous n'avez pas confirmé votre adresse e-mail." @@ -10749,47 +13213,47 @@ msgstr "" "L'application va être désactivée pour maintenance, merci de vous déconnecter " "dès que possible" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:430 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Fichier généré le %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:447 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:446 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s fichier(s) généré(s)" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:449 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:448 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Erreur lors de l'enregistrement du fichier" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:609 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:608 #, php-format msgid "over-indent at line %s" msgstr "over-indent at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:616 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:615 #, php-format msgid "bad encoding at line %s" msgstr "bad encoding at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:622 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:621 #, php-format msgid "bad character at line %s" msgstr "bad character at line %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1819 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1976 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3195 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1818 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1975 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3194 msgid "thesaurus:: corbeille" msgstr "Stock" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1608 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1616 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "%d enregistrement(s) mis à jour" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1611 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1619 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "Trop d'enregistrements à mettre à jour(%1$d demandés, maximum %2$d)" @@ -10889,16 +13353,16 @@ msgstr "Mot de passe actuel" msgid "Default basket" msgstr "Panier par défaut" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:596 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:599 msgid "Email addess is not valid" msgstr "L'adresse email n'est pas valide" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:624 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:627 #, php-format msgid "You will now receive notifications at %s" msgstr "Vous recevrez désormais des notification sur %s" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:635 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:638 #, php-format msgid "You will no longer receive notifications at %s" msgstr "Vous ne recevrez plus de notifications sur %s" @@ -11131,13 +13595,17 @@ msgstr "Démarrer la validation" msgid "Validation request from %s : '%s'" msgstr "Demande de validation de la part de %s : %s" -#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:72 #, php-format msgid "You have %d days to validate the selection." msgstr "" "Vous disposez de %d jours pour exprimer des avis et commentaires sur les " "documents séléctionnés." +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +msgid "You have 1 day to validate the selection." +msgstr "Vous avez 1 jour pour valider la sélection." + #: lib/Alchemy/Phrasea/Notification/Mail/MailRecordsExport.php:21 msgid "Vous avez recu des documents" msgstr "Vous avez reçu des documents." @@ -11432,6 +13900,3 @@ msgstr "La liste est introuvable" #: lib/Doctrine/Repositories/UsrListRepository.php:57 msgid "You have not access to this list" msgstr "Vous n'avez pas accès à cette liste" - -#~ msgid "Enable Google Chrome frame" -#~ msgstr "Proposer Google Chrome Frame aux utilisateurs d'Internet Explorer" diff --git a/locale/nl_NL/LC_MESSAGES/phraseanet.mo b/locale/nl_NL/LC_MESSAGES/phraseanet.mo index 67e3b93c9e..bd5f6e1eb0 100644 Binary files a/locale/nl_NL/LC_MESSAGES/phraseanet.mo and b/locale/nl_NL/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/nl_NL/LC_MESSAGES/phraseanet.po b/locale/nl_NL/LC_MESSAGES/phraseanet.po index fa044867e6..4ba75c04f9 100644 --- a/locale/nl_NL/LC_MESSAGES/phraseanet.po +++ b/locale/nl_NL/LC_MESSAGES/phraseanet.po @@ -7,76 +7,80 @@ msgid "" msgstr "" "Project-Id-Version: phraseanettranslation\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-09-24 11:11+0100\n" -"PO-Revision-Date: 2013-09-24 15:56+0100\n" +"POT-Creation-Date: 2013-11-12 16:57+0100\n" +"PO-Revision-Date: 2013-11-14 14:09+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 13:42+0000\n" +"X-Launchpad-Export-Date: 2013-11-14 12:56+0000\n" "X-Generator: Poedit 1.5.7\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 +#: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" msgstr "Cache wordt gewist" -#: lib/classes/appbox.php:305 +#: lib/classes/appbox.php:306 msgid "Creating new tables" msgstr "Niewe tabellen maken" -#: lib/classes/appbox.php:319 +#: lib/classes/appbox.php:320 msgid "Purging directories" msgstr "Mappen ledigen" -#: lib/classes/appbox.php:342 +#: lib/classes/appbox.php:343 msgid "Copying files" msgstr "Bezig met kopiëren" -#: lib/classes/appbox.php:361 +#: lib/classes/appbox.php:362 msgid "Upgrading appbox" msgstr "Appbox wordt geüpdate" -#: lib/classes/appbox.php:369 +#: lib/classes/appbox.php:370 #, php-format msgid "Upgrading %s" msgstr "%s wordt bijgewerkt" -#: lib/classes/appbox.php:377 +#: lib/classes/appbox.php:378 msgid "Post upgrade" msgstr "Laadt update" -#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 +#: lib/classes/appbox.php:392 lib/classes/appbox.php:394 msgid "" "Your install requires data migration, please execute the following command" msgstr "Uw installatie heeft data migratie nodig, voer volgend commando uit" -#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 +#: lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "Uw installatie moet de technische data herlezen" -#: lib/classes/base.php:287 +#: lib/classes/appbox.php:399 +msgid "Your install might need to build some sub-definitions" +msgstr "Uw installatie zou mogelijks enkele thumbnails moeten aanmaken" + +#: lib/classes/base.php:288 #, php-format msgid "Updating table %s" msgstr "Tabel %s wordt geupdate" -#: lib/classes/base.php:300 lib/classes/base.php:522 lib/classes/base.php:736 -#: lib/classes/base.php:749 +#: lib/classes/base.php:301 lib/classes/base.php:523 lib/classes/base.php:737 +#: lib/classes/base.php:750 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Fout bij bewerking ; fout : %s" -#: lib/classes/base.php:319 +#: lib/classes/base.php:320 #, php-format msgid "Creating table %s" msgstr "Tabel %s wordt aangemaakt" -#: lib/classes/base.php:325 lib/classes/base.php:802 +#: lib/classes/base.php:326 lib/classes/base.php:808 #, php-format msgid "Applying patches on %s" msgstr "Patches worden toegepast op %s" -#: lib/classes/base.php:766 +#: lib/classes/base.php:767 msgid "Looking for patches" msgstr "Patches zoeken" @@ -87,24 +91,27 @@ msgstr "FOUT : ALLE TAGS subdefgroup vereisen een atribuut naam" #: lib/classes/databox.php:1335 msgid "" "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" -msgstr "FOUT : De namen van de subdef moeten uniek zijn per group van subdefs" +msgstr "" +"FOUT : De namen van de thumbnail moeten uniek zijn per group van thumbnails" #: lib/classes/databox.php:1339 msgid "" "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview" "\" ou \"document\"" msgstr "" -"FOUT : de klasse van de subdef is nodig en gelijk aan \"thumbnail\", " +"FOUT : de klasse van de thumbnail is nodig en gelijk aan \"thumbnail\", " "\"voorvertoning\" of \"document\"" #: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:30 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "Productie" #: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:40 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "Klant module" @@ -112,6 +119,8 @@ msgstr "Klant module" #: lib/classes/phrasea.php:114 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:50 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:139 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "Beheerder" @@ -119,6 +128,8 @@ msgstr "Beheerder" #: lib/classes/phrasea.php:115 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:60 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:166 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "Rapport" @@ -126,12 +137,15 @@ msgstr "Rapport" #: lib/classes/phrasea.php:116 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:70 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:111 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" #: lib/classes/phrasea.php:117 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:80 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "Vergelijkings module" @@ -139,6 +153,8 @@ msgstr "Vergelijkings module" #: lib/classes/phrasea.php:118 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:90 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 @@ -148,6 +164,7 @@ msgstr "Lightbox" #: lib/classes/phrasea.php:119 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:225 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "Upload" @@ -180,9 +197,13 @@ msgstr "gisteren" #: lib/classes/queries.php:168 lib/classes/queries.php:181 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:197 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1402 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:202 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:197 #: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:104 msgid "boutton::chercher" msgstr "zoeken" @@ -200,15 +221,22 @@ msgstr "Deze waarde mag leeg zijn" msgid "Url non valide" msgstr "Geen geldig url" -#: lib/classes/API/V1/adapter.php:1100 lib/classes/API/V1/adapter.php:1146 -#: lib/classes/API/V1/adapter.php:1196 lib/classes/API/V1/adapter.php:1220 +#: lib/classes/API/V1/adapter.php:1103 lib/classes/API/V1/adapter.php:1149 +#: lib/classes/API/V1/adapter.php:1199 lib/classes/API/V1/adapter.php:1223 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:58 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:860 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:228 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:331 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:53 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:46 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:860 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:65 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 @@ -230,7 +258,7 @@ msgstr "Geen geldig url" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 @@ -246,11 +274,11 @@ msgstr "Geen geldig url" msgid "An error occured" msgstr "Er is een fout opgetreden" -#: lib/classes/API/V1/adapter.php:1194 +#: lib/classes/API/V1/adapter.php:1197 msgid "Record Not Found" msgstr "Document niet gevonden" -#: lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1221 msgid "Story Not Found" msgstr "Artikel niet gevonden" @@ -280,6 +308,7 @@ msgstr "Fout bij het coderen" #: lib/classes/Bridge/Api/Dailymotion.php:546 #: lib/classes/Bridge/Api/Youtube.php:511 +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:136 #: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:136 msgid "En cours d'encodage" msgstr "Bezig met coderen" @@ -350,6 +379,7 @@ msgid "Photos" msgstr "Foto's" #: lib/classes/Bridge/Api/Flickr.php:613 +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:43 #: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:43 msgid "Photosets" msgstr "Fotosets" @@ -458,7 +488,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "Youtube service kan niet gevonden worden." -#: lib/classes/caption/record.php:279 +#: lib/classes/caption/record.php:313 msgid "Open the URL in a new window" msgstr "Open de url in een nieuw venster" @@ -488,6 +518,7 @@ msgstr "Doelapparaat" #: lib/classes/deprecated/inscript.api.php:193 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:91 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:91 msgid "login::register: acces authorise sur la collection " msgstr "toegang toegestaan op de collectie " @@ -503,31 +534,42 @@ msgstr "toegang toegestaan op de collectie " #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:247 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:291 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:336 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:101 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:154 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:202 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:247 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:291 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:336 msgid "login::register::CGU: lire les CGU" msgstr "de CGU lezen" #: lib/classes/deprecated/inscript.api.php:203 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:144 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:144 msgid "login::register: acces refuse sur la collection " msgstr "toegang geweigerd op de collectie " #: lib/classes/deprecated/inscript.api.php:213 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:191 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:191 msgid "login::register: en attente d'acces sur" msgstr "wachtend op de toegang op" #: lib/classes/deprecated/inscript.api.php:223 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:236 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:236 msgid "login::register: acces temporaire sur" msgstr "tijdelijke toegang op" #: lib/classes/deprecated/inscript.api.php:233 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:281 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:281 msgid "login::register: acces temporaire termine sur " msgstr "tijdelijke toegang stopt op " #: lib/classes/deprecated/inscript.api.php:243 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:325 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:325 msgid "login::register: acces supendu sur" msgstr "toegang uitgesteld op" @@ -537,6 +579,8 @@ msgstr "toegang uitgesteld op" #: lib/classes/deprecated/inscript.api.php:383 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:367 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:430 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:367 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:430 msgid "" "login::register: L'acces aux bases ci-dessous implique l'acceptation des " "Conditions Generales d'Utilisation (CGU) suivantes" @@ -550,6 +594,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:395 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:400 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:454 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:400 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:454 msgid "login::register: Faire une demande d'acces" msgstr "Doe een aanvraag voor toegang" @@ -575,7 +621,7 @@ msgstr "in een nieuw venster openen" msgid "charger d'avantages de notifications" msgstr "voordelen van meldingen laden" -#: lib/classes/eventsmanager/broker.php:302 +#: lib/classes/eventsmanager/broker.php:305 msgid "Notifications globales" msgstr "Algemene meldingen" @@ -595,34 +641,49 @@ msgstr "" "Meldingen ontvangen wanneer een gebruiker zich inschrijft op een collectie" #: lib/classes/eventsmanager/notify/autoregister.php:195 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:843 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:670 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:163 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:670 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:290 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "Naam" #: lib/classes/eventsmanager/notify/autoregister.php:196 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:829 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:683 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:313 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:176 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:683 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "Voornaam" #: lib/classes/eventsmanager/notify/autoregister.php:197 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:857 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:327 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:696 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:323 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:327 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:189 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:696 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:314 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 msgid "admin::compte-utilisateur email" msgstr "Email" @@ -659,16 +720,16 @@ msgstr "Email export lukt niet" msgid "Get a notification when a mail export fails" msgstr "Krijg een melding wanneer een email export niet lukt" -#: lib/classes/eventsmanager/notify/feed.php:149 +#: lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "%1$s geeft gepubliceerd %2$s" -#: lib/classes/eventsmanager/notify/feed.php:165 +#: lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "Feeds" -#: lib/classes/eventsmanager/notify/feed.php:174 +#: lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "Ontvang een mededeling wanneer een publicatie beschikbaar is" @@ -679,6 +740,7 @@ msgstr "%1$s heeft een %2$scommande%3$s gegeven" #: lib/classes/eventsmanager/notify/order.php:161 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:265 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:265 msgid "Orders manager" msgstr "Beheerder bestellingen" @@ -724,7 +786,7 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "%1$s heeft u %2$spanier%3$s toegezonden" #: lib/classes/eventsmanager/notify/push.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Push" msgstr "Push" @@ -773,6 +835,7 @@ msgstr "wordt gemeld wanneer een document in quarantaine wordt geplaatst" #: lib/classes/eventsmanager/notify/validationreminder.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:177 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:179 msgid "Validation" msgstr "Goedkeuring" @@ -830,14 +893,22 @@ msgid "report:: collections" msgstr "Collecties" #: lib/classes/module/report.php:663 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:61 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:143 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:83 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:83 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:44 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:44 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:83 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:83 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:115 #: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:259 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:44 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:115 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:259 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:61 #: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:143 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:44 msgid "report:: Connexion" msgstr "Verbinding" @@ -872,6 +943,8 @@ msgstr "Datum" #: lib/classes/module/report.php:668 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:183 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:287 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:183 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:287 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:239 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:313 @@ -881,6 +954,8 @@ msgstr "Functie" #: lib/classes/module/report.php:669 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:191 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:295 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:191 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:295 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:313 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:240 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:314 @@ -890,6 +965,8 @@ msgstr "Activiteit" #: lib/classes/module/report.php:670 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:195 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:299 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:195 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:299 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:314 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:241 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:315 @@ -899,6 +976,8 @@ msgstr "Land" #: lib/classes/module/report.php:671 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:187 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:291 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:187 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:291 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:315 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:242 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:316 @@ -1058,6 +1137,7 @@ msgstr "Vragen" #: lib/classes/module/report/activity.php:213 #: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:448 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:448 msgid "report:: questions sans reponses" msgstr "Vragen zonder antwoord" @@ -1093,6 +1173,8 @@ msgstr "Detail van de connecties" #: lib/classes/module/report/question.php:100 #: lib/classes/module/report/sent.php:120 #: lib/classes/module/report/validate.php:120 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:50 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:68 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:50 #: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:68 msgid "report:: non-renseigne" @@ -1112,7 +1194,9 @@ msgstr "Connecties" #: lib/classes/module/report/download.php:48 #: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:48 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:48 #: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:48 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:48 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:381 msgid "report:: telechargements" msgstr "Downloads" @@ -1151,7 +1235,7 @@ msgstr "Modules" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "Informatie over gebruikers die corresponderen met %s" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1388 msgid "phraseanet::utilisateur inconnu" msgstr "Onbekende gebruiker" @@ -1245,7 +1329,7 @@ msgstr "Hotfolder" #: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 #: lib/classes/task/period/ftpPull.php:226 #: lib/classes/task/period/RecordMover.php:288 -#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/subdef.php:222 #: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "Periodiciteit van de taak" @@ -1254,7 +1338,7 @@ msgstr "Periodiciteit van de taak" #: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 #: lib/classes/task/period/ftpPull.php:229 #: lib/classes/task/period/RecordMover.php:291 -#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/subdef.php:225 #: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "secondes (unite temporelle)" @@ -1458,29 +1542,29 @@ msgstr "Record Mover" msgid "Log changes" msgstr "Log aanpassingen" -#: lib/classes/task/period/subdef.php:47 +#: lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" -msgstr "aanmaak van onderverdelingen bij orginele documenten" +msgstr "aanmaak van thumbnails bij orginele documenten" -#: lib/classes/task/period/subdef.php:58 +#: lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" -msgstr "aanmaak onderverdelingen" +msgstr "aanmaak van de thumbnails" -#: lib/classes/task/period/subdef.php:233 +#: lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "Aantal records te verwerken per batch" -#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/subdef.php:235 #: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "Herstart de taak om de X records" -#: lib/classes/task/period/subdef.php:245 +#: lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "Herstart de taak als het geheugen bereikt" -#: lib/classes/task/period/subdef.php:252 +#: lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "Probeer om de ingesloten thumbnails te extraheren" @@ -1489,8 +1573,7 @@ msgid "" "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs " "concernees)" msgstr "" -"(her)schrijven van de metadatas in de documenten (en betreffende " -"onderverdeligen)" +"(her)schrijven van de metadatas in de documenten (en betreffende thumbnails)" #: lib/classes/task/period/writemeta.php:35 msgid "task::writemeta:ecriture des metadatas" @@ -1504,144 +1587,149 @@ msgstr "verwijder metadatas die niet in de structuur voorkomen" msgid "task::_common_:records, ou si la memoire depasse" msgstr "records, of als het geheugen is opgebruikt" -#: lib/classes/User/Adapter.php:432 +#: lib/classes/User/Adapter.php:440 #, php-format msgid "A user already exists with email addres %s" msgstr "Een gebruiker met dit email adres %s bestaat reeds" -#: lib/classes/User/Adapter.php:1369 +#: lib/classes/User/Adapter.php:1382 #, php-format msgid "modele %s" msgstr "model %s" -#: lib/conf.d/_GV_template.inc.php:38 +#: lib/conf.d/_GV_template.php:38 msgid "HTTP Server" msgstr "HTTP Server" -#: lib/conf.d/_GV_template.inc.php:43 +#: lib/conf.d/_GV_template.php:43 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:34 msgid "Default language" msgstr "Standaardtaal" -#: lib/conf.d/_GV_template.inc.php:52 +#: lib/conf.d/_GV_template.php:52 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:39 msgid "Static URL" msgstr "Statische URL" -#: lib/conf.d/_GV_template.inc.php:53 +#: lib/conf.d/_GV_template.php:53 msgid "optional" msgstr "optioneel" -#: lib/conf.d/_GV_template.inc.php:58 +#: lib/conf.d/_GV_template.php:58 msgid "Maintenance state" msgstr "Staat van onderhoud" -#: lib/conf.d/_GV_template.inc.php:64 +#: lib/conf.d/_GV_template.php:64 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:31 msgid "Maintenance message" msgstr "Mededeling van onderhoud" -#: lib/conf.d/_GV_template.inc.php:70 +#: lib/conf.d/_GV_template.php:70 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:36 msgid "Enable maintenance message broadcast" msgstr "Onderhoud mededling van de uitzending inschakelen" -#: lib/conf.d/_GV_template.inc.php:76 +#: lib/conf.d/_GV_template.php:76 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:40 msgid "Log errors" msgstr "Log fouten" -#: lib/conf.d/_GV_template.inc.php:81 +#: lib/conf.d/_GV_template.php:81 msgid "Webservices connectivity" msgstr "Webservices connectiviteit" -#: lib/conf.d/_GV_template.inc.php:86 +#: lib/conf.d/_GV_template.php:86 msgid "Use Google API" msgstr "Gebruik Google API" -#: lib/conf.d/_GV_template.inc.php:93 +#: lib/conf.d/_GV_template.php:93 msgid "Geonames server address" msgstr "Geonames server adres" -#: lib/conf.d/_GV_template.inc.php:101 +#: lib/conf.d/_GV_template.php:101 msgid "Use recaptcha API" msgstr "Gebruik recaptcha API" -#: lib/conf.d/_GV_template.inc.php:109 +#: lib/conf.d/_GV_template.php:109 msgid "Recaptcha public key" msgstr "Recaptcha publieke sleutel" -#: lib/conf.d/_GV_template.inc.php:115 +#: lib/conf.d/_GV_template.php:115 msgid "Recaptcha private key" msgstr "Recaptcha private sleutel" -#: lib/conf.d/_GV_template.inc.php:120 +#: lib/conf.d/_GV_template.php:120 msgid "Youtube connectivity" msgstr "Youtube connectiviteit" -#: lib/conf.d/_GV_template.inc.php:125 +#: lib/conf.d/_GV_template.php:125 msgid "Use youtube API" msgstr "Gebruik youtube API" -#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 -#: lib/conf.d/_GV_template.inc.php:181 +#: lib/conf.d/_GV_template.php:126 lib/conf.d/_GV_template.php:157 +#: lib/conf.d/_GV_template.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "Maak API gebruiker op %s, gebruik dan %s als callback URL waarde" -#: lib/conf.d/_GV_template.inc.php:133 +#: lib/conf.d/_GV_template.php:133 msgid "Youtube public key" msgstr "Youtube publieke sleutel" -#: lib/conf.d/_GV_template.inc.php:139 +#: lib/conf.d/_GV_template.php:139 msgid "Youtube secret key" msgstr "Youtube geheime sleutel" -#: lib/conf.d/_GV_template.inc.php:145 +#: lib/conf.d/_GV_template.php:145 msgid "Youtube developer key" msgstr "Youtube ontwikkelaarssleutel" -#: lib/conf.d/_GV_template.inc.php:146 +#: lib/conf.d/_GV_template.php:146 #, php-format msgid "See %s" msgstr "Bekijk %s" -#: lib/conf.d/_GV_template.inc.php:151 +#: lib/conf.d/_GV_template.php:151 msgid "FlickR connectivity" msgstr "FlickR connectiviteit" -#: lib/conf.d/_GV_template.inc.php:156 +#: lib/conf.d/_GV_template.php:156 msgid "Use Flickr API" msgstr "Gebruik Flickr API" -#: lib/conf.d/_GV_template.inc.php:164 +#: lib/conf.d/_GV_template.php:164 msgid "Flickr public key" msgstr "Flickr publieke sleutel" -#: lib/conf.d/_GV_template.inc.php:170 +#: lib/conf.d/_GV_template.php:170 msgid "Flickr secret key" msgstr "Flickr geheime sleutel" -#: lib/conf.d/_GV_template.inc.php:175 +#: lib/conf.d/_GV_template.php:175 msgid "Dailymotion connectivity" msgstr "Dailymotion connectiviteit" -#: lib/conf.d/_GV_template.inc.php:180 +#: lib/conf.d/_GV_template.php:180 msgid "Use Dailymotion API" msgstr "Gebruik Dailymotion API" -#: lib/conf.d/_GV_template.inc.php:188 +#: lib/conf.d/_GV_template.php:188 msgid "Dailymotion public key" msgstr "Dailymotion publieke sleutel" -#: lib/conf.d/_GV_template.inc.php:194 +#: lib/conf.d/_GV_template.php:194 msgid "Dailymotion secret key" msgstr "Dailymotion geheime sleutel" -#: lib/conf.d/_GV_template.inc.php:199 +#: lib/conf.d/_GV_template.php:199 msgid "Phraseanet client API" msgstr "Phraseanet klant API" -#: lib/conf.d/_GV_template.inc.php:204 +#: lib/conf.d/_GV_template.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "Sta *Phraseanet Navigator* toe" -#: lib/conf.d/_GV_template.inc.php:205 +#: lib/conf.d/_GV_template.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" @@ -1649,27 +1737,27 @@ msgstr "" "*Phraseanet Navigator* is ten smartphone applicatie waarmee de gebruiker " "verbinding maken met op deze instantie" -#: lib/conf.d/_GV_template.inc.php:212 +#: lib/conf.d/_GV_template.php:212 msgid "Authorize Microsoft Office Plugin to connect." msgstr "Laat Microsoft Office Plugin toe om te connecteren." -#: lib/conf.d/_GV_template.inc.php:218 +#: lib/conf.d/_GV_template.php:218 msgid "Documents storage" msgstr "Documenten opslag" -#: lib/conf.d/_GV_template.inc.php:224 +#: lib/conf.d/_GV_template.php:224 msgid "Default path for datas" msgstr "Standaard pad voor data's" -#: lib/conf.d/_GV_template.inc.php:230 +#: lib/conf.d/_GV_template.php:230 msgid "Executables settings" msgstr "Executables instellingen" -#: lib/conf.d/_GV_template.inc.php:235 +#: lib/conf.d/_GV_template.php:235 msgid "Enable H264 stream mode" msgstr "Maak H264 stream mode actief" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1677,318 +1765,329 @@ msgstr "" "Gebruik met mod_token. Opgepast heeft de apache modelus en " "mod_h264_streaming mod_auth_token nodig." -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.php:243 msgid "Auth_token mount point" msgstr "Auth_token mount point" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.php:250 msgid "Auth_token directory path" msgstr "Auth_token folderpad" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.php:256 msgid "Auth_token passphrase" msgstr "Auth_token toegangszin" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.php:257 msgid "Defined in Apache configuration" msgstr "Gedefinieerd in de Apache configuratie" -#: lib/conf.d/_GV_template.inc.php:263 +#: lib/conf.d/_GV_template.php:263 msgid "php.ini path" msgstr "php.ini pad" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.php:264 msgid "Empty if not used" msgstr "Leeg als niet wordt gebruikt" -#: lib/conf.d/_GV_template.inc.php:271 +#: lib/conf.d/_GV_template.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/_GV_template.inc.php:283 +#: lib/conf.d/_GV_template.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Aantal lijnen te gebruiken voor FFMpeg" -#: lib/conf.d/_GV_template.inc.php:289 +#: lib/conf.d/_GV_template.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Maximum aantal pagina's die uit een PDF kunnen worden gedownload" -#: lib/conf.d/_GV_template.inc.php:294 +#: lib/conf.d/_GV_template.php:294 msgid "Main configuration" msgstr "Hoofd configuratie" -#: lib/conf.d/_GV_template.inc.php:299 +#: lib/conf.d/_GV_template.php:299 msgid "Admin email" msgstr "Beheerder email" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.php:305 msgid "Display the name of databases and collections" msgstr "Toon de naam van de databases en de collecties" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.php:312 msgid "Choose the title of the document to export" msgstr "Kies een naam voor het document bij de export" -#: lib/conf.d/_GV_template.inc.php:319 +#: lib/conf.d/_GV_template.php:319 msgid "Default export title" msgstr "Standaard export naam" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.php:322 msgid "Document title" msgstr "Document naam" -#: lib/conf.d/_GV_template.inc.php:323 +#: lib/conf.d/_GV_template.php:323 msgid "Original name" msgstr "Originele naam" -#: lib/conf.d/_GV_template.inc.php:329 +#: lib/conf.d/_GV_template.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Gebruik deze instellingen voor het delen op Facebook en Twitter" -#: lib/conf.d/_GV_template.inc.php:331 +#: lib/conf.d/_GV_template.php:331 msgid "Disabled" msgstr "Uitgeschakeld" -#: lib/conf.d/_GV_template.inc.php:332 +#: lib/conf.d/_GV_template.php:332 msgid "Publishers" msgstr "Uitgevers" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.php:333 msgid "Enabled" msgstr "Ingeschakeld" -#: lib/conf.d/_GV_template.inc.php:340 +#: lib/conf.d/_GV_template.php:340 msgid "Homepage" msgstr "Startpagina" -#: lib/conf.d/_GV_template.inc.php:346 +#: lib/conf.d/_GV_template.php:346 msgid "Homepage slideshow" msgstr "Startpagina diavoorstelling" -#: lib/conf.d/_GV_template.inc.php:349 +#: lib/conf.d/_GV_template.php:349 msgid "Single image" msgstr "Enkel beeld" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.php:350 msgid "Slide show" msgstr "Diavoorstelling" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.php:352 +msgid "Carousel" +msgstr "Carousel" + +#: lib/conf.d/_GV_template.php:353 +msgid "Gallery" +msgstr "Galerij" + +#: lib/conf.d/_GV_template.php:359 msgid "Search engine" msgstr "Zoekmachine" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.php:365 msgid "Minimum number of letters before truncation" msgstr "Minimum aantal tekens alvorens te ledigen" -#: lib/conf.d/_GV_template.inc.php:364 +#: lib/conf.d/_GV_template.php:366 msgid "Used in search engine" msgstr "Gebruikt in de zoekmachine" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.php:372 msgid "Default query" msgstr "Standaard vraag" -#: lib/conf.d/_GV_template.inc.php:376 +#: lib/conf.d/_GV_template.php:378 msgid "Default searched type" msgstr "Standaard gezocht type" -#: lib/conf.d/_GV_template.inc.php:377 +#: lib/conf.d/_GV_template.php:379 msgid "Used when opening the application" msgstr "Gebruikt tijdens het openen van het programma" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.php:381 msgid "Documents" msgstr "Documenten" -#: lib/conf.d/_GV_template.inc.php:380 +#: lib/conf.d/_GV_template.php:382 msgid "Stories" msgstr "Verhalen" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.php:388 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:312 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Overzicht" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.php:394 msgid "Anonymous report" msgstr "Anoniem verslag" -#: lib/conf.d/_GV_template.inc.php:393 +#: lib/conf.d/_GV_template.php:395 msgid "Hide information about users" msgstr "Verberg de informatie over gebruikers" -#: lib/conf.d/_GV_template.inc.php:399 +#: lib/conf.d/_GV_template.php:401 msgid "Additionnal modules" msgstr "Bijkomende modules" -#: lib/conf.d/_GV_template.inc.php:405 +#: lib/conf.d/_GV_template.php:407 msgid "Enable thesaurus" msgstr "Maak de thesaurus actief" -#: lib/conf.d/_GV_template.inc.php:410 +#: lib/conf.d/_GV_template.php:412 msgid "Enable multi-doc mode" msgstr "Maak de multi-doc mode actief" -#: lib/conf.d/_GV_template.inc.php:415 +#: lib/conf.d/_GV_template.php:417 msgid "Enable HD substitution" msgstr "Maak de HD substitutie actief" -#: lib/conf.d/_GV_template.inc.php:420 +#: lib/conf.d/_GV_template.php:422 msgid "Enable thumbnail substitution" msgstr "Maak de thumbnail substitutie actief" -#: lib/conf.d/_GV_template.inc.php:426 +#: lib/conf.d/_GV_template.php:428 msgid "Emails" msgstr "Emails" -#: lib/conf.d/_GV_template.inc.php:431 +#: lib/conf.d/_GV_template.php:433 msgid "Default mail sender address" msgstr "Standaard mail adres" -#: lib/conf.d/_GV_template.inc.php:437 +#: lib/conf.d/_GV_template.php:439 msgid "Prefix for notification emails" msgstr "Prefix voor email notificatie" -#: lib/conf.d/_GV_template.inc.php:443 +#: lib/conf.d/_GV_template.php:445 msgid "Use a SMTP server" msgstr "Gebruik een SMPT server" -#: lib/conf.d/_GV_template.inc.php:449 +#: lib/conf.d/_GV_template.php:451 msgid "Enable SMTP authentication" msgstr "SMTP-verificatie inschakelen" -#: lib/conf.d/_GV_template.inc.php:455 +#: lib/conf.d/_GV_template.php:457 msgid "SMTP host" msgstr "SMTP host" -#: lib/conf.d/_GV_template.inc.php:461 +#: lib/conf.d/_GV_template.php:463 msgid "SMTP port" msgstr "SMTP poort" -#: lib/conf.d/_GV_template.inc.php:467 +#: lib/conf.d/_GV_template.php:469 msgid "SMTP encryption" msgstr "SMTP-encryptie" -#: lib/conf.d/_GV_template.inc.php:470 +#: lib/conf.d/_GV_template.php:472 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:171 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:466 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:171 msgid "None" msgstr "Geen" -#: lib/conf.d/_GV_template.inc.php:478 +#: lib/conf.d/_GV_template.php:480 msgid "SMTP user" msgstr "SMTP gebruiker" -#: lib/conf.d/_GV_template.inc.php:484 +#: lib/conf.d/_GV_template.php:486 msgid "SMTP password" msgstr "SMTP wachtwoord" -#: lib/conf.d/_GV_template.inc.php:489 +#: lib/conf.d/_GV_template.php:491 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.php:496 msgid "Enable FTP export" msgstr "Schakel FPT export in" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.php:497 msgid "Available in multi-export tab" msgstr "Actief in de multi-export tab" -#: lib/conf.d/_GV_template.inc.php:501 +#: lib/conf.d/_GV_template.php:503 msgid "Enable FTP for users" msgstr "Schakel FTP in voor gebruikers" -#: lib/conf.d/_GV_template.inc.php:502 +#: lib/conf.d/_GV_template.php:504 msgid "By default it is available for admins" msgstr "Standaard is dit voor de beheerders beschikbaar" -#: lib/conf.d/_GV_template.inc.php:507 +#: lib/conf.d/_GV_template.php:509 msgid "Client" msgstr "Client" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.php:514 msgid "Maximum megabytes allowed for download" msgstr "Maximum toegestaan megabytes voor de download" -#: lib/conf.d/_GV_template.inc.php:513 +#: lib/conf.d/_GV_template.php:515 msgid "If request is bigger, then mail is still available" msgstr "Als de aanvraag groter is, dan is de mail nog steeds beschikbaar" -#: lib/conf.d/_GV_template.inc.php:519 +#: lib/conf.d/_GV_template.php:521 msgid "Search tab position" msgstr "Zoek de tab positie" -#: lib/conf.d/_GV_template.inc.php:525 +#: lib/conf.d/_GV_template.php:527 msgid "Advanced search tab position" msgstr "Uitgebreid zoeken tab positie" -#: lib/conf.d/_GV_template.inc.php:531 +#: lib/conf.d/_GV_template.php:533 msgid "Topics tab position" msgstr "Topics tab positie" -#: lib/conf.d/_GV_template.inc.php:537 +#: lib/conf.d/_GV_template.php:539 msgid "Active tab position" msgstr "Actieve tab positie" -#: lib/conf.d/_GV_template.inc.php:543 +#: lib/conf.d/_GV_template.php:545 msgid "Topics display mode" msgstr "Topics scherm modus" -#: lib/conf.d/_GV_template.inc.php:545 +#: lib/conf.d/_GV_template.php:547 msgid "Trees" msgstr "Takken" -#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.php:548 lib/conf.d/_GV_template.php:570 msgid "Drop-down" msgstr "Drop-down" -#: lib/conf.d/_GV_template.inc.php:553 +#: lib/conf.d/_GV_template.php:555 msgid "Enable roll-over on stories" msgstr "Schakel roll-over in op verhalen" -#: lib/conf.d/_GV_template.inc.php:559 +#: lib/conf.d/_GV_template.php:561 msgid "Enable roll-over on basket elements" msgstr "Schakel roll-over in op de elementen in mandjes" -#: lib/conf.d/_GV_template.inc.php:565 +#: lib/conf.d/_GV_template.php:567 msgid "Collections display mode" msgstr "Collections weergave modus" -#: lib/conf.d/_GV_template.inc.php:569 +#: lib/conf.d/_GV_template.php:571 msgid "Check-box" msgstr "Check-box" -#: lib/conf.d/_GV_template.inc.php:575 +#: lib/conf.d/_GV_template.php:577 msgid "Display the total size of the document basket" msgstr "Toon de volledige grootte van het documenten mandje" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.php:583 msgid "Display proposals tab" msgstr "Toon de voorstellen tab" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.php:589 msgid "Require authentication to download documents" msgstr "Inloggen vereist om de documenten te downloaden" -#: lib/conf.d/_GV_template.inc.php:588 +#: lib/conf.d/_GV_template.php:590 msgid "Used for guest account" msgstr "Gebruikt voor gast toegang" -#: lib/conf.d/_GV_template.inc.php:594 +#: lib/conf.d/_GV_template.php:596 msgid "Users must accept Terms of Use for each export" msgstr "Gebruiker moet gebruiksvoorwaarden aanvaarden bij iedere export" -#: lib/conf.d/_GV_template.inc.php:599 +#: lib/conf.d/_GV_template.php:601 msgid "Registration" msgstr "Registratie" -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.php:606 msgid "Auto select databases" msgstr "Auto select databanken" -#: lib/conf.d/_GV_template.inc.php:605 +#: lib/conf.d/_GV_template.php:607 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -1997,85 +2096,125 @@ msgstr "" "kan registreren uit en registratie is van toepassing voor alle toegankelijke " "databanken." -#: lib/conf.d/_GV_template.inc.php:611 +#: lib/conf.d/_GV_template.php:613 msgid "Enable auto registration" msgstr "Schakel automatisch registreren in" -#: lib/conf.d/_GV_template.inc.php:616 +#: lib/conf.d/_GV_template.php:618 msgid "Push configuration" msgstr "Push configurative" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.php:623 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Aantal dagen voor het einde van de validatie om een herinneringsmail te " "sturen." -#: lib/conf.d/_GV_template.inc.php:627 +#: lib/conf.d/_GV_template.php:629 msgid "Default validation links duration" msgstr "Standaard tijd voor de validatie links" -#: lib/conf.d/_GV_template.inc.php:628 +#: lib/conf.d/_GV_template.php:630 msgid "If set to 0, duration is permanent" msgstr "Als waar gelijk is aan 0, altijd beschikbaar" -#: lib/conf.d/_GV_template.inc.php:633 +#: lib/conf.d/_GV_template.php:635 msgid "Robot indexing" msgstr "Robot indexring" -#: lib/conf.d/_GV_template.inc.php:638 +#: lib/conf.d/_GV_template.php:640 msgid "Application title" msgstr "Programma naam" -#: lib/conf.d/_GV_template.inc.php:644 +#: lib/conf.d/_GV_template.php:646 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Sleutelwoorden die gebruikt worden voor het indexeren bij zoek robots" -#: lib/conf.d/_GV_template.inc.php:650 +#: lib/conf.d/_GV_template.php:652 msgid "Application description" msgstr "Programma omschrijving" -#: lib/conf.d/_GV_template.inc.php:656 +#: lib/conf.d/_GV_template.php:658 msgid "Google Analytics identifier" msgstr "Google Analytics-id" -#: lib/conf.d/_GV_template.inc.php:662 +#: lib/conf.d/_GV_template.php:664 msgid "Allow the website to be indexed by search engines like Google" msgstr "Sta toe om de website te indexeren voor zoek robots zoals Google" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:192 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:120 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:118 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:120 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:25 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:120 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:192 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:25 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:120 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:118 msgid "preview:: demarrer le diaporama" msgstr "start de slideshow" #: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:196 +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:124 #: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:122 #: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:124 #: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:29 #: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:124 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:196 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:29 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:124 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:122 msgid "preview:: arreter le diaporama" msgstr "stop de slideshow" +#: tmp/cache_twig/00/8b/0fb28f8bb8d0a14368015c09b484797bfd569c40fc293a81c2c9a759de95.php:77 +#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 +msgid "No matches found" +msgstr "Geen overeenkomende resultaten gevonden" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:29 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:29 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:29 +msgid "%nb_view% vue" +msgstr "%nb_view% weergave" + +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:35 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:35 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:35 +msgid "%nb_view% vues" +msgstr "%nb_view% weergaven" + #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:36 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:36 msgid "List Name" msgstr "Namen lijst" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:44 +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:102 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:120 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:44 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:99 #: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:102 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:120 #: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:99 msgid "Save" msgstr "Opslaan" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:65 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:65 msgid "Share the list" msgstr "Deel de lijst" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:70 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:70 msgid "Set sharing permission" msgstr "Stel deel permissies in" @@ -2083,77 +2222,107 @@ msgstr "Stel deel permissies in" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:85 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:415 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:419 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:72 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:147 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 msgid "Delete" msgstr "Verwijder" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:107 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:107 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:273 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:273 msgid "%length% peoples" msgstr "%length% personen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:113 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:129 #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 msgid "Edit" msgstr "Wijzigen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:155 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:155 msgid "View" msgstr "Bekijken" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:121 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:161 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:121 msgid "Push::filter on login" msgstr "filter bij login" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:167 msgid "Push::filter on name" msgstr "filter op naam" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:137 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:173 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:137 msgid "Push::filter on countries" msgstr "filter op landen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:145 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:179 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:145 msgid "Push::filter on companies" msgstr "filter op bedrijven" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:153 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:185 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:153 msgid "Push::filter on emails" msgstr "filter op emails" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:191 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:191 msgid "Push::filter on templates" msgstr "filter op templates" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:158 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:197 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:158 msgid "Push::filter starts" msgstr "filter starts" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:211 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:211 msgid "Activite" msgstr "Activiteit" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:217 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:217 msgid "Template" msgstr "Sjabloon" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:223 +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:75 #: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:75 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:223 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:89 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:89 msgid "Company" msgstr "Bedrijf" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:229 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:229 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:125 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:125 msgid "Country" msgstr "Land" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:235 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:235 msgid "Position" msgstr "Functie" @@ -2162,1171 +2331,675 @@ msgstr "Functie" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:294 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:319 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:344 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:244 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:269 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:294 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:319 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:344 #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:42 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:42 msgid "All" msgstr "Alle" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:24 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:25 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 +msgid "Reordonner automatiquement" +msgstr "Automatische bestelling" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:29 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:30 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:475 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:605 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 +msgid "Choisir" +msgstr "Kiezen" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:33 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:34 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:687 +msgid "Re-initialiser" +msgstr "Herinitialiseren" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:37 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:133 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:38 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:49 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:44 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:139 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:67 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:67 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:119 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:95 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:49 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:95 +msgid "Titre" +msgstr "Titel" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:42 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:379 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:385 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:513 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:519 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:43 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 +msgid "Re-ordonner" +msgstr "Hersorteren" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:46 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:47 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 +msgid "Inverser" +msgstr "Omkeren" + +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:117 +#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:990 +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:221 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:67 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:67 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:74 +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:195 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:125 +#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:231 +#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 +#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:180 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:134 +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:71 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:103 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 +#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:734 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:78 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:233 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:103 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:74 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:74 +#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:63 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 +#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:127 +#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 +#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:109 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:152 +#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:42 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:453 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 +#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:180 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:103 +#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:181 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:75 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:503 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:103 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:74 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:480 +#: tmp/cache_twig/b7/01/ac2e3db2f9ba29baaa8de97bd6bf202362051d3b5262c049c62f87947b66.php:81 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:76 +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:315 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:509 +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:129 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:178 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1946 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:131 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:168 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:245 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:462 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:485 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:305 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:120 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:74 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:171 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:160 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:113 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:137 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:111 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 +#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:74 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 +msgid "boutton::valider" +msgstr "bevestigen" + #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:36 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:36 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 msgid "The records have been properly ordered" msgstr "De records werden correct gesorteerd" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:42 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:51 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:51 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:42 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 msgid "Order has been sent" msgstr "Bestelling is verstuurd" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:48 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:57 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:57 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:48 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 msgid "Order has been denied" msgstr "Bestelling werd geweigerd" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:61 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:70 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:70 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:61 msgid "An error occured, please retry or contact an admin if problem persists" msgstr "" "Een fout heeft zich voorgedaan, gelieve opnieuw te proberen of contact op te " "nemen met een beheerder als het probleem zich blijft voordoen" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:75 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:75 msgid "Page %page%" msgstr "Pagina %page%" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:84 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:84 msgid "Utilisateur" msgstr "Gebruiker" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:88 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:88 msgid "Date de demande" msgstr "Datum van de aanvraag" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:92 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:104 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:104 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:92 msgid "Deadline" msgstr "Deadline" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:96 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:114 #: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:114 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:96 msgid "Utilisation prevue" msgstr "Voorzien gebruik" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:100 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:100 msgid "Statut" msgstr "Statut" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:139 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:139 msgid "Aucune" msgstr "Geen enkele" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:175 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:281 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:281 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:175 msgid "Previous" msgstr "Vorige" #: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:188 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:298 #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:298 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:188 msgid "Next" msgstr "Volgende" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:213 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:213 -msgid "You are using an outdated browser." -msgstr "U gebruikt een verouderde browser" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:217 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:217 -msgid "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." -msgstr "" -"Gelieve uw %browserLink% te vernieuwen of activeer %GCFLink% om uw ervaring " -"te verbeteren." - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:237 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:237 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:215 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:215 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:215 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:215 msgid "" "Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." msgstr "Vernieuw uw browser of download een meer recentere browser." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:243 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:243 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:221 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:221 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:221 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:221 msgid "" "Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " "Frame." msgstr "" "Als u geen andere browser kunt installeren, gebruik dan Google Chrome Frame." -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:250 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:250 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:228 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:228 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:228 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:228 msgid "Installer Google Chrome" msgstr "Installeer Google Chrome" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:256 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:256 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:234 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:234 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:234 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:234 msgid "Installer Google Chrome Frame" msgstr "Installeer Google Chrome Frame" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:324 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:324 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:324 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:324 +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:25 #: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 #: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 #: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 msgid "Home" msgstr "Startpagina" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:336 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:336 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:330 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:330 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 msgid "Help" msgstr "Help" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:370 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:364 +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:364 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:364 #: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:370 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:364 +#: tmp/cache_twig/74/72/ce1e36331d2c6d8e030e5849e6d9faa747b01380bf11dd14a9fb8681b878.php:34 #: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 msgid "Terms of use" msgstr "Gebruikersvoorwaarden" #: tmp/cache_twig/02/c8/9619136fa97ec62dab06dc28c380.php:30 +#: tmp/cache_twig/8e/c2/d739949fe6a6c8c6d3c4e91956d989a3adbd869aac5c54c923235f3bbfa3.php:30 msgid "Guest access" msgstr "Gast toegang" +#: tmp/cache_twig/02/cd/7590eeab80480f95c0887ddc6417fc86f51cab505909c6259f10f11a2e95.php:61 +#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 +#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 +#: tmp/cache_twig/e7/33/fe2890c3af702e61833b0a50667171c7bc225a50e195eb486fba6917e751.php:55 +msgid "%nb_records% records" +msgstr "%nb_records% records" + #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:35 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:35 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:35 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:35 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:35 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:35 msgid "Deplacement %n_element% elements" msgstr "%n_element% elementen verplaatsen" #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:51 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:51 msgid "Which photosets you want to put you %number% photos into ?" msgstr "In welke photoset wilt u %number% foto's plaatsen ?" -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 -#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "boutton::valider" -msgstr "bevestigen" - #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:107 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:996 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:107 #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:78 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:421 #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:107 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:142 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:82 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:107 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:78 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:78 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:78 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:67 #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:78 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:119 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:107 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:421 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:223 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:78 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:213 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:119 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:324 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:188 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:78 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:131 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:78 msgid "boutton::retour" msgstr "terug" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:28 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:83 #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:381 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:231 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:28 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:144 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:335 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:1024 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:381 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:343 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:29 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:88 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:228 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:488 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1080 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2113 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 msgid "action : exporter" msgstr "Exporteer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:69 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:155 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:35 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:105 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:498 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1090 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:105 msgid "action : print" msgstr "Print" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 +#: tmp/cache_twig/9e/7a/714c406cc01b2ef18eaa625a977077a4b2b2545345b30f9715aa3ab4ca50.php:34 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:45 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1109 msgid "action : editer" msgstr "Wijzigen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:57 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:58 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1127 msgid "action : status" msgstr "Status" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:70 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:71 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1145 msgid "action : collection" msgstr "Collectie" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:83 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:84 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1324 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1369 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:96 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:97 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1334 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1379 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:107 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:108 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1344 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1394 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2104 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:114 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1354 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1404 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2109 msgid "action : publier" msgstr "Publiceren" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:126 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:127 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1424 msgid "action : outils" msgstr "Gereedschappen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:370 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:134 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:129 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:325 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1440 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:370 msgid "action : supprimer" msgstr "Verwijderen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:147 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:147 msgid "Certaines donnees du reportage ont change" msgstr "Sommige gegevens van de reportage zijn veranderd" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:152 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:49 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:152 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:145 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:47 #: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:62 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:145 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:47 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:62 #: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:49 msgid "rafraichir" msgstr "vernieuwen" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 -msgid "VALIDATION" -msgstr "VALIDATIE" +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:35 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:95 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 +#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 +msgid "report:: activite par jour" +msgstr "Activiteit per dag" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 -msgid "lightbox::recaptitulatif" -msgstr "Beknopt" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:38 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:36 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 +msgid "Renew password" +msgstr "Vernieuw password" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:100 -msgid "validation:: OUI" -msgstr "JA" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:51 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:49 +#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 +#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 +msgid "Choose a new password" +msgstr "Kies een nieuw paswoord" -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 -msgid "validation:: NON" -msgstr "NEE" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:27 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:27 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 +msgid "thesaurus:: Lier la branche de thesaurus" +msgstr "Link de tak van de thesaurus" -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "In welke playlist wilt u %number% items plaatsen ?" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:48 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 +msgid "thesaurus:: suppression du lien du champ %field%" +msgstr "thesaurus:: verwijdering van de link voor het veld %field%" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 -msgid "admin:: demandes en cours" -msgstr "Aanvragen in behandeling" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 -msgid "Requests for the application registrations were recorded successfully" -msgstr "Aanvragen voor de programma registraties zijn met succes opgenomen" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -msgid "admin:: refuser l'acces" -msgstr "Weiger de toegang" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "" -"Geef de rechten voor het downloaden en het consulteren van voorvertoningen" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "Geef de rechten voor het downloaden van voorvertoningen en hd" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 -msgid "admin:: watermarquer les documents" -msgstr "Watermerk de documenten" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 -msgid "Informations" -msgstr "Informatie" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 -msgid "admin::collection" -msgstr "Collectie" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 -msgid "Models" -msgstr "Modellen" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "Identificatie" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -msgid "admin::compte-utilisateur societe" -msgstr "Bedrijf" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -msgid "admin::compte-utilisateur poste" -msgstr "Postcode" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -msgid "admin::compte-utilisateur activite" -msgstr "Activiteit" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 -msgid "admin::compte-utilisateur telephone" -msgstr "Telefoon" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -msgid "admin::compte-utilisateur adresse" -msgstr "Adres" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 -msgid "admin:: appliquer le modele" -msgstr "admin:: gebruik dit model" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 -msgid "No application for registration has been recorded" -msgstr "Geen programma registraties werden opgenomen" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -msgid "%nb_view% vue" -msgstr "%nb_view% weergave" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 -msgid "%nb_view% vues" -msgstr "%nb_view% weergaven" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 -msgid "%nb_rating% like" -msgstr "%nb_rating% vindt ik leuk" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 -msgid "%nb_rating% likes" -msgstr "%nb_rating% vindt ik leuks" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 -msgid "notice" -msgstr "mededeling" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 -msgid "Validations" -msgstr "Controles" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 -msgid "Paniers" -msgstr "Mandjes" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 -msgid "boutton::telecharger tous les documents" -msgstr "Alle documenten downloaden" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 -#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 -msgid "Do you want to send your report ?" -msgstr "Wenst u uw rapport te sturen ?" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 -msgid "Type texte" -msgstr "Type tekst" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 -msgid "Type nombre" -msgstr "Type nummer" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 -msgid "Type date" -msgstr "Type datum" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 -msgid "Source" -msgstr "Bron" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 -msgid "Ce champ n'est pas indexe" -msgstr "Dit veld werd niet geïndexeerd" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 -msgid "Ce champ est multivalue" -msgstr "Dit veld is multi waarde" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 -msgid "Ce champ est en lecture seule" -msgstr "Dit veld is alleen lezen" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "Dit veld is gekoppeld aan een tak van de thesaurus" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "Dit veld wordt gebruikt als titel bij de voorvertoning" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 -msgid "Ce champ est requis" -msgstr "Dit veld is vereist" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "Dit veld is beschreven als %DublinCoreElementSet%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 -msgid "Par %author%" -msgstr "Per %author%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 -msgid "boutton::editer" -msgstr "Bewerken" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -msgid "boutton::supprimer" -msgstr "verwijderen" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 -msgid "Derniere mise a jour le %updated_on%" -msgstr "Laatste update %updated_on%" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 -msgid "dans %feed_name%" -msgstr "in %feed_name%" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 -msgid "Suppression de %n_element% photosets" -msgstr "Het verwijderen van %n_element% photosets" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "Bent u zeker om %number% photosets te verwijderen ?" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:81 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 msgid "" -"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "Doorsturen naar %n_user% gebruikers vanuit de programma box %appbox%" +"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" +msgstr "" +"thesaurus:: verwijdering van de kandidaat woorden tak voor het veld %field%" -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:96 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 +msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." +msgstr "Registratie van de lijst van de gewijzigde kandidaat woorden." + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:110 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 msgid "" -"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " -"box %appbox%" +"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" msgstr "" -"Aanvraag tot goedkeuring van %n_user% gebruikers vanuit de programma box " -"%appbox%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 -msgid "report::Edition des meta-donnees" -msgstr "Bewerken van de meta-data" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 -msgid "report::Changement de collection vers : %coll_name%" -msgstr "Verandering van de collectie naar : %coll_name%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 -msgid "report::Edition des status" -msgstr "Bewerking van de status" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 -msgid "report::Impression des formats : %format%" -msgstr "Formaten afdrukken : %format%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 -msgid "report::Substitution de %dest%" -msgstr "Vervanging van %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 -msgid "report::Publication de %dest%" -msgstr "Publicatie van %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 -msgid "report::Telechargement de %dest%" -msgstr "Downloaden van %dest%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 -msgid "Envoi par mail a %dest% de %content%" -msgstr "Verstuur per mail naar %dest% van %content%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "Verstuur per ftp naar %dest% van %content%" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 -msgid "report::supression du document" -msgstr "Verwijderen van het document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 -msgid "report::ajout du documentt" -msgstr "Toevoegen van het document" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "Bewerking van het document -- ik herrinner mij niet meer wat ..." - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 -msgid "report:: par %user_infos%" -msgstr "per %user_infos%" - -#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 -msgid "" -"Le connecteur API requis n'est pas configure correctement, veuillez " -"contacter un administrateur" -msgstr "" -"De vereiste API connector is niet juist ingesteld, gelieve een administrator " -"te contacteren" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 -msgid "Acces" -msgstr "Toegang" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 -msgid "Sessions" -msgstr "Sessies" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 -msgid "Applications" -msgstr "Programma's" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 -msgid "Developpeur" -msgstr "Ontwikkelaar" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 -msgid "Suppression de %n_element% videos" -msgstr "%n_element% video verwijderen" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "Bent u zeker om %number% videos te verwijderen ?" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 -msgid "Rights" -msgstr "Rechten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 -msgid "Infos" -msgstr "Informaties" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 -msgid "Reglages:: reglages d acces guest" -msgstr "instellingen voor gasttoegang" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "instellingen voor automatisch inschrijven" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 -msgid "Edition des droits de %display_name%" -msgstr "Rechten aanpassingen voor %display_name%" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "Rechten aanpassingen voor %number% gebruikers" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 -msgid "Apply a template" -msgstr "Pas een sjabloon toe" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 -msgid "boutton::choisir" -msgstr "kiezen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 -msgid "Delete all users rights" -msgstr "Verwijder alle gebruikersrechten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 -msgid "Allowed to publish" -msgstr "Publiceren toegelaten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 -msgid "Manage Thesaurus" -msgstr "Beheer Thesaurus" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 -msgid "Manage Database" -msgstr "Beheer Database" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 -msgid "Manage DB fields" -msgstr "Begeer DB velden" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 -msgid "Access" -msgstr "Toegang" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 -msgid "Active" -msgstr "Actief" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 -msgid "Allowed to add in basket" -msgstr "Toegestaan om in mandje te plaatsen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 -msgid "Access to preview" -msgstr "Toegang tot voorvertoning" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 -msgid "Remove watermark" -msgstr "Verwijder watermerk" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 -msgid "Access to HD" -msgstr "Toegang tot HD" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 -msgid "Allowed to order" -msgstr "Toegestaan om te sorteren" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 -msgid "Set download quotas" -msgstr "Stel downloaden quota in" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 -msgid "Set time restrictions" -msgstr "Stel tijdsbeperkingen in" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 -msgid "Set statuses restrictions" -msgstr "Stel statusbeperkingen in" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 -msgid "Allowed to add" -msgstr "Toegestaan om toe te voegen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 -msgid "Allowed to edit" -msgstr "Toegestaan om te bewerken" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 -msgid "Allowed to change statuses" -msgstr "Toegestaan om statussen te veranderen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 -msgid "Allowed to delete" -msgstr "Toegestaan om te verwijderen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 -msgid "Access to image tools" -msgstr "Toegang tot beeldgereedschappen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 -msgid "Manage users" -msgstr "Beheer gebruikers" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 -msgid "Allowed to access report" -msgstr "Toegestaan ​​om rapport te openen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 -msgid "Allowed to push" -msgstr "Toegestaan om door te sturen" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 -msgid "Manage collection" -msgstr "Beheer collectie" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 -msgid "Manage values lists" -msgstr "Beheer waarden lijsten" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "Geslacht" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "Jufrouw" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "Mevrouw" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "De heer" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -msgid "admin::compte-utilisateur code postal" -msgstr "Postcode" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -msgid "admin::compte-utilisateur ville" -msgstr "Star" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -msgid "admin::compte-utilisateur fax" -msgstr "Fax" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "Bent u zeker om de rechten te herstellen?" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 -msgid "No results" -msgstr "Geen resultaten" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 -msgid "1 result" -msgstr "1 resultaat" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 -msgid "%Total% results" -msgstr "%Total% resultaten" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 -msgid "Delete basket" -msgstr "Verwijder mandje" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 -msgid "Received from %user_name%" -msgstr "Ontvangen van %user_name%" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 -msgid "Sent for validation to %list_participants%" -msgstr "Voor goedkeuring verstuurd naar %list_participants%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:40 -msgid "Grant rights" -msgstr "Rechten verlenen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:51 -msgid "Contributor" -msgstr "Bijdrage" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:59 -msgid "See others" -msgstr "Zie andere" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:70 -msgid "HD Download" -msgstr "HD Download" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:79 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 -msgid "Lists" -msgstr "Lijsten" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:85 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:452 -msgid "List Manager" -msgstr "Lijstbeheerder" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:93 -msgid "Save this list" -msgstr "Bewaar deze lijst" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "Gebruikers" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:156 -msgid "Select a user in the list" -msgstr "Selecteer een gebruiker in de lijst" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:163 -msgid "or" -msgstr "of" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:168 -msgid "Add user" -msgstr "Gebruiker toevoegen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:252 -msgid "and %n% more peoples" -msgstr "en %n% meerdere personen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:275 -msgid "" -"Please consider send this push to the following users : %recommendation%" -msgstr "" -"Overweeg om deze push naar de volgende gebruikers te sturen : %recommendation" -"%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:281 -msgid "" -"Please consider send this validation to the following users : %recommendation" -"%" -msgstr "" -"Overweeg om deze goedkeuring naar de volgende gebruikers te sturen : " -"%recommendation%" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:293 -msgid "Users suggestion" -msgstr "Gebruikers suggestie" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:319 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 -msgid "Add" -msgstr "Toevoegen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:340 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "Un push laat toe om een set van beelden te sturen naar ontvangers" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:346 -msgid "" -"Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "Een goedkeuring is een aanvraag van waardering aan andere personen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:367 -msgid "Select all" -msgstr "Alles selecteren" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 -msgid "Deselect all" -msgstr "Alles deselecteren" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Send" -msgstr "Versturen" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:437 -msgid "Back to Push" -msgstr "Terug naar Push" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:443 -msgid "Back to Feedback" -msgstr "Terug naar Feedback" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:470 -msgid "Welcome to the ListManager !" -msgstr "Welkom bij de ListManager !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:479 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" -"Start met het maken van een door de \"Voeg toe\" knop links te gebruiken !" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:488 -msgid "Select a list on the left and edit it !" -msgstr "Selecteer links een lijst en bewerk hem !" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 -msgid "You do not have rights to remove all selected documents. Are you sure ?" -msgstr "" -"U hebt geen rechten om alle geselecteerde document te verwijderen. Bent u " -"zeker?" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 -msgid "These records will be definitely deleted and can not be recovered" -msgstr "" -"Deze records worden definitief verwijderd, deze actie kan niet ongedaan " -"gemaakt worden" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 -msgid "Also delete records that rely on groupings." -msgstr "Verwijder ook de records die in de groepen voorkomen?" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 -msgid "Cancel" -msgstr "Annuleren" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 -msgid "No document selected" -msgstr "Geen document geselecteerd" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 -msgid "You do not have rights to remove selected documents" -msgstr "U hebt geen rechten om de geselecteerde documenten te verwijderen" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 -msgid "Creer" -msgstr "Maken" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 -msgid "Actions" -msgstr "Acties" - -#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 -#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 -msgid "Voulez-vous dire %link% ?" -msgstr "Bedoelt u %link% ?" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:45 -msgid "report:: Du (date)" -msgstr "Du (datum)" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:57 -msgid "report:: Au (date)" -msgstr "Au (datum)" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 -#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 -#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 -msgid "report:: Dashboard" -msgstr "Dashboard" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 -msgid "validation:: votre note" -msgstr "uw nota" - +"thesaurus:: verwijdering van de indexen naar de thesaurus voor het veld " +"%field%" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:125 +#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 +msgid "thesaurus:: reindexer tous les enregistrements" +msgstr "Herindexeer alle veranderingen" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:135 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:79 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:79 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:43 #: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:74 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:968 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:283 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:86 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:43 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2019 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:74 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:54 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:516 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:524 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:196 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:225 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 @@ -3335,41 +3008,769 @@ msgstr "uw nota" msgid "boutton::fermer" msgstr "Sluiten" -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 -msgid "boutton::enregistrer" -msgstr "bewaren" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:69 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 +msgid "Rights" +msgstr "Rechten" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 -msgid "Reorder collections" -msgstr "Hersorteer collecties" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:79 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 +msgid "Infos" +msgstr "Informaties" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 -msgid "admin::base:collorder: monter" -msgstr "Laden" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:111 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:89 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:89 +msgid "Reglages:: reglages d acces guest" +msgstr "instellingen voor gasttoegang" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 -msgid "admin::base:collorder: descendre" -msgstr "Afdalen" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:117 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:97 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" +msgstr "instellingen voor automatisch inschrijven" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "Herinitialiseren in alfabetische volgorde" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:129 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 +msgid "Edition des droits de %display_name%" +msgstr "Rechten aanpassingen voor %display_name%" -#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 -#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 -msgid "%nb_records% records" -msgstr "%nb_records% records" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:141 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 +msgid "Edition des droits de %number% utilisateurs" +msgstr "Rechten aanpassingen voor %number% gebruikers" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:150 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:209 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:209 +msgid "Apply a template" +msgstr "Pas een sjabloon toe" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:155 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:214 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:214 +msgid "boutton::choisir" +msgstr "kiezen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:177 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:249 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:249 +msgid "Delete all users rights" +msgstr "Verwijder alle gebruikersrechten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:461 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 +msgid "Allowed to publish" +msgstr "Publiceren toegelaten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:470 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 +msgid "Manage Thesaurus" +msgstr "Beheer Thesaurus" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:479 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 +msgid "Manage Database" +msgstr "Beheer Database" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:488 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 +msgid "Manage DB fields" +msgstr "Begeer DB velden" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:509 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:113 +#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 +msgid "Access" +msgstr "Toegang" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:518 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 +msgid "Active" +msgstr "Actief" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:527 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 +msgid "Allowed to add in basket" +msgstr "Toegestaan om in mandje te plaatsen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:536 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 +msgid "Access to preview" +msgstr "Toegang tot voorvertoning" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:545 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 +msgid "Remove watermark" +msgstr "Verwijder watermerk" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:554 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 +msgid "Access to HD" +msgstr "Toegang tot HD" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:563 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 +msgid "Allowed to order" +msgstr "Toegestaan om te sorteren" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:572 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 +msgid "Set download quotas" +msgstr "Stel downloaden quota in" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:599 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 +msgid "Set time restrictions" +msgstr "Stel tijdsbeperkingen in" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:626 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 +msgid "Set statuses restrictions" +msgstr "Stel statusbeperkingen in" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:656 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 +msgid "Allowed to add" +msgstr "Toegestaan om toe te voegen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:665 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 +msgid "Allowed to edit" +msgstr "Toegestaan om te bewerken" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:674 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 +msgid "Allowed to change statuses" +msgstr "Toegestaan om statussen te veranderen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:683 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 +msgid "Allowed to delete" +msgstr "Toegestaan om te verwijderen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:692 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 +msgid "Access to image tools" +msgstr "Toegang tot beeldgereedschappen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:701 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 +msgid "Manage users" +msgstr "Beheer gebruikers" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:710 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 +msgid "Allowed to access report" +msgstr "Toegestaan ​​om rapport te openen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:719 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 +msgid "Allowed to push" +msgstr "Toegestaan om door te sturen" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:728 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 +msgid "Manage collection" +msgstr "Beheer collectie" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:737 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 +msgid "Manage values lists" +msgstr "Beheer waarden lijsten" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:779 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:279 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 +#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 +#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:67 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1558 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:303 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:279 +#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:112 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:105 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:429 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1558 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "Identificatie" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:793 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:118 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "Geslacht" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:804 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:645 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:131 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:645 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "Jufrouw" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:812 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:653 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:142 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:653 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "Mevrouw" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:820 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:661 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:153 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:661 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "De heer" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:871 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:748 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:363 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:220 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:748 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:301 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +msgid "admin::compte-utilisateur adresse" +msgstr "Adres" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:885 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:761 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:233 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:761 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:303 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +msgid "admin::compte-utilisateur code postal" +msgstr "Postcode" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:899 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:774 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:246 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:774 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:302 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +msgid "admin::compte-utilisateur ville" +msgstr "Star" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:913 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:735 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:339 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:259 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:735 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +msgid "admin::compte-utilisateur poste" +msgstr "Postcode" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:927 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:311 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:722 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:331 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:272 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:722 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:298 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +msgid "admin::compte-utilisateur societe" +msgstr "Bedrijf" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:941 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:347 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:285 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +msgid "admin::compte-utilisateur activite" +msgstr "Activiteit" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:956 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:709 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:355 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:298 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:709 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:306 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:305 +msgid "admin::compte-utilisateur telephone" +msgstr "Telefoon" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:970 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:787 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:787 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:306 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +msgid "admin::compte-utilisateur fax" +msgstr "Fax" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:1022 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "Bent u zeker om de rechten te herstellen?" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:26 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:238 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:27 +msgid "VALIDATION" +msgstr "VALIDATIE" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:32 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:265 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:33 +msgid "lightbox::recaptitulatif" +msgstr "Beknopt" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:115 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:123 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:115 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:129 +msgid "validation:: OUI" +msgstr "JA" + +#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:129 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:138 +#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:129 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:144 +msgid "validation:: NON" +msgstr "NEE" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:31 +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:68 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:508 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 +msgid "action : ajouter au panier" +msgstr "aan mandje toevoegen" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:54 +#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 +msgid "Remove from basket" +msgstr "Verwijder uit het mandje" + +#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:51 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:51 +#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 +msgid "Which playlist you want to put you %number% elements into ?" +msgstr "In welke playlist wilt u %number% items plaatsen ?" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:202 +msgid "admin:: demandes en cours" +msgstr "Aanvragen in behandeling" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:214 +msgid "Requests for the application registrations were recorded successfully" +msgstr "Aanvragen voor de programma registraties zijn met succes opgenomen" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:232 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:405 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:409 +msgid "admin:: refuser l'acces" +msgstr "Weiger de toegang" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:238 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:416 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:420 +msgid "admin:: donner les droits de telechargement et consultation de previews" +msgstr "" +"Geef de rechten voor het downloaden en het consulteren van voorvertoningen" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:244 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:427 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:431 +msgid "admin:: donner les droits de telechargements de preview et hd" +msgstr "Geef de rechten voor het downloaden van voorvertoningen en hd" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:250 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:438 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:442 +msgid "admin:: watermarquer les documents" +msgstr "Watermerk de documenten" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:358 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:260 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:116 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:116 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 +msgid "Informations" +msgstr "Informatie" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:264 +msgid "admin::collection" +msgstr "Collectie" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:268 +msgid "Models" +msgstr "Modellen" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:456 +msgid "admin:: appliquer le modele" +msgstr "admin:: gebruik dit model" + +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:511 +msgid "No application for registration has been recorded" +msgstr "Geen programma registraties werden opgenomen" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:25 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:25 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:25 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 +msgid "Ajouter a" +msgstr "Toevoegen aan" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:58 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:38 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:58 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:58 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:38 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:38 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 +msgid "Actions" +msgstr "Acties" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:73 +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:172 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1535 +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:328 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:73 +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:314 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:78 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:86 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:73 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:248 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:53 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:53 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 +#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:344 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:378 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:434 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:490 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:494 +msgid "boutton::supprimer" +msgstr "verwijderen" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:57 +msgid "%nb_rating% like" +msgstr "%nb_rating% vindt ik leuk" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:63 +msgid "%nb_rating% likes" +msgstr "%nb_rating% vindt ik leuks" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:169 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:195 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:168 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:154 +msgid "notice" +msgstr "mededeling" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:73 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:71 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:275 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:251 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 +msgid "Validations" +msgstr "Controles" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:199 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:197 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:308 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:284 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 +msgid "Paniers" +msgstr "Mandjes" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 +#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:202 +#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 +#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:344 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:318 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:200 +msgid "boutton::telecharger tous les documents" +msgstr "Alle documenten downloaden" + +#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:391 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 +#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 +msgid "Do you want to send your report ?" +msgstr "Wenst u uw rapport te sturen ?" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:36 +msgid "Type texte" +msgstr "Type tekst" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:42 +msgid "Type nombre" +msgstr "Type nummer" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:48 +msgid "Type date" +msgstr "Type datum" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:67 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:96 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:160 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 +msgid "Source" +msgstr "Bron" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:82 +msgid "Ce champ n'est pas indexe" +msgstr "Dit veld werd niet geïndexeerd" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:94 +msgid "Ce champ est multivalue" +msgstr "Dit veld is multi waarde" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:106 +msgid "Ce champ est en lecture seule" +msgstr "Dit veld is alleen lezen" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:118 +msgid "Ce champ est relie a une branche de thesaurus" +msgstr "Dit veld is gekoppeld aan een tak van de thesaurus" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:130 +msgid "Ce champ est utilise en titre a l'affichage" +msgstr "Dit veld wordt gebruikt als titel bij de voorvertoning" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:142 +msgid "Ce champ est requis" +msgstr "Dit veld is vereist" + +#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:160 +msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" +msgstr "Dit veld is beschreven als %DublinCoreElementSet%" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:31 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 +msgid "First Name" +msgstr "Voornaam" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:42 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 +msgid "Last Name" +msgstr "Achternaam" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:53 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 +msgid "Email Name" +msgstr "Email Naam" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:64 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 +msgid "Job" +msgstr "Taak" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:86 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 +msgid "City" +msgstr "Stad" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:98 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:350 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:113 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:32 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:406 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:410 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:350 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 +msgid "Add" +msgstr "Toevoegen" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:102 +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 +#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:117 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:346 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:78 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:346 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:135 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:151 +msgid "Cancel" +msgstr "Annuleren" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:63 +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 +msgid "Par %author%" +msgstr "Per %author%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:77 +msgid "boutton::editer" +msgstr "Bewerken" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:117 +msgid "Derniere mise a jour le %updated_on%" +msgstr "Laatste update %updated_on%" + +#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:135 +msgid "dans %feed_name%" +msgstr "in %feed_name%" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:35 +msgid "Suppression de %n_element% photosets" +msgstr "Het verwijderen van %n_element% photosets" + +#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:51 +msgid "Etes vous sur de supprimer %number% photosets ?" +msgstr "Bent u zeker om %number% photosets te verwijderen ?" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:35 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:35 msgid "Suggested values" msgstr "Voorgestelde waardes" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:48 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:36 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:55 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 @@ -3382,41 +3783,75 @@ msgstr "Voorgestelde waardes" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 msgid "Successful update" msgstr "Geslaagde update" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:72 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:72 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:111 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:311 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:111 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:311 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 msgid "phraseanet::chargement" msgstr "Laden" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:95 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:95 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Voorgestelde waardes/Voorkeuren van de collectie" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:111 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:104 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 msgid "boutton::vue xml" msgstr "xml weergave" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:115 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:108 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 msgid "boutton::vue graphique" msgstr "grafische weergave" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:130 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:130 msgid "admin::sugval: champs" msgstr "Velden" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:164 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:53 +msgid "admin::base:collorder: monter" +msgstr "Laden" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:168 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:57 +msgid "admin::base:collorder: descendre" +msgstr "Afdalen" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:176 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 +#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:61 +msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +msgstr "Herinitialiseren in alfabetische volgorde" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:196 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:196 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:246 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:473 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:246 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:473 msgid "boutton::ajouter" msgstr "Toevoegen" +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:1062 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:1062 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des " @@ -3427,136 +3862,434 @@ msgstr "" "aanpassingen verwijderd worden als u die niet eerst opslaat.\n" "Toch verdergaan" -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 -msgid "report:: activite du site" -msgstr "Activiteit van de site" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:66 +msgid "" +"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +msgstr "Doorsturen naar %n_user% gebruikers vanuit de programma box %appbox%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 -msgid "Tableau de bord" -msgstr "Regelpaneel" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:81 +msgid "" +"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " +"box %appbox%" +msgstr "" +"Aanvraag tot goedkeuring van %n_user% gebruikers vanuit de programma box " +"%appbox%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 -msgid "Setup" -msgstr "Instellingen" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:87 +msgid "report::Edition des meta-donnees" +msgstr "Bewerken van de meta-data" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 -msgid "SearchEngine settings" -msgstr "Instellingen zoek motor" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:99 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "Verandering van de collectie naar : %coll_name%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "geconnecteerde gebruikers" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:105 +msgid "report::Edition des status" +msgstr "Bewerking van de status" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 -msgid "admin::utilisateurs: utilisateurs" -msgstr "gebruikers" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:114 +msgid "report::Impression des formats : %format%" +msgstr "Formaten afdrukken : %format%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 -msgid "admin::utilisateurs: demandes en cours" -msgstr "aanvraag wordt verwerkt" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:123 +msgid "report::Substitution de %dest%" +msgstr "Vervanging van %dest%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 -msgid "Publications" -msgstr "Publicaties" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:132 +msgid "report::Publication de %dest%" +msgstr "Publicatie van %dest%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "taak beheerder" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:141 +msgid "report::Telechargement de %dest%" +msgstr "Downloaden van %dest%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 -msgid "admin::utilisateurs: bases de donnees" -msgstr "datables" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:153 +msgid "Envoi par mail a %dest% de %content%" +msgstr "Verstuur per mail naar %dest% van %content%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 -msgid "admin::structure: reglage de la structure" -msgstr "structuurinstellingen" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:165 +msgid "Envoi par ftp a %dest% de %content%" +msgstr "Verstuur per ftp naar %dest% van %content%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 -msgid "CHAMPS" -msgstr "VELDEN" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:171 +msgid "report::supression du document" +msgstr "Verwijderen van het document" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 -msgid "SUBDEFS" -msgstr "SUBDEFS" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:177 +msgid "report::ajout du documentt" +msgstr "Toevoegen van het document" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 -msgid "admin::status: reglage des status" -msgstr "statusinstellingen" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:183 +msgid "report::Modification du document -- je ne me souviens plus de quoi..." +msgstr "Bewerking van het document -- ik herrinner mij niet meer wat ..." -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 -msgid "admin:: CGUs" -msgstr "CGUs" +#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:200 +msgid "report:: par %user_infos%" +msgstr "per %user_infos%" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 -msgid "admin::collection: ordre des collections" -msgstr "volgorde van de collecties" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:34 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:43 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:43 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:46 +msgid "report:: Du (date)" +msgstr "Du (datum)" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 -msgid "admin::base: preferences de collection" -msgstr "voorkeuren van de collectie" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:44 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:55 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:55 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:56 +msgid "report:: Au (date)" +msgstr "Au (datum)" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 -msgid "Chercher" -msgstr "Zoeken" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:76 +#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:40 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 +#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:40 +#: tmp/cache_twig/b0/68/8df402b56c39d510a9d6d04c179a52d90fa80d9fd6ad5c68b5c21ea0076f.php:32 +#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 +#: tmp/cache_twig/f0/c8/dec944507ec91ef867d854c9718175767c72a41c78536d7f086c60b949be.php:32 +msgid "report:: Dashboard" +msgstr "Dashboard" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 -msgid "thesaurus:: le terme" -msgstr "De term" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:44 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 +msgid "The user has been created." +msgstr "De gebruiker werd aangemaakt." -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 -msgid "thesaurus:: est egal a " -msgstr "is gelijk aan " +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:50 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:50 +#, php-format +msgid "%user_count% users have been created." +msgstr "%user_count% users have been created." -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 -msgid "thesaurus:: commence par" -msgstr "beginnen met" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:63 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:182 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:63 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:182 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:91 +#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" +msgstr "Gebruikers" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 -msgid "thesaurus:: contient" -msgstr "bevat" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:71 +msgid "admin::user: nouvel utilisateur" +msgstr "nieuwe gebruiker" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:75 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:75 +msgid "admin::user: nouveau template" +msgstr "nieuwe template" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:81 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:81 +msgid "admin::user: import d'utilisateurs" +msgstr "Gebruikers importeren" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:85 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:85 +msgid "admin::user: export d'utilisateurs" +msgstr "Gebruikers exporteren" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:112 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:112 +msgid "Filter" +msgstr "Filter" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:129 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:295 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:71 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:129 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:295 +msgid "First/Last Name" +msgstr "Voor/Achter naam" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:166 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:166 +msgid "Last applied template" +msgstr "Laatst gebruikte template" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:236 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:236 +msgid "boutton::appliquer" +msgstr "Toepassen" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:265 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "Gebruikersid" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:343 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:343 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:304 +msgid "admin::compte-utilisateur pays" +msgstr "Land" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:359 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "Laatst toegepast model" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:375 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "Aanmaakdatum" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:420 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:420 +msgid "This is a template" +msgstr "Dit is een template" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:429 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:429 +msgid "This user has no rights" +msgstr "Deze gebruiker heeft geen rechten" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:638 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:649 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:660 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:638 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:649 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:660 +msgid "%n_par_page% par page" +msgstr "%n_par_page% per pagina" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:665 +#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 +#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 +#: tmp/cache_twig/73/37/e3b20793b38fb7ab75acd68e87009654ea726d191453f251f2de1b8ef1fd.php:22 +#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:665 +#: tmp/cache_twig/b8/3f/87a926d83151a23e51c94f5bc6b4e980c11a5b5fc693fcb89b5131dfeac5.php:22 +#: tmp/cache_twig/d4/25/a94dbfc016b6e0064d671b20c9ba4a0db1cffe147d3fde0340190faef0b2.php:22 +msgid "boutton::modifier" +msgstr "bewerken" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:669 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:669 +msgid "Supprimer" +msgstr "Verwijderen" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:807 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:807 +msgid "boutton::exporter" +msgstr "Exporteren" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:831 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:831 +msgid "select at least one user" +msgstr "selecteer ten minste één gebruiker" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:843 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "Bent u zeker om de gebruikersrechten te verwijderen?" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:867 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:867 +msgid "users rights have been reseted" +msgstr "gebruikersrechten werden teruggezet" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:53 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 +msgid "Vous avez recu un nouveau panier" +msgstr "U hebt een nieuw mandje ontvangen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:111 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "" +"U hebt een aanvraag tot goedkeuring van documenten in dit mandje ontvangen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:134 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:301 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:480 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 +msgid "action::exporter" +msgstr "Exporteren" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:145 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:491 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 +msgid "action::editer" +msgstr "Aanpassen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:170 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:341 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 +msgid "action::Valider" +msgstr "Valideren" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:253 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "" +"U hebt een aanvraag tot goedkeuring van documenten in dit mandje verstuurd" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:274 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 +msgid "paniers:: panier recu de %pusher%" +msgstr "Mandje ontvangen van %pusher%" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:317 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:323 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 +msgid "action::renommer" +msgstr "Hernoemen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:358 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 +msgid "Archive" +msgstr "Archief" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:504 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 +msgid "action::detacher" +msgstr "Ontkoppelen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:720 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 +msgid "delete" +msgstr "Verwijderen" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:809 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 +msgid "panier:: ordre du panier" +msgstr "Volgordre van het mandje" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:817 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 +msgid "panier:: ordre Validation ascendante" +msgstr "Oplopende validatie volgorde" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:825 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 +msgid "panier:: ordre Validation descendante" +msgstr "Aflopende validatie volgorde" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:873 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 +msgid "L'utilisateur approuve ce document" +msgstr "De gebruiker keurt dit document goed" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:879 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "De gebruiker heeft nog zijn mening niet gegeven over dit document" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:885 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 +msgid "L'utilisateur desapprouve ce document" +msgstr "De gebruiker keurt dit document af" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:894 +#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 +msgid "This user does not participate to the validation but is only viewer." +msgstr "" +"Deze gebruiker maakt geen deel uit van de goedkeuring maar is enkel een " +"bezoeker." + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:71 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:71 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 +msgid "veuillez choisir au minimum une collection" +msgstr "wilt u minimum één collectie kiezen" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:75 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:75 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:190 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:130 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:99 +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:213 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:237 #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:228 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:47 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:184 #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:119 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:75 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:113 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:75 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:190 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:228 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:108 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:113 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:148 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:828 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1055 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:47 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:184 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:184 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:47 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:107 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:186 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:237 #: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:130 #: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:186 #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:148 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:310 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:334 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:188 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:155 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 #: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:99 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:324 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:163 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:240 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:270 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:486 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:828 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1055 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:250 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:489 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:310 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:334 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:108 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:155 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:132 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:213 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 @@ -3564,49 +4297,818 @@ msgstr "bevat" msgid "boutton::annuler" msgstr "Annuleer" +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:87 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:87 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 +#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:111 +msgid "report::Heures" +msgstr "Uren" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:105 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:105 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 +msgid "report::Nombre de connexions" +msgstr "Aantal connecties" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:109 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:109 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 +#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 +msgid "report:: jour" +msgstr "Dag" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:113 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:113 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 +msgid "report:: Heures" +msgstr "Uren" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:117 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:117 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 +msgid "report::Nombre de document ajoute" +msgstr "Aantel toegevoegde documenten" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:121 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:121 +#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 +#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 +msgid "report::Nombre de document edite" +msgstr "Aantal bewerkte documenten" + +#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 +#: tmp/cache_twig/2e/c8/6a8b65962285cc957b4f1cb0a6d3c6cfcece8142ec2c2d9bcd51db856e63.php:25 +msgid "" +"Le connecteur API requis n'est pas configure correctement, veuillez " +"contacter un administrateur" +msgstr "" +"De vereiste API connector is niet juist ingesteld, gelieve een administrator " +"te contacteren" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:35 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:35 +msgid "Suppression de %n_element% playlists" +msgstr "%n_element% playlists verwijderen" + +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:51 +#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 +#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:51 +msgid "Etes vous sur de supprimer %number% playlists ?" +msgstr "Bent u zeker om %number% playlists te verwijderen ?" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:126 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:126 +msgid "Acces" +msgstr "Toegang" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:136 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:136 +msgid "Sessions" +msgstr "Sessies" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:146 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:146 +msgid "Applications" +msgstr "Programma's" + +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:156 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:156 +msgid "Developpeur" +msgstr "Ontwikkelaar" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:79 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:77 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 +msgid "Voici vos validations en cours" +msgstr "Een controle in proces" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:133 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:131 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 +msgid "(validation) session terminee" +msgstr "sessie beïndigd" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:139 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:137 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 +msgid "(validation) envoyee" +msgstr "verstuurd" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:145 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:143 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 +msgid "(validation) a envoyer" +msgstr "te versturen" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:154 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:256 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:152 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:254 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 +#, php-format +msgid "%basket_length% documents" +msgstr "%basket_length% documenten" + +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:205 +#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:203 +#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 +#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 +msgid "Voici vos paniers" +msgstr "Uw mandjes" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:35 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:35 +msgid "Suppression de %n_element% videos" +msgstr "%n_element% video verwijderen" + +#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 +#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:51 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:51 +msgid "Etes vous sur de supprimer %number% videos ?" +msgstr "Bent u zeker om %number% videos te verwijderen ?" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:27 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:139 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 +#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 +#: tmp/cache_twig/fa/6c/5a1478433bb48ba074484fbf8f310f00024e6b7e19d6c1fde38d05b22b30.php:27 +msgid "thesaurus:: export au format texte" +msgstr "Export in text format" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:124 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 +msgid "thesaurus:: options d'export : " +msgstr "Export opties : " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:128 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 +msgid "thesaurus:: example" +msgstr "Voorbeeld" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:147 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 +msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" +msgstr "Exporteermet synoniemen op dezelfde lijn" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:154 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 +msgid "thesaurus:: exporter avec une ligne par synonyme" +msgstr "Exporteer met een lijn per synoniem" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:161 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 +msgid "thesaurus:: export : numeroter les lignes " +msgstr "Nummer de lijnen " + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:168 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 +msgid "thesaurus:: export : inclure la langue" +msgstr "De taal insluiten" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:175 +#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 +msgid "thesaurus:: export : inclure les hits" +msgstr "De hits insluiten" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:124 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 +msgid "En attente" +msgstr "In afwachting" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:130 +#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 +msgid "En cours d'envoi" +msgstr "Wordt verzonden" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:124 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "" +"prod::thesaurusTab:dlg:Kandidaat \"%(from)s\" vervangen door \"%(to)s\"" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:259 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "Vervanging is bezig." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:322 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "Aanvaarding is bezig." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:415 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "Verwijderen is bezig." + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:489 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "aanvaardt de term candidaat \"%s\" ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:498 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "aanvaardt %d candidaat termen ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:607 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "clic-droit / aanvaardt de \"%s\" candidaat term" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:616 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "clic-droit /aanvaardt de %s candidaat termen" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:654 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "vervang de \"%s\" term van de bestanden door :" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:663 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "%d termen van de bestanden vervangen :" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:703 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "verwijder de term \"%s\" van de bestanden ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:712 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "%d termen van de bestanden verwijderen ?" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:776 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:781 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1035 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 +msgid "prod::thesaurusTab:tree:loading" +msgstr "laden" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1412 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "Aanvaardt als specifieke term" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1422 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "Aanvaardt als synonym" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1504 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "Aanvaardt als %lng_code%" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1524 +#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "Vervangen door..." + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:31 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:282 +msgid "No results" +msgstr "Geen resultaten" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:37 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:288 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:121 +msgid "1 result" +msgstr "1 resultaat" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:43 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:294 +msgid "%Total% results" +msgstr "%Total% resultaten" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:116 +msgid "Delete basket" +msgstr "Verwijder mandje" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:191 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:93 +msgid "Received from %user_name%" +msgstr "Ontvangen van %user_name%" + +#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:242 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:144 +msgid "Sent for validation to %list_participants%" +msgstr "Voor goedkeuring verstuurd naar %list_participants%" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:27 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 +msgid "thesaurus:: Lier la branche de thesaurus au champ" +msgstr "Link de tak van de thesaurus aan veld" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:90 +#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 +msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +msgstr "thesaurus:: Link de thesaurus tak aan het veld %branch%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:28 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:28 +msgid "None of the selected records can be pushed." +msgstr "Geen enkele van de geselecteerde records kan worden gepushed." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:34 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:34 +msgid "None of the selected records can be sent for feedback." +msgstr "" +"Geen enkele van de geselecteerde records kan worden verstuurd voor feedback." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:71 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:71 +msgid "Grant rights" +msgstr "Rechten verlenen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:82 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:82 +msgid "Contributor" +msgstr "Bijdrage" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:90 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:90 +msgid "See others" +msgstr "Zie andere" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:101 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:101 +msgid "HD Download" +msgstr "HD Download" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:110 +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:23 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:110 +msgid "Lists" +msgstr "Lijsten" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:116 +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:535 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:116 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:535 +msgid "List Manager" +msgstr "Lijstbeheerder" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:124 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:124 +msgid "Save this list" +msgstr "Bewaar deze lijst" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:187 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:187 +msgid "Select a user in the list" +msgstr "Selecteer een gebruiker in de lijst" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:194 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:194 +msgid "or" +msgstr "of" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:199 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:199 +msgid "Add user" +msgstr "Gebruiker toevoegen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:283 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:283 +msgid "and %n% more peoples" +msgstr "en %n% meerdere personen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:306 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:306 +msgid "" +"Please consider send this push to the following users : %recommendation%" +msgstr "" +"Overweeg om deze push naar de volgende gebruikers te sturen : %recommendation" +"%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:312 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:312 +msgid "" +"Please consider send this validation to the following users : %recommendation" +"%" +msgstr "" +"Overweeg om deze goedkeuring naar de volgende gebruikers te sturen : " +"%recommendation%" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:324 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:324 +msgid "Users suggestion" +msgstr "Gebruikers suggestie" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:371 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "Un push laat toe om een set van beelden te sturen naar ontvangers" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:377 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:377 +msgid "" +"Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "Een goedkeuring is een aanvraag van waardering aan andere personen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:405 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:405 +msgid "You are about to push %nb_push_items% records." +msgstr "U staat op het punt om %nb_push_items% records door te sturen." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:414 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:414 +msgid "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." +msgstr "" +"U staat op het punt om %nb_push_items% records door te sturen, " +"%nb_not_available% records kunnen niet worden uitgevoerd." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:429 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:429 +msgid "You are about to ask for feedback for %nb_push_items% records." +msgstr "" +"U staat op het punt om feedback te vragen voor %nb_push_items% records." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:438 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:438 +msgid "" +"You are about to ask for feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." +msgstr "" +"U staat op het punt om feedback te vragen voor %nb_push_items% records, " +"records kunnen niet worden uitgevoerd." + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:450 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:80 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:80 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:450 +msgid "Select all" +msgstr "Alles selecteren" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:454 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:86 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:454 +msgid "Deselect all" +msgstr "Alles deselecteren" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:502 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:175 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:307 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:312 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:262 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 +#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:502 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:107 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +msgid "Send" +msgstr "Versturen" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:520 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:520 +msgid "Back to Push" +msgstr "Terug naar Push" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:526 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:526 +msgid "Back to Feedback" +msgstr "Terug naar Feedback" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:553 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:553 +msgid "Welcome to the ListManager !" +msgstr "Welkom bij de ListManager !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:562 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:562 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "" +"Start met het maken van een door de \"Voeg toe\" knop links te gebruiken !" + +#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:571 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:571 +msgid "Select a list on the left and edit it !" +msgstr "Selecteer links een lijst en bewerk hem !" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:34 +msgid "You do not have rights to remove all selected documents. Are you sure ?" +msgstr "" +"U hebt geen rechten om alle geselecteerde document te verwijderen. Bent u " +"zeker?" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:53 +msgid "These records will be definitely deleted and can not be recovered" +msgstr "" +"Deze records worden definitief verwijderd, deze actie kan niet ongedaan " +"gemaakt worden" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:63 +msgid "Also delete records that rely on groupings." +msgstr "Verwijder ook de records die in de groepen voorkomen?" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:150 +msgid "No document selected" +msgstr "Geen document geselecteerd" + +#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:159 +msgid "You do not have rights to remove selected documents" +msgstr "U hebt geen rechten om de geselecteerde documenten te verwijderen" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:42 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 +msgid "Oups ! something went wrong !" +msgstr "Oeps ! Er ging iest verkeerd !" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:70 +#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 +msgid "boutton::retry" +msgstr "probeer opnieuw" + +#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:27 +#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:27 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:27 +#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 +msgid "Creer" +msgstr "Maken" + +#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 +#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 +#: tmp/cache_twig/7e/d7/fc11a3521d90d05479b8e9e5b7a637086675de8b1e83c76016239918b8f0.php:54 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:57 +#: tmp/cache_twig/ec/97/b5b5bcb1a77a1178342e9aadece33928490fd66f74bf94ac4961513eafd6.php:54 +#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 +msgid "Voulez-vous dire %link% ?" +msgstr "Bedoelt u %link% ?" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:27 +msgid "validation:: votre note" +msgstr "uw nota" + +#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:83 +msgid "boutton::enregistrer" +msgstr "bewaren" + +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:22 +msgid "Reorder collections" +msgstr "Hersorteer collecties" + +#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:52 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 +#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:52 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:458 +msgid "report:: activite du site" +msgstr "Activiteit van de site" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:34 +msgid "Tableau de bord" +msgstr "Regelpaneel" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:22 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:63 +msgid "Setup" +msgstr "Instellingen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:74 +msgid "SearchEngine settings" +msgstr "Instellingen zoek motor" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 +#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:95 +msgid "admin::utilisateurs: utilisateurs connectes" +msgstr "geconnecteerde gebruikers" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:116 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:394 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:461 +msgid "admin::utilisateurs: utilisateurs" +msgstr "gebruikers" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "aanvraag wordt verwerkt" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:23 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:23 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1919 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:153 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:247 +msgid "Publications" +msgstr "Publicaties" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "taak beheerder" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "datables" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "structuurinstellingen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:300 +msgid "CHAMPS" +msgstr "VELDEN" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:312 +msgid "SUBDEFS" +msgstr "THUMBNAILS" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:324 +msgid "admin::status: reglage des status" +msgstr "statusinstellingen" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:335 +msgid "admin:: CGUs" +msgstr "CGUs" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:347 +msgid "admin::collection: ordre des collections" +msgstr "volgorde van de collecties" + +#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:438 +msgid "admin::base: preferences de collection" +msgstr "voorkeuren van de collectie" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:27 +msgid "Chercher" +msgstr "Zoeken" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:70 +msgid "thesaurus:: le terme" +msgstr "De term" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:74 +msgid "thesaurus:: est egal a " +msgstr "is gelijk aan " + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:81 +msgid "thesaurus:: commence par" +msgstr "beginnen met" + +#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:88 +msgid "thesaurus:: contient" +msgstr "bevat" + #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:99 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:99 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:99 msgid "Erreur de login / mot de passe" msgstr "Verkeerde login / paswoord" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:107 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:107 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:107 msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "Goede dag, wilt u zich bekendmaken op %home_title% :" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:845 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:79 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1574 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:116 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:442 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1574 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 msgid "admin::compte-utilisateur mot de passe" msgstr "Paswoord" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:120 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:120 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:120 msgid "Se connecter" msgstr "Verbinden" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:126 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:126 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:126 msgid "Problèmes de connexion ?" msgstr "Connectie problemen?" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:143 #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:95 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:95 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:95 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:143 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:143 msgid "Hello %username%" msgstr "Hallo %username%" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:157 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:157 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:157 msgid "Autorisation d'accès" msgstr "Toegangsrechten" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:168 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:168 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:168 msgid "" "Autorisez-vous l'application \"%application_name%\" à " "accéder à votre contenu sur %home_title% ?" @@ -3616,23 +5118,28 @@ msgstr "" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:198 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:198 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:198 msgid "Autoriser" msgstr "Toestaan" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:222 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:222 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:222 msgid "Ne pas autoriser" msgstr "Niet toestaan" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:37 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:37 msgid "Authorization code" msgstr "Autorisatie code" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:60 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:60 msgid "Access code" msgstr "Toegangscode" #: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:66 +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:66 msgid "" "Copy the code below, return to your application and paste the code to the " "right place." @@ -3641,14 +5148,17 @@ msgstr "" "de juiste plaats." #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:46 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:46 msgid "Erreur lors de votre authentification" msgstr "Fout bij uw authenticatie" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:61 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:61 msgid "Vous etes authentifie avec succes" msgstr "U bent met succes geauthenticeerd" #: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:67 +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:67 msgid "" "Si cette fenetre ne se ferme pas automatiquement, fermez la, et " "raffraichissez votre compte" @@ -3657,31 +5167,252 @@ msgstr "" "venster" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:57 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:57 msgid "Ce champ est decrit comme l'element DublinCore %element_name%" msgstr "Dit veld is beschreven als het DublinCore %element_name% element" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:63 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:63 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:83 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:147 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:63 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:63 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:128 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:83 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:127 #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:63 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:83 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:83 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:147 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:127 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:63 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:83 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:93 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:93 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:128 msgid "Description" msgstr "Beschrijving" #: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:74 +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:74 msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "Voor meer informatie, bezoek de volgende link" -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:55 -msgid "Return to login page" -msgstr "Terug naar login pagina" +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:95 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:95 +msgid "Notify users about this publication" +msgstr "Meld gebruikers over deze publicatie" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:99 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:69 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:99 +msgid "publication : titre" +msgstr "Titel" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:107 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:77 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:107 +msgid "publication : sous titre" +msgstr "Onder titel" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:115 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:85 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:115 +msgid "publication : autheur" +msgstr "Auteur" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:123 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:93 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:123 +msgid "publication : email autheur" +msgstr "Email auteur" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:135 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:105 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:135 +msgid "Fils disponibles" +msgstr "Beschikbare paden" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:174 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:232 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:174 +msgid "This feed is public" +msgstr "Deze feed is publiek" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:209 +#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:209 +msgid "boutton::publier" +msgstr "Publiceren" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:47 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 +msgid "Edition" +msgstr "Editie" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:145 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:57 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 +msgid "Sous-titre" +msgstr "Onder titel" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:150 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:62 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 +msgid "Short description" +msgstr "Korte beschrijving" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:159 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:69 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 +msgid "Etendue de la publication" +msgstr "Omvang van de publicatie" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:170 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:75 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 +msgid "Non-Restreinte (publique)" +msgstr "Niet beperkt (publiek)" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:223 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:119 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 +msgid "Publique" +msgstr "Publiek" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:245 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 +msgid "Liste des personnes habilitees a publier sur ce fil" +msgstr "Lijst van personen die gekwalificeerd te publiceren op deze lijn" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:252 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 +msgid "Id" +msgstr "Id" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:257 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:171 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 +msgid "Email" +msgstr "Email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:261 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 +msgid "Owner" +msgstr "Eigenaar" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:360 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 +msgid "Ajouter un publisher" +msgstr "Een publisher toevoegen" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:365 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 +msgid "Name or email" +msgstr "Naam of email" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:416 +#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 +msgid "You are not the feed owner" +msgstr "U bent niet de feed eigenaar" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:38 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:38 +msgid "report:: 1 - Periode" +msgstr "1 - Periode" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:72 +#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:72 +msgid "report:: 2 - Bases" +msgstr "2 - Databases" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:20 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:20 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 +msgid "Limite temporelle" +msgstr "Tijdelijk limiet" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:27 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:27 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:125 +msgid "Base %base%" +msgstr "Database %base%" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:50 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:488 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:58 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 +msgid "Activer" +msgstr "Activeren" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:58 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:66 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 +msgid "De" +msgstr "De" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:73 +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:81 +#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 +msgid "A" +msgstr "A" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:52 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 +msgid "Le champ doit contenir %minLength% caracteres minimum." +msgstr "Het veld moet minimum %minLength% tekens bevatten" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:65 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 +msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +msgstr "Het veld mag niet meer dan %maxLength% tekens bevatten." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:78 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 +msgid "Les indications donnees ci dessous sont a titre informatif." +msgstr "De hieronder getoonde indicaties zijn louter informatief." + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:82 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 +msgid "" +"Si vous ne les respectez pas, les documents seront correctement indexes, " +"mais les metadonnees inscrites risquent d'etre erronnees" +msgstr "" +"Als u deze niet respecteert, zullen de documenten correct geïndexeerd " +"worden, maar de beschreven meta data's kunnen verkeerd zijn" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:89 +#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 +msgid "" +"Ces informations sont directement fournies par la norme de metadonnees de ce " +"champ : %norm_name%" +msgstr "" +"Deze informatie wordt rechtstreeks geleverd door de metagegevens van het " +"standaard veld : %norm_name%" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:24 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:24 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:24 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:24 msgid "Details" msgstr "Details" @@ -3689,27 +5420,36 @@ msgstr "Details" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:381 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:41 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:25 msgid "Collection" msgstr "Collectie" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:55 msgid "Subdef" msgstr "Thumbnail" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:61 msgid "Number" msgstr "Nummer" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:65 msgid "Weight" msgstr "Gewicht" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:111 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:163 #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 msgid "Total" msgstr "Totaal" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:194 msgid "Cumulative total" msgstr "Cumulatief totaal" @@ -3727,147 +5467,284 @@ msgstr "Log out" msgid "Back" msgstr "Terug" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 -msgid "Voici vos validations en cours" -msgstr "Een controle in proces" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:93 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:204 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:93 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:204 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:51 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:154 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:51 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:178 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:151 +msgid "Connection" +msgstr "Verbinding" -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 -msgid "Voici vos paniers" -msgstr "Uw mandjes" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:114 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:114 +msgid "Your account is locked, please follow the following link to unlock it" +msgstr "" +"Uw gebruiker is geblokkeerd, volg de onderstaande link om die te deblokkeren" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:122 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:122 +msgid "login:: Envoyer a nouveau le mail de confirmation" +msgstr "Stuur de bevestigingsmail opnieuw" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:179 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:179 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:125 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:149 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:121 +msgid "Forgot password?" +msgstr "Wachtwoord vergeten?" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:234 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:82 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:234 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:177 +msgid "Or login with" +msgstr "Of meld aan met" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:54 msgid "%value% like" msgstr "%value% vindt ik leuk" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:60 msgid "%value% likes" msgstr "%value% vindt ik leuks" +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:46 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 +msgid "Download of documents" +msgstr "Download van documenten" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:57 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 +msgid "" +"Please wait while your files are being gathered for the download, this " +"operation may take a few minutes." +msgstr "" +"Gelieve te wachten tot uw documenten worden verzameld voor de download, dit " +"kan enkele minuten duren" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:75 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 +msgid "" +"Your documents are ready. If the download does not start, %before_link%click " +"here%after_link%" +msgstr "" +"Uw documenten zijn klaar. Als het downloaden niet start, %before_link%klik " +"hier%after_link%" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:88 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 +msgid "The file contains the following elements" +msgstr "Dit document bevat de volgende elementen" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:95 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 +msgid "Base" +msgstr "Databank" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:99 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:86 +#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:49 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:227 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +msgid "Name" +msgstr "Naam" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:103 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 +msgid "Sub definition" +msgstr "Thumbnail" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:107 +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:80 +msgid "Size" +msgstr "Grootte" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:111 +#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 +msgid "Thumbnail" +msgstr "Thumbnail" + #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:27 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:27 msgid "thesaurus:: export en topics" msgstr "Exporteer in topics" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:118 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:118 msgid "thesaurus:: exporter" msgstr "Exporteer" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:124 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:124 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Exporteer naar topics voor alle talen" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:131 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:131 msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" msgstr "thesaurus:: voor de taal %piv% naar het scherm exporteren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:141 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:141 msgid "phraseanet:: tri" msgstr "Sorteren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:147 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:147 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:533 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:537 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:533 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:537 msgid "phraseanet:: tri par date" msgstr "Op datum sorteren" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:157 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:157 msgid "thesaurus:: recherche" msgstr "Zoeken" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:163 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:163 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Zoeken in thesaurus *:\"query\"" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:170 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:170 msgid "thesaurus:: recherche fulltext" msgstr "Fulltext zoeken" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:177 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:177 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Volledige vraag (met operatoren)" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:187 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:187 msgid "thesaurus:: presentation" msgstr "Presentatie" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:193 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:193 msgid "thesaurus:: presentation : branches refermables" msgstr "Sluitbare takken" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:200 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:200 msgid "thesaurus:: presentation : branche ouvertes" msgstr "open takken" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:207 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:207 msgid "thesaurus:: tout deployer - refermable" msgstr "Alle implementeren - sluitbaar" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:214 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:214 msgid "thesaurus:: tout deployer - statique" msgstr "Alle implementeren - statisch" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:221 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:221 msgid "thesaurus:: tout fermer" msgstr "Alle sluiten" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:104 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:104 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Totaal aantal unieke gebruikers : " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:125 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:125 msgid "admin::monitor: utilisateur" msgstr "Gebruiker" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:129 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:129 msgid "admin::monitor: modules" msgstr "Modules" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:831 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1528 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:416 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1528 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:85 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:133 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 msgid "phraseanet:: adresse" msgstr "Adres" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:137 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:137 msgid "admin::monitor: date de connexion" msgstr "Verbindingsdatum" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:141 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:141 msgid "admin::monitor: dernier access" msgstr "Laatste toegang" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:322 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:322 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Databases waarop de gebruiker is ingelogd : " #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:358 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:358 msgid "Session persistente" msgstr "Huidige sessie" #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:35 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:35 msgid "Granted bases" msgstr "Toegestane databanken" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:31 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:35 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:31 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:35 msgid "Empty quarantine" msgstr "Quarantaine is leeg" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:64 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:64 msgid "No document in quarantine" msgstr "Geen documenten in quarantaine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:73 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:73 msgid "You do not have enough rights to access quarantine" msgstr "U hebt niet voldoende rechten voor de toegang van de quarantaine" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:135 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:135 msgid "" "Empty quarantine will remove all items, are you sure you want to continue ?" msgstr "" @@ -3875,39 +5752,52 @@ msgstr "" "wilt doorgaan ?" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:342 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:342 msgid "Last uploaded version" msgstr "Laatst opgeladen versie" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:354 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:354 msgid "Filename" msgstr "Bestandsnaam" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:360 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:360 msgid "Date" msgstr "Datum" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:374 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:374 msgid "Uploaded by : %username%" msgstr "Opgeladen door : %username%" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:427 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:431 msgid "Substitute" msgstr "Vervangen" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:466 msgid "A record matches the unique identifier :" msgstr "Een record is gelijk aan de unieke id :" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:472 msgid "%record_count% records match the unique identifier :" msgstr "%record_count% records zijn gelijk aan de unieke id :" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:26 msgid "No account yet?" msgstr "Nog geen gebruiker?" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:36 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:38 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:36 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:35 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:36 #: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:35 #: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:36 #: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:38 @@ -3915,330 +5805,48 @@ msgid "Register" msgstr "Aanmelden" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:39 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:39 msgid "reportage" msgstr "Reportage" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:45 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:45 msgid "image" msgstr "Beeld" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:51 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:244 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:397 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:244 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:397 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:51 msgid "document" msgstr "document" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:57 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:57 msgid "animation flash" msgstr "flash animatie" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:63 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:63 msgid "video" msgstr "Video" #: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:69 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:69 msgid "audio" msgstr "Audio" -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 -msgid "thesaurus has been updated" -msgstr "thesaurus werd bijgewerkt" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 -msgid "phraseanet:: thesaurus" -msgstr "Thesaurus" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 -msgid "" -"Thesaurus ou CTerms invalide\n" -" effacer (OK) ou quitter (Annuler) ?" -msgstr "" -"Thesaurus of CTerms niet geldig\n" -" wissen (OK) ou afsluiten (Annuleren) ?" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 -msgid "First Name" -msgstr "Voornaam" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 -msgid "Last Name" -msgstr "Achternaam" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 -msgid "Email Name" -msgstr "Email Naam" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 -msgid "Job" -msgstr "Taak" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 -msgid "City" -msgstr "Stad" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 -msgid "report:: 3 - Type de report" -msgstr "3 - Rapport type" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 -msgid "report:: (connexions) Par utilisateurs" -msgstr "Per gebruikers" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 -msgid "report:: Grouper par" -msgstr "Grouperen per" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 -msgid "report:: (connexions) Globales" -msgstr "Globalen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 -msgid "report:: (connexions) OS et navigateurs" -msgstr "OS en browsers" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 -msgid "report:: par utilisateurs" -msgstr "per gebruikers" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 -msgid "report:: (telechargement) Global" -msgstr "Algemeen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 -msgid "report:: (telechargement) Par jours base par base" -msgstr "Per dag database per database" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "Per document in database" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 -msgid "report::aucune precision" -msgstr "geen enkele precisie" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 -msgid "report::la description contient" -msgstr "de beschrijving bevat" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 -msgid "report:: recordid" -msgstr "recordid" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 -msgid "report:: toutes les questions" -msgstr "Alle vragen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 -msgid "report:: Les questions les plus posees" -msgstr "De meest gestelde vragen" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 -msgid "report:: document" -msgstr "Document" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 -msgid "report:: pushe" -msgstr "Stuur door" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 -msgid "report:: ajoute" -msgstr "Voeg toe" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 -msgid "report:: edite" -msgstr "Bewerk" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 -msgid "report:: valide" -msgstr "OK" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 -msgid "Sent" -msgstr "Verstuurd" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "Statistieken per bezoek van de link" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 -msgid "preview::statistiques de telechargement" -msgstr "Statistieken van de downloads" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 -msgid "admin::base:collection: Creer une collection" -msgstr "Maak een collectie" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 -msgid "" -"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " -"collection" -msgstr "" -"De collectie werd niet gemaakt : u moet een naam geven aan uw collectie" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 -msgid "An error occured, please retry or contact an admin if problem persist" -msgstr "" -"Er heeft zich een fout voorgedaan, probeer opnieuw of neem contact op met " -"een beheerder als het probleem zich blijft voordoen." - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "Naam van de nieuwe collectie : " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 -msgid "" -"admin::base:collection: Vous pouvez choisir une collection de reference pour " -"donenr des acces " -msgstr "U kan een standaard collectie kiezen voor toegang te verlenen " - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 -msgid "choisir" -msgstr "kiezen" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 -msgid "" -"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " -"pour continuer" -msgstr "" -"U bent momenteel afgemeld van uw sessie, u moet zich opnieuw connecteren om " -"verder te gaan" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 -msgid "login:: connexion" -msgstr "Aanmelden" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 -msgid "boutton::refresh" -msgstr "refresh" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 -msgid "Suppression de %n_element% playlists" -msgstr "%n_element% playlists verwijderen" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "Bent u zeker om %number% playlists te verwijderen ?" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 -msgid "status:: numero de bit" -msgstr "aantal bit" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 -msgid "admin::status: case A" -msgstr "Case A" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 -msgid "admin::status: texte a afficher" -msgstr "te tonen tekst" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 -msgid "Labels" -msgstr "Labels" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 -msgid "Symbolized by" -msgstr "Gesymboliseerd door" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 -msgid "Select files..." -msgstr "Selecteer files..." - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 -msgid "admin::status:: aucun symbole" -msgstr "geen enkel symbool" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 -msgid "admin::status: case B" -msgstr "Case B" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 -msgid "" -"status:: Afficher le status dans les feuilles de reponses pour tous les " -"utilisateurs" -msgstr "Toon de statussen in de bladeren van de antwoorden aan alle gebruikers" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "vindt als filter terug in de zoek" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 -msgid "" -"Invalid file type, only (%supported_file_types%) file formats are supported" -msgstr "" -"Ongeldig bestandsformaat, enkel (%supported_file_types%) bestandsformaten " -"worden ondersteund" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 -msgid "veuillez choisir au minimum une collection" -msgstr "wilt u minimum één collectie kiezen" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 -msgid "report::Heures" -msgstr "Uren" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 -msgid "report::Nombre de connexions" -msgstr "Aantal connecties" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 -#: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 -msgid "report:: jour" -msgstr "Dag" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 -msgid "report:: Heures" -msgstr "Uren" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 -msgid "report::Nombre de document ajoute" -msgstr "Aantel toegevoegde documenten" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 -msgid "report::Nombre de document edite" -msgstr "Aantal bewerkte documenten" - +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:25 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:31 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:25 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:31 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:649 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:781 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:944 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1025 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1196 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:25 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:31 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:649 @@ -4248,27 +5856,48 @@ msgstr "Aantal bewerkte documenten" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1196 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:25 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:31 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:25 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:31 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:25 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:31 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:25 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:31 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:25 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:31 msgid "boutton::precedent" msgstr "vorige" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:37 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:37 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:37 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:37 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:37 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:37 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:37 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:37 msgid "boutton::demarrer" msgstr "Starten" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:43 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:43 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:43 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:43 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:43 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:43 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:43 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:43 msgid "boutton::pause" msgstr "Pauze" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:49 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:55 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:49 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:55 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:539 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:655 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:787 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:950 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1031 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:49 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:55 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:539 @@ -4278,186 +5907,911 @@ msgstr "Pauze" #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1031 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:49 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:55 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:49 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:55 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:49 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:55 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:49 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:55 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:49 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:55 msgid "boutton::suivant" msgstr "volgende" +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:61 #: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:61 #: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:61 #: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:61 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:266 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:61 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:61 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:266 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:61 #: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:61 msgid "boutton::telecharger" msgstr "Downloaden" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 -msgid "client::answers: rapport de questions par bases" -msgstr "Rapport van de vragen per database" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:27 +msgid "thesaurus has been updated" +msgstr "thesaurus werd bijgewerkt" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 -msgid "client::answers: %available_results% reponses" -msgstr "client::answers: %available_results% antwoorden" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 +#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:46 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:247 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:30 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:267 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:29 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:310 +#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 +msgid "phraseanet:: thesaurus" +msgstr "Thesaurus" -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 -msgid "action : ajouter au panier" -msgstr "aan mandje toevoegen" - -#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 -msgid "Security" -msgstr "Beveiliging" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 -msgid "Client application" -msgstr "Klant programma" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 -msgid "Application" -msgstr "Toepassing" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 -msgid "settings OAuth" -msgstr "settings OAuth" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 -msgid "Les parametres oauth de votre application." -msgstr "De oauth parameters van uw toepassing" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 -msgid "URL de callback" -msgstr "callback URL" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 -msgid "Modify" -msgstr "Wijzig" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 -msgid "Activer le grant_type de type password pour votre application" -msgstr "Activeer de grant_type type paswoord voor uw toepassing" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 -msgid "Votre token d'access" -msgstr "Uw toegangs token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 -msgid "Les paramétres oauth de votre application." -msgstr "De oauth parameters van uw toepassing." - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 -msgid "Token" -msgstr "Token" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 -msgid "Le token n'a pas encore ete genere" -msgstr "Het token is nog niet gegenereerd" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 -msgid "boutton::generer" -msgstr "Genereren" - -#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "Volumetrie van de vragen over %home_title%" +#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:101 +msgid "" +"Thesaurus ou CTerms invalide\n" +" effacer (OK) ou quitter (Annuler) ?" +msgstr "" +"Thesaurus of CTerms niet geldig\n" +" wissen (OK) ou afsluiten (Annuleren) ?" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:60 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:30 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:37 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:211 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:30 #: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:30 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:35 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:263 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:35 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:233 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:220 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:37 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:35 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:233 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:30 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:60 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:35 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:263 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:220 msgid "Upload" msgstr "Upload" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:136 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 +msgid "nouveau" +msgstr "Nieuw" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:146 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 +msgid "Vers quel API voulez vous vous connecter ?" +msgstr "Op welke API wilt u zich verbinden ?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:203 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 +msgid "Aucun bridge disponible. Veuillez contacter un administrateur." +msgstr "" +"Geen enkele bridge beschikbaar. Gelieve een administrator te contacteren." + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:320 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 +msgid "You are about to delete this account. Would you like to continue ?" +msgstr "U staat op het punt deze gebruiker te verwijderen. Wilt u doorgaan?" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:463 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:376 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:376 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 +msgid "Loading" +msgstr "Bezig met laden" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:558 #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:54 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:52 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:52 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:54 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:52 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:558 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:52 msgid "Vous n'avez selectionne aucun element" msgstr "U hebt geen enkel element geselecteerd" +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:567 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 +msgid "Vous n'avez pas assez de droits sur les elements selectionnes" +msgstr "U hebt niet voldoende rechten op de geslecteerde elementen" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:576 +#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 +msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" +msgstr "U hebt niet voldoende rechten op de bepaalde geslecteerde elementen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:152 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:269 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:411 +msgid "report:: 3 - Type de report" +msgstr "3 - Rapport type" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:165 +msgid "report:: (connexions) Par utilisateurs" +msgstr "Per gebruikers" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:178 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:282 +msgid "report:: Grouper par" +msgstr "Grouperen per" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:209 +msgid "report:: (connexions) Globales" +msgstr "Globalen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:219 +msgid "report:: (connexions) OS et navigateurs" +msgstr "OS en browsers" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:313 +msgid "report:: par utilisateurs" +msgstr "per gebruikers" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:326 +msgid "report:: (telechargement) Global" +msgstr "Algemeen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:336 +msgid "report:: (telechargement) Par jours base par base" +msgstr "Per dag database per database" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:346 +msgid "report:: (telechargement) Par documents sur la base" +msgstr "Per document in database" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:351 +msgid "report::aucune precision" +msgstr "geen enkele precisie" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:355 +msgid "report::la description contient" +msgstr "de beschrijving bevat" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:359 +msgid "report:: recordid" +msgstr "recordid" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:428 +msgid "report:: toutes les questions" +msgstr "Alle vragen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:438 +msgid "report:: Les questions les plus posees" +msgstr "De meest gestelde vragen" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:468 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 +msgid "report:: document" +msgstr "Document" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:475 +msgid "report:: pushe" +msgstr "Stuur door" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:481 +msgid "report:: ajoute" +msgstr "Voeg toe" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:487 +msgid "report:: edite" +msgstr "Bewerk" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:493 +msgid "report:: valide" +msgstr "OK" + +#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:499 +msgid "Sent" +msgstr "Verstuurd" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:51 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:48 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 +msgid "Inscription" +msgstr "Inschrijving" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:57 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 +msgid "Complete the fields below to register on %instance_title%!" +msgstr "" +"Vervolledig de onderstaande velden om op %instance_title% te registreren!" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:153 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:149 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 +msgid "I have read the terms of use" +msgstr "Ik heb de gebruiksvoorwaarden gelezen" + +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:210 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:210 +msgid "Request access" +msgstr "Aanvraag toegang" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:41 +#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:41 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:41 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 +msgid "Edition de 1 element" +msgstr "Editie van het 1 element" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:99 +#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:132 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:178 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:159 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:197 +msgid "Tags" +msgstr "Trefwoorden" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:115 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:99 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:160 +msgid "Categorie" +msgstr "Categorie" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:148 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:148 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:204 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:234 +msgid "Confidentialite" +msgstr "Vertrouwelijk" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:158 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:158 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 +msgid "privé" +msgstr "privaat" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:168 +#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 +#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:168 +#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:221 +#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:251 +msgid "public" +msgstr "publiek" + +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:43 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:43 +#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 +#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 +msgid "Playlist" +msgstr "Afspeellijst" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:66 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 +msgid "General settings" +msgstr "Algemene instellingen" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:68 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 +msgid "your configuration" +msgstr "Uw configuratie" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:79 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 +msgid "all caches services have been flushed" +msgstr "Alle caches services zijn geflushed" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:94 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 +msgid "setup:: administrateurs de l'application" +msgstr "Beheerders van het programma" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:130 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 +msgid "Add an admin" +msgstr "Voeg een beheerder toe" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:147 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 +msgid "setup:: Reinitialisation des droits admins" +msgstr "Herinitialisatie van de admin rechten" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:151 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 +msgid "boutton::reinitialiser" +msgstr "Herinitialiseren" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:166 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 +msgid "setup::Tests d'envois d'emails" +msgstr "Testen voor het versturen van mail" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:184 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 +msgid "Email test result : %email_status%" +msgstr "Email test resultaat : %email_status%" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:206 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 +msgid "Reset cache" +msgstr "Reset cache" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:258 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 +msgid "Requirements" +msgstr "Vereisten" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:308 +#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 +msgid "Recommendations" +msgstr "Aanbevelingen" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:27 +msgid "preview::statistiques de visualisation pour le lien" +msgstr "Statistieken per bezoek van de link" + +#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:58 +msgid "preview::statistiques de telechargement" +msgstr "Statistieken van de downloads" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:285 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:22 +msgid "admin::base:collection: Creer une collection" +msgstr "Maak een collectie" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:34 +msgid "" +"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " +"collection" +msgstr "" +"De collectie werd niet gemaakt : u moet een naam geven aan uw collectie" + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:45 +msgid "An error occured, please retry or contact an admin if problem persist" +msgstr "" +"Er heeft zich een fout voorgedaan, probeer opnieuw of neem contact op met " +"een beheerder als het probleem zich blijft voordoen." + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:61 +msgid "admin::base:collection: Nom de la nouvelle collection : " +msgstr "Naam van de nieuwe collectie : " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:406 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:70 +msgid "" +"admin::base:collection: Vous pouvez choisir une collection de reference pour " +"donenr des acces " +msgstr "U kan een standaard collectie kiezen voor toegang te verlenen " + +#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:411 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1871 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:85 +msgid "choisir" +msgstr "kiezen" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:24 +msgid "" +"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " +"pour continuer" +msgstr "" +"U bent momenteel afgemeld van uw sessie, u moet zich opnieuw connecteren om " +"verder te gaan" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:35 +msgid "login:: connexion" +msgstr "Aanmelden" + +#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:69 +msgid "boutton::refresh" +msgstr "refresh" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:56 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:56 +#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 +#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 +msgid "Vous devez remplir les champs requis" +msgstr "U moet de verplichte velden invullen" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:35 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:35 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 +msgid "status:: numero de bit" +msgstr "aantal bit" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:49 +msgid "admin::status: case A" +msgstr "Case A" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:55 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:175 +msgid "admin::status: texte a afficher" +msgstr "te tonen tekst" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:93 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:213 +msgid "Labels" +msgstr "Labels" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:124 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:244 +msgid "Symbolized by" +msgstr "Gesymboliseerd door" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:412 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:69 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:132 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:252 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:399 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:455 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:511 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:567 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:123 +msgid "Select files..." +msgstr "Selecteer files..." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:154 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:274 +msgid "admin::status:: aucun symbole" +msgstr "geen enkel symbool" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:169 +msgid "admin::status: case B" +msgstr "Case B" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:294 +msgid "" +"status:: Afficher le status dans les feuilles de reponses pour tous les " +"utilisateurs" +msgstr "Toon de statussen in de bladeren van de antwoorden aan alle gebruikers" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:304 +msgid "status:: retrouver sous forme de filtre dans la recherche" +msgstr "vindt als filter terug in de zoek" + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:696 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:350 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:594 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:146 +msgid "" +"Invalid file type, only (%supported_file_types%) file formats are supported" +msgstr "" +"Ongeldig bestandsformaat, enkel (%supported_file_types%) bestandsformaten " +"worden ondersteund" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:43 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:43 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 +msgid "Quarantine" +msgstr "Quarantaine" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:70 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:77 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 +msgid "maximum : %maxFileSizeReadable%" +msgstr "maximum : %maxFileSizeReadable%" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:77 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:84 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 +msgid "You are using the Flash uploader." +msgstr "U gebruikt de Flash uploader." + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:87 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 +msgid "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" +msgstr "" +"Deze versie kan geen toegang krijgen tot alle functies aangeboden door de " +"HTML5 uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:94 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 +msgid "Use the HTML5 uploader" +msgstr "Gebruik de HTML5 uploader" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:104 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:118 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 +msgid "upload:: Destination (collection) :" +msgstr "Bestemming" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:191 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:202 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 +msgid "upload:: Status :" +msgstr "Status" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:287 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:354 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 +msgid "You can not upload files" +msgstr "U kunt geen files uploaden" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:299 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 +msgid "Selected files" +msgstr "Geselecteerde files" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:303 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:308 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 +msgid "Clear list" +msgstr "Lijst wissen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:318 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:324 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 +msgid "Transmited files" +msgstr "Verzonden bestanden" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:324 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:336 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 +msgid "Cancel all" +msgstr "Annuleer alles" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:457 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 +msgid "You have attempted to queue too many files" +msgstr "U hebt geprobeerd om te veel bestanden in de wachtrij te plaatsen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:464 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 +msgid "Unknow Error" +msgstr "Onbekende fout" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:474 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 +msgid "Cannot upload Zero Byte files" +msgstr "Kan geen 0 byte bestanden uploaden" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:480 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:584 +msgid "Invalid file type" +msgstr "Ongeldig bestandstype" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:487 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 +msgid "Unhandled Error" +msgstr "Onbehandelde fout" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:520 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 +msgid "Unknow reason" +msgstr "Onbekende reden" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:527 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 +msgid "Bad request, please contact an admin" +msgstr "Verkeerd verzoek, gelieve een administrator te contacteren" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:533 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 +msgid "Upload URL is not set, please contact an admin" +msgstr "Upload URL niet is ingesteld, gelieve een administrator te contacteren" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:539 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 +msgid "Connection terminates unexpetecdly, please retry" +msgstr "Verbinding onverwacht beëindigt, gelieve opnieuw te proberen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:545 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 +msgid "The upload violates a security restriction, please retry" +msgstr "" +"De upload schendt een beveiligingsrestrictie, gelieve opnieuw te proberen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:551 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 +msgid "File upload limit (%maxFileSizeReadable%) has been reached" +msgstr "Bestand upload limiet (%maxFileSizeReadable%) is bereikt" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:557 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 +msgid "Could not initiate upload, please retry" +msgstr "Kan de upload niet starten, gelieve opnieuw te proberen" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:563 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 +msgid "" +"Could not retrieve the file ID, please retry or contact an admin if problem " +"persist" +msgstr "" +"Kan het bestands-ID niet ophalen, gelieve opnieuw te proberen of contacteer " +"een administrator is het probleem blijft" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:569 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 +msgid "File validation failed" +msgstr "Bestand validatie mislukt" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:575 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 +msgid "File upload has been cancelled" +msgstr "Bestand upload werd geannuleerd" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:581 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 +msgid "File upload has been stopped" +msgstr "Bestand upload is gestopt" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:588 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 +msgid "Error while uploading" +msgstr "Fout tijdens uploaden" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:682 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 +msgid "Please select at least one valid file" +msgstr "Gelieve minstens één geldig veld te selecteren" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:80 +msgid "client::answers: rapport de questions par bases" +msgstr "Rapport van de vragen per database" + +#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:101 +msgid "client::answers: %available_results% reponses" +msgstr "client::answers: %available_results% antwoorden" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:50 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 +msgid "Completion of your registration" +msgstr "Vervollediging van uw registratie" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:69 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 +msgid "Please complete the information to complete your registration" +msgstr "Gelieve de informatie aan te vullen om uw registratie te vervolledigen" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:134 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 +msgid "Mandatory fields" +msgstr "Verplichte velden" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:173 +#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 +msgid "Resquest access" +msgstr "Toegang aanvragen" + +#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 +#: tmp/cache_twig/aa/4e/eb6c877afea8239b78d4f3a1e02a6a5341ad8ea4fef1456ffc2c5532dae9.php:23 +msgid "Security" +msgstr "Beveiliging" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:35 +msgid "Client application" +msgstr "Klant programma" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:46 +msgid "Application" +msgstr "Toepassing" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:68 +msgid "settings OAuth" +msgstr "settings OAuth" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:72 +msgid "Les parametres oauth de votre application." +msgstr "De oauth parameters van uw toepassing" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:94 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:157 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 +msgid "URL de callback" +msgstr "callback URL" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:126 +msgid "Modify" +msgstr "Wijzig" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:151 +msgid "Activer le grant_type de type password pour votre application" +msgstr "Activeer de grant_type type paswoord voor uw toepassing" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:173 +msgid "Votre token d'access" +msgstr "Uw toegangs token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:177 +msgid "Les paramétres oauth de votre application." +msgstr "De oauth parameters van uw toepassing." + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:186 +msgid "Token" +msgstr "Token" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:202 +msgid "Le token n'a pas encore ete genere" +msgstr "Het token is nog niet gegenereerd" + +#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:212 +msgid "boutton::generer" +msgstr "Genereren" + +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:62 +#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 +msgid "Create an account manually" +msgstr "Maak manueel een gebruiker" + +#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 +#: tmp/cache_twig/b7/0f/7aa39ae06305bf2523f0b48646f315a3568a7f17c1336ef36524a7646498.php:169 +msgid "report:: Volumetrie des questions posees sur %home_title%" +msgstr "Volumetrie van de vragen over %home_title%" + #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:58 #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:56 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:56 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:58 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:56 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:56 msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" msgstr "" "De elementen kunnen niet worden geuploaded (problemen met het type of met de " "rechten)" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:61 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:61 msgid "Le bridge FlickR ne prend en charge que les photos" msgstr "De FlickR bridge aanvaardt enkel foto's" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:71 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:71 msgid "%n_elements% elements ne peuvent etre uploades" msgstr "%n_elements% elementen kunnen geen uploads zijn" #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:83 #, php-format msgid "Upload sur Flickr de %elements_length% elements" msgstr "Upload near Flickr de %elements_length% elementen" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 -msgid "Titre" -msgstr "Titel" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 -msgid "Tags" -msgstr "Trefwoorden" - #: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:197 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:197 msgid "2000 caracteres maximum, separe par des espaces" msgstr "Maximum 2000 tekens, gescheiden door spaties" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:40 -msgid "report:: 1 - Periode" -msgstr "1 - Periode" - -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:70 -msgid "report:: 2 - Bases" -msgstr "2 - Databases" +#: tmp/cache_twig/40/63/092bad36e7ddb1be21251c76b7ae07f9bd347b7e0a473d74c9344f5ae86c.php:54 +#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 +msgid "Incorrect please try again" +msgstr "Fout gelieve opnieuw te proberen" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:39 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:39 msgid "Change my email address" msgstr "Mijn email adres wijzigen" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:89 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:89 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Nieuw email adres" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:99 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:99 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Bevestig het nieuwe email adres" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:120 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:120 msgid "" "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " "changer mon adresse email ?" msgstr "Waarom vraag men mijn paswoord om mijn email adres te wijzigen ?" #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:125 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:125 msgid "" "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " "perte de votre mot de passe afin de pouvoir le reinitialiser, il est " @@ -4466,121 +6820,177 @@ msgstr "" "Uw email adres zal gebruikt worden om uw paswoord opnieuw in te stellen, het " "is belangrijk dat u de enige bent die dit kan wijzigen." +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:84 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:91 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 +msgid "You are using the HTML5 uploader." +msgstr "U gebruikt de HTML5 uploader." + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:97 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 +msgid "Your browser does not support all HTML5 features properly." +msgstr "Uw browser ondersteunt niet alle HTML5 functies naar behoren." + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:107 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 +msgid "Use the Flash uploader" +msgstr "Gebruik Flash uploader" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:304 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 +msgid "%quantity%selected files" +msgstr "%quantity% geselecteerde documenten" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:33 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 +msgid "admin::base: objet" +msgstr "Object" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:37 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 +msgid "admin::base: nombre" +msgstr "Aantal" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:41 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:45 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 +msgid "admin::base: poids" +msgstr "Gewicht" + #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:33 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:33 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:33 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:33 msgid "Creer une playlist" msgstr "Maak een playlist" #: tmp/cache_twig/43/8b/3aebe83dca4c51e99b80c87c269b.php:26 +#: tmp/cache_twig/5a/95/cbfb14ffec5d45fdbe9e888e221cfd3d5c2185e3d55529cf005d7b2069b8.php:26 msgid "Technical Informations" msgstr "Technische informaties" -#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 -#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 -#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 -msgid "boutton::modifier" -msgstr "bewerken" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:213 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:213 msgid "Create new subdef" -msgstr "Maak nieuwe subdef" +msgstr "Maak nieuwe thumbnail" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:217 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:217 msgid "Delete the subdef ?" -msgstr "Verwijder de subdef ?" +msgstr "Verwijder de thumbnail ?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:223 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:223 msgid "" "These subdef will be permanently deleted and cannot be recovered. Are you " "sure?" msgstr "" -"Deze subdef wordt definitief verwijderd en kan niet ongedaan gemaakt worden. " -"Bent u zeker?" +"Deze thumbnail wordt definitief verwijderd en kan niet ongedaan gemaakt " +"worden. Bent u zeker?" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:234 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:234 msgid "Subdef name" -msgstr "Subdef naam" +msgstr "Thumbnail naam" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:239 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:239 msgid "classe d'acces" msgstr "toegangs klasse" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:248 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:405 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:248 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:405 msgid "preview" msgstr "voorvertoning" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:252 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:413 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:252 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:413 msgid "tout le monde" msgstr "iedereen" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:359 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:359 msgid "Telechargeable" msgstr "Downloadable" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:377 #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:389 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:377 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:389 msgid "classe" msgstr "klasse" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:439 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:439 msgid "Write Metas" msgstr "Schrijf Metas" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:460 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:460 msgid "mediatype" msgstr "mediatype" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 -msgid "Choisir" -msgstr "Kiezen" - #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:639 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:207 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:178 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:178 msgid "yes" msgstr "Ja" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:648 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:213 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:174 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:174 #: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:61 msgid "no" msgstr "Nee" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:29 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:29 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:29 msgid "Fail" msgstr "Mislukt" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1359 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:35 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1359 msgid "Success" msgstr "Gelukt" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:110 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:110 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:110 msgid "Erreur" msgstr "Fout" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:117 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:117 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:117 msgid "%error%" msgstr "%error%" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:133 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:133 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:133 msgid "Code d'acces" msgstr "Toegangs code" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:140 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:140 +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:140 msgid "" "Copiez le code ci-dessous, retournez dans votre application et collez-le " "à l'endroit requis :" @@ -4588,577 +6998,122 @@ msgstr "" "Kopieer deze code hieronder, ga terug naar uw applicatie en plak op de " "vereiste plaats :" -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 -#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 -msgid "thesaurus:: export au format texte" -msgstr "Export in text format" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 -msgid "thesaurus:: options d'export : " -msgstr "Export opties : " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 -msgid "thesaurus:: example" -msgstr "Voorbeeld" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "Exporteermet synoniemen op dezelfde lijn" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "Exporteer met een lijn per synoniem" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "Nummer de lijnen " - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 -msgid "thesaurus:: export : inclure la langue" -msgstr "De taal insluiten" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 -msgid "thesaurus:: export : inclure les hits" -msgstr "De hits insluiten" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 -msgid "Do not forget to restart the tasks scheduler" -msgstr "Vergeet niet om de taakbeheerder te herstarten" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 -msgid "version" -msgstr "versie" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 -msgid "admin::base: Version" -msgstr "Versie" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "Uw programma vereist een update naar : " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 -msgid "update::Votre version est a jour : " -msgstr "Uw versie is up to date : " - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 -msgid "Propositions de modifications des tables" -msgstr "Voorgestelde wijzigingen in tabellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 -msgid "update::Verifier els tables" -msgstr "Controleer de tabellen" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 -msgid "admin::base: creer une base" -msgstr "Maak een database" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -msgid "" -"phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "Maak een database op een andere server dan die van de programma box" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 -msgid "phraseanet:: hostname" -msgstr "Hostname" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 -msgid "phraseanet:: port" -msgstr "Poort" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 -msgid "phraseanet:: user" -msgstr "Gebruiker" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 -msgid "phraseanet:: password" -msgstr "Paswoord" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 -msgid "phraseanet:: dbname" -msgstr "Dbname" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 -msgid "phraseanet:: Modele de donnees" -msgstr "Modelgegevens" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "boutton::creer" -msgstr "Maken" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 -msgid "admin::base: Monter une base" -msgstr "Toon een database" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 -msgid "" -"phraseanet:: Monter une base provenant d'un serveur different de " -"l'application box" -msgstr "" -"Toon een database die van een verschillende server komt dan die van de " -"programma box" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 -msgid "boutton::monter" -msgstr "Tonen" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 -msgid "Inscription" -msgstr "Inschrijving" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 -msgid "Create an account manually" -msgstr "Maak manueel een gebruiker" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 -msgid "Or login with" -msgstr "Of meld aan met" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 -msgid "Connection" -msgstr "Verbinding" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 -msgid "Your account is locked, please follow the following link to unlock it" -msgstr "" -"Uw gebruiker is geblokkeerd, volg de onderstaande link om die te deblokkeren" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "Stuur de bevestigingsmail opnieuw" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 -msgid "Forgot password?" -msgstr "Wachtwoord vergeten?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 -msgid "element(s)" -msgstr "element(en)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 -msgid "User contribute to the feedback" -msgstr "Gebruiker bijdrage aan de feedback" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 -msgid "User can see others choices" -msgstr "Gebruiker kan andere keuzes zien" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 -msgid "User can download HD" -msgstr "Gebruiker kan HD downloaden" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "New list name ?" -msgstr "Nieuwe lijstnaam ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Are you sure you want to delete this list ?" -msgstr "Bent u zeker deze lijst te verwijderen ?" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "Time for feedback (days)" -msgstr "Tijd voor feedback (dagen)" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Name" -msgstr "Naam" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Message" -msgstr "Bericht" - -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Accuse de reception" -msgstr "Ontvangstbevestiging" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 -msgid "Apparait aussi dans ces reportages" -msgstr "Wordt ook in deze reportages weergegeven" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 -msgid "Apparait aussi dans ces paniers" -msgstr "Word ook in deze mandjes weergegeven" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 -msgid "%displayName% wants to place an order" -msgstr "%displayName% wil een bestelling plaatsen" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 -msgid "Destinataire" -msgstr "Bestemmeling" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 -msgid "Date de commande" -msgstr "Bestellingsdatum" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 -msgid "Nombre total d'element commandes" -msgstr "Totaal aantal bestellingselementen" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 -msgid "" -"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " -"elements correspondants aux collections sur lesquelles vous gerez les " -"commandes" -msgstr "" -"Het is mogelijk dat u niet alle elementen ziet. U ziet enkel de elementen in " -"de collecties die corresponderen met diegene waar u de bestelling beheert" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 -msgid "Document refuse par %name%" -msgstr "Document geweigerd door %name%" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 -msgid "Forcer l'envoi du document" -msgstr "Forceer het versturen van het document" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 -msgid "Document envoye par %name%" -msgstr "Document verstuurd door %name%" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 -msgid "Selectionnez des documents et " -msgstr "Selecteer documenten en " - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "Weiger" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 -msgid "Retour aux commandes" -msgstr "Terug naar de bestellingen" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 -msgid "Story_id" -msgstr "Artikel_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 -msgid "Record_id" -msgstr "Record_id" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 -msgid "Nom Original" -msgstr "Originele naam" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 -msgid "Size" -msgstr "Grootte" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 -msgid "Camera Model" -msgstr "Cameramodel" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 -msgid "Color space" -msgstr "Kleurruimte" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 -msgid "Channels" -msgstr "Kanalen" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 -msgid "Color Depth" -msgstr "Kleurdiepte" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 -msgid "ISO sensibility" -msgstr "ISO waarde" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 -msgid "Flash" -msgstr "Flash" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 -msgid "Shutter speed" -msgstr "Sluitersnelheid" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 -msgid "Aperture" -msgstr "Diafragma" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 -msgid "Focal length" -msgstr "Brandpuntafstand" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 -msgid "Hyperfocal distance" -msgstr "Hyperbrandpuntsafstand" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 -msgid "Light Value" -msgstr "Lichtwaarde" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 -msgid "Duree" -msgstr "Duur" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 -msgid "Images par secondes" -msgstr "Beelden per seconde" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 -msgid "Codec Audio" -msgstr "Audio Codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 -msgid "Codec Video" -msgstr "Video Codec" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 -msgid "Frequence d'echantillonage" -msgstr "Samplefrequentie" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 -msgid "Back to basket list" -msgstr "Terug naar mandjes lijst" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 -msgid "No records" -msgstr "Geen records" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 -msgid "1 record" -msgstr "1 record" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 -msgid "%ElementsCount% records" -msgstr "%ElementsCount% records" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 -msgid "Fichiers envoyes" -msgstr "Document verstuurd" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 -msgid "phraseanet:: deconnection" -msgstr "Afmelden" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 -msgid "Terms of service" -msgstr "Algemene Voorwaarden" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 -msgid "Quarantine" -msgstr "Quarantaine" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 -msgid "maximum : %maxFileSizeReadable%" -msgstr "maximum : %maxFileSizeReadable%" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 -msgid "You are using the HTML5 uploader." -msgstr "U gebruikt de HTML5 uploader." - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 -msgid "Your browser does not support all HTML5 features properly." -msgstr "Uw browser ondersteunt niet alle HTML5 functies naar behoren." - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 -msgid "Use the Flash uploader" -msgstr "Gebruik Flash uploader" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 -msgid "upload:: Destination (collection) :" -msgstr "Bestemming" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 -msgid "upload:: Status :" -msgstr "Status" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 -msgid "%quantity%selected files" -msgstr "%quantity% geselecteerde documenten" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 -msgid "Clear list" -msgstr "Lijst wissen" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 -msgid "Transmited files" -msgstr "Verzonden bestanden" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 -msgid "Cancel all" -msgstr "Annuleer alles" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 -msgid "You can not upload files" -msgstr "U kunt geen files uploaden" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 -msgid "Limite temporelle" -msgstr "Tijdelijk limiet" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 -msgid "Base %base%" -msgstr "Database %base%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 -msgid "Collection %collection%" -msgstr "Collectie %collection%" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 -msgid "Activer" -msgstr "Activeren" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 -msgid "De" -msgstr "De" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 -msgid "A" -msgstr "A" - +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:65 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:65 msgid "Erreur lors du contact avec le serveur WEB" msgstr "Foute contact opname met de webserver" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:69 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:69 msgid "Delai depasse lors du contact avec le serveur WEB" msgstr "Tijd overschreden bij contact opname met de webserver" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:73 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:73 msgid "Required" msgstr "Vereist" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:77 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:77 msgid "forms::merci d'entrer une adresse e-mail valide" msgstr "Bedankt voor een geldig email adres op te geven" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:81 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:85 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:81 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:85 msgid "forms::ce champ est requis" msgstr "Dit veld is vereist" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:89 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:89 msgid "forms::les mots de passe ne correspondent pas" msgstr "De paswoorden komen niet overeen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:93 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:93 msgid "Vous devez specifier une adresse email et un mot de passe valides" msgstr "U moet een geldig email adres en paswoord opgeven" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:97 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:97 msgid "Le nom de base de donnee est incorrect" msgstr "De database naam is niet juist" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:101 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:101 msgid "Il y a des erreurs, merci de les corriger avant de continuer" msgstr "Er zijn fouten, gelieve eerst te verbeteren alvorens verder te gaan" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:108 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:108 msgid "forms::le mot de passe est trop similaire a l'identifiant" msgstr "Het paswoord is te gelijkend aan dit van de identifiant" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:112 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:112 msgid "forms::la valeur donnee est trop courte" msgstr "De opgegeven waarde is te kort" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:116 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:120 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:116 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:120 msgid "forms::le mot de passe est trop simple" msgstr "Het paswoord is te simpel" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:124 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:124 msgid "forms::le mot de passe est bon" msgstr "Het paswoord is correct" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:128 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:128 msgid "forms::le mot de passe est tres bon" msgstr "Het paswoord is te goed" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:174 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:174 msgid "Veuillez corriger les erreurs avant de poursuivre" msgstr "Wilt u de fouten verbeteren alvorens verder te gaan" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:319 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:319 msgid "Successfull connection" msgstr "Aanmelding geslaagd" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:325 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:325 msgid "Warning, this database is not empty" msgstr "Waarschuwing, deze database is niet leeg" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:338 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:338 msgid "Connection is OK but database does not exists or can not be accessed" msgstr "" "Connectie is OK maar database bestaat niet of er is geen toegang tot de " "database" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:345 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:357 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:365 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:345 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:357 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:365 msgid "Unable to connect to MySQL server" msgstr "Onmogelijk om te connecteren met de MySQL server" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:417 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:417 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Goededag, u staat op het punt Phraseanet te installeren." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:423 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:423 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Raadpleeg online de voorwaarden en de configuratie van de webserver" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:429 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:429 msgid "" "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage " @@ -5169,6 +7124,7 @@ msgstr "" "specifieren, en uw webserver configureren dat die bepaalde opslag mappen kan " "publiceren" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:439 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:439 msgid "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " @@ -5177,26 +7133,32 @@ msgstr "" "Alvorens door te gaan, neem nota van onderstaande punten. U kunt zonder " "correctie van deze nota's doorgaan." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:499 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:499 msgid "Review system configuration" msgstr "Herbekijk de systeem configuratie" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:521 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:521 msgid "Prerequisite and Configuration" msgstr "Voorwaarden en Configuratie" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:555 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:555 msgid "Executables externes" msgstr "Externe Executables" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:598 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:598 msgid "Required field" msgstr "Verplicht veld" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:622 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:622 msgid "Phraseanet may require many binaries." msgstr "Phraseanet kan vele binaries vereissen." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:628 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:628 msgid "" "Some of them are required, like the indexer, Exiftool or ImageMagick " @@ -5207,30 +7169,37 @@ msgstr "" "anderen zijn optioneel, zoals FFmpeg die gebruikt wordt voor de " "voorvertoning van video's" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:634 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:634 msgid "Don't worry, You can modify your configuration later" msgstr "Geen zorg, U kunt later de configuratie aanpassen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:673 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:673 msgid "Creation de votre compte" msgstr "Creatie van uw account" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:685 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:685 msgid "Votre adresse email" msgstr "Uw email adres" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:692 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:692 msgid "Votre mot de passe" msgstr "Uw paswoord" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:711 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:711 msgid "Confirmation de votre mot de passe" msgstr "Confirmatie van uw paswoord" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:721 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:721 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "Over de veiligheid van uw paswoord :" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:725 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:725 msgid "" "admin::compte-utilisateur Les mots de passe doivent etre clairement " @@ -5240,53 +7209,77 @@ msgstr "" "De paswoorden moeten duidelijk verschillen van de login en moet tenminste " "twee van de volgende tekens bevatten" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:730 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:730 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Beveiling speciale tekens" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:734 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:734 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Beveiliging van hoofdletter tekens" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:738 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:738 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Beveiliging van gewone tekens" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:742 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:742 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Beveiliging van nummerieke tekens" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:762 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:762 msgid "Your email will be used to log in the application." msgstr "Uw email wordt gebruikt om in te loggen op het programma" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:766 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:766 msgid "Please be sure it is still valid and you can access it" msgstr "Wees zeker dat het nog steeds actief is en dat u er toegang tot hebt" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:811 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:811 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "Configuratie van de gebruikers database ApplicationBox" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:824 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1060 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:824 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1060 msgid "MySQL database connection parameters" msgstr "MySQL database connectie parameters" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:838 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:838 msgid "Database user" msgstr "Database gebruiker" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:852 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 +#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:247 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:328 +msgid "phraseanet:: port" +msgstr "Poort" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:859 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1075 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:859 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1075 msgid "Database" msgstr "Database" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:867 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1083 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:867 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1083 msgid "boutton::tester" msgstr "Tester" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:887 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:887 msgid "" "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage " @@ -5294,10 +7287,12 @@ msgid "" msgstr "" "Als u meerdere parameters nodig hebt, %debut_lien%Toon meer keuzez%fin_lien%" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:906 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:906 msgid "ApplicationBox is a Mysql database." msgstr "ApplicationBox is een Mysql database." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:912 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:912 msgid "" "It stores users datas, rights, and references to DataBoxes where records are " @@ -5306,6 +7301,7 @@ msgstr "" "Het bewaart gebruikers datas, rechten, en verwijzingen naar DataBoxes waar " "records bewaart worden." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:924 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:924 msgid "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " @@ -5314,28 +7310,33 @@ msgstr "" "Phraseanet raadt ten sterkste het gebruik van %link_start%MariaDB%link_end% " "ter vervanging van MySQL." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:968 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:968 msgid "setup::Configuration des repertoires de stockage" msgstr "Configuratie van de stockage mappen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:980 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:980 msgid "Repertoire de stockage des fichiers" msgstr "Mappen voor de opslag van documenten" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:998 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:998 msgid "" "Your medias and their subdefinitions (previews, thumbnails..) will be stored " "in these directories." msgstr "" -"Uw media en hun subdefinities (voorvertoningen, thumbnails..) worden in deze " +"Uw media en hun thumbnails (voorvertoningen, thumbnails..) worden in deze " "mappen opgeslagen." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1004 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1004 msgid "" "Thumbnails directory is mounted to be accessible via HTTP, while other files " "are not." msgstr "Thumbnails mappen zijn zichtbaar via HTTP, andere files niet." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1010 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1010 msgid "" "If you plan to store large files, be sure it will fit in these directories." @@ -5343,22 +7344,27 @@ msgstr "" "Als u grotere files wilt opslaan, wees dan zeker deze in die mappen zullen " "passen." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1048 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1048 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Configuratie van de stockage DataBox database" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1067 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1067 msgid "Ne pas creer de DataBox maintenant" msgstr "Nu geen DataBox aanmaken" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1095 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1095 msgid "Modele de donnees" msgstr "Datamodel" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1126 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1126 msgid "Creation des taches" msgstr "Aanmaken van de taken" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1131 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1131 msgid "" "Phraseanet embarque un moteur de taches pour la lecture / ecriture des " @@ -5367,18 +7373,22 @@ msgstr "" "Phraseanet gebruikt een takenmotor voor het lezen / schrijven van metadata, " "en andere verwerkingen" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1142 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1142 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Maak de taak voor het lezen van de metadata" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1151 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1151 msgid "Creer la tache de creation des sous-definitions" msgstr "Maak de taak voor het aanmaken van thumbnails" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1160 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1160 msgid "Creer la tache d'indexation" msgstr "Maak de indexeren taak" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1177 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1177 msgid "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " @@ -5387,27 +7397,636 @@ msgstr "" "Phraseanet DataBoxes zijn MySQL databases, queryable door Phraseanet " "ApplicationBox." +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1181 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1181 msgid "Databoxes store records, metadatas and their classifications" msgstr "Databoxes bewaren records, metadatas en hun classificaties" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1202 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1202 msgid "button::Install" msgstr "Installeer" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1212 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1212 msgid "Install in progess" msgstr "Installatie is bezig" +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1218 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1218 msgid "Installation is currenlty processing, please wait..." msgstr "Installatie is momenteel bezig, gelieve te wachten..." +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:76 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 +msgid "%nb_elements% elements" +msgstr "%nb_elements% elementen" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:158 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 +msgid "Imagette indisponible" +msgstr "Thumbnail niet beschikbaar" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:207 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 +msgid "Aucune description." +msgstr "Geen enkele beschrijving." + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:229 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 +msgid "dans %category%" +msgstr "in %category%" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:245 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 +msgid "Confidentialite : privee" +msgstr "prive" + +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:251 +#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 +msgid "Confidentialite : publique" +msgstr "publiek" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:71 +msgid "Do not forget to restart the tasks scheduler" +msgstr "Vergeet niet om de taakbeheerder te herstarten" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:101 +msgid "version" +msgstr "versie" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:132 +msgid "admin::base: Version" +msgstr "Versie" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:140 +msgid "update::Votre application necessite une mise a jour vers : " +msgstr "Uw programma vereist een update naar : " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:148 +msgid "update::Votre version est a jour : " +msgstr "Uw versie is up to date : " + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:189 +msgid "Propositions de modifications des tables" +msgstr "Voorgestelde wijzigingen in tabellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:217 +msgid "update::Verifier els tables" +msgstr "Controleer de tabellen" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:225 +msgid "admin::base: creer une base" +msgstr "Maak een database" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 +msgid "" +"phraseanet:: Creer une base sur un serveur different de l'application box" +msgstr "Maak een database op een andere server dan die van de programma box" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 +msgid "phraseanet:: hostname" +msgstr "Hostname" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:252 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:333 +msgid "phraseanet:: user" +msgstr "Gebruiker" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:257 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:338 +msgid "phraseanet:: password" +msgstr "Paswoord" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:263 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:344 +msgid "phraseanet:: dbname" +msgstr "Dbname" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:268 +msgid "phraseanet:: Modele de donnees" +msgstr "Modelgegevens" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:297 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 +msgid "boutton::creer" +msgstr "Maken" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:306 +msgid "admin::base: Monter une base" +msgstr "Toon een database" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:317 +msgid "" +"phraseanet:: Monter une base provenant d'un serveur different de " +"l'application box" +msgstr "" +"Toon een database die van een verschillende server komt dan die van de " +"programma box" + +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 +msgid "boutton::monter" +msgstr "Tonen" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:27 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 +msgid "%displayName% wants to place an order" +msgstr "%displayName% wil een bestelling plaatsen" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:82 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 +msgid "Destinataire" +msgstr "Bestemmeling" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:94 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 +msgid "Date de commande" +msgstr "Bestellingsdatum" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:124 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 +msgid "Nombre total d'element commandes" +msgstr "Totaal aantal bestellingselementen" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:136 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 +msgid "" +"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " +"elements correspondants aux collections sur lesquelles vous gerez les " +"commandes" +msgstr "" +"Het is mogelijk dat u niet alle elementen ziet. U ziet enkel de elementen in " +"de collecties die corresponderen met diegene waar u de bestelling beheert" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:179 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 +msgid "Document refuse par %name%" +msgstr "Document geweigerd door %name%" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:188 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 +msgid "Forcer l'envoi du document" +msgstr "Forceer het versturen van het document" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:211 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 +msgid "Document envoye par %name%" +msgstr "Document verstuurd door %name%" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:259 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 +msgid "Selectionnez des documents et " +msgstr "Selecteer documenten en " + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:266 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:95 +#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 +msgid "Deny" +msgstr "Weiger" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:270 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 +msgid "Retour aux commandes" +msgstr "Terug naar de bestellingen" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:37 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 +msgid "you are about to change the representation thumbnail of your video" +msgstr "" +"U staat op het punt de presentatie thumbnail van uw video te veranderen" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:47 +#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 +msgid "do you want to validate" +msgstr "Wilt u goedkeuren" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:69 +msgid "element(s)" +msgstr "element(en)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:111 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:115 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 +msgid "User contribute to the feedback" +msgstr "Gebruiker bijdrage aan de feedback" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:122 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:126 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +msgid "User can see others choices" +msgstr "Gebruiker kan andere keuzes zien" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:133 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:137 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:279 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:283 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 +msgid "User can download HD" +msgstr "Gebruiker kan HD downloaden" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:157 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +msgid "New list name ?" +msgstr "Nieuwe lijstnaam ?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:167 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +msgid "Are you sure you want to delete this list ?" +msgstr "Bent u zeker deze lijst te verwijderen ?" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +msgid "Time for feedback (days)" +msgstr "Tijd voor feedback (dagen)" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:234 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +msgid "Message" +msgstr "Bericht" + +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:243 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +msgid "Accuse de reception" +msgstr "Ontvangstbevestiging" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:27 +msgid "Apparait aussi dans ces reportages" +msgstr "Wordt ook in deze reportages weergegeven" + +#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:73 +msgid "Apparait aussi dans ces paniers" +msgstr "Word ook in deze mandjes weergegeven" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:28 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 +msgid "Save all changes" +msgstr "Alle wijzigingen opslaan" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:40 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 +msgid "Close" +msgstr "Sluit" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:44 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 +msgid "Ok" +msgstr "Ok" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:56 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 +msgid "Live search" +msgstr "Live zoeken" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:74 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:80 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 +msgid "Add a new field" +msgstr "Voeg een nieuw veld toe" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:108 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:189 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 +msgid "Multivalued" +msgstr "Meerde waarden" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:133 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 +msgid "Order" +msgstr "Opdracht" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:174 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 +msgid "DCES" +msgstr "DCES" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:197 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 +msgid "Advanced field parameters" +msgstr "Geavanceerde veld parameters" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:203 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 +msgid "Thesaurus branch" +msgstr "Thesaurus tak" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:210 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 +msgid "Type" +msgstr "Type" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:225 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 +msgid "Vocabulary type" +msgstr "Type van de vocabulair" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:243 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 +msgid "Limited vocabulary" +msgstr "Beperkte vocabulair" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:255 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 +msgid "Business Fields" +msgstr "Zakelijke velden" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:263 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 +msgid "Separator" +msgstr "Scheidingsteken" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:270 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 +msgid "Display & action settings" +msgstr "Instellingen voor weergave & acties" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:279 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 +msgid "Mandatory" +msgstr "Verplicht" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:290 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 +msgid "Indexable" +msgstr "Indexeerbaar" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:301 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 +msgid "Read-only" +msgstr "Alleen lezen" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:320 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 +msgid "Display thumbnails" +msgstr "Toon thumbnails" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:326 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 +msgid "Tous" +msgstr "Alle" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:330 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 +msgid "Aucun" +msgstr "Geen enkele" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:395 +#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 +msgid "Current configuration contains some errors" +msgstr "Huidige configuratie bevat enkele fouten" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:22 +msgid "Story_id" +msgstr "Artikel_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:30 +msgid "Record_id" +msgstr "Record_id" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:50 +msgid "Nom Original" +msgstr "Originele naam" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:130 +msgid "Camera Model" +msgstr "Cameramodel" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:144 +msgid "Color space" +msgstr "Kleurruimte" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:158 +msgid "Channels" +msgstr "Kanalen" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:172 +msgid "Color Depth" +msgstr "Kleurdiepte" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:186 +msgid "ISO sensibility" +msgstr "ISO waarde" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:200 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:651 +msgid "Flash" +msgstr "Flash" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:226 +msgid "Shutter speed" +msgstr "Sluitersnelheid" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:240 +msgid "Aperture" +msgstr "Diafragma" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:254 +msgid "Focal length" +msgstr "Brandpuntafstand" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:268 +msgid "Hyperfocal distance" +msgstr "Hyperbrandpuntsafstand" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:282 +msgid "Light Value" +msgstr "Lichtwaarde" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:298 +msgid "Duree" +msgstr "Duur" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:312 +msgid "Images par secondes" +msgstr "Beelden per seconde" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:326 +msgid "Codec Audio" +msgstr "Audio Codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:340 +msgid "Codec Video" +msgstr "Video Codec" + +#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:354 +msgid "Frequence d'echantillonage" +msgstr "Samplefrequentie" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:28 +msgid "Back to basket list" +msgstr "Terug naar mandjes lijst" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:171 +msgid "No records" +msgstr "Geen records" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:177 +msgid "1 record" +msgstr "1 record" + +#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:183 +msgid "%ElementsCount% records" +msgstr "%ElementsCount% records" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:152 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:152 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 +msgid "Fichiers envoyes" +msgstr "Document verstuurd" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 +#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:169 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:169 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:418 +msgid "phraseanet:: deconnection" +msgstr "Afmelden" + +#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:234 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:234 +#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 +msgid "Terms of service" +msgstr "Algemene Voorwaarden" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:35 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 +msgid "Client applications" +msgstr "Klant programma's" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:48 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 +msgid "Mes applications" +msgstr "Mijn programma's" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:83 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 +msgid "button::supprimer" +msgstr "Verwijderen" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:101 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 +msgid "Are you sure you want to delete this application?" +msgstr "Bent u zeker om dit programma te verwijderen?" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:107 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 +msgid "No" +msgstr "Nee" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:113 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:55 +msgid "Yes" +msgstr "Ja" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:156 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 +msgid "Aucune application creee." +msgstr "Geen enkel programma werd gemaakt" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:168 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 +msgid "Decouvrez la documentation" +msgstr "Raadpleeg de handleiding" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:173 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 +msgid "Demarrer avec l'API Phraseanet" +msgstr "Starten met de API Phraseanet" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:180 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 +msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +msgstr "Maak een programma voor het gebruik van de Phraseanet API te starten" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:188 +#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 +msgid "Creer une nouvelle applications" +msgstr "Maak een nieuw programma" + +#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 +#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:35 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:133 +msgid "Collection %collection%" +msgstr "Collectie %collection%" + #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:44 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:44 msgid "Votre recherche ne retourne aucun resultat" msgstr "Uw zoekopdracht geeft geen enkel resultaat weer" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:76 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:76 msgid "" "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " "gauche de l'écran." @@ -5416,12 +8035,14 @@ msgstr "" "bovenaan het scherm bevindt." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:79 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:79 msgid "" "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " "suivants :" msgstr "Wist u dat u volgende operatoren of tekens kunt gebruiken :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:83 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:83 msgid "" "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " "LAST , ALL)" @@ -5430,42 +8051,52 @@ msgstr "" "LAST , ALL)" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:88 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:88 msgid "Caractères de troncature" msgstr "Verborgen tekens" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:95 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:95 msgid "auto*" msgstr "auto*" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:99 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:99 msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." msgstr "geeft \"automobile\", \"automate\", \"autoroute\", ... terug" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:105 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:105 msgid "dé?it" msgstr "dé?it" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:109 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:109 msgid "retourne \"délit\", \"débit\", ..." msgstr "geeft \"délit\", \"débit\", ... terug" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:116 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:116 msgid "Visualiser tous les enregistrements / les derniers enregistrements" msgstr "Toon alle bewaarde / de laatst bewaarde" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:122 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:122 msgid "TOUT" msgstr "ALLE" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:126 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:126 msgid "retourne tous les enregistrements des collections selectionnees" msgstr "geeft alle bewaarde van de geselecteerde collecties weer" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:132 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:132 msgid "LAST 20" msgstr "LAATSTE 20" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:136 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:136 msgid "" "retourne les 20 derniers enregistrements archives dans les collections " "selectionnees" @@ -5473,10 +8104,12 @@ msgstr "" "geeft alle laatste 20 bewaarde archieven in de geselecteerde collecties weer" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:143 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:143 msgid "Recherche multicritères" msgstr "Multicreteria zoeken" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:147 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:147 msgid "" "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " "DANS" @@ -5485,38 +8118,47 @@ msgstr "" "operatoren : EN, OF, BEHALVE of IN" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:153 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:153 msgid "sport" msgstr "sport" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:155 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:155 msgid "automobile" msgstr "auto" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:159 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:159 msgid "retourne les documents comprenant les deux mots." msgstr "geeft de documenten inclusief de twee woorden." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:165 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:165 msgid "journal OU jt" msgstr "journal OF jt" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:169 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:169 msgid "retourne les documents comprenant un mot et/ou l'autre." msgstr "geeft de documenten inclusief een woord en/of andere." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:175 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:175 msgid "cannes SAUF festival" msgstr "cannes BEHALVE festival" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:179 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:179 msgid "retourne les documents comprenant cannes sans le mot festival." msgstr "geeft de documenten inclusief cannes zonder het woord festival weer." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:185 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:185 msgid "thalassa DANS titre" msgstr "thalassa IN titel" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:189 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:189 msgid "" "retourne les documents où le terme est au moins présent dans le titre, en " "évitant par exemple celles où le terme est uniquement cité dans la légende." @@ -5526,12 +8168,15 @@ msgstr "" "legenda." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:120 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:197 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:120 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "Attention" msgstr "Let op!" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:201 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:201 msgid "" "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " "guillemets :" @@ -5540,580 +8185,729 @@ msgstr "" "aanhalingstekens :" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:205 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:205 msgid "C dans l'air" msgstr "C in de lucht" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:209 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:209 msgid "Et Dieu créa la femme" msgstr "En God heeft de vrouw gemaakt" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:213 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:213 msgid "bijou en or" msgstr "gouden juweel" #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:217 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:217 msgid "tout le sport" msgstr "alle sporten" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:36 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:36 msgid "Forgotten password" msgstr "Paswoord vergeten" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:49 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:49 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:55 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:55 msgid "Enter your e-mail address to retrieve your password" msgstr "Vul uw email adres in om uw paswoord op te halen" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:70 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:70 msgid "report :: configurer le tableau" msgstr "Configureer het paneel" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:79 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:79 msgid "report :: imprimer le tableau" msgstr "Print het panel" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:127 msgid "%total_count% results" msgstr "%total_count% resultaten" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:173 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:177 msgid "Trier" msgstr "Sorteren" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:204 msgid "Filtrer" msgstr "Filteren" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:208 msgid "report :: filtrer" msgstr "Filteren" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:219 msgid "Grouper" msgstr "Groeperen" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:223 msgid "report :: grouper" msgstr "Groeperen" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:389 msgid "report :: aucun resultat trouve" msgstr "geen enkel resultaat gevonden" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:188 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:188 msgid "Chargement" msgstr "Laden" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:452 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:235 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:239 msgid "phraseanet:: propositions" msgstr "Voorstellen" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:258 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:258 msgid "Close the WorkZone" msgstr "Sluit de WorkZone" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:284 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:284 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:291 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:291 msgid "prod::thesaurusTab:candidats" msgstr "Kandidaten" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:306 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:306 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "aanvaard de term kandidaat" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:312 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:312 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "vervangen door de term" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:419 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:320 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:588 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 msgid "boutton::rechercher" msgstr "zoeken" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:368 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:436 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:368 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:436 msgid "chargement" msgstr "laden" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:477 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:483 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:487 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:483 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:487 msgid "action:: nouveau panier" msgstr "Nieuw mandje" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:494 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:500 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:494 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:500 msgid "Browse Baskets" msgstr "Mandjes doorbladeren" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:511 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:517 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:521 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:511 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:517 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:521 msgid "action:: nouveau reportage" msgstr "Nieuwe reportage" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:545 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:549 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:545 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:549 msgid "phraseanet:: tri par nom" msgstr "Op naam sorteren" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:557 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1658 msgid "Preferences" msgstr "Voorkeuren" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:583 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:583 msgid "Advanced Search" msgstr "Geavanceerd zoeken" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:397 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:606 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1049 msgid "phraseanet::type:: documents" msgstr "Documenten" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:405 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:618 msgid "phraseanet::type:: reportages" msgstr "Reportages" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:631 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:631 msgid "Tout type" msgstr "Alle type" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:635 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:635 msgid "Image" msgstr "Beeld" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:639 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:639 msgid "Video" msgstr "Video" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:643 msgid "Audio" msgstr "Audio" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:647 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:647 msgid "Document" msgstr "Document" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:478 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:668 msgid "boutton:: selectionner toutes les bases" msgstr "Selecteer alle databases" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:482 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:673 msgid "boutton:: selectionner aucune base" msgstr "Selecteer geen enkele database" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 -msgid "Re-initialiser" -msgstr "Herinitialiseren" - #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:693 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:693 msgid "Trier par " msgstr "Sorteren op " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:745 msgid "rechercher par stemme" msgstr "zoeken op stemmen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:755 msgid "Les termes apparaissent dans le(s) champs" msgstr "De termen verschijnen in de veld(en)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:760 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:941 msgid "rechercher dans tous les champs" msgstr "in alle velden zoeken" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:801 msgid "Status des documents a rechercher" msgstr "Status van de te zoeken documenten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:913 msgid "Rechercher dans un champ date" msgstr "Zoeken in een datum veld" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:703 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:950 msgid "phraseanet::time:: de" msgstr "de" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:709 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:960 msgid "phraseanet::time:: a" msgstr "a" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1022 msgid "reponses:: selectionner tout" msgstr "alles selecteren" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1031 msgid "reponses:: selectionner rien" msgstr "niks selecteren" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1040 msgid "phraseanet::type:: images" msgstr "Beelden" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1058 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1067 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1538 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Over toetsenbord sneltoetsen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1543 msgid "Raccourcis claviers en cours de recherche : " msgstr "Sneltoetsen tijdens het zoeken : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1548 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1584 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : alles selecteren " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1552 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1588 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print de selectie " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1556 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1592 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : bewerk de selectie " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1560 msgid "Raccourcis::fleche gauche : page precedente " msgstr "pijl links : vorige pagina " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1564 msgid "Raccourcis::fleche droite : page suivante " msgstr "pijl rechts : volgende pagina " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1568 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "pijl boven : verticale scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1572 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "pijl onder : verticale scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1579 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Sneltoetsen in de mandjes zone : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1599 msgid "Raccourcis claviers en cours de editing : " msgstr "Sneltoetsen tijdens het bewerken : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1604 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab verspringt tussen de velden " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1611 msgid "Raccourcis claviers en cours de preview : " msgstr "Sneltoetsen tijdens de voorvertoning : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1616 msgid "Raccourcis::fleche gauche : en avant " msgstr "pijl rechts : voorwaarts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1620 msgid "Raccourcis::fleche gauche : en arriere " msgstr "pijl links : achterwaarts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1624 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espace : start/stop de slideshow " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1632 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "" "U kunt het grootste deel van de bovenliggende vensters sluiten met de escape " "toets " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1643 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Deze help niet meer tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1664 msgid "Affichage" msgstr "Tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1668 msgid "Configuration" msgstr "Configuratie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1676 msgid "Mode de presentation" msgstr "Presentatie mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1691 msgid "reponses:: mode vignettes" msgstr "Thumbnail mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1703 msgid "reponses:: mode liste" msgstr "Lijst mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1710 msgid "Theme" msgstr "Thema" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1719 msgid "Selecteur de theme" msgstr "Thema selector" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1741 msgid "Presentation de vignettes" msgstr "Presentatie van de thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1752 msgid "Iconographe (description au rollover)" msgstr "Iconographe (beschrijving bij de rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1764 msgid "Graphiste (preview au rollover)" msgstr "Graficus (preview au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1774 msgid "Informations techniques" msgstr "Technische informaties" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1785 msgid "Afficher" msgstr "Tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1797 msgid "Afficher dans la notice" msgstr "In de nota tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1809 msgid "Ne pas afficher" msgstr "Niet tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1819 msgid "Type de documents" msgstr "Type van de documenten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1830 msgid "Afficher une icone" msgstr "Pictogram tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1839 msgid "reponses:: images par pages : " msgstr "Beelden per pagina : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1852 msgid "reponses:: taille des images : " msgstr "Grootte van de beelden : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1866 msgid "Couleur de selection" msgstr "Kleur van de selectie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1881 msgid "Affichage au demarrage" msgstr "Tonen bij opstart" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1897 msgid "Ma derniere question" msgstr "Mijn laatste vraag" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1908 msgid "Une question personnelle" msgstr "Een persoonlijke vraag" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1930 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:987 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1977 msgid "preview:: Description" msgstr "Beschrijving" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:991 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1981 msgid "preview:: Historique" msgstr "Historie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:995 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1988 msgid "preview:: Popularite" msgstr "Populariteit" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2037 msgid "Presentation de vignettes de panier" msgstr "Presentatie van de thumbnails in het mandje" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2055 msgid "Afficher les status" msgstr "De statussen tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2075 msgid "Afficher la fiche descriptive" msgstr "De beschrijvingsfiche tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2095 msgid "Afficher le titre" msgstr "De titel tonen" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 -msgid "%nb_elements% elements" -msgstr "%nb_elements% elementen" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:38 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:53 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:38 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:40 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +msgid "Login" +msgstr "Login" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 -msgid "Imagette indisponible" -msgstr "Thumbnail niet beschikbaar" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 -msgid "Aucune description." -msgstr "Geen enkele beschrijving." - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 -msgid "dans %category%" -msgstr "in %category%" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 -msgid "Confidentialite : privee" -msgstr "prive" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 -msgid "Confidentialite : publique" -msgstr "publiek" +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:70 +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:94 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 +msgid "Login to link your account" +msgstr "Login om uw gebruiker te linken" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:43 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:43 msgid "forms::operation effectuee OK" msgstr "Bewerking correct uitgevoerd" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:81 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:81 msgid "admin::base: Alias" msgstr "Snelkoppeling" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:99 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:99 msgid "Rename" msgstr "Hernoem" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:112 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:112 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Aantal records in de database :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:122 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:107 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:122 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:107 msgid "phraseanet:: details" msgstr "Details" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:133 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:133 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Aantal unieke woorden in de database : " #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:142 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:142 msgid "admin::base: nombre de mots indexes sur la base" msgstr "Aantal geïndexeerde woorden in de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:155 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:155 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Aantal termen in de Thesaurus indexen :" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:174 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:174 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Document wordt met het xml bestand geïndexeerd" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:185 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:185 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Document wordt met de thesaurus geïndexeerd" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:210 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:210 msgid "admin::base: Cette base est indexable" msgstr "Deze database is indexeerbaar" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:268 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:271 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:268 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:271 msgid "Set labels" msgstr "Zet labels" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:296 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:296 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Bevestig het verwijderen van alle log files" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:301 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:301 msgid "admin::base: supprimer tous les logs" msgstr "Verwijder alle logbestanden" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:312 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:312 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Bevestigt u het stoppen van de publicatie van de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:317 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:317 msgid "admin::base: arreter la publication de la base" msgstr "Stop de publicatie van de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:328 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:328 msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Bevestig het kompleet leegmaken van de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:333 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:333 msgid "admin::base: vider la base" msgstr "Leeg de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:344 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:344 msgid "admin::base: Confirmer la suppression de la base" msgstr "Bevestig het verwijderen van de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:349 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:349 msgid "admin::base: supprimer la base" msgstr "Verwijder de database" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:361 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:361 msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Bevestigt u de herindexering van de database ?" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:365 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:365 msgid "base:: re-indexer" msgstr "herindexeren" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:379 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:438 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:379 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:438 msgid "admin::base:collection: Monter une collection" msgstr "Toon een collectie" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:397 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:397 msgid "Monter" msgstr "Tonen" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:466 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:466 msgid "Activer une collection" msgstr "Activeer een collectie" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:510 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:510 msgid "admin::base: logo impression PDF" msgstr "Logo PDF print" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:526 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:526 msgid "admin::base:collection: supprimer le logo" msgstr "Verwijder het logo" @@ -6122,129 +8916,107 @@ msgstr "Verwijder het logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:536 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:389 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:445 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:501 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:557 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Geen enkel bestand (minilogo, watermerk ...)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:546 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:546 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Verstuur een logo (jpeg 35px maximale hoogte)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:569 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 msgid "admin::base: aucun alias" msgstr "Geen enkel snelkoppeling" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 -msgid "Download of documents" -msgstr "Download van documenten" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:107 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 +msgid "E-Mail" +msgstr "E-mail" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 -msgid "" -"Please wait while your files are being gathered for the download, this " -"operation may take a few minutes." -msgstr "" -"Gelieve te wachten tot uw documenten worden verzameld voor de download, dit " -"kan enkele minuten duren" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:143 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 +msgid "Last Template" +msgstr "Laatste template" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 -msgid "" -"Your documents are ready. If the download does not start, %before_link%click " -"here%after_link%" -msgstr "" -"Uw documenten zijn klaar. Als het downloaden niet start, %before_link%klik " -"hier%after_link%" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:161 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 +msgid "Creation date" +msgstr "Aanmaakdatum" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 -msgid "The file contains the following elements" -msgstr "Dit document bevat de volgende elementen" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 -msgid "Base" -msgstr "Databank" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 -msgid "Sub definition" -msgstr "Thumbnail" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 -msgid "Thumbnail" -msgstr "Thumbnail" - -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 -msgid "Login" -msgstr "Login" +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:22 +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:27 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:22 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:27 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 +#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 +#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 +#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 +msgid "validation::envoyer mon rapport" +msgstr "stuur mijn rapport" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:60 msgid "Your %provider_name% account matchs a Phraseanet account" msgstr "Uw %provider_name% gebruiker is gelijk aan een Phraseanet gebruiker" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 -msgid "Login to link your account" -msgstr "Login om uw gebruiker te linken" - #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:192 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:192 msgid "These informations do not match?" msgstr "ZIjn deze gegevens niet gelijk?" #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:204 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:204 msgid "Use my Phraseanet account" msgstr "Gebruik mij Phraseanet gebruiker" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:59 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:59 msgid "Le bridge Youtube ne prend en charge que les videos" msgstr "De Youtube bridge aanvaardt enkel video's" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:63 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:63 msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" msgstr "U mag enkel een per een uploaden naar Youtube" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:100 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:100 msgid "100 caracteres maximum" msgstr "Maximum 100 tekens" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:133 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:133 msgid "2000 caracteres maximum" msgstr "Maximum 2000 tekens" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 -msgid "Categorie" -msgstr "Categorie" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:203 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:203 msgid "500 caracteres maximum" msgstr "Maximum 500 tekens" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:207 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:207 msgid "separe par un espace" msgstr "scheiden met een spatie" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 -msgid "Confidentialite" -msgstr "Vertrouwelijk" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:241 #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:211 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:241 msgid "prive" msgstr "prive" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 -msgid "public" -msgstr "publiek" - #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:279 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:279 msgid "" "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " "le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " @@ -6257,127 +9029,160 @@ msgstr "" "het gebruik van de YouTubesuite a %lien_term_youtube%" #: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:299 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:299 msgid "Retour" msgstr "Terug" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:24 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:24 msgid "Nom du nouveau panier" msgstr "Naam van het nieuwe mandje" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:30 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:30 msgid "paniers::description du nouveau panier" msgstr "Beschrijving van het nieuwe mandje" #: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:38 #: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:59 +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:38 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:59 msgid "Ajouter ma selection courrante" msgstr "Voeg mijn huidige selectie toe" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:34 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:34 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:277 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:277 msgid "phraseanet:: preview" msgstr "Voorvertoning" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:41 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:41 msgid "print:: image de choix seulement" msgstr "Enkel het gekozen beeld" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:48 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:48 msgid "print:: image de choix et description" msgstr "Het gekozen beeld en de beschrijving" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:55 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:55 msgid "print:: image de choix et description avec planche contact" msgstr "Het gekozen beeld en de beschrijving met de contact fiche" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:66 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:66 msgid "print:: imagette" msgstr "Thumbnail" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:73 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:73 msgid "print:: liste d'imagettes" msgstr "Thumbnail lijst" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:80 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:80 msgid "print:: planche contact (mosaique)" msgstr "Contact fiche (mosaic)" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:99 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:99 msgid "boutton::imprimer" msgstr "Print" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:109 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:109 msgid "None of the selected records can be printed" msgstr "Geen enkele van de geselecteerde records kunnen geprint worden" #: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:115 +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:115 msgid "export:: erreur : aucun document selectionne" msgstr "Erreur : geen enkel document geslecteerd" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:118 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:118 msgid "Quotas" msgstr "Quota" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:139 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:139 msgid "Restrictions de telechargement" msgstr "Download beperkingen" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:153 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:147 #: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:147 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:153 msgid "Restriction" msgstr "Beperking" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:161 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:161 msgid "Droits" msgstr "Rechten" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:169 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:169 msgid "par mois" msgstr "per maand" #: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:173 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:173 msgid "Reste" msgstr "Rest" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:35 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:35 msgid "Granted third party applications" msgstr "Toegestane externe programma's" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:47 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:47 msgid "Vous avez autorise ces applications a acceder a votre compte" msgstr "" "U hebt zijn programma's de toestemming gegeven om toegang te hebben tot uw " "account" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:77 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:77 msgid "Revoquer l'access" msgstr "De toegang niet toestaan" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:89 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:89 msgid "Authoriser l'access" msgstr "De toegang toestaan" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:111 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:111 msgid "par %user_name%" msgstr "per %user_name%" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:125 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:125 msgid "Not Allowed" msgstr "Niet toegestaan" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:133 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:133 msgid "Allowed" msgstr "Toegestaan" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:155 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:155 msgid "Aucune application n'a accés à vos données." msgstr "Geen enkel programma heeft toegang tot uw gegevens" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:167 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:167 msgid "Third-party applications" msgstr "Externe programma's" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:172 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:172 msgid "" "A third-party application is a product developed apart from Phraseanet and " "that would access Phraseanet data." @@ -6386,10 +9191,12 @@ msgstr "" "ontwikkeld en dat toegang kan krijgen tot de data van Phraseanet" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:180 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:180 msgid "Developpeurs" msgstr "Ontwikkelaars" #: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:185 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:185 msgid "" "Les developpeurs peuvent editer l'enregistrement de leurs application grace " "a l'onglet 'developpeurs' ci-dessus" @@ -6398,124 +9205,185 @@ msgstr "" "'ontwikkelaars' hierboven bewerken" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:20 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:20 msgid "SphinxSearch search-engine configuration" msgstr "SphinxSearch zoekmotor configuratie" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:29 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:29 msgid "Sphinx Search connection configuration" msgstr "Sphinx Search connectie configuratie" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:34 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:34 msgid "Sphinx Search server" msgstr "Sphinx Search server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:46 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:46 msgid "Sphinx Search RealTime server" msgstr "Sphinx Search RealTime server" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:59 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:59 msgid "Charset to use for indexation" msgstr "Te gebruiken karakterset voor de indexatie" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:85 msgid "Date fields available for search" msgstr "Datum velden zijn beschikbaar bij het zoeken" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:35 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:364 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 +msgid "paniers:: %nb_basket_elements% documents dans le panier" +msgstr "paniers:: %nb_basket_elements% documenten in het mandje" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:62 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 +msgid "paniers::categories: mes paniers" +msgstr "Mijn mandjes" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:91 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 +msgid "paniers::categories: paniers recus" +msgstr "Ontvangen mandjes" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:168 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 +msgid "action : ouvrir dans le comparateur" +msgstr "Open in de comparator" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:188 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 +msgid "paniers:: panier emis par %pusher_name%" +msgstr "paniers:: mandje toegevoegd door %pusher_name%" + +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:380 +#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 +msgid "paniers:: vous avez de nouveaux paniers non consultes" +msgstr "U hebt niet bekeken nieuwe mandjes" + #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:29 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:29 msgid "Search baskets" msgstr "Zoek mandjes" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:34 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:34 msgid "See" msgstr "Zie" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:54 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:54 msgid "My baskets" msgstr "Mijn mandjes" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:66 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:66 msgid "Received baskets" msgstr "Ontvangen mandjes" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:78 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:78 msgid "Validations sent" msgstr "Goedkeuringen verzonden" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:90 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:90 msgid "Validations received" msgstr "Ontvangen goedkeuringen" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:97 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:97 msgid "When" msgstr "Wanneer" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:105 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:105 msgid "Any time" msgstr "Elk tijdstip" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:121 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:121 msgid "This year" msgstr "Dit jaar" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:137 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:137 msgid "Past year" msgstr "Verleden jaar" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:321 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:321 msgid "Something wrong happened, please retry or contact an admin." msgstr "" "Er is iets verkeerd gelopen, gelieve opnieuw te proberen of contact op te " "nemen met een beheerder" #: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:336 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:336 msgid "You are about to delete this basket. Would you like to continue ?" msgstr "U staat op het punt dit mandje te verwijderen. Wilt u doorgaan?" -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 -msgid "Edition de 1 element" -msgstr "Editie van het 1 element" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:142 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:142 +msgid "validation:: editer ma note" +msgstr "bewerk mijn mededeling" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:35 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:35 msgid "Suppression de %n_element% photos" msgstr "%n_element% foto's verwijderen" #: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:51 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:51 msgid "Etes vous sur de supprimer %number% photos ?" msgstr "Bent u zeker om %number% te verwijderen ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:40 msgid "phraseanet:: collection" msgstr "Collectie" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "Aantal externe collecties" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:97 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:97 msgid "admin::base:collection: etat de la collection" msgstr "Staat van de collectie" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: activer la collection" msgstr "Activeer de collectie" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 msgid "admin::base:collection: descativer la collection" msgstr "Deativeer de collectie" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:118 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:118 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Management-controles" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:166 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:166 msgid "setup:: ajouter un administrateur des commandes" msgstr "Voeg een administrator voor de commando's toe" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:180 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:180 msgid "" "admin::collection:: presentation des elements lors de la diffusion aux " "utilisateurs externes (publications)" @@ -6524,103 +9392,121 @@ msgstr "" "(publicaties)" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:193 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:193 msgid "admin::colelction::presentation des elements : rien" msgstr "Niets" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:203 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:203 msgid "admin::colelction::presentation des elements : watermark" msgstr "Watermerk" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:213 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:213 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stempel" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:291 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:291 msgid "admin::base:collection: renommer la collection" msgstr "Hernoem de collectie" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "" "admin::base:collection: etes vous sur darreter la publication de cette " "collection" msgstr "Bent u zeker om de publicatie van deze collectie te stoppen" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Bent u zeker om deze collectie te publiceren ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:323 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:323 msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Bent u zeker om de collectie leeg te maken ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:328 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:328 msgid "admin::base:collection: vider la collection" msgstr "Maak de collectie leeg" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:339 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:339 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Bevestigt u de verwijdering van deze collectie ?" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:358 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:358 msgid "admin::base:collection: minilogo actuel" msgstr "Actueel minilogo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:414 msgid "Watermark" msgstr "Watermerk" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:470 msgid "Stamp logo" msgstr "Stempel logo" #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:526 msgid "admin::base:collection: image de presentation : " msgstr "Presentatie beeld : " -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "Ongeldig bestandstype" - #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:118 msgid "regeneration of sub-definitions" msgstr "thumbnails opnieuw genereren" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:138 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:138 msgid "video tool" msgstr "video tool" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:161 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:161 msgid "image tool" msgstr "image tool" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:175 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:175 msgid "substitution" msgstr "vervanging" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:189 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:189 msgid "meta-datas" msgstr "meta-datas" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:208 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:208 msgid "Reconstruire les sous definitions" msgstr "Thumbnails opnieuw aanmaken" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:217 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "Opgelet, sommige documenten bevatten thumbnails" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:224 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "Forceer de recontstructie op de record die verloren thumbnails hebben" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:240 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:240 msgid "recreer aucune sous-definitions" -msgstr "hermaak een onder definitie" +msgstr "Geen enkele thumbnail opnieuw genereren" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:246 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:246 msgid "recreer toutes les sous-definitions" msgstr "Thumbnails opnieuw genereren" @@ -6630,6 +9516,12 @@ msgstr "Thumbnails opnieuw genereren" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:531 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:610 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:659 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:260 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:429 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:459 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:531 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:610 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:659 msgid "validate" msgstr "OK" @@ -6637,115 +9529,369 @@ msgstr "OK" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:535 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:614 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:663 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:264 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:535 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:614 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:663 msgid "cancel" msgstr "annuleren" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:287 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:287 msgid "screenshot video" msgstr "schermafbeelding video" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:353 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:353 msgid "No preview available" msgstr "Geen voorvertoning beschikbaar" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:364 #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:475 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:364 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:475 msgid "take a screenshot" msgstr "Maak een schermafbeelding" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:380 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:380 msgid "To take a screenshot click on camera" msgstr "Om een schermafbeelding te nemen klik op de camera" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:410 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:410 msgid "brightness settings" msgstr "helderheidsinstellingen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:440 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:440 msgid "contrast settings" msgstr "contrastinstellingen" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:504 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:504 msgid "image rotation" msgstr "beeld rotatie" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:510 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:510 msgid "rotation 90 degres horaire" msgstr "90 graden kloksgewijs draaien" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:518 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:518 msgid "rotation 90 degres anti-horaires" msgstr "90 graden niet kloksgewijs draaien" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:561 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:561 msgid "Substitution is not possible for this kind of record" msgstr "Vervanging is niet mogelijk voor dit soort van record" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:583 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:583 msgid "substitution HD" msgstr "vervanging HD" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:592 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "de naam van het bestand up to date zetten na vervanging" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:641 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:641 msgid "substitution SD" msgstr "vervanging SD" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:988 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:988 msgid "alert" msgstr "alert" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:999 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:999 msgid "no image selected" msgstr "geen beeld geselecteerd" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1055 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1055 msgid "processing" msgstr "verwerken" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1070 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "een fout geeft zich voorgedaan" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1084 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1084 msgid "thumbnail validation" msgstr "thumbnail goedkeuring" +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:51 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:51 +msgid "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." +msgstr "" +"Als deze mail niet aanklikbare links bevat, gelieve die dan te kopiëren/" +"plakken in uw browser." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:198 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:198 +msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." +msgstr "De inhoud van deze mail is confidentieel, geef hem niet vrij." + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:210 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:210 +msgid "Message automatique de Phraseanet" +msgstr "Automatishe melding van Phraseanet" + +#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:228 +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:228 +msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" +msgstr "Om het automatisch verzenden van mails, meld u dan aan à %link%" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:39 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 +msgid "Ajouter une publication" +msgstr "Voeg een publicatie toe" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:49 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 +msgid "Feed name" +msgstr "Feed naam" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:143 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 +msgid "Date Creation" +msgstr "Aanmaakdatum" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:151 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 +msgid "Public" +msgstr "Publiek" + +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:278 +#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 +msgid "" +"Une fois la publication supprimee, les donnees publiees seront " +"definitivement perdues. Continuer ?" +msgstr "" +"Eens de publicatie verwijderd, worden alle gegevens definitief verwijderd. " +"Doorgaan?" + #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:143 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:143 msgid "Certaines donnees du panier ont change" msgstr "Sommige gegevens in het mandje zijn veranderd" +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:80 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:80 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 +msgid "" +"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " +"contactez le support technique" +msgstr "" +"Een fout heeft zicht voorgedaan, als dit probleem aanhoudt, contacteer dan " +"de technishe support" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:84 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:84 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 +msgid "" +"phraseanet::erreur: La connection au serveur Phraseanet semble etre " +"indisponible" +msgstr "De connectie met de Phraseanet server blijkt niet mogelijk te zijn" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:88 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:88 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 +msgid "" +"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" +msgstr "Uw sessile werd afgesloten, gelieve opnieuw in te loggen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:92 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:92 +msgid "Cocher toute la colonne" +msgstr "Verberg de hele kolom" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:96 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:96 +msgid "Decocher toute la colonne" +msgstr "Toon de hele kolom" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:100 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:100 +msgid "Creer un model" +msgstr "Maak een model" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:104 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:104 +msgid "Creer un utilisateur" +msgstr "Maak een gebruiker" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:112 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +msgid "This file is too big" +msgstr "Deze file is te groot" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:116 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:116 +msgid "This field is required" +msgstr "Dit veld is verplicht" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:124 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:124 +msgid "Reset and apply" +msgstr "Reset en pas toe" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:128 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "" +"Bevestig reset van de gebruikersrechten alvorens de template toe te passen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:132 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "" +"Rechten worden gewist voor het toe passen van de template, bent u zeker?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:136 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:136 +msgid "Reset and apply template" +msgstr "Reset en pas de template toe" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:140 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:140 +msgid "Apply template" +msgstr "Pas de template toe" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:144 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:144 +msgid "Reset rights before applying template?" +msgstr "De rechten resetten alvorens de template toe te passen?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:148 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:148 +msgid "Would you like to reset rights before applying the template?" +msgstr "Wilt u de rechten resetten alvorens de template toe te passen?" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:328 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:328 +msgid "Successful install" +msgstr "Installatie geslaagd" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:346 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:346 +msgid "Ajouter un nouvel utilisateur" +msgstr "Voeg een nieuwe gebruiker toe" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:351 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:351 +msgid "Adresse email du nouvel utilisateur" +msgstr "Email adres van de nieuwe gebruiker" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:358 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:358 +msgid "Send an email to the user to setup his password" +msgstr "Stuur een email naar de gebruiker om zijn wachtwoord in te stellen" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:365 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:365 +msgid "Require email validation to activate the account" +msgstr "Email validatie verwacht om de gebruiker te activeren" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:373 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:373 +msgid "Creer un modele" +msgstr "Maak een model" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:378 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:378 +msgid "Nom du nouveau modele" +msgstr "Naam van het nieuwe model" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:38 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 +msgid "Records Statut" +msgstr "Status van de records" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:45 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 +msgid "Records type" +msgstr "Type van de records" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:57 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 +msgid "You have selected one record." +msgstr "U hebt één record geselecteerd." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:63 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 +msgid "You have selected %nbReceivedDocuments% records." +msgstr "U hebt %nbReceivedDocuments% records geselecteerd." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:74 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 +msgid "None of the records can be modified." +msgstr "Geen enkele van de records kunnen worden aangepast." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:86 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 +msgid "Only one record can be modified." +msgstr "Enkel één record kan worden aangepast." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:92 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 +msgid "Only %nbEditableDocuments% records can be modified." +msgstr "Enkel %nbEditableDocuments% records kunnen worden aangepast." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:151 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 +msgid "Stories status edition" +msgstr "Stories status editie" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:157 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 +msgid "Records status edition" +msgstr "Records status editie" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:310 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:310 +msgid "Apply status on stories children." +msgstr "Pas status en inhoud op kinderen" + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:316 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:316 +msgid "Apply status on story children." +msgstr "Pas status aan op de onderliggende." + +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:340 +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:340 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:147 +msgid "Apply changes" +msgstr "Wijzigingen toepassen" + #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:26 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:26 msgid "panier:: nom" msgstr "Naam" #: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:34 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:34 msgid "panier:: description" msgstr "Beschrijving" -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 -msgid "Reordonner automatiquement" -msgstr "Automatische bestelling" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 -msgid "Re-ordonner" -msgstr "Hersorteren" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 -msgid "Inverser" -msgstr "Omkeren" - #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:33 msgid "" "prod::Les enregistrements ne provienent pas tous de la meme base et ne " "peuvent donc etre traites ensemble" @@ -6754,32 +9900,39 @@ msgstr "" "niet samen behandeld worden" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:42 msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "" "U hebt niet het recht om deze handeling uit te voeren op geen enkel document" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:51 msgid "erreur : Vous n'avez pas les droits" msgstr "U hebt niet de rechten" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:74 msgid "One document can not be modified." msgstr "Eén document kan niet worden aangepast." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:80 #, php-format msgid "%countable% documents can not be modified." msgstr "%countable% documenten kunnen niet worden aangepast." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:99 msgid "Move one record to the chosen collection in the list." msgstr "Verplaats één record naar de gekozen collectie in de lijst." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:105 msgid "Move %countable% records to the chosen collection in the list." msgstr "Verplaats %countable% records naar de gekozen collectie in de lijst." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:142 msgid "" "prod::collection deplacer egalement les documents rattaches a ce(s) " "regroupement(s)" @@ -6788,39 +9941,48 @@ msgstr "" "hergroepering" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:59 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:59 msgid "Le bridge Dailymotion ne prend en charge que les videos" msgstr "De Dailymotion bridge aanvaardt enkel video's" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:63 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:63 msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" msgstr "U kunt enkel element per element uploaden naar Dailymotion uploaden" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:100 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:100 msgid "255 caracteres maximum" msgstr "Maximum 255 tekens" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:132 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:132 msgid "1000 caracteres maximum" msgstr "Maximum 1000 tekens" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:165 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:165 msgid "250 caracteres maximum" msgstr "Maximum 250 tekens" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:169 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:169 msgid "10 tags maximum" msgstr "Maximum 10 tags" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:173 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:173 msgid "Séparez les tags par un espace: Paris vacances restaurant" msgstr "Scheid de tags met een spate: Paris vakantie restaurant" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:177 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:177 msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" msgstr "" "Groupeer 2 of meerdere woorden met aanhalingstekens: \"Michael Jackson\"" #: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:245 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:245 msgid "" "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " "contenu de la vidéo que vous allez mettre en ligne est conforme aux " @@ -6830,79 +9992,102 @@ msgstr "" "deze video die u online zult plaatsen conform is met de gebruikersvoorwaarden" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:28 msgid "Aucune notification" msgstr "Geen enkele melding" #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:37 msgid "toutes les notifications" msgstr "Alle meldingen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:203 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:243 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:203 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:243 msgid "thesaurus::menu: proprietes" msgstr "eigenschappen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:207 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:207 msgid "thesaurus::menu: refuser" msgstr "weigeren" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:211 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:211 msgid "thesaurus::menu: accepter" msgstr "aanvaarden" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:216 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:255 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:111 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:111 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:216 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:255 msgid "thesaurus::menu: supprimer" msgstr "verwijderen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:220 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:220 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "verwijder de kandidaten op 0 hits" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:225 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:260 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:225 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:260 msgid "thesaurus::menu: chercher" msgstr "zoeken" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:229 #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:264 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:229 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:264 msgid "thesaurus::menu: exporter" msgstr "exporteren" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:236 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:236 msgid "thesaurus::menu: importer" msgstr "importeren" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:247 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:247 msgid "thesaurus::menu: Nouveau terme" msgstr "Nieuwe term" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:251 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:251 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Niew synoniem" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:268 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:268 msgid "thesaurus::menu: export topics" msgstr "exporteer topics" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:273 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:273 msgid "thesaurus::menu: lier au champ" msgstr "linken aan veld" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:321 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:321 msgid "thesaurus:: onglet stock" msgstr "stock tabblad" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:327 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:327 msgid "thesaurus:: afficher les termes refuses" msgstr "toon de geweigerde termen" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:341 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:341 msgid "thesaurus:: onglet thesaurus" msgstr "thesaurus tabblad" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:546 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:546 msgid "" "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " "en candidats a la prochaine indexation)" @@ -6911,6 +10096,7 @@ msgstr "" "de volgende indexering)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:551 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:551 msgid "" "thesaurus:: Des reponses sont retournees par cette branche. Supprimer " "quand meme ? (les termes concernes remonteront en candidats a la " @@ -6920,57 +10106,173 @@ msgstr "" "betrokken termen worden opnieuw kandidaten bij de volgende indexering)" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:605 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:605 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Alle termen hebben hits" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:614 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:614 msgid "" "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " "supprimer ?" msgstr "De termen in deze tak versturen geen hits. Ze verwijderen ?" #: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:1217 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:1217 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "De term in de prullemand plaatsen ?" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:58 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:66 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 +msgid "admin::tasks: nom de la tache" +msgstr "naam van de taak" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:73 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 +msgid "admin::tasks: lancer au demarrage du scheduler" +msgstr "start van de scheduler" + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:85 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 +msgid "admin::tasks: Nombre de crashes : " +msgstr "Aantal crashes : " + +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:93 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 +msgid "admin::tasks: reinitialiser el compteur de crashes" +msgstr "herinitialiseer de crash teller" + #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:33 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:33 msgid "Creer un Photoset" msgstr "Maak een Photoset" #: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:82 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:82 msgid "Photo principale" msgstr "Hoofd foto" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 -msgid "paniers:: %nb_basket_elements% documents dans le panier" -msgstr "paniers:: %nb_basket_elements% documenten in het mandje" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:146 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 +msgid "client:: recherche" +msgstr "Zoeken" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 -msgid "paniers::categories: mes paniers" -msgstr "Mijn mandjes" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:165 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 +msgid "client:: recherche avancee" +msgstr "Geavanceerd zoeken" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 -msgid "paniers::categories: paniers recus" -msgstr "Ontvangen mandjes" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:184 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 +msgid "client:: topics" +msgstr "Topics" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 -msgid "action : ouvrir dans le comparateur" -msgstr "Open in de comparator" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:219 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:221 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:242 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:244 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:533 +msgid "phraseanet::technique:: et" +msgstr "en" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 -msgid "paniers:: panier emis par %pusher_name%" -msgstr "paniers:: mandje toegevoegd door %pusher_name%" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:225 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:227 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:248 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:250 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 +msgid "phraseanet::technique:: or" +msgstr "of" -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "U hebt niet bekeken nieuwe mandjes" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:231 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:233 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:254 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:256 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 +msgid "phraseanet::technique:: except" +msgstr "behalve" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:269 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 +msgid "client::recherche: rechercher dans les bases :" +msgstr "Zoeken in de databases :" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:279 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 +msgid "client::recherche: rechercher dans toutes les bases" +msgstr "Zoeken in alle databases" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:343 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 +msgid "phraseanet:: presentation des resultats" +msgstr "Voorstelling van de resultaten" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:434 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 +msgid "phraseanet:: collections" +msgstr "Collecties" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:436 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " +"base" +msgstr "Klik hier om alle filters op alle databases te deactiveren" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:463 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 +msgid "phraseanet:: historique" +msgstr "Historie" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:521 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 +msgid "" +"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" +msgstr "Klik hier om alle filters op deze database te deactiveren" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:793 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 +msgid "client::recherche: filter sur" +msgstr "Filter op" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:806 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 +msgid "client::recherche: filtrer par dates" +msgstr "Filter per datum" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:819 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 +msgid "client::recherche: filtrer par status" +msgstr "Filter per status" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:832 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 +msgid "client::recherche: filtrer par champs" +msgstr "Filter per veld" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:841 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 +msgid "client::recherche: filtrer par champs : tous les champs" +msgstr "Filter per veld : alle velden" #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:63 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:63 msgid "Hi, Please log in" msgstr "Hallo, gelieve u aan te melden" #: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:53 +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:48 #: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:48 msgid "Erreur !" msgstr "Fout !" @@ -6983,60 +10285,124 @@ msgstr "Het gevraagde mandje bestaat niet" msgid "Retour a l'accueil" msgstr "Terug naar start" +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:247 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:298 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 +#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 +msgid "erreur avec la valeur %name%" +msgstr "fout bij de waarde %name%" + #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:22 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:22 msgid "Terms Of Use" msgstr "Gebruiksvoorwaarden" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:35 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:35 msgid "" "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" msgstr "De gebruikers moeten eerst deze voorwaarden goedkeuren" #: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:40 +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:40 msgid "Mettre a jour" msgstr "Update" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:30 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 +msgid "" +"Cochez les cases correspondantes aux colonnes que vous desirez voire " +"apparaitre dans le report" +msgstr "" +"Schakel de selectievakjes die overeenkomen met de kolommen die u wilt of " +"zelfs opgenomen zijn het rapport uit" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:36 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 +msgid "cocher tout" +msgstr "alles uitschakelen" + +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:43 +#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 +msgid "tout decocher" +msgstr "alles inschakelen" + +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:62 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 +msgid "language" +msgstr "taal" + +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:33 +#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 +msgid "report:: Enlever le filtre" +msgstr "De filter verwijderen" + +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:62 +#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 +msgid "Retour a laccueil" +msgstr "Terug naar home" + #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:50 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:191 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:50 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:191 msgid "Les documents ne peuvent pas etre exportes" msgstr "De documenten kunnen niet worden geëxporteerd" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:68 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:104 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:68 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:104 msgid "export:: telechargement" msgstr "Download" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:72 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:280 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:72 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:280 msgid "export:: envoi par mail" msgstr "Verstuur per mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:81 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:81 msgid "export:: commande" msgstr "Opdracht" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:843 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:90 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:843 msgid "export:: FTP" msgstr "FTP" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:559 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:952 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:172 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:385 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:559 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:952 msgid "Documents indisponibles" msgstr "Documenten niet beschikbaar" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1012 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:230 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:445 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1012 msgid "Include Business-fields in caption" msgstr "Business-fields opnemen in caption" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:812 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1035 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:256 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:471 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:812 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1035 msgid "" "By checking this box, you accept %beginning_link% Terms of Use %end_link%" msgstr "" @@ -7044,112 +10410,145 @@ msgstr "" "Gebruiksvoorwaarden %end_link%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:297 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:297 msgid "export::mail: destinataire" msgstr "Bestemmeling" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:311 msgid "Recevoir un accuse de reception a %my_email%" msgstr "Ontvangen van een bevestigingsmail van ontvangst van %my_email%" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:320 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:320 msgid "" "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" msgstr "" "Ontvangstbevestiging niet beschikbaar is, u hebt geen emailadres opgegeven" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:328 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:328 msgid "Entrez plusieurs adresses email en les separant par des points-virgules" msgstr "Geef meerdere email adressen op door ze te scheiden met een punt coma" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:334 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:334 msgid "export::mail: contenu du mail" msgstr "Inhoud van de mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:908 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:341 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:908 msgid "export::mail: fichiers joint" msgstr "Toegevoegde bestanden" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:570 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:971 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:404 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:570 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:971 msgid "La sous resolution n'est pas disponible pour les documents suivants" msgstr "De onder resolutie is niet beschikbaar voor de volgende documenten" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1050 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:481 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1050 msgid "boutton::envoyer" msgstr "Verzenden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:517 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:517 msgid "Un document commande" msgstr "Een document bestelling" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:523 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:523 #, php-format msgid "%docs_orderable% documents commandes" msgstr "%docs_orderable% documenten besteld" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:538 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:538 msgid "Un document ne peut etre commande" msgstr "Eén document kan niet worden besteld" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:544 #, php-format msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" msgstr "%docs_not_orderable% documenten kunnen niet worden besteld" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:615 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:615 msgid "commande::utilisation prevue" msgstr "Utilisation gepland" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:625 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:625 msgid "commande::deadline" msgstr "Deadline" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:635 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:635 msgid "Civility" msgstr "Beleefdheid" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:823 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:823 msgid "boutton::commander" msgstr "Bestellen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:861 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:861 msgid "phraseanet:: prereglages" msgstr "Voorinstellingen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1045 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1045 msgid "boutton::essayer" msgstr "Proberen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1098 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1098 msgid "You must agree to the Terms of Use to continue." msgstr "U moet de gebruiksvoorwaarden aanvaarden." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1110 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1166 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1196 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1364 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1421 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1448 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1110 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1166 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1196 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1364 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1421 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1448 msgid "Warning !" msgstr "Waarschuwing !" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1154 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1154 msgid "Certains champs sont obligatoires, veuillez les remplir" msgstr "Sommige velden zijn verplicht, wilt u ze invullen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1184 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1184 msgid "Vous devez selectionner un type de sous definitions" msgstr "U moet een type thumbnail selecteren" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1216 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1216 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 msgid "Terms of Use" msgstr "Gebruiksvoorwaarden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1285 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1285 msgid "" "You can not directly download more than %max_download% Mo ; time to package " "all documents is too long" @@ -7157,85 +10556,109 @@ msgstr "" "U kan niet meer dan %max_download% Mb downloaded ; tijd om alle documenten " "compresseren is te lang" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1294 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1294 msgid "You can alternatively receive an email when the download is ready." msgstr "" "Als alternatief kunt u een email ontvangen wanneer de download klaar is." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1303 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1303 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Wilt u een email ontvangen wanneer de download klaar is ?" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1544 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1544 msgid "phraseanet:: utiliser SSL" msgstr "Gebruik SSL" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1590 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:483 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1590 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Gebruik de passive mode" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1608 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:497 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1608 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Aantal max probeersels" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1624 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:455 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1624 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Bestemmings ftp-map" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1640 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1640 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Maak een map" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1668 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1668 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Een logbestand maken" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1710 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1710 msgid "Nom des fichiers a l'export" msgstr "Naam van het bestand bij de export" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1727 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1727 msgid "export::titre: titre du documument" msgstr "Titel van het document" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1744 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1744 msgid "export::titre: nom original du document" msgstr "Originele naam van het document" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:28 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:28 msgid "thesaurus:: Nouveau terme specifique" msgstr "Nieuwe specifieke term" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:30 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:29 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:30 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:29 msgid "thesaurus:: Nouveau synonyme" msgstr "Nieuw synoniem" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:68 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:68 msgid "thesaurus:: le terme %term% avec contexte %context%" msgstr "thesaurus:: de term %term% met inhoud %context%" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:80 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:80 msgid "thesaurus:: le terme %term% sans contexte" msgstr "thesaurus:: de term %term% zonder inhoud" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:97 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:97 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "is reeds kandidaat komende van het aanvaardbare veld : " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:103 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:103 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "is reeds kandidaat komende van het aanvaardbare velden : " #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:155 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:155 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "selecteer de te aanvaardbare bron" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:184 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:190 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:184 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:190 msgid "" "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " "a cet emplacement du thesaurus" @@ -7244,762 +10667,118 @@ msgstr "" "plaats in de thesaurus aanvaard worden" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:201 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:201 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "is niet in de kandidaten aanwezeig" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:209 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:209 msgid "thesaurus:: attention :" msgstr "opgepast :" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:229 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:229 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Voeg de tem toe in de herindexatie" #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:234 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:234 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "voeg de term toe en herindexeer" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:27 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 +msgid "No preview available." +msgstr "Geen preview beschikbaar" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:33 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 +msgid "No permalink available." +msgstr "Geen permalink beschikbaar" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:62 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 +msgid "Send to Twitter" +msgstr "Verstuur naar Twitter" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:74 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 +msgid "Send to Facebook" +msgstr "Verstuur naar Facebook" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:83 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 +msgid "Resource URL" +msgstr "Bron URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:91 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 +msgid "Detailed view URL" +msgstr "Gedetailleerde weergave URL" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:102 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 +msgid "Embed code" +msgstr "Sluit de code in" + +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:138 +#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 +msgid "No URL available" +msgstr "Geen URL beschikbaar" + #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:47 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:47 msgid "admin::monitor: Ancienne version (client)" msgstr "Oude versie (client)" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:66 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:66 msgid "admin::monitor: Nouvelle version (prod)" msgstr "Nieuwe versie (prod)" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:79 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:79 msgid "admin::monitor: production" msgstr "Productie" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:270 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:270 msgid "Commandes" msgstr "Commandos" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:297 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:297 msgid "Notifications" msgstr "Mededelingen" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:334 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:334 msgid "Guest" msgstr "Gast" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:78 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:343 msgid "login:: Mon compte" msgstr "Mijn account" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:364 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:364 msgid "phraseanet:: aide" msgstr "Help" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:382 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:382 msgid "phraseanet:: raccourcis clavier" msgstr "Sneltoetsen" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:398 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:398 msgid "phraseanet:: a propos" msgstr "Over" -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 -msgid "report:: activite par jour" -msgstr "Activiteit per dag" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 -msgid "Apply to all selected documents" -msgstr "Pas toe op alle geselecteerde documenten" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 -msgid "Apply changes" -msgstr "Wijzigingen toepassen" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 -msgid "Refresh" -msgstr "Vernieuwen" - -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 -msgid "(%length%)" -msgstr "(%length%)" - -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 -msgid "privé" -msgstr "privaat" - -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 -msgid "Vous devez remplir les champs requis" -msgstr "U moet de verplichte velden invullen" - -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 -msgid "validation::envoyer mon rapport" -msgstr "stuur mijn rapport" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 -msgid "First/Last Name" -msgstr "Voor/Achter naam" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 -msgid "E-Mail" -msgstr "E-mail" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 -msgid "Last Template" -msgstr "Laatste template" - -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 -msgid "Creation date" -msgstr "Aanmaakdatum" - -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 -msgid "More" -msgstr "Meer" - -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 -msgid "Remove from basket" -msgstr "Verwijder uit het mandje" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 -msgid "Client applications" -msgstr "Klant programma's" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 -msgid "Mes applications" -msgstr "Mijn programma's" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 -msgid "button::supprimer" -msgstr "Verwijderen" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 -msgid "Are you sure you want to delete this application?" -msgstr "Bent u zeker om dit programma te verwijderen?" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 -msgid "No" -msgstr "Nee" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 -msgid "Yes" -msgstr "Ja" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 -msgid "Aucune application creee." -msgstr "Geen enkel programma werd gemaakt" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 -msgid "Decouvrez la documentation" -msgstr "Raadpleeg de handleiding" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 -msgid "Demarrer avec l'API Phraseanet" -msgstr "Starten met de API Phraseanet" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "Maak een programma voor het gebruik van de Phraseanet API te starten" - -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 -msgid "Creer une nouvelle applications" -msgstr "Maak een nieuw programma" - -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 -msgid "Story name" -msgstr "Story naam" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 -msgid "Toutes les publications" -msgstr "Alle publicaties" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 -msgid "publications:: s'abonner aux publications" -msgstr "Zich abonneren op de publicaties" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 -msgid "Aller a" -msgstr "Ga naar" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 -msgid "Aucune entree pour le moment" -msgstr "Geen vermelding voor het moment" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 -msgid "charger d'avantage de publications" -msgstr "Laden voordeel publicaties" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 -msgid "thesaurus:: Editer le thesaurus" -msgstr "Bewerk de thesaurus" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 -msgid "phraseanet:: choisir" -msgstr "Kiezen" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 -msgid "thesaurus:: langue pivot" -msgstr "Spiltaal" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "U hebt tot geen enkele database toegang" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 -msgid "Renew password" -msgstr "Vernieuw password" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 -msgid "Choose a new password" -msgstr "Kies een nieuw paswoord" - -#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 -msgid "No matches found" -msgstr "Geen overeenkomende resultaten gevonden" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 -msgid "Edition" -msgstr "Editie" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 -msgid "Sous-titre" -msgstr "Onder titel" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 -msgid "Short description" -msgstr "Korte beschrijving" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 -msgid "Etendue de la publication" -msgstr "Omvang van de publicatie" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 -msgid "Non-Restreinte (publique)" -msgstr "Niet beperkt (publiek)" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 -msgid "Publique" -msgstr "Publiek" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "Lijst van personen die gekwalificeerd te publiceren op deze lijn" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 -msgid "Id" -msgstr "Id" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 -msgid "Email" -msgstr "Email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 -msgid "Owner" -msgstr "Eigenaar" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 -msgid "Ajouter un publisher" -msgstr "Een publisher toevoegen" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 -msgid "Name or email" -msgstr "Naam of email" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 -msgid "You are not the feed owner" -msgstr "U bent niet de feed eigenaar" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 -msgid "client:: recherche" -msgstr "Zoeken" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 -msgid "client:: recherche avancee" -msgstr "Geavanceerd zoeken" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 -msgid "client:: topics" -msgstr "Topics" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 -msgid "phraseanet::technique:: et" -msgstr "en" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 -msgid "phraseanet::technique:: or" -msgstr "of" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 -msgid "phraseanet::technique:: except" -msgstr "behalve" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 -msgid "client::recherche: rechercher dans les bases :" -msgstr "Zoeken in de databases :" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "Zoeken in alle databases" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 -msgid "phraseanet:: presentation des resultats" -msgstr "Voorstelling van de resultaten" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 -msgid "phraseanet:: collections" -msgstr "Collecties" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de toutes " -"base" -msgstr "Klik hier om alle filters op alle databases te deactiveren" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 -msgid "phraseanet:: historique" -msgstr "Historie" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 -msgid "" -"client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "Klik hier om alle filters op deze database te deactiveren" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 -msgid "client::recherche: filter sur" -msgstr "Filter op" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 -msgid "client::recherche: filtrer par dates" -msgstr "Filter per datum" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 -msgid "client::recherche: filtrer par status" -msgstr "Filter per status" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 -msgid "client::recherche: filtrer par champs" -msgstr "Filter per veld" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "Filter per veld : alle velden" - -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 -msgid "validation:: editer ma note" -msgstr "bewerk mijn mededeling" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 -msgid "publications:: dernieres publications" -msgstr "Laatste publicaties" - -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 -msgid "publications:: derniere mise a jour" -msgstr "Laatste update" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 -msgid "The user has been created." -msgstr "De gebruiker werd aangemaakt." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#, php-format -msgid "%user_count% users have been created." -msgstr "%user_count% users have been created." - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 -msgid "admin::user: nouvel utilisateur" -msgstr "nieuwe gebruiker" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 -msgid "admin::user: nouveau template" -msgstr "nieuwe template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 -msgid "admin::user: import d'utilisateurs" -msgstr "Gebruikers importeren" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 -msgid "admin::user: export d'utilisateurs" -msgstr "Gebruikers exporteren" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 -msgid "Filter" -msgstr "Filter" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 -msgid "Last applied template" -msgstr "Laatst gebruikte template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 -msgid "boutton::appliquer" -msgstr "Toepassen" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "Gebruikersid" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 -msgid "admin::compte-utilisateur pays" -msgstr "Land" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "Laatst toegepast model" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 -msgid "admin::compte-utilisateur date de creation" -msgstr "Aanmaakdatum" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 -msgid "This is a template" -msgstr "Dit is een template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 -msgid "This user has no rights" -msgstr "Deze gebruiker heeft geen rechten" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 -msgid "%n_par_page% par page" -msgstr "%n_par_page% per pagina" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 -msgid "Supprimer" -msgstr "Verwijderen" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 -msgid "boutton::exporter" -msgstr "Exporteren" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 -msgid "select at least one user" -msgstr "selecteer ten minste één gebruiker" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 -msgid "Are you sure you want delete users rights ?" -msgstr "Bent u zeker om de gebruikersrechten te verwijderen?" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 -msgid "users rights have been reseted" -msgstr "gebruikersrechten werden teruggezet" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 -msgid "" -"%name% est momentanement indisponible a cause d'un trop grand nombre de " -"requetes" -msgstr "" -"%name% is tijdelijk niet beschikbaar omdat er te veel query's actief zijn" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "de service zal binnen enkele minuten opnieuw beschibaar zijn" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "Link de tak van de thesaurus aan veld" - -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 -msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" -msgstr "thesaurus:: Link de thesaurus tak aan het veld %branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "Link de tak van de thesaurus" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" -msgstr "thesaurus:: Dit veld werd gewijzigd ; oude tak : %old_branch%" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 -msgid "thesaurus:: nouvelle branche" -msgstr "Nieuwe tak" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 -msgid "" -"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " -"candidats seront supprimes" -msgstr "" -"Dit veld is niet meer aan de thesaurus gelinkt, de geïndexeerde termen en " -"kandidaten zullen verwijderd worden" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 -msgid "" -"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " -"est necessaire" -msgstr "" -"Dit veld dient aan de thesaurus gelinkt te worden. Herindexatie van de " -"database is nodig" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 -msgid "" -"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " -"base est necessaire" -msgstr "" -"De link naar thesaurus moet gewijzigd worden, herindexatie van de database " -"is nodig" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 -msgid "thesaurus:: reindexation necessaire" -msgstr "Herindexatie is nodig" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 -msgid "thesaurus:: pas de reindexation" -msgstr "Geen herindexatie" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 -msgid "thesaurus:: suppression du lien du champ %field%" -msgstr "thesaurus:: verwijdering van de link voor het veld %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 -msgid "" -"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" -msgstr "" -"thesaurus:: verwijdering van de kandidaat woorden tak voor het veld %field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "Registratie van de lijst van de gewijzigde kandidaat woorden." - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 -msgid "" -"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" -msgstr "" -"thesaurus:: verwijdering van de indexen naar de thesaurus voor het veld " -"%field%" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "Herindexeer alle veranderingen" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 -msgid "En attente" -msgstr "In afwachting" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 -msgid "En cours d'envoi" -msgstr "Wordt verzonden" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 -msgid "Oups ! something went wrong !" -msgstr "Oeps ! Er ging iest verkeerd !" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 -msgid "boutton::retry" -msgstr "probeer opnieuw" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 -msgid "admin::tasks: nom de la tache" -msgstr "naam van de taak" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "start van de scheduler" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 -msgid "admin::tasks: Nombre de crashes : " -msgstr "Aantal crashes : " - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "herinitialiseer de crash teller" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 -msgid "You are using the Flash uploader." -msgstr "U gebruikt de Flash uploader." - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 -msgid "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" -msgstr "" -"Deze versie kan geen toegang krijgen tot alle functies aangeboden door de " -"HTML5 uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 -msgid "Use the HTML5 uploader" -msgstr "Gebruik de HTML5 uploader" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "Geselecteerde files" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 -msgid "You have attempted to queue too many files" -msgstr "U hebt geprobeerd om te veel bestanden in de wachtrij te plaatsen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 -msgid "Unknow Error" -msgstr "Onbekende fout" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 -msgid "Cannot upload Zero Byte files" -msgstr "Kan geen 0 byte bestanden uploaden" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 -msgid "Unhandled Error" -msgstr "Onbehandelde fout" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 -msgid "Unknow reason" -msgstr "Onbekende reden" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 -msgid "Bad request, please contact an admin" -msgstr "Verkeerd verzoek, gelieve een administrator te contacteren" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 -msgid "Upload URL is not set, please contact an admin" -msgstr "Upload URL niet is ingesteld, gelieve een administrator te contacteren" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 -msgid "Connection terminates unexpetecdly, please retry" -msgstr "Verbinding onverwacht beëindigt, gelieve opnieuw te proberen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 -msgid "The upload violates a security restriction, please retry" -msgstr "" -"De upload schendt een beveiligingsrestrictie, gelieve opnieuw te proberen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 -msgid "File upload limit (%maxFileSizeReadable%) has been reached" -msgstr "Bestand upload limiet (%maxFileSizeReadable%) is bereikt" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 -msgid "Could not initiate upload, please retry" -msgstr "Kan de upload niet starten, gelieve opnieuw te proberen" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 -msgid "" -"Could not retrieve the file ID, please retry or contact an admin if problem " -"persist" -msgstr "" -"Kan het bestands-ID niet ophalen, gelieve opnieuw te proberen of contacteer " -"een administrator is het probleem blijft" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 -msgid "File validation failed" -msgstr "Bestand validatie mislukt" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 -msgid "File upload has been cancelled" -msgstr "Bestand upload werd geannuleerd" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 -msgid "File upload has been stopped" -msgstr "Bestand upload is gestopt" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 -msgid "Error while uploading" -msgstr "Fout tijdens uploaden" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 -msgid "Please select at least one valid file" -msgstr "Gelieve minstens één geldig veld te selecteren" - -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 -msgid "report:: Enlever le filtre" -msgstr "De filter verwijderen" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 -msgid "thesaurus:: accepter..." -msgstr "Aanvaarden..." - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 -msgid "thesaurus:: removed_src" -msgstr "verwijderde_src" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 -msgid "thesaurus:: refresh" -msgstr "vernieuw" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 -msgid "thesaurus:: removed tgt" -msgstr "verwijderde tgt" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 -msgid "thesaurus:: Accepter le terme comme" -msgstr "Aanvaard de term als" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 -msgid "thesaurus:: comme terme specifique" -msgstr "als specifieke term" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 -msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" -msgstr "thesaurus:: als sienoniem van %fullpath_tgt_raw%" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 -msgid "thesaurus:: Accepter la branche comme" -msgstr "Aanvaardt de tak als" - -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 -msgid "" -"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " -"ne peut etre accepte" -msgstr "" -"thesaurus:: Een kandidaatveld %cfield% kan niet worden aanvaard op deze " -"plaats van de thesaurus" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 -msgid "(validation) session terminee" -msgstr "sessie beïndigd" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 -msgid "(validation) envoyee" -msgstr "verstuurd" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 -msgid "(validation) a envoyer" -msgstr "te versturen" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 -#, php-format -msgid "%basket_length% documents" -msgstr "%basket_length% documenten" - +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:22 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:22 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:320 @@ -8011,826 +10790,138 @@ msgstr "%basket_length% documenten" msgid "You are not authorized to do this" msgstr "U bent niet gemachtigd om dit te doen" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:29 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:29 msgid "About Roles : " msgstr "Over Functies : " +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:34 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:34 msgid "Admin can edit shares, modify content" msgstr "Admin kan delen aanpassen, inhoud veranderen" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:40 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:40 msgid "Editor can modify content" msgstr "Editor kunt inhoud wijzigen" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:46 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:46 msgid "Access user have readonly access" msgstr "Toegang gebruiker heeft enkel lezen toegang" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:54 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:54 msgid "Find a user" msgstr "Zoek een gebruiker" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:91 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:91 msgid "You are Admin" msgstr "U bent Admin" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:100 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:100 msgid "Role" msgstr "Functie" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:126 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:126 msgid "Editor" msgstr "Editor" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:139 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:139 msgid "Admin" msgstr "Admin" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:155 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:155 msgid "Remove" msgstr "Verwijder" +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:164 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:164 msgid "Notify" msgstr "Verwittig" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 -msgid "Records Statut" -msgstr "Status van de records" +#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:35 +msgid "Apply to all selected documents" +msgstr "Pas toe op alle geselecteerde documenten" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 -msgid "Records type" -msgstr "Type van de records" +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:41 +msgid "Refresh" +msgstr "Vernieuwen" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 -msgid "You have selected one record." -msgstr "U hebt één record geselecteerd." +#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:77 +msgid "(%length%)" +msgstr "(%length%)" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 -msgid "You have selected %nbReceivedDocuments% records." -msgstr "U hebt %nbReceivedDocuments% records geselecteerd." +#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 +#: tmp/cache_twig/9a/af/a1037f8c999f73036a656301976bf104ace3fbd735257245a01214edc010.php:122 +#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 +#: tmp/cache_twig/b0/d1/517f30cd82f5d4ead4063de4342d258e96da49577fc507c20e2018163776.php:122 +msgid "More" +msgstr "Meer" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 -msgid "None of the records can be modified." -msgstr "Geen enkele van de records kunnen worden aangepast." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:90 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 +msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +msgstr "thesaurus:: Dit veld werd gewijzigd ; oude tak : %old_branch%" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 -msgid "Only one record can be modified." -msgstr "Enkel één record kan worden aangepast." +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:97 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 +msgid "thesaurus:: nouvelle branche" +msgstr "Nieuwe tak" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 -msgid "Only %nbEditableDocuments% records can be modified." -msgstr "Enkel %nbEditableDocuments% records kunnen worden aangepast." - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 -msgid "Stories status edition" -msgstr "Stories status editie" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 -msgid "Records status edition" -msgstr "Records status editie" - -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 -msgid "Loading" -msgstr "Bezig met laden" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 -msgid "Access history" -msgstr "Geschiedenis van de toegang" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:110 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 msgid "" -"If you notice any unfamiliar devices or locations, click 'End Activity' to " -"end the session." +"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " +"candidats seront supprimes" msgstr "" -"Als u om het even welke vreemde toestellen of locaties bemerkt, klik dan op " -"'Einde Activiteit' om de sessie te stoppen." +"Dit veld is niet meer aan de thesaurus gelinkt, de geïndexeerde termen en " +"kandidaten zullen verwijderd worden" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 -msgid "Date de connexion" -msgstr "Datum van de verbinding" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 -msgid "Dernier access" -msgstr "Laatste verbinding" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 -msgid "IP" -msgstr "IP" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 -msgid "Browser" -msgstr "Browser" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 -msgid "End Activity" -msgstr "Einde activiteit" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 -msgid "End session activity" -msgstr "Einde sessie activiteit" - -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 -msgid "Do you really want to end the activity of this session?" -msgstr "Wilt u werkelijk de activiteit van deze sessie stoppen?" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 -msgid "thesaurus:: Nouveau terme" -msgstr "Nieuwe term" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 -msgid "thesaurus:: terme" -msgstr "Term" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 -msgid "thesaurus:: synonyme" -msgstr "Synoniem" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 -msgid "thesaurus:: contexte" -msgstr "Inhoud" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 -msgid "phraseanet:: language" -msgstr "Taal" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 -msgid "The following errors have been detected" -msgstr "De volgende fouten werden opgemerkt" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 -msgid "Would you like to continue ?" -msgstr "Wilt u verdergaan?" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 -msgid "Apply a model" -msgstr "Gebruik een model" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 -msgid "You need define a model before importing a list of users" -msgstr "" -"U moet eerst een model kiezen alvorens een lijst van gebruikers te importeren" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 -msgid "There is no user to add." -msgstr "Er is geen gebruiker om toe te voegen." - -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 -msgid "Ajouter a" -msgstr "Toevoegen aan" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 -msgid "nouveau" -msgstr "Nieuw" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "Op welke API wilt u zich verbinden ?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 -msgid "Aucun bridge disponible. Veuillez contacter un administrateur." -msgstr "" -"Geen enkele bridge beschikbaar. Gelieve een administrator te contacteren." - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 -msgid "You are about to delete this account. Would you like to continue ?" -msgstr "U staat op het punt deze gebruiker te verwijderen. Wilt u doorgaan?" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "U hebt niet voldoende rechten op de geslecteerde elementen" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "U hebt niet voldoende rechten op de bepaalde geslecteerde elementen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:129 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " +"est necessaire" msgstr "" -"prod::thesaurusTab:dlg:Kandidaat \"%(from)s\" vervangen door \"%(to)s\"" +"Dit veld dient aan de thesaurus gelinkt te worden. Herindexatie van de " +"database is nodig" -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "Vervanging is bezig." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "Aanvaarding is bezig." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "Verwijderen is bezig." - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "aanvaardt de term candidaat \"%s\" ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "aanvaardt %d candidaat termen ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 -#, php-format +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:137 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "clic-droit / aanvaardt de \"%s\" candidaat term" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "clic-droit /aanvaardt de %s candidaat termen" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "vervang de \"%s\" term van de bestanden door :" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "%d termen van de bestanden vervangen :" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "verwijder de term \"%s\" van de bestanden ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "%d termen van de bestanden verwijderen ?" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 -msgid "prod::thesaurusTab:tree:loading" -msgstr "laden" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "Aanvaardt als specifieke term" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "Aanvaardt als synonym" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "Aanvaardt als %lng_code%" - -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "Vervangen door..." - -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 -msgid "Playlist" -msgstr "Afspeellijst" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:93 -msgid "publication : titre" -msgstr "Titel" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:101 -msgid "publication : sous titre" -msgstr "Onder titel" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:109 -msgid "publication : autheur" -msgstr "Auteur" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:117 -msgid "publication : email autheur" -msgstr "Email auteur" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:129 -msgid "Fils disponibles" -msgstr "Beschikbare paden" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 -msgid "boutton::mettre a jour" -msgstr "update" - -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 -msgid "you are about to change the representation thumbnail of your video" +"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " +"base est necessaire" msgstr "" -"U staat op het punt de presentatie thumbnail van uw video te veranderen" +"De link naar thesaurus moet gewijzigd worden, herindexatie van de database " +"is nodig" -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 -msgid "do you want to validate" -msgstr "Wilt u goedkeuren" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:167 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 +msgid "thesaurus:: reindexation necessaire" +msgstr "Herindexatie is nodig" -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" -msgstr "Object" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" -msgstr "Aantal" - -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" -msgstr "Gewicht" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 -msgid "Updated structure" -msgstr "Bijgewerkte structuur" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 -msgid "Structure has been successfully updated" -msgstr "Structuur werd met succes bijgewerkt" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 -msgid "Structure errors" -msgstr "Structuur fouten" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "Ongeldige xml, de wijzigingen worden niet toegepast" - -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 -msgid "admin::base: structure" -msgstr "Structuur" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 -msgid "new client application" -msgstr "nieuw klant programma" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 -msgid "Nom" -msgstr "Naam" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 -msgid "Site web" -msgstr "Website" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 -msgid "Type d'application" -msgstr "Type toepassing" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 -msgid "Application web" -msgstr "Webtoepassing" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 -msgid "Application desktop" -msgstr "Desktoptoepassing" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 -msgid "" -"Cochez les cases correspondantes aux colonnes que vous desirez voire " -"apparaitre dans le report" -msgstr "" -"Schakel de selectievakjes die overeenkomen met de kolommen die u wilt of " -"zelfs opgenomen zijn het rapport uit" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 -msgid "cocher tout" -msgstr "alles uitschakelen" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 -msgid "tout decocher" -msgstr "alles inschakelen" - -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 -msgid "language" -msgstr "taal" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 -msgid "Save all changes" -msgstr "Alle wijzigingen opslaan" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 -msgid "Close" -msgstr "Sluit" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 -msgid "Ok" -msgstr "Ok" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 -msgid "Live search" -msgstr "Live zoeken" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 -msgid "Add a new field" -msgstr "Voeg een nieuw veld toe" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 -msgid "Multivalued" -msgstr "Meerde waarden" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 -msgid "Order" -msgstr "Opdracht" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 -msgid "DCES" -msgstr "DCES" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 -msgid "Advanced field parameters" -msgstr "Geavanceerde veld parameters" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 -msgid "Thesaurus branch" -msgstr "Thesaurus tak" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 -msgid "Type" -msgstr "Type" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 -msgid "Vocabulary type" -msgstr "Type van de vocabulair" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 -msgid "Limited vocabulary" -msgstr "Beperkte vocabulair" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 -msgid "Business Fields" -msgstr "Zakelijke velden" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 -msgid "Separator" -msgstr "Scheidingsteken" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 -msgid "Display & action settings" -msgstr "Instellingen voor weergave & acties" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 -msgid "Mandatory" -msgstr "Verplicht" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 -msgid "Indexable" -msgstr "Indexeerbaar" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 -msgid "Read-only" -msgstr "Alleen lezen" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 -msgid "Display thumbnails" -msgstr "Toon thumbnails" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 -msgid "Tous" -msgstr "Alle" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 -msgid "Aucun" -msgstr "Geen enkele" - -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 -msgid "Current configuration contains some errors" -msgstr "Huidige configuratie bevat enkele fouten" - -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 -msgid "reponses:: partager" -msgstr "delen" - -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 -#, php-format -msgid "%entry_length% documents" -msgstr "%entry_length% documenten" - -#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 -msgid "Loading database documentary structure ..." -msgstr "Documentatie databasestructuur laden ..." - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 -msgid "Upload a csv file for users creation" -msgstr "Laad een file van het .csv op voor het aanmaken van gebruikers" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 -msgid "An error occured while upload the file. Please retry" -msgstr "" -"Er heeft zich een fout voorgedaan bij het laden van de file. Gelieve opnieuw " -"te proberen" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 -msgid "Row login is missing, script has stopped" -msgstr "Rij met de login ontbreekt, het script is gestopt" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 -msgid "Row password is missing, script has stopped" -msgstr "Rij met het paswoord ontbreekt, het script is gestopt" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 -msgid "Row mail is missing, script has stopped" -msgstr "Lijn mail ontbreekt, het script is gestopt" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 -msgid "The file does not contains any user to add" -msgstr "De file bevat geen enkele gebruiker om toe te voegen" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 -msgid "You can download an example by clicking here" -msgstr "U kan een voorbeeld downloaden door hier te klikken" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 -msgid "You can download the documentation here" -msgstr "U kan de documentatie hier downloaden" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 -msgid "Ajouter une publication" -msgstr "Voeg een publicatie toe" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 -msgid "Feed name" -msgstr "Feed naam" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 -msgid "Date Creation" -msgstr "Aanmaakdatum" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 -msgid "Public" -msgstr "Publiek" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:168 -msgid "This feed is public" -msgstr "Deze feed is publiek" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 -msgid "" -"Une fois la publication supprimee, les donnees publiees seront " -"definitivement perdues. Continuer ?" -msgstr "" -"Eens de publicatie verwijderd, worden alle gegevens definitief verwijderd. " -"Doorgaan?" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 -msgid "thesaurus:: Proprietes" -msgstr "Eigenschappen" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 -msgid "thesaurus:: remplacer" -msgstr "vervangen" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 -msgid "thesaurus:: %hits% reponses retournees" -msgstr "thesaurus:: %hits% gekregen antwoorden" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 -msgid "thesaurus:: synonymes" -msgstr "Synoniemen" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 -msgid "thesaurus:: hits" -msgstr "Hits" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 -msgid "thesaurus:: ids" -msgstr "Ids" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "Bevestig verwijderinng van de term %s" - -#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 -msgid "Incorrect please try again" -msgstr "Fout gelieve opnieuw te proberen" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 -msgid "No preview available." -msgstr "Geen preview beschikbaar" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 -msgid "No permalink available." -msgstr "Geen permalink beschikbaar" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 -msgid "Send to Twitter" -msgstr "Verstuur naar Twitter" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 -msgid "Send to Facebook" -msgstr "Verstuur naar Facebook" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 -msgid "Resource URL" -msgstr "Bron URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 -msgid "Detailed view URL" -msgstr "Gedetailleerde weergave URL" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 -msgid "Embed code" -msgstr "Sluit de code in" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 -msgid "No URL available" -msgstr "Geen URL beschikbaar" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 -msgid "admin::tasks: planificateur de taches" -msgstr "Taakplanner" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 -msgid "Last update at" -msgstr "Laatst bijgewerkt op" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 -msgid "admin::tasks: statut de la tache" -msgstr "Status van de taak" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 -msgid "admin::tasks: process_id de la tache" -msgstr "process_id van de taak" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 -msgid "admin::tasks: etat de progression de la tache" -msgstr "voortgang van de taak" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 -msgid "Start" -msgstr "Start" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 -msgid "Stop" -msgstr "Stop" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 -msgid "Logs" -msgstr "Logs" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 -msgid "admin::tasks: Nouvelle tache" -msgstr "Nieuwe taak" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 -msgid "admin::tasks: supprimer la tache ?" -msgstr "De taak verwijderen ?" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 -msgid "phraseanet::status bit" -msgstr "Status bit" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 -msgid "status:: nom" -msgstr "Naam" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 -msgid "status:: cherchable par tous" -msgstr "Zoekbaar door allen" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 -msgid "status:: Affichable pour tous" -msgstr "Zichtbaar voor allen" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "oui" -msgstr "Ja" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 -msgid "non" -msgstr "Nee" - -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 -msgid "An error occurred" -msgstr "Er is een fout opgetreden" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 -msgid "" -"phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " -"contactez le support technique" -msgstr "" -"Een fout heeft zicht voorgedaan, als dit probleem aanhoudt, contacteer dan " -"de technishe support" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 -msgid "" -"phraseanet::erreur: La connection au serveur Phraseanet semble etre " -"indisponible" -msgstr "De connectie met de Phraseanet server blijkt niet mogelijk te zijn" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 -msgid "" -"phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "Uw sessile werd afgesloten, gelieve opnieuw in te loggen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 -msgid "Cocher toute la colonne" -msgstr "Verberg de hele kolom" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 -msgid "Decocher toute la colonne" -msgstr "Toon de hele kolom" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 -msgid "Creer un model" -msgstr "Maak een model" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 -msgid "Creer un utilisateur" -msgstr "Maak een gebruiker" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "This file is too big" -msgstr "Deze file is te groot" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 -msgid "This field is required" -msgstr "Dit veld is verplicht" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 -msgid "Successful install" -msgstr "Installatie geslaagd" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 -msgid "Ajouter un nouvel utilisateur" -msgstr "Voeg een nieuwe gebruiker toe" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 -msgid "Adresse email du nouvel utilisateur" -msgstr "Email adres van de nieuwe gebruiker" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 -msgid "Send an email to the user to setup his password" -msgstr "Stuur een email naar de gebruiker om zijn wachtwoord in te stellen" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 -msgid "Require email validation to activate the account" -msgstr "Email validatie verwacht om de gebruiker te activeren" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 -msgid "Creer un modele" -msgstr "Maak een model" - -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 -msgid "Nom du nouveau modele" -msgstr "Naam van het nieuwe model" - -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 -msgid "erreur avec la valeur %name%" -msgstr "fout bij de waarde %name%" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 -msgid "Completion of your registration" -msgstr "Vervollediging van uw registratie" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 -msgid "Please complete the information to complete your registration" -msgstr "Gelieve de informatie aan te vullen om uw registratie te vervolledigen" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 -msgid "Mandatory fields" -msgstr "Verplichte velden" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 -msgid "I have read the terms of use" -msgstr "Ik heb de gebruiksvoorwaarden gelezen" - -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 -msgid "Resquest access" -msgstr "Toegang aanvragen" - -#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 -msgid "Page" -msgstr "Pagina" +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:173 +#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 +msgid "thesaurus:: pas de reindexation" +msgstr "Geen herindexatie" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:37 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:60 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:37 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:60 msgid "Authorization Access" msgstr "Machtiging toegang" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:77 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:77 msgid "" "Do you authorize the application %application_name% to access to your " @@ -8839,18 +10930,524 @@ msgstr "" "Staat u het programma %application_name% toe om toegang te krijgen tot de " "Phraseanet inhoud?" +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:89 #: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:89 msgid "Authorize" msgstr "Toestaan" -#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 -msgid "validation:: note" -msgstr "Nota" +#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:51 +msgid "Story name" +msgstr "Story naam" +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:40 +msgid "Toutes les publications" +msgstr "Alle publicaties" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:76 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:84 +msgid "publications:: s'abonner aux publications" +msgstr "Zich abonneren op de publicaties" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:97 +msgid "Aller a" +msgstr "Ga naar" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:165 +msgid "Aucune entree pour le moment" +msgstr "Geen vermelding voor het moment" + +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 +#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:188 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:199 +msgid "charger d'avantage de publications" +msgstr "Laden voordeel publicaties" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:57 +msgid "thesaurus:: Editer le thesaurus" +msgstr "Bewerk de thesaurus" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:62 +msgid "phraseanet:: choisir" +msgstr "Kiezen" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:99 +msgid "thesaurus:: langue pivot" +msgstr "Spiltaal" + +#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:138 +msgid "thesaurus:: Vous n'avez acces a aucune base" +msgstr "U hebt tot geen enkele database toegang" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:23 +msgid "publications:: dernieres publications" +msgstr "Laatste publicaties" + +#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:86 +msgid "publications:: derniere mise a jour" +msgstr "Laatste update" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:28 +msgid "" +"%name% est momentanement indisponible a cause d'un trop grand nombre de " +"requetes" +msgstr "" +"%name% is tijdelijk niet beschikbaar omdat er te veel query's actief zijn" + +#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:33 +msgid "le service sera de nouveau disponible dans quelques minutes" +msgstr "de service zal binnen enkele minuten opnieuw beschibaar zijn" + +#: tmp/cache_twig/ad/f2/729310ca9a232e57a4b9b0a8712f22ac9f3beed123d66108eb967410eb92.php:35 +#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 +msgid "Loading database documentary structure ..." +msgstr "Documentatie databasestructuur laden ..." + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:37 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 +msgid "thesaurus:: Proprietes" +msgstr "Eigenschappen" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:115 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 +msgid "thesaurus:: remplacer" +msgstr "vervangen" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:138 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 +msgid "thesaurus:: %hits% reponses retournees" +msgstr "thesaurus:: %hits% gekregen antwoorden" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:160 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 +msgid "thesaurus:: synonymes" +msgstr "Synoniemen" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:164 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 +msgid "thesaurus:: hits" +msgstr "Hits" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:168 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 +msgid "thesaurus:: ids" +msgstr "Ids" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:438 +#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 +#, php-format +msgid "thesaurus:: Confirmer la suppression du terme %s" +msgstr "Bevestig verwijderinng van de term %s" + +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:126 +#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 +msgid "reponses:: partager" +msgstr "delen" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:37 +msgid "thesaurus:: accepter..." +msgstr "Aanvaarden..." + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:181 +msgid "thesaurus:: removed_src" +msgstr "verwijderde_src" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:187 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:216 +msgid "thesaurus:: refresh" +msgstr "vernieuw" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:210 +msgid "thesaurus:: removed tgt" +msgstr "verwijderde tgt" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:261 +msgid "thesaurus:: Accepter le terme comme" +msgstr "Aanvaard de term als" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:269 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:292 +msgid "thesaurus:: comme terme specifique" +msgstr "als specifieke term" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:278 +msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +msgstr "thesaurus:: als sienoniem van %fullpath_tgt_raw%" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:289 +msgid "thesaurus:: Accepter la branche comme" +msgstr "Aanvaardt de tak als" + +#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:323 +msgid "" +"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " +"ne peut etre accepte" +msgstr "" +"thesaurus:: Een kandidaatveld %cfield% kan niet worden aanvaard op deze " +"plaats van de thesaurus" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:35 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 +msgid "Access history" +msgstr "Geschiedenis van de toegang" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:47 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +msgid "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." +msgstr "" +"Als u om het even welke vreemde toestellen of locaties bemerkt, klik dan op " +"'Einde Activiteit' om de sessie te stoppen." + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:57 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +msgid "Date de connexion" +msgstr "Datum van de verbinding" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:63 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +msgid "Dernier access" +msgstr "Laatste verbinding" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:69 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +msgid "IP" +msgstr "IP" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:75 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 +msgid "Browser" +msgstr "Browser" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:101 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:103 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +msgid "End Activity" +msgstr "Einde activiteit" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:109 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:109 +msgid "Current session" +msgstr "Huidige sessie" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:162 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +msgid "End session activity" +msgstr "Einde sessie activiteit" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:168 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +msgid "Do you really want to end the activity of this session?" +msgstr "Wilt u werkelijk de activiteit van deze sessie stoppen?" + +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:184 +#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 +msgid "boutton::mettre a jour" +msgstr "update" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:22 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 +msgid "Phrasea search-engine configuration" +msgstr "Phrasea zoekmotor configuratie" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:33 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stoppen" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:37 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Sta stoppen toe" + +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:47 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 +msgid "Default sort" +msgstr "Standaard sortering" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:22 +msgid "thesaurus:: Nouveau terme" +msgstr "Nieuwe term" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:25 +msgid "thesaurus:: terme" +msgstr "Term" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:32 +msgid "thesaurus:: synonyme" +msgstr "Synoniem" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:103 +msgid "thesaurus:: contexte" +msgstr "Inhoud" + +#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:111 +msgid "phraseanet:: language" +msgstr "Taal" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:29 +msgid "The following errors have been detected" +msgstr "De volgende fouten werden opgemerkt" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:50 +msgid "Would you like to continue ?" +msgstr "Wilt u verdergaan?" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:87 +msgid "Apply a model" +msgstr "Gebruik een model" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:146 +msgid "You need define a model before importing a list of users" +msgstr "" +"U moet eerst een model kiezen alvorens een lijst van gebruikers te importeren" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:155 +msgid "There is no user to add." +msgstr "Er is geen gebruiker om toe te voegen." + +#: tmp/cache_twig/cf/3e/e1d89f6514485729bfa2ba6dc3be1d53c29c1d22dce9eee2e2b2faacbf67.php:35 +#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 +msgid "Page" +msgstr "Pagina" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:22 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 +msgid "admin::tasks: planificateur de taches" +msgstr "Taakplanner" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:27 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 +msgid "Last update at" +msgstr "Laatst bijgewerkt op" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:54 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 +msgid "admin::tasks: statut de la tache" +msgstr "Status van de taak" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:58 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 +msgid "admin::tasks: process_id de la tache" +msgstr "process_id van de taak" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:62 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 +msgid "admin::tasks: etat de progression de la tache" +msgstr "voortgang van de taak" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:135 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +msgid "Start" +msgstr "Start" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:141 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +msgid "Stop" +msgstr "Stop" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:153 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +msgid "Logs" +msgstr "Logs" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:216 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 +msgid "admin::tasks: Nouvelle tache" +msgstr "Nieuwe taak" + +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:468 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 +msgid "admin::tasks: supprimer la tache ?" +msgstr "De taak verwijderen ?" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:100 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 +msgid "Informations personnelles" +msgstr "Persoonlijke informaties" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:198 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 +msgid "login:: Changer mon adresse email" +msgstr "Verander mijn email adres" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:206 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 +msgid "Password" +msgstr "Wachtwoord" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:213 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 +msgid "admin::compte-utilisateur changer mon mot de passe" +msgstr "Verander mijn paswoord" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:324 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 +msgid "Notification par email" +msgstr "Melding via email" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:386 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 +msgid "FTP" +msgstr "FTP" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:393 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 +msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +msgstr "De FTP-account activeren" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:468 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 +msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +msgstr "Voorvoegsel bij de namen van de ftp map" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:25 +msgid "Updated structure" +msgstr "Bijgewerkte structuur" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:29 +msgid "Structure has been successfully updated" +msgstr "Structuur werd met succes bijgewerkt" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:45 +msgid "Structure errors" +msgstr "Structuur fouten" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:49 +msgid "admin::base: xml invalide, les changements ne seront pas appliques" +msgstr "Ongeldige xml, de wijzigingen worden niet toegepast" + +#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:105 +msgid "admin::base: structure" +msgstr "Structuur" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:35 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 +msgid "new client application" +msgstr "nieuw klant programma" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:80 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 +msgid "Nom" +msgstr "Naam" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:106 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 +msgid "Site web" +msgstr "Website" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:123 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 +msgid "Type d'application" +msgstr "Type toepassing" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:133 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 +msgid "Application web" +msgstr "Webtoepassing" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:144 +#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 +msgid "Application desktop" +msgstr "Desktoptoepassing" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:27 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 +msgid "phraseanet::status bit" +msgstr "Status bit" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:40 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 +msgid "status:: nom" +msgstr "Naam" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:44 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 +msgid "status:: cherchable par tous" +msgstr "Zoekbaar door allen" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:48 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 +msgid "status:: Affichable pour tous" +msgstr "Zichtbaar voor allen" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "oui" +msgstr "Ja" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +msgid "non" +msgstr "Nee" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:184 +#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 +msgid "An error occurred" +msgstr "Er is een fout opgetreden" + +#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 +#, php-format +msgid "%entry_length% documents" +msgstr "%entry_length% documenten" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:158 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:158 msgid "Aucun statut editable" msgstr "Geen enkele bewerkbare status" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:164 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:164 msgid "" "Les status de certains documents ne sont pas accessibles par manque de droits" @@ -8858,86 +11455,107 @@ msgstr "" "De status van bepaalde documenten is niet toegestaan omwille van gebrek aan " "rechten." +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:242 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:242 msgid "boutton::remplacer" msgstr "Vervangen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:273 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:273 msgid "phraseanet:: presse-papier" msgstr "Klembord" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:281 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:281 msgid "prod::editing: rechercher-remplacer" msgstr "Zoeken-vervangen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:285 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:285 msgid "prod::editing: modeles de fiches" msgstr "Bestandsmodellen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:332 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:332 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Vervangen in het veld" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:338 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:338 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Vervangen in alle velden" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:363 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:363 msgid "prod::editing:replace: chaine a rechercher" msgstr "String zoeken" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:372 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:372 msgid "prod::editing:remplace: chaine remplacante" msgstr "Vervangende string" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:381 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:381 msgid "prod::editing:remplace: options de remplacement" msgstr "Vervanging opties" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:387 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:387 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Een reguliere expressie gebruiken" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:418 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:418 msgid "Aide sur les expressions regulieres" msgstr "Help over reguliere expressies" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:427 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:427 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Alle zoektekst vervangen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:433 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:433 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Hoofdletterongevoelig blijven" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:440 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:440 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "De waarde van het veld moet exact zijn" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:446 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:446 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "De waarde is in het veld opgenomen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:452 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:452 msgid "prod::editing:remplace::option respecter la casse" msgstr "Respecteer de hoofdlettergevoeligheid" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:503 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:503 msgid "prod::editing:indexation en cours" msgstr "Indexatie is bezig" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:528 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:528 msgid "prod::editing: valider ou annuler les modifications" msgstr "Bewaar of annuleer de aanpassingen" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:536 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:536 msgid "edit::preset:: titre" msgstr "Titel" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:545 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:545 msgid "Edition impossible" msgstr "Kan niet worden bewerkt" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:554 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:554 msgid "" "prod::edit: Impossible d'editer simultanement des documents provenant de " @@ -8946,6 +11564,7 @@ msgstr "" "Onmogelijk om documenten afkomstig van verschillende databases samen te " "bewerken" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:560 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:560 msgid "" "prod::editing: aucun documents ne peuvent etre edites car vos droits sont " @@ -8953,6 +11572,7 @@ msgid "" msgstr "" "Geen enkel document kan worden bewerkt omdat u niet voldoende rechten heeft" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:597 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:597 msgid "" "prod::editing: %not_actionable% documents ne peuvent etre edites car vos " @@ -8961,280 +11581,114 @@ msgstr "" "%not_actionable% documenten kunnen niet bewerkt worden omdat u niet " "voldoende rechten heeft" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:603 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:603 msgid "" "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "" "1 document kan niet worden bewerkt omdat u niet voldoende rechten heeft" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:764 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:764 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Bepaalde velden moeten ingevuld worden om deze bewerking uit te voeren" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:797 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:797 msgid "edit: chosiir limage du regroupement" msgstr "Kies het beeld voor de hergroepering" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:843 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:843 msgid "prod::editing::fields: status " msgstr "Status " +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:894 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:894 msgid "Ce champ est decrit comme un element DublinCore" msgstr "Dit veld is beschreven als een DublinCore element" +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:903 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:903 msgid "This field represents the title of the document" msgstr "Dit veld vertegenwoordigt de titel van het document" -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 -msgid "Retour a laccueil" -msgstr "Terug naar home" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:22 +msgid "Upload a csv file for users creation" +msgstr "Laad een file van het .csv op voor het aanmaken van gebruikers" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 -msgid "Vous avez recu un nouveau panier" -msgstr "U hebt een nieuw mandje ontvangen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 -msgid "Vous avez recu une demande de validation de document sur ce panier" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:40 +msgid "An error occured while upload the file. Please retry" msgstr "" -"U hebt een aanvraag tot goedkeuring van documenten in dit mandje ontvangen" +"Er heeft zich een fout voorgedaan bij het laden van de file. Gelieve opnieuw " +"te proberen" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 -msgid "action::exporter" -msgstr "Exporteren" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:46 +msgid "Row login is missing, script has stopped" +msgstr "Rij met de login ontbreekt, het script is gestopt" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 -msgid "action::editer" -msgstr "Aanpassen" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:52 +msgid "Row password is missing, script has stopped" +msgstr "Rij met het paswoord ontbreekt, het script is gestopt" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 -msgid "action::Valider" -msgstr "Valideren" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:58 +msgid "Row mail is missing, script has stopped" +msgstr "Lijn mail ontbreekt, het script is gestopt" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "" -"U hebt een aanvraag tot goedkeuring van documenten in dit mandje verstuurd" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:64 +msgid "The file does not contains any user to add" +msgstr "De file bevat geen enkele gebruiker om toe te voegen" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 -msgid "paniers:: panier recu de %pusher%" -msgstr "Mandje ontvangen van %pusher%" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:108 +msgid "You can download an example by clicking here" +msgstr "U kan een voorbeeld downloaden door hier te klikken" -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 -msgid "action::renommer" -msgstr "Hernoemen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 -msgid "Archive" -msgstr "Archief" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 -msgid "action::detacher" -msgstr "Ontkoppelen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 -msgid "delete" -msgstr "Verwijderen" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 -msgid "panier:: ordre du panier" -msgstr "Volgordre van het mandje" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 -msgid "panier:: ordre Validation ascendante" -msgstr "Oplopende validatie volgorde" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 -msgid "panier:: ordre Validation descendante" -msgstr "Aflopende validatie volgorde" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 -msgid "L'utilisateur approuve ce document" -msgstr "De gebruiker keurt dit document goed" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "De gebruiker heeft nog zijn mening niet gegeven over dit document" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 -msgid "L'utilisateur desapprouve ce document" -msgstr "De gebruiker keurt dit document af" - -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 -msgid "This user does not participate to the validation but is only viewer." -msgstr "" -"Deze gebruiker maakt geen deel uit van de goedkeuring maar is enkel een " -"bezoeker." - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 -msgid "General settings" -msgstr "Algemene instellingen" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 -msgid "your configuration" -msgstr "Uw configuratie" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 -msgid "all caches services have been flushed" -msgstr "Alle caches services zijn geflushed" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 -msgid "setup:: administrateurs de l'application" -msgstr "Beheerders van het programma" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 -msgid "Add an admin" -msgstr "Voeg een beheerder toe" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 -msgid "setup:: Reinitialisation des droits admins" -msgstr "Herinitialisatie van de admin rechten" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 -msgid "boutton::reinitialiser" -msgstr "Herinitialiseren" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 -msgid "setup::Tests d'envois d'emails" -msgstr "Testen voor het versturen van mail" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 -msgid "Email test result : %email_status%" -msgstr "Email test resultaat : %email_status%" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 -msgid "Reset cache" -msgstr "Reset cache" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 -msgid "Requirements" -msgstr "Vereisten" - -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 -msgid "Recommendations" -msgstr "Aanbevelingen" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 -msgid "Phrasea search-engine configuration" -msgstr "Phrasea zoekmotor configuratie" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 -msgid "Stemming" -msgstr "Stoppen" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 -msgid "Enable stemming" -msgstr "Sta stoppen toe" - -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 -msgid "Default sort" -msgstr "Standaard sortering" - -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:203 -msgid "boutton::publier" -msgstr "Publiceren" +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:116 +msgid "You can download the documentation here" +msgstr "U kan de documentatie hier downloaden" +#: tmp/cache_twig/ea/05/08255f94fc4216dbff13166ede04e1c038faf7332a59c93ff40e9e3dd830.php:26 #: tmp/cache_twig/fc/40/b874454c3bf222948d849229781e.php:26 msgid "Caption" msgstr "Caption" +#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 +msgid "validation:: note" +msgstr "Nota" + +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:38 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:38 msgid "thesaurus:: Importer" msgstr "Importeren" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:101 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:101 msgid "thesaurus:: langue par default" msgstr "Default taal" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:109 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:109 msgid "Fichier ASCII tabule" msgstr "Fichier ASCII tabel" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:119 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:119 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Verwijder de links van de tak velden" +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:125 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:125 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Herindexeer de database na het importeren" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 -msgid "Informations personnelles" -msgstr "Persoonlijke informaties" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 -msgid "login:: Changer mon adresse email" -msgstr "Verander mijn email adres" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -msgid "Password" -msgstr "Wachtwoord" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "Verander mijn paswoord" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 -msgid "Notification par email" -msgstr "Melding via email" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 -msgid "FTP" -msgstr "FTP" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "De FTP-account activeren" - -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "Voorvoegsel bij de namen van de ftp map" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %instance_title%!" -msgstr "" -"Vervolledig de onderstaande velden om op %instance_title% te registreren!" - -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 -msgid "Request access" -msgstr "Aanvraag toegang" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "Het veld moet minimum %minLength% tekens bevatten" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "Het veld mag niet meer dan %maxLength% tekens bevatten." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "De hieronder getoonde indicaties zijn louter informatief." - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 -msgid "" -"Si vous ne les respectez pas, les documents seront correctement indexes, " -"mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" -"Als u deze niet respecteert, zullen de documenten correct geïndexeerd " -"worden, maar de beschreven meta data's kunnen verkeerd zijn" - -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 -msgid "" -"Ces informations sont directement fournies par la norme de metadonnees de ce " -"champ : %norm_name%" -msgstr "" -"Deze informatie wordt rechtstreeks geleverd door de metagegevens van het " -"standaard veld : %norm_name%" - #: lib/Alchemy/Phrasea/Border/Checker/Colorspace.php:65 msgid "The file does not match available color" msgstr "Het bestand komt niet met de beschikbare kleur overeen" @@ -9439,49 +11893,49 @@ msgstr "Database mag niet leeg zijn" msgid "Database could not be mounted" msgstr "Database kon niet worden geladen" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:129 msgid "Something wrong happened, please try again or contact an admin." msgstr "" "Er heeft zich een fout voorgedaan, gelieve opnieuw te proberen of contact op " "te nemen met een beheerder." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 #, php-format msgid "%s field has been created with success." msgstr "Veld %s is met succes aangemaakt." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 #, php-format msgid "%s field has been deleted with success." msgstr "Veld %s is met succes verwijderd." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 #, php-format msgid "Do you really want to delete the field %s ?" msgstr "Bent u zeker om het veld %s te verwijderen?" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 msgid "Field can not be blank." msgstr "Veld mag niet leeg zijn" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 msgid "Field name already exists." msgstr "Veldnaam bestaat reeds" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 msgid "Field name is not valid." msgstr "Veldnaam is niet geldig" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 msgid "Field source is not valid." msgstr "Veldbron is niet geldig" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 #, php-format msgid "Field %s contains errors." msgstr "Veld %s bevat fouten." -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:139 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 msgid "Your configuration has been successfuly saved." msgstr "Uw configuratie werd met succes bewaard." @@ -9539,48 +11993,48 @@ msgstr "Update mislukt" msgid "Clear" msgstr "Wis" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:555 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:564 msgid "" "login::register:email: Vous avez ete accepte sur les collections suivantes : " msgstr "U bent aangemeld voor volgende collecties : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:558 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:567 msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " msgstr "U bent geweigerd voor volgende collecties : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:662 #, php-format msgid "Login line %d is empty" msgstr "Login lijn %d is leeg" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:664 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "Login %s is al in de file gedefinieerd op lijn %d" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:667 #, php-format msgid "Login %s already exists in database" msgstr "Login %s bestaat reeds in de database" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:678 #, php-format msgid "Mail line %d is empty" msgstr "Mail lijn %d is leeg" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Email '%s' for login '%s' already exists in database" msgstr "Email '%s' door login '%s' bestaat reeds in de database" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:690 #, php-format msgid "Password is empty at line %d" msgstr "Wachtwoor is leeg op lijn %d" #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1010 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1025 msgid "login::erreur: Erreur d'authentification" msgstr "Verificatiefout" @@ -9620,7 +12074,7 @@ msgid "boutton::renouveller" msgstr "Vernieuwen" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Print" msgstr "Afdrukken" @@ -9704,11 +12158,11 @@ msgstr "%d elementen in wacht" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 msgid "Export" msgstr "Exporteer" -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:245 +#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:244 msgid "Vocabulary not found" msgstr "Vocabulary niet gevonden" @@ -9950,60 +12404,64 @@ msgstr "Geen enkel document geselecteerd" msgid "List name can not be empty" msgstr "Lijstnaam kan niet leeg zijn" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +msgid "Please provide a name for this selection." +msgstr "Gelieve een naam te voorzien voor deze selectie." + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 #, php-format msgid "%d fields have been updated" msgstr "%d velden werden upgedate" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "No users selected" msgstr "Geen gebruikers geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "An error occurred reading this file" msgstr "Een fout is opgetreden bij het lezen van dit bestand" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 msgid "Please select one record" msgstr "Gelieve één record te selecteren" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 msgid "You can choose only one record" msgstr "U kunt enkel één record selecteren" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 msgid "An error occured, please retry" msgstr "Er is een fout opgetreden, probeer het opnieuw" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Some files are being downloaded" msgstr "Sommige bestanden worden gedownload" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 msgid "This feature is not supported by your browser" msgstr "Deze functie wordt niet door uw browser ondersteunt" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "No active basket" msgstr "Geen actief mandje" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Force sending of the document ?" msgstr "Forceer het versturen van dit document?" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Share" msgstr "Deel" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Move" msgstr "Verplaats" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Tool box" msgstr "Gereedschappen" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:113 msgid "Attention !" msgstr "Opgelet !" @@ -10072,86 +12530,86 @@ msgstr "" "bestaan" #: lib/Alchemy/Phrasea/Controller/Prod/Push.php:154 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:274 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:269 msgid "Unable to send the documents" msgstr "Documenten kunnen niet worden verstuurd" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:163 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:160 #, php-format msgid "Push from %s" msgstr "Push van %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:166 msgid "No receivers specified" msgstr "Geen ontvangers gespecificeerd" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:170 msgid "No elements to push" msgstr "Geen elementen om te pushen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:182 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:371 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:361 #, php-format msgid "Unknown user %d" msgstr "Onbekende gebruiker %d" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:248 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d records werden naar %2$d gebruikers verstuurd" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:287 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:279 #, php-format msgid "Validation from %s" msgstr "Goedkeuring van %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:285 msgid "No participants specified" msgstr "Geen deelnemers opgegeven" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:299 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:289 msgid "No elements to validate" msgstr "Geen te valideren elementen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:365 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:355 #, php-format msgid "Missing mandatory parameter %s" msgstr "Mandatory parameter %s ontbreekt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:457 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:447 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "%1$d records werden ter goedkeuring naar %2$d gebruikder gestuurd" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:521 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:511 msgid "You are not allowed to add users" msgstr "U hebt geen toestemming om gebruikers toe te voegen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:514 msgid "First name is required" msgstr "Voornaam is verplicht" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:527 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "Last name is required" msgstr "Achternaam is verplicht" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:530 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "Email is required" msgstr "Email is verplicth" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:533 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Email is invalid" msgstr "Email is niet correct" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:547 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 msgid "User already exists" msgstr "Gebruiker bestaat reeds" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:560 msgid "User successfully created" msgstr "Gebruiker met succes aangemaakt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:574 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:564 msgid "Error while creating user" msgstr "Fout tijdens het aanmaken van gebruiker" @@ -10457,7 +12915,7 @@ msgid "report:: module" msgstr "Module" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:591 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:606 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Update van het paswoord met succes uitgevoerd" @@ -10515,159 +12973,159 @@ msgstr "Veranderingen zijn bewaard" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Fouten bij het opslaan van de wijzigingen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:204 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Please provide a value." msgstr "Geef een waarde" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 #, php-format msgid "Please select at least %s choice." msgstr "Gelieve tenminste één %s keuze." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Please provide a valid email address." msgstr "Gelieve een geldig email adres op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:222 msgid "Please provide a valid IP address." msgstr "Gelieve een geldig IP adres op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:223 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "Gelieve een langere waarde op te geven. Tenminste %s of meer tekens." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:224 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "Gelieve dezelfde wachtwoorden op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:225 msgid "Please provide the same emails." msgstr "Gelieve dezelfde emails op te geven." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:226 msgid "Please accept the terms of use to register." msgstr "Gelieve de gebruiksvoorwaarden te aanvaarden alvorens te registreren." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:227 msgid "No collection selected" msgstr "Geen collectie geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 #, php-format msgid "%d collection selected" msgstr "%d collectie geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:229 #, php-format msgid "%d collections selected" msgstr "%d collecties geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:230 msgid "Select all collections" msgstr "Alle collecties selecteren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:217 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:232 msgid "Weak" msgstr "Matig" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:233 msgid "Ordinary" msgstr "Gewoon" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:234 msgid "Good" msgstr "Goed" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:235 msgid "Great" msgstr "Uitstekend" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:263 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:270 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:278 msgid "You tried to register with an unknown provider" msgstr "U probeerde met een ongekende provider te registreren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:290 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:305 msgid "Invalid captcha answer." msgstr "Ongeldig captcha antwoord" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:395 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:466 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:410 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:481 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "Aanvraag tot goedkeuring per mail verstuurd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:398 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:413 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:484 msgid "Unable to send your account unlock email." msgstr "Het was niet mogelijk om uw ontgrendelings-email te versturen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:459 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:474 msgid "Invalid link." msgstr "Ongeldige link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:508 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:516 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:524 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:523 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:539 msgid "Invalid unlock link." msgstr "Ongeldige ontgrendelings-link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:530 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:545 msgid "Account is already unlocked, you can login." msgstr "Deze gebruiker is reeds ontgrendeld, u kunt zich aanmelden." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:541 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:556 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account has been unlocked, you can now login." msgstr "Gebruiker is ontgrendeld, u kunt zich aanmelden." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:557 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:572 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" "Gebruiker is ontgrendeld, u dient nog te wachten op goedkeuring van een " "beheerder." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:627 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:642 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "De account werd niet gevonden" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:633 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:648 msgid "Invalid email address" msgstr "Ongeldig emailadres" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:649 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Een email werd u toegestuurd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:697 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:712 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "U bent nu uitgelogd. Tot later." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:724 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:739 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "Geen beschikbare verbinding - Neem contact op met sys-admin" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:769 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:784 msgid "Phraseanet guest-access is disabled" msgstr "Gast toegang voor Phraseanet is niet actief" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:889 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:904 #, php-format msgid "Unable to authenticate with %s" msgstr "Het is niet mogelijk om zich aan te melden met %s" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:913 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:928 msgid "Unable to retrieve provider identity" msgstr "Het is niet mogelijk om de identiteit van de provider te ontvangen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:952 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:967 msgid "Your identity is not recognized." msgstr "Uw identiteit werd niet herkend" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:984 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" @@ -10675,11 +13133,11 @@ msgstr "" "Er heeft zich een onverwachte fout voor gedaan bij het aanmelden, gelieve " "een beheerder te contacteren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1014 msgid "Please fill the captcha" msgstr "Gelieve de captcha in te vullen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1003 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1018 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "U hebt uw email adres niet bevestigd" @@ -10687,47 +13145,47 @@ msgstr "U hebt uw email adres niet bevestigd" msgid "The application is going down for maintenance, please logout." msgstr "Het programma sluit af voor onderhoud, gelieve uit te loggen." -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:430 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Bestand de %s gegenereerd" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:447 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:446 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "Bestand gegenereerd : %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:449 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:448 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Fout bij het bewaren van het bestand" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:609 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:608 #, php-format msgid "over-indent at line %s" msgstr "over-indent op lijn %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:616 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:615 #, php-format msgid "bad encoding at line %s" msgstr "slechte codering op lijn %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:622 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:621 #, php-format msgid "bad character at line %s" msgstr "verkeerd teken op lijn %s" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1819 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1976 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3195 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1818 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1975 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3194 msgid "thesaurus:: corbeille" msgstr "Prullemand" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1608 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1616 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "prod::thesaurusTab:dlg:%d record(s) vernieuwd" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1611 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1619 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "prod::thesaurusTab:dlg:teveel (%1$d) records vernieuwen (limit=%2$d)" @@ -10826,16 +13284,16 @@ msgstr "Huidig wachtwoord" msgid "Default basket" msgstr "Standaard mandje" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:596 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:599 msgid "Email addess is not valid" msgstr "Email ades is niet geldig" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:624 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:627 #, php-format msgid "You will now receive notifications at %s" msgstr "U zal nu een melding ontvangen op %s" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:635 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:638 #, php-format msgid "You will no longer receive notifications at %s" msgstr "U zal niet langer meldingen ontvangen op %s" @@ -11064,11 +13522,15 @@ msgstr "Start validatie" msgid "Validation request from %s : '%s'" msgstr "Bevestigingsaanvraag van %s : '%s'" -#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:72 #, php-format msgid "You have %d days to validate the selection." msgstr "U hebt %d dagen om de selectie te valideren." +#: lib/Alchemy/Phrasea/Notification/Mail/MailInfoValidationRequest.php:74 +msgid "You have 1 day to validate the selection." +msgstr "U hebt 1 dag om de selectie te valideren." + #: lib/Alchemy/Phrasea/Notification/Mail/MailRecordsExport.php:21 msgid "Vous avez recu des documents" msgstr "U hebt documenten ontvangen" @@ -11354,6 +13816,3 @@ msgstr "Lijst werd niet gevonden" #: lib/Doctrine/Repositories/UsrListRepository.php:57 msgid "You have not access to this list" msgstr "U hebt geen toegang tot deze lijst" - -#~ msgid "Enable Google Chrome frame" -#~ msgstr "Schakel Google Chrome frame in" diff --git a/locale/phraseanet.pot b/locale/phraseanet.pot index af7f9b2e35..d2b00ffc0c 100644 --- a/locale/phraseanet.pot +++ b/locale/phraseanet.pot @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-25 13:13+0100\n" -"PO-Revision-Date: 2013-09-25 13:13+0100\n" +"POT-Creation-Date: 2013-11-14 14:10+0100\n" +"PO-Revision-Date: 2013-11-14 14:10+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -24,66 +24,70 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 +#: lib/classes/appbox.php:300 lib/classes/appbox.php:385 msgid "Flushing cache" msgstr "" -#: lib/classes/appbox.php:305 +#: lib/classes/appbox.php:306 msgid "Creating new tables" msgstr "" -#: lib/classes/appbox.php:319 +#: lib/classes/appbox.php:320 msgid "Purging directories" msgstr "" -#: lib/classes/appbox.php:342 +#: lib/classes/appbox.php:343 msgid "Copying files" msgstr "" -#: lib/classes/appbox.php:361 +#: lib/classes/appbox.php:362 msgid "Upgrading appbox" msgstr "" -#: lib/classes/appbox.php:369 +#: lib/classes/appbox.php:370 #, php-format msgid "Upgrading %s" msgstr "" -#: lib/classes/appbox.php:377 +#: lib/classes/appbox.php:378 msgid "Post upgrade" msgstr "" -#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 +#: lib/classes/appbox.php:392 lib/classes/appbox.php:394 msgid "" "Your install requires data migration, please execute the following command" msgstr "" -#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 +#: lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "" -#: lib/classes/base.php:287 +#: lib/classes/appbox.php:399 +msgid "Your install might need to build some sub-definitions" +msgstr "" + +#: lib/classes/base.php:288 #, php-format msgid "Updating table %s" msgstr "" -#: lib/classes/base.php:300 lib/classes/base.php:522 lib/classes/base.php:736 -#: lib/classes/base.php:749 +#: lib/classes/base.php:301 lib/classes/base.php:523 lib/classes/base.php:737 +#: lib/classes/base.php:750 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "" -#: lib/classes/base.php:319 +#: lib/classes/base.php:320 #, php-format msgid "Creating table %s" msgstr "" -#: lib/classes/base.php:325 lib/classes/base.php:802 +#: lib/classes/base.php:326 lib/classes/base.php:808 #, php-format msgid "Applying patches on %s" msgstr "" -#: lib/classes/base.php:766 +#: lib/classes/base.php:767 msgid "Looking for patches" msgstr "" @@ -103,58 +107,47 @@ msgid "" msgstr "" #: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:30 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:30 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "" #: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:40 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:40 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "" #: lib/classes/phrasea.php:114 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:50 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:139 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:50 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:139 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "" #: lib/classes/phrasea.php:115 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:60 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:166 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:60 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:166 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "" #: lib/classes/phrasea.php:116 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:70 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:111 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:70 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:111 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "" #: lib/classes/phrasea.php:117 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:80 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:80 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "" #: lib/classes/phrasea.php:118 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:90 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:185 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:90 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 @@ -163,8 +156,7 @@ msgid "admin::monitor: module validation" msgstr "" #: lib/classes/phrasea.php:119 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:225 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:225 #: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "" @@ -196,12 +188,10 @@ msgid "phraseanet::temps:: hier" msgstr "" #: lib/classes/queries.php:168 lib/classes/queries.php:181 -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1402 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:202 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:197 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1402 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:202 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:104 msgid "boutton::chercher" msgstr "" @@ -219,15 +209,15 @@ msgstr "" msgid "Url non valide" msgstr "" -#: lib/classes/API/V1/adapter.php:1100 lib/classes/API/V1/adapter.php:1146 -#: lib/classes/API/V1/adapter.php:1196 lib/classes/API/V1/adapter.php:1220 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: lib/classes/API/V1/adapter.php:1103 lib/classes/API/V1/adapter.php:1149 +#: lib/classes/API/V1/adapter.php:1199 lib/classes/API/V1/adapter.php:1223 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:58 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:860 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:228 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:331 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:53 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:46 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:65 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 @@ -249,7 +239,7 @@ msgstr "" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 @@ -265,11 +255,11 @@ msgstr "" msgid "An error occured" msgstr "" -#: lib/classes/API/V1/adapter.php:1194 +#: lib/classes/API/V1/adapter.php:1197 msgid "Record Not Found" msgstr "" -#: lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1221 msgid "Story Not Found" msgstr "" @@ -299,7 +289,7 @@ msgstr "" #: lib/classes/Bridge/Api/Dailymotion.php:546 #: lib/classes/Bridge/Api/Youtube.php:511 -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:136 +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:136 msgid "En cours d'encodage" msgstr "" @@ -367,7 +357,7 @@ msgid "Photos" msgstr "" #: lib/classes/Bridge/Api/Flickr.php:613 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:43 +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:43 msgid "Photosets" msgstr "" @@ -461,7 +451,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "" -#: lib/classes/caption/record.php:279 +#: lib/classes/caption/record.php:313 msgid "Open the URL in a new window" msgstr "" @@ -489,7 +479,7 @@ msgid "Target Device" msgstr "" #: lib/classes/deprecated/inscript.api.php:193 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:91 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:91 msgid "login::register: acces authorise sur la collection " msgstr "" @@ -499,37 +489,37 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:225 #: lib/classes/deprecated/inscript.api.php:235 #: lib/classes/deprecated/inscript.api.php:245 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:101 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:154 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:202 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:247 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:291 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:336 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:101 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:154 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:202 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:247 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:291 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:336 msgid "login::register::CGU: lire les CGU" msgstr "" #: lib/classes/deprecated/inscript.api.php:203 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:144 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:144 msgid "login::register: acces refuse sur la collection " msgstr "" #: lib/classes/deprecated/inscript.api.php:213 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:191 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:191 msgid "login::register: en attente d'acces sur" msgstr "" #: lib/classes/deprecated/inscript.api.php:223 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:236 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:236 msgid "login::register: acces temporaire sur" msgstr "" #: lib/classes/deprecated/inscript.api.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:281 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:281 msgid "login::register: acces temporaire termine sur " msgstr "" #: lib/classes/deprecated/inscript.api.php:243 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:325 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:325 msgid "login::register: acces supendu sur" msgstr "" @@ -537,8 +527,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:277 #: lib/classes/deprecated/inscript.api.php:355 #: lib/classes/deprecated/inscript.api.php:383 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:367 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:430 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:367 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:430 msgid "" "login::register: L'acces aux bases ci-dessous implique l'acceptation des " "Conditions Generales d'Utilisation (CGU) suivantes" @@ -548,8 +538,8 @@ msgstr "" #: lib/classes/deprecated/inscript.api.php:288 #: lib/classes/deprecated/inscript.api.php:369 #: lib/classes/deprecated/inscript.api.php:395 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:400 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:454 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:400 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:454 msgid "login::register: Faire une demande d'acces" msgstr "" @@ -575,7 +565,7 @@ msgstr "" msgid "charger d'avantages de notifications" msgstr "" -#: lib/classes/eventsmanager/broker.php:302 +#: lib/classes/eventsmanager/broker.php:305 msgid "Notifications globales" msgstr "" @@ -594,39 +584,34 @@ msgid "" msgstr "" #: lib/classes/eventsmanager/notify/autoregister.php:195 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:290 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:671 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:843 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:311 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:163 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:670 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:290 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "" #: lib/classes/eventsmanager/notify/autoregister.php:196 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:684 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:829 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:313 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:176 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:683 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 #: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "" #: lib/classes/eventsmanager/notify/autoregister.php:197 -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:314 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:697 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:857 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:327 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:323 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:189 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:696 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:314 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 msgid "admin::compte-utilisateur email" msgstr "" @@ -663,16 +648,16 @@ msgstr "" msgid "Get a notification when a mail export fails" msgstr "" -#: lib/classes/eventsmanager/notify/feed.php:149 +#: lib/classes/eventsmanager/notify/feed.php:150 #, php-format msgid "%1$s has published %2$s" msgstr "" -#: lib/classes/eventsmanager/notify/feed.php:165 +#: lib/classes/eventsmanager/notify/feed.php:166 msgid "Feeds" msgstr "" -#: lib/classes/eventsmanager/notify/feed.php:174 +#: lib/classes/eventsmanager/notify/feed.php:175 msgid "Receive notification when a publication is available" msgstr "" @@ -682,8 +667,7 @@ msgid "%1$s a passe une %2$scommande%3$s" msgstr "" #: lib/classes/eventsmanager/notify/order.php:161 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:265 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:265 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:265 msgid "Orders manager" msgstr "" @@ -729,7 +713,7 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "" #: lib/classes/eventsmanager/notify/push.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Push" msgstr "" @@ -775,7 +759,7 @@ msgstr "" #: lib/classes/eventsmanager/notify/validationdone.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:31 #: lib/classes/eventsmanager/notify/validationreminder.php:177 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:179 msgid "Validation" msgstr "" @@ -832,14 +816,14 @@ msgid "report:: collections" msgstr "" #: lib/classes/module/report.php:663 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:44 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:83 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:83 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:115 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:259 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:44 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:61 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:143 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:61 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:143 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:83 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:83 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:44 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:115 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:259 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:44 msgid "report:: Connexion" msgstr "" @@ -872,8 +856,8 @@ msgid "report:: date" msgstr "" #: lib/classes/module/report.php:668 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:183 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:287 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:183 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:287 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:312 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:239 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:313 @@ -881,8 +865,8 @@ msgid "report:: fonction" msgstr "" #: lib/classes/module/report.php:669 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:191 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:295 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:191 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:295 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:313 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:240 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:314 @@ -890,8 +874,8 @@ msgid "report:: activite" msgstr "" #: lib/classes/module/report.php:670 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:195 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:299 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:195 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:299 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:314 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:241 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:315 @@ -899,8 +883,8 @@ msgid "report:: pays" msgstr "" #: lib/classes/module/report.php:671 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:187 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:291 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:187 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:291 #: lib/Alchemy/Phrasea/Controller/Report/Informations.php:315 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:242 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:316 @@ -1059,7 +1043,7 @@ msgid "report:: questions" msgstr "" #: lib/classes/module/report/activity.php:213 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:448 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:448 msgid "report:: questions sans reponses" msgstr "" @@ -1095,8 +1079,8 @@ msgstr "" #: lib/classes/module/report/question.php:100 #: lib/classes/module/report/sent.php:120 #: lib/classes/module/report/validate.php:120 -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:50 -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:68 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:50 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:68 msgid "report:: non-renseigne" msgstr "" @@ -1113,8 +1097,8 @@ msgid "report::Connexions" msgstr "" #: lib/classes/module/report/download.php:48 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:48 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:48 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:48 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:48 #: lib/Alchemy/Phrasea/Controller/Report/Root.php:381 msgid "report:: telechargements" msgstr "" @@ -1153,7 +1137,7 @@ msgstr "" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1388 msgid "phraseanet::utilisateur inconnu" msgstr "" @@ -1247,7 +1231,7 @@ msgstr "" #: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 #: lib/classes/task/period/ftpPull.php:226 #: lib/classes/task/period/RecordMover.php:288 -#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/subdef.php:222 #: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "" @@ -1256,7 +1240,7 @@ msgstr "" #: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 #: lib/classes/task/period/ftpPull.php:229 #: lib/classes/task/period/RecordMover.php:291 -#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/subdef.php:225 #: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "" @@ -1455,29 +1439,29 @@ msgstr "" msgid "Log changes" msgstr "" -#: lib/classes/task/period/subdef.php:47 +#: lib/classes/task/period/subdef.php:43 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "" -#: lib/classes/task/period/subdef.php:58 +#: lib/classes/task/period/subdef.php:54 msgid "task::subdef:creation des sous definitions" msgstr "" -#: lib/classes/task/period/subdef.php:233 +#: lib/classes/task/period/subdef.php:229 #, php-format msgid "Number of records to process per batch" msgstr "" -#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/subdef.php:235 #: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "" -#: lib/classes/task/period/subdef.php:245 +#: lib/classes/task/period/subdef.php:241 msgid "Restart the task if memory reaches" msgstr "" -#: lib/classes/task/period/subdef.php:252 +#: lib/classes/task/period/subdef.php:248 msgid "Try to extract embedded thumbnails" msgstr "" @@ -1499,2180 +1483,1175 @@ msgstr "" msgid "task::_common_:records, ou si la memoire depasse" msgstr "" -#: lib/classes/User/Adapter.php:432 +#: lib/classes/User/Adapter.php:440 #, php-format msgid "A user already exists with email addres %s" msgstr "" -#: lib/classes/User/Adapter.php:1369 +#: lib/classes/User/Adapter.php:1382 #, php-format msgid "modele %s" msgstr "" -#: lib/conf.d/_GV_template.inc.php:38 +#: lib/conf.d/_GV_template.php:38 +#: lib/Alchemy/Phrasea/Form/Configuration/MainConfigurationForm.php:27 msgid "HTTP Server" msgstr "" -#: lib/conf.d/_GV_template.inc.php:43 +#: lib/conf.d/_GV_template.php:43 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:34 msgid "Default language" msgstr "" -#: lib/conf.d/_GV_template.inc.php:52 +#: lib/conf.d/_GV_template.php:52 +#: lib/Alchemy/Phrasea/Form/Configuration/HttpServerForm.php:39 msgid "Static URL" msgstr "" -#: lib/conf.d/_GV_template.inc.php:53 +#: lib/conf.d/_GV_template.php:53 msgid "optional" msgstr "" -#: lib/conf.d/_GV_template.inc.php:58 +#: lib/conf.d/_GV_template.php:58 +#: lib/Alchemy/Phrasea/Form/Configuration/MainConfigurationForm.php:28 msgid "Maintenance state" msgstr "" -#: lib/conf.d/_GV_template.inc.php:64 +#: lib/conf.d/_GV_template.php:64 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:31 msgid "Maintenance message" msgstr "" -#: lib/conf.d/_GV_template.inc.php:70 +#: lib/conf.d/_GV_template.php:70 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:36 msgid "Enable maintenance message broadcast" msgstr "" -#: lib/conf.d/_GV_template.inc.php:76 +#: lib/conf.d/_GV_template.php:76 +#: lib/Alchemy/Phrasea/Form/Configuration/MaintenanceForm.php:40 msgid "Log errors" msgstr "" -#: lib/conf.d/_GV_template.inc.php:81 +#: lib/conf.d/_GV_template.php:81 +#: lib/Alchemy/Phrasea/Form/Configuration/MainConfigurationForm.php:29 msgid "Webservices connectivity" msgstr "" -#: lib/conf.d/_GV_template.inc.php:86 +#: lib/conf.d/_GV_template.php:86 +#: lib/Alchemy/Phrasea/Form/Configuration/WebservicesForm.php:24 msgid "Use Google API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:93 +#: lib/conf.d/_GV_template.php:93 +#: lib/Alchemy/Phrasea/Form/Configuration/WebservicesForm.php:28 msgid "Geonames server address" msgstr "" -#: lib/conf.d/_GV_template.inc.php:101 +#: lib/conf.d/_GV_template.php:101 +#: lib/Alchemy/Phrasea/Form/Configuration/WebservicesForm.php:33 msgid "Use recaptcha API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:109 +#: lib/conf.d/_GV_template.php:109 +#: lib/Alchemy/Phrasea/Form/Configuration/WebservicesForm.php:37 msgid "Recaptcha public key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:115 +#: lib/conf.d/_GV_template.php:115 +#: lib/Alchemy/Phrasea/Form/Configuration/WebservicesForm.php:42 msgid "Recaptcha private key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:120 +#: lib/conf.d/_GV_template.php:120 msgid "Youtube connectivity" msgstr "" -#: lib/conf.d/_GV_template.inc.php:125 +#: lib/conf.d/_GV_template.php:125 msgid "Use youtube API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 -#: lib/conf.d/_GV_template.inc.php:181 +#: lib/conf.d/_GV_template.php:126 lib/conf.d/_GV_template.php:157 +#: lib/conf.d/_GV_template.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "" -#: lib/conf.d/_GV_template.inc.php:133 +#: lib/conf.d/_GV_template.php:133 msgid "Youtube public key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:139 +#: lib/conf.d/_GV_template.php:139 msgid "Youtube secret key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:145 +#: lib/conf.d/_GV_template.php:145 msgid "Youtube developer key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:146 +#: lib/conf.d/_GV_template.php:146 #, php-format msgid "See %s" msgstr "" -#: lib/conf.d/_GV_template.inc.php:151 +#: lib/conf.d/_GV_template.php:151 msgid "FlickR connectivity" msgstr "" -#: lib/conf.d/_GV_template.inc.php:156 +#: lib/conf.d/_GV_template.php:156 msgid "Use Flickr API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:164 +#: lib/conf.d/_GV_template.php:164 msgid "Flickr public key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:170 +#: lib/conf.d/_GV_template.php:170 msgid "Flickr secret key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:175 +#: lib/conf.d/_GV_template.php:175 msgid "Dailymotion connectivity" msgstr "" -#: lib/conf.d/_GV_template.inc.php:180 +#: lib/conf.d/_GV_template.php:180 msgid "Use Dailymotion API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:188 +#: lib/conf.d/_GV_template.php:188 msgid "Dailymotion public key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:194 +#: lib/conf.d/_GV_template.php:194 msgid "Dailymotion secret key" msgstr "" -#: lib/conf.d/_GV_template.inc.php:199 +#: lib/conf.d/_GV_template.php:199 msgid "Phraseanet client API" msgstr "" -#: lib/conf.d/_GV_template.inc.php:204 +#: lib/conf.d/_GV_template.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "" -#: lib/conf.d/_GV_template.inc.php:205 +#: lib/conf.d/_GV_template.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" msgstr "" -#: lib/conf.d/_GV_template.inc.php:212 +#: lib/conf.d/_GV_template.php:212 msgid "Authorize Microsoft Office Plugin to connect." msgstr "" -#: lib/conf.d/_GV_template.inc.php:218 +#: lib/conf.d/_GV_template.php:218 msgid "Documents storage" msgstr "" -#: lib/conf.d/_GV_template.inc.php:224 +#: lib/conf.d/_GV_template.php:224 msgid "Default path for datas" msgstr "" -#: lib/conf.d/_GV_template.inc.php:230 +#: lib/conf.d/_GV_template.php:230 msgid "Executables settings" msgstr "" -#: lib/conf.d/_GV_template.inc.php:235 +#: lib/conf.d/_GV_template.php:235 msgid "Enable H264 stream mode" msgstr "" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" msgstr "" -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.php:243 msgid "Auth_token mount point" msgstr "" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.php:250 msgid "Auth_token directory path" msgstr "" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.php:256 msgid "Auth_token passphrase" msgstr "" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.php:257 msgid "Defined in Apache configuration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:263 +#: lib/conf.d/_GV_template.php:263 msgid "php.ini path" msgstr "" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.php:264 msgid "Empty if not used" msgstr "" -#: lib/conf.d/_GV_template.inc.php:271 +#: lib/conf.d/_GV_template.php:271 msgid "Imagine driver" msgstr "" -#: lib/conf.d/_GV_template.inc.php:283 +#: lib/conf.d/_GV_template.php:283 msgid "Number of threads to use for FFMpeg" msgstr "" -#: lib/conf.d/_GV_template.inc.php:289 +#: lib/conf.d/_GV_template.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "" -#: lib/conf.d/_GV_template.inc.php:294 +#: lib/conf.d/_GV_template.php:294 msgid "Main configuration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:299 +#: lib/conf.d/_GV_template.php:299 msgid "Admin email" msgstr "" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.php:305 msgid "Display the name of databases and collections" msgstr "" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.php:312 msgid "Choose the title of the document to export" msgstr "" -#: lib/conf.d/_GV_template.inc.php:319 +#: lib/conf.d/_GV_template.php:319 msgid "Default export title" msgstr "" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.php:322 msgid "Document title" msgstr "" -#: lib/conf.d/_GV_template.inc.php:323 +#: lib/conf.d/_GV_template.php:323 msgid "Original name" msgstr "" -#: lib/conf.d/_GV_template.inc.php:329 +#: lib/conf.d/_GV_template.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "" -#: lib/conf.d/_GV_template.inc.php:331 +#: lib/conf.d/_GV_template.php:331 msgid "Disabled" msgstr "" -#: lib/conf.d/_GV_template.inc.php:332 +#: lib/conf.d/_GV_template.php:332 msgid "Publishers" msgstr "" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.php:333 msgid "Enabled" msgstr "" -#: lib/conf.d/_GV_template.inc.php:340 +#: lib/conf.d/_GV_template.php:340 msgid "Homepage" msgstr "" -#: lib/conf.d/_GV_template.inc.php:346 +#: lib/conf.d/_GV_template.php:346 msgid "Homepage slideshow" msgstr "" -#: lib/conf.d/_GV_template.inc.php:349 +#: lib/conf.d/_GV_template.php:349 msgid "Single image" msgstr "" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.php:350 msgid "Slide show" msgstr "" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.php:352 +msgid "Carousel" +msgstr "" + +#: lib/conf.d/_GV_template.php:353 +msgid "Gallery" +msgstr "" + +#: lib/conf.d/_GV_template.php:359 msgid "Search engine" msgstr "" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.php:365 msgid "Minimum number of letters before truncation" msgstr "" -#: lib/conf.d/_GV_template.inc.php:364 +#: lib/conf.d/_GV_template.php:366 msgid "Used in search engine" msgstr "" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.php:372 msgid "Default query" msgstr "" -#: lib/conf.d/_GV_template.inc.php:376 +#: lib/conf.d/_GV_template.php:378 msgid "Default searched type" msgstr "" -#: lib/conf.d/_GV_template.inc.php:377 +#: lib/conf.d/_GV_template.php:379 msgid "Used when opening the application" msgstr "" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.php:381 msgid "Documents" msgstr "" -#: lib/conf.d/_GV_template.inc.php:380 +#: lib/conf.d/_GV_template.php:382 msgid "Stories" msgstr "" -#: lib/conf.d/_GV_template.inc.php:386 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:312 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 +#: lib/conf.d/_GV_template.php:388 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:312 msgid "Report" msgstr "" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.php:394 msgid "Anonymous report" msgstr "" -#: lib/conf.d/_GV_template.inc.php:393 +#: lib/conf.d/_GV_template.php:395 msgid "Hide information about users" msgstr "" -#: lib/conf.d/_GV_template.inc.php:399 +#: lib/conf.d/_GV_template.php:401 msgid "Additionnal modules" msgstr "" -#: lib/conf.d/_GV_template.inc.php:405 +#: lib/conf.d/_GV_template.php:407 msgid "Enable thesaurus" msgstr "" -#: lib/conf.d/_GV_template.inc.php:410 +#: lib/conf.d/_GV_template.php:412 msgid "Enable multi-doc mode" msgstr "" -#: lib/conf.d/_GV_template.inc.php:415 +#: lib/conf.d/_GV_template.php:417 msgid "Enable HD substitution" msgstr "" -#: lib/conf.d/_GV_template.inc.php:420 +#: lib/conf.d/_GV_template.php:422 msgid "Enable thumbnail substitution" msgstr "" -#: lib/conf.d/_GV_template.inc.php:426 +#: lib/conf.d/_GV_template.php:428 msgid "Emails" msgstr "" -#: lib/conf.d/_GV_template.inc.php:431 +#: lib/conf.d/_GV_template.php:433 msgid "Default mail sender address" msgstr "" -#: lib/conf.d/_GV_template.inc.php:437 +#: lib/conf.d/_GV_template.php:439 msgid "Prefix for notification emails" msgstr "" -#: lib/conf.d/_GV_template.inc.php:443 +#: lib/conf.d/_GV_template.php:445 msgid "Use a SMTP server" msgstr "" -#: lib/conf.d/_GV_template.inc.php:449 +#: lib/conf.d/_GV_template.php:451 msgid "Enable SMTP authentication" msgstr "" -#: lib/conf.d/_GV_template.inc.php:455 +#: lib/conf.d/_GV_template.php:457 msgid "SMTP host" msgstr "" -#: lib/conf.d/_GV_template.inc.php:461 +#: lib/conf.d/_GV_template.php:463 msgid "SMTP port" msgstr "" -#: lib/conf.d/_GV_template.inc.php:467 +#: lib/conf.d/_GV_template.php:469 msgid "SMTP encryption" msgstr "" -#: lib/conf.d/_GV_template.inc.php:470 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 +#: lib/conf.d/_GV_template.php:472 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:171 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:466 msgid "None" msgstr "" -#: lib/conf.d/_GV_template.inc.php:478 +#: lib/conf.d/_GV_template.php:480 msgid "SMTP user" msgstr "" -#: lib/conf.d/_GV_template.inc.php:484 +#: lib/conf.d/_GV_template.php:486 msgid "SMTP password" msgstr "" -#: lib/conf.d/_GV_template.inc.php:489 +#: lib/conf.d/_GV_template.php:491 msgid "FTP Export" msgstr "" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.php:496 msgid "Enable FTP export" msgstr "" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.php:497 msgid "Available in multi-export tab" msgstr "" -#: lib/conf.d/_GV_template.inc.php:501 +#: lib/conf.d/_GV_template.php:503 msgid "Enable FTP for users" msgstr "" -#: lib/conf.d/_GV_template.inc.php:502 +#: lib/conf.d/_GV_template.php:504 msgid "By default it is available for admins" msgstr "" -#: lib/conf.d/_GV_template.inc.php:507 +#: lib/conf.d/_GV_template.php:509 msgid "Client" msgstr "" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.php:514 msgid "Maximum megabytes allowed for download" msgstr "" -#: lib/conf.d/_GV_template.inc.php:513 +#: lib/conf.d/_GV_template.php:515 msgid "If request is bigger, then mail is still available" msgstr "" -#: lib/conf.d/_GV_template.inc.php:519 +#: lib/conf.d/_GV_template.php:521 msgid "Search tab position" msgstr "" -#: lib/conf.d/_GV_template.inc.php:525 +#: lib/conf.d/_GV_template.php:527 msgid "Advanced search tab position" msgstr "" -#: lib/conf.d/_GV_template.inc.php:531 +#: lib/conf.d/_GV_template.php:533 msgid "Topics tab position" msgstr "" -#: lib/conf.d/_GV_template.inc.php:537 +#: lib/conf.d/_GV_template.php:539 msgid "Active tab position" msgstr "" -#: lib/conf.d/_GV_template.inc.php:543 +#: lib/conf.d/_GV_template.php:545 msgid "Topics display mode" msgstr "" -#: lib/conf.d/_GV_template.inc.php:545 +#: lib/conf.d/_GV_template.php:547 msgid "Trees" msgstr "" -#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.php:548 lib/conf.d/_GV_template.php:570 msgid "Drop-down" msgstr "" -#: lib/conf.d/_GV_template.inc.php:553 +#: lib/conf.d/_GV_template.php:555 msgid "Enable roll-over on stories" msgstr "" -#: lib/conf.d/_GV_template.inc.php:559 +#: lib/conf.d/_GV_template.php:561 msgid "Enable roll-over on basket elements" msgstr "" -#: lib/conf.d/_GV_template.inc.php:565 +#: lib/conf.d/_GV_template.php:567 msgid "Collections display mode" msgstr "" -#: lib/conf.d/_GV_template.inc.php:569 +#: lib/conf.d/_GV_template.php:571 msgid "Check-box" msgstr "" -#: lib/conf.d/_GV_template.inc.php:575 +#: lib/conf.d/_GV_template.php:577 msgid "Display the total size of the document basket" msgstr "" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.php:583 msgid "Display proposals tab" msgstr "" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.php:589 msgid "Require authentication to download documents" msgstr "" -#: lib/conf.d/_GV_template.inc.php:588 +#: lib/conf.d/_GV_template.php:590 msgid "Used for guest account" msgstr "" -#: lib/conf.d/_GV_template.inc.php:594 +#: lib/conf.d/_GV_template.php:596 msgid "Users must accept Terms of Use for each export" msgstr "" -#: lib/conf.d/_GV_template.inc.php:599 +#: lib/conf.d/_GV_template.php:601 msgid "Registration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.php:606 msgid "Auto select databases" msgstr "" -#: lib/conf.d/_GV_template.inc.php:605 +#: lib/conf.d/_GV_template.php:607 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." msgstr "" -#: lib/conf.d/_GV_template.inc.php:611 +#: lib/conf.d/_GV_template.php:613 msgid "Enable auto registration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:616 +#: lib/conf.d/_GV_template.php:618 msgid "Push configuration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.php:623 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" -#: lib/conf.d/_GV_template.inc.php:627 +#: lib/conf.d/_GV_template.php:629 msgid "Default validation links duration" msgstr "" -#: lib/conf.d/_GV_template.inc.php:628 +#: lib/conf.d/_GV_template.php:630 msgid "If set to 0, duration is permanent" msgstr "" -#: lib/conf.d/_GV_template.inc.php:633 +#: lib/conf.d/_GV_template.php:635 msgid "Robot indexing" msgstr "" -#: lib/conf.d/_GV_template.inc.php:638 +#: lib/conf.d/_GV_template.php:640 msgid "Application title" msgstr "" -#: lib/conf.d/_GV_template.inc.php:644 +#: lib/conf.d/_GV_template.php:646 msgid "Keywords used for indexing purposes by search engines robots" msgstr "" -#: lib/conf.d/_GV_template.inc.php:650 +#: lib/conf.d/_GV_template.php:652 msgid "Application description" msgstr "" -#: lib/conf.d/_GV_template.inc.php:656 +#: lib/conf.d/_GV_template.php:658 msgid "Google Analytics identifier" msgstr "" -#: lib/conf.d/_GV_template.inc.php:662 +#: lib/conf.d/_GV_template.php:664 msgid "Allow the website to be indexed by search engines like Google" msgstr "" -#: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:192 -#: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:118 -#: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:120 -#: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:25 -#: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:120 -msgid "preview:: demarrer le diaporama" +#: tmp/cache_twig/00/8b/0fb28f8bb8d0a14368015c09b484797bfd569c40fc293a81c2c9a759de95.php:77 +msgid "No matches found" msgstr "" -#: tmp/cache_twig/00/19/dbdcbe9e5b58e7afb06d68cb13ac.php:196 -#: tmp/cache_twig/12/b7/fc0743532044238ae4105fba51cd.php:122 -#: tmp/cache_twig/44/f6/d98144b04cf4782cc85d391b3ddb.php:124 -#: tmp/cache_twig/6c/9b/f13ef4011d43a7b962dadede432b.php:29 -#: tmp/cache_twig/91/d7/5e7a5d3ed2101de8c6e68b3a9fa5.php:124 -msgid "preview:: arreter le diaporama" +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:29 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:29 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:29 +msgid "%nb_view% vue" msgstr "" -#: tmp/cache_twig/00/84/82c7aeb7d1312e00c8356f84577f.php:23 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:79 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:23 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:79 -msgid "Lists" +#: tmp/cache_twig/01/6f/427ea91f29358849d26007c808f18bd689b1fd3af42dfe296677b8775a76.php:35 +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:35 +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:35 +msgid "%nb_view% vues" msgstr "" -#: tmp/cache_twig/00/84/82c7aeb7d1312e00c8356f84577f.php:32 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:319 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:406 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:410 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:406 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:410 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:98 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:32 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:113 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:319 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:98 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:113 -msgid "Add" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:24 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:25 +msgid "Reordonner automatiquement" msgstr "" -#: tmp/cache_twig/00/84/82c7aeb7d1312e00c8356f84577f.php:41 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:41 -msgid "Refresh" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:29 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:30 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:475 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:605 +msgid "Choisir" msgstr "" -#: tmp/cache_twig/00/84/82c7aeb7d1312e00c8356f84577f.php:77 -#: tmp/cache_twig/8d/17/3871550c7ba98ce8229d824fd576.php:77 -msgid "(%length%)" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:33 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:34 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:687 +msgid "Re-initialiser" msgstr "" -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:22 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:95 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:22 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:95 -msgid "admin::utilisateurs: utilisateurs connectes" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:37 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:133 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:67 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:38 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:49 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:44 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:139 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:67 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:67 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:119 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:95 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:49 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:95 +msgid "Titre" msgstr "" -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:104 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:104 -msgid "admin::monitor: total des utilisateurs uniques : " +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:42 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:379 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:385 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:513 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:519 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:43 +msgid "Re-ordonner" msgstr "" -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:125 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:125 -msgid "admin::monitor: utilisateur" +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:46 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:47 +msgid "Inverser" msgstr "" -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:129 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:129 -msgid "admin::monitor: modules" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:133 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1524 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 -msgid "phraseanet:: adresse" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:137 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:137 -msgid "admin::monitor: date de connexion" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:141 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:141 -msgid "admin::monitor: dernier access" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:298 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:723 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:306 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:710 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:322 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:322 -msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " -msgstr "" - -#: tmp/cache_twig/01/9a/62ecbea34e32a1d7306173f48b97.php:358 -#: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:358 -msgid "Session persistente" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:36 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:36 -msgid "List Name" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:44 -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:120 -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:102 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:44 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:99 -msgid "Save" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:65 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:65 -msgid "Share the list" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:70 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:70 -msgid "Set sharing permission" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:85 -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:415 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:419 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:85 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 -msgid "Delete" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:107 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:273 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:107 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:273 -msgid "%length% peoples" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:113 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 -msgid "Edit" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:155 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:155 -msgid "View" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 -msgid "Push::filter on login" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:167 -msgid "Push::filter on name" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 -msgid "Push::filter on countries" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 -msgid "Push::filter on companies" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 -msgid "Push::filter on emails" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:191 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:191 -msgid "Push::filter on templates" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 -msgid "Push::filter starts" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:211 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:211 -msgid "Activite" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:217 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:217 -msgid "Template" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:223 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:75 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:89 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:223 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:75 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:89 -msgid "Company" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:229 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:125 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:229 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:125 -msgid "Country" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:235 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:235 -msgid "Position" -msgstr "" - -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:244 -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:269 -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:294 -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:319 -#: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:344 -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:42 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:244 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:269 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:294 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:319 -#: tmp/cache_twig/a1/8a/2aa16d0527547d7dd0f54c15ced7.php:344 -msgid "All" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:36 -#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 -msgid "The records have been properly ordered" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:42 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:51 -#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 -msgid "Order has been sent" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:48 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:57 -#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 -msgid "Order has been denied" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:61 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:70 -msgid "An error occured, please retry or contact an admin if problem persists" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:75 -msgid "Page %page%" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:84 -msgid "Utilisateur" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:88 -msgid "Date de demande" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:92 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:104 -msgid "Deadline" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:96 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:114 -msgid "Utilisation prevue" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:100 -msgid "Statut" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:139 -msgid "Aucune" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:175 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:281 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:281 -msgid "Previous" -msgstr "" - -#: tmp/cache_twig/02/24/2d3b087a8b978063ff72d604efb7.php:188 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:298 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:298 -msgid "Next" -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:213 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:213 -msgid "You are using an outdated browser." -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:217 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:217 -msgid "" -"Please upgrade %browserLink% or activate %GCFLink% to improve your " -"experience." -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:237 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:237 -msgid "" -"Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:243 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:243 -msgid "" -"Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " -"Frame." -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:250 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:250 -msgid "Installer Google Chrome" -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:256 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:256 -msgid "Installer Google Chrome Frame" -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:330 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:330 -#: tmp/cache_twig/74/40/b2543df43567118d10e9074b1175.php:25 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 -msgid "Home" -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:336 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:336 -msgid "Help" -msgstr "" - -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:370 -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:370 -#: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 -msgid "Terms of use" -msgstr "" - -#: tmp/cache_twig/02/c8/9619136fa97ec62dab06dc28c380.php:30 -#: tmp/cache_twig/a0/39/2ec3a6695ef72844b326de3a74ea.php:30 -msgid "Guest access" -msgstr "" - -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:35 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:35 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:35 -msgid "Deplacement %n_element% elements" -msgstr "" - -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:51 -msgid "Which photosets you want to put you %number% photos into ?" -msgstr "" - -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 -#: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1950 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:462 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:485 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:74 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:171 -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:42 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:71 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:115 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:168 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:245 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:180 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:734 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:117 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:131 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:231 -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:120 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:125 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:181 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:178 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:127 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:453 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 +#: tmp/cache_twig/02/11/4c9cec9b59bd95127e6f35d1fd3ee8c94845a0eb217f0e00f89181f68010.php:117 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:990 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:221 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:67 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:67 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:74 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:195 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:125 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:231 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:180 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:134 +#: tmp/cache_twig/36/9f/7a14603fc691531b53f92c6355f2534419a3bac608cddb0f96a521e8da07.php:71 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:103 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:734 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:78 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:233 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:103 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:74 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:74 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:63 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:127 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:109 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:152 +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:42 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:453 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:180 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:103 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:181 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:75 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:503 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:103 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:74 +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:480 +#: tmp/cache_twig/b7/01/ac2e3db2f9ba29baaa8de97bd6bf202362051d3b5262c049c62f87947b66.php:81 +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:76 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:115 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:315 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:509 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:129 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:178 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1946 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:131 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:168 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:245 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:462 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:485 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:305 +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:120 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:74 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:171 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:160 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:113 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:137 +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:111 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:74 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 msgid "boutton::valider" msgstr "" -#: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:107 -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:107 -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:78 -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:78 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:119 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:421 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 -msgid "boutton::retour" +#: tmp/cache_twig/02/cd/7590eeab80480f95c0887ddc6417fc86f51cab505909c6259f10f11a2e95.php:61 +#: tmp/cache_twig/e7/33/fe2890c3af702e61833b0a50667171c7bc225a50e195eb486fba6917e751.php:55 +msgid "%nb_records% records" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:28 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:381 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1084 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2117 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 -#: tmp/cache_twig/8c/3a/fd98b01fe80e00a6b511832ccc0e.php:88 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 -msgid "action : exporter" +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:120 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:192 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:25 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:120 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:118 +msgid "preview:: demarrer le diaporama" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1094 -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 -#: tmp/cache_twig/8c/3a/fd98b01fe80e00a6b511832ccc0e.php:105 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:105 -msgid "action : print" +#: tmp/cache_twig/03/51/df56bd3679e5f8f6579b9b04f923f77d885c5ced29c579533bbd0b17d247.php:124 +#: tmp/cache_twig/d0/69/d8dac1879ab02b301a72528a69081bc570eb181119f6744531200561874e.php:196 +#: tmp/cache_twig/f2/ab/58b14289f88bd59b2a688d52785cd6fc9fd53fbd41adca548932dd62afd9.php:29 +#: tmp/cache_twig/f7/ff/ebd9be955ec9a5b7179731918e12c8658db6470f3ccc636120a8f0bc067a.php:124 +#: tmp/cache_twig/fb/5a/fe8f5c2e179c999d09f1e55d24058f2446a32f1b82876e5435cd11d73c4c.php:122 +msgid "preview:: arreter le diaporama" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 -#: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 -msgid "action : editer" +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:35 +#: tmp/cache_twig/04/62/f09dbfa36d844dc6a07321c00f3e70f73c8380843781aa7170e7746b0b02.php:95 +msgid "report:: activite par jour" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1131 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 -msgid "action : status" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:38 +#: tmp/cache_twig/0d/42/84cdb60523237cead02e696fa83f712f4cb15560a735101326c7be1a5cbd.php:36 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:36 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 +msgid "Renew password" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1149 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 -msgid "action : collection" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:51 +#: tmp/cache_twig/0d/42/84cdb60523237cead02e696fa83f712f4cb15560a735101326c7be1a5cbd.php:49 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:49 +msgid "Choose a new password" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1328 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1373 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 -msgid "action : push" +#: tmp/cache_twig/05/3a/7fb3ccf4cb925f0c08169b09ed9134ff906a907267e88d51c957387ed777.php:102 +#: tmp/cache_twig/0d/42/84cdb60523237cead02e696fa83f712f4cb15560a735101326c7be1a5cbd.php:99 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:44 +#: tmp/cache_twig/88/db/931912f5f014f8a748629e9e45e5ea5366c13a05bf87520f92b0ef00057e.php:99 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:120 +msgid "Save" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1338 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1383 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 -msgid "Feedback" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:27 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:27 +msgid "thesaurus:: Lier la branche de thesaurus" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1348 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1398 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2108 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 -msgid "action : bridge" +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:48 +msgid "thesaurus:: suppression du lien du champ %field%" msgstr "" -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1358 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1408 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 -msgid "action : publier" -msgstr "" - -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1428 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 -msgid "action : outils" -msgstr "" - -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1444 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:370 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:370 -msgid "action : supprimer" -msgstr "" - -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:147 -msgid "Certaines donnees du reportage ont change" -msgstr "" - -#: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:152 -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:145 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:49 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:47 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:62 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:49 -msgid "rafraichir" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:69 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:69 -msgid "element(s)" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:111 -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:115 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:111 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:115 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 -msgid "User contribute to the feedback" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:122 -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:126 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:122 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:126 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 -msgid "User can see others choices" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:133 -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:137 -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:279 -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:283 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 -msgid "User can download HD" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:157 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "New list name ?" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:167 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:167 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Are you sure you want to delete this list ?" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:177 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:177 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "Time for feedback (days)" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:227 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:86 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Name" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:234 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Message" -msgstr "" - -#: tmp/cache_twig/03/fa/cff088ff0fda41fab80f17edc1bf.php:243 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Accuse de reception" -msgstr "" - -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:27 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:238 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:26 -msgid "VALIDATION" -msgstr "" - -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:33 -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:265 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:32 -msgid "lightbox::recaptitulatif" -msgstr "" - -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:129 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:123 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:100 -msgid "validation:: OUI" -msgstr "" - -#: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 -#: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 -msgid "validation:: NON" -msgstr "" - -#: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:51 -#: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:51 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 -msgid "admin:: demandes en cours" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 -msgid "Requests for the application registrations were recorded successfully" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -msgid "admin:: refuser l'acces" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 -msgid "admin:: watermarquer les documents" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 -msgid "Informations" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 -msgid "admin::collection" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 -msgid "Models" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1554 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:736 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:749 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 -msgid "admin::compte-utilisateur adresse" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 -msgid "admin:: appliquer le modele" -msgstr "" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 -msgid "No application for registration has been recorded" -msgstr "" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -msgid "%nb_view% vue" -msgstr "" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 -msgid "%nb_view% vues" -msgstr "" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 -msgid "%nb_rating% like" -msgstr "" - -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 -msgid "%nb_rating% likes" -msgstr "" - -#: tmp/cache_twig/09/9c/551ba0cd6c00fc8ee4b7b1363b70.php:26 -#: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 -msgid "No account yet?" -msgstr "" - -#: tmp/cache_twig/09/9c/551ba0cd6c00fc8ee4b7b1363b70.php:36 -#: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:36 -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:35 -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:36 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:38 -msgid "Register" -msgstr "" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:169 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:154 -msgid "notice" -msgstr "" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:275 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:251 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:78 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:148 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:73 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:71 -msgid "Validations" -msgstr "" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:308 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:284 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:88 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:216 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:199 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:197 -msgid "Paniers" -msgstr "" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:344 -#: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:318 -#: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:202 -#: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:200 -msgid "boutton::telecharger tous les documents" -msgstr "" - -#: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:391 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:43 -#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 -msgid "Do you want to send your report ?" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:36 -msgid "Type texte" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:42 -msgid "Type nombre" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:48 -msgid "Type date" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:67 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:96 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:160 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:96 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:160 -msgid "Source" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:82 -msgid "Ce champ n'est pas indexe" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:94 -msgid "Ce champ est multivalue" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:106 -msgid "Ce champ est en lecture seule" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:118 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:130 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:142 -msgid "Ce champ est requis" -msgstr "" - -#: tmp/cache_twig/0a/16/2b51aaace8d11940e2d57dee0c62.php:160 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:63 -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:81 -msgid "Par %author%" -msgstr "" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:77 -msgid "boutton::editer" -msgstr "" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:86 -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:172 -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1535 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:314 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:73 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1535 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:73 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:73 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:248 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:486 -msgid "boutton::supprimer" -msgstr "" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:117 -msgid "Derniere mise a jour le %updated_on%" -msgstr "" - -#: tmp/cache_twig/0a/e5/900a822f42b734cb9d6d1c465d09.php:135 -msgid "dans %feed_name%" -msgstr "" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:35 -msgid "Suppression de %n_element% photosets" -msgstr "" - -#: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:51 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:66 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:81 msgid "" -"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" msgstr "" -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:81 +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:96 +msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." +msgstr "" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:110 msgid "" -"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " -"box %appbox%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:87 -msgid "report::Edition des meta-donnees" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:99 -msgid "report::Changement de collection vers : %coll_name%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:105 -msgid "report::Edition des status" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:114 -msgid "report::Impression des formats : %format%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:123 -msgid "report::Substitution de %dest%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:132 -msgid "report::Publication de %dest%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:141 -msgid "report::Telechargement de %dest%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:153 -msgid "Envoi par mail a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:165 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:171 -msgid "report::supression du document" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:177 -msgid "report::ajout du documentt" -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:183 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "" - -#: tmp/cache_twig/0c/1c/0c9464ed9e2ccb76556c944bfc1f.php:200 -msgid "report:: par %user_infos%" -msgstr "" - -#: tmp/cache_twig/0e/16/5852fb864745e5c5d7b98cf627e2.php:25 -msgid "" -"Le connecteur API requis n'est pas configure correctement, veuillez " -"contacter un administrateur" -msgstr "" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 -msgid "Acces" -msgstr "" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 -msgid "Sessions" -msgstr "" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 -msgid "Applications" -msgstr "" - -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 -msgid "Developpeur" -msgstr "" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:35 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:35 -msgid "Suppression de %n_element% videos" -msgstr "" - -#: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:51 -#: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:51 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 -msgid "Rights" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 -msgid "Infos" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 -msgid "Apply a template" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 -msgid "boutton::choisir" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 -msgid "Delete all users rights" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 -msgid "Allowed to publish" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 -msgid "Manage Thesaurus" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 -msgid "Manage Database" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 -msgid "Manage DB fields" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 -msgid "Access" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 -msgid "Active" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 -msgid "Allowed to add in basket" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 -msgid "Access to preview" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 -msgid "Remove watermark" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 -msgid "Access to HD" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 -msgid "Allowed to order" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 -msgid "Set download quotas" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 -msgid "Set time restrictions" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 -msgid "Set statuses restrictions" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:656 -msgid "Allowed to add" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:665 -msgid "Allowed to edit" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:674 -msgid "Allowed to change statuses" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:683 -msgid "Allowed to delete" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:692 -msgid "Access to image tools" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:701 -msgid "Manage users" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:710 -msgid "Allowed to access report" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:719 -msgid "Allowed to push" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:728 -msgid "Manage collection" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:737 -msgid "Manage values lists" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 -msgid "admin::compte-utilisateur sexe" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:646 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:654 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:662 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:762 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:775 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:788 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 -msgid "admin::compte-utilisateur fax" -msgstr "" - -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 -msgid "Are you sure you want to reset rights?" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 -msgid "No results" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 -msgid "1 result" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:43 -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:294 -msgid "%Total% results" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:116 -msgid "Delete basket" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:191 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:93 -msgid "Received from %user_name%" -msgstr "" - -#: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:242 -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:144 -msgid "Sent for validation to %list_participants%" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:40 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:40 -msgid "Grant rights" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:51 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:51 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:59 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:59 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:70 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:70 -msgid "HD Download" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:85 -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:452 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:85 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:452 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:93 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:151 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 -msgid "Users" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:156 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:156 -msgid "Select a user in the list" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:163 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:163 -msgid "or" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:168 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:168 -msgid "Add user" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:252 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:252 -msgid "and %n% more peoples" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:275 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:275 -msgid "" -"Please consider send this push to the following users : %recommendation%" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:281 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:281 -msgid "" -"Please consider send this validation to the following users : %recommendation" -"%" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:293 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:293 -msgid "Users suggestion" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:340 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:340 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:346 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:346 -msgid "" -"Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:367 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:367 -msgid "Select all" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:371 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:371 -msgid "Deselect all" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:312 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:419 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:437 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:437 -msgid "Back to Push" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:443 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:443 -msgid "Back to Feedback" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:470 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:470 -msgid "Welcome to the ListManager !" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:479 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:479 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" - -#: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:488 -#: tmp/cache_twig/b7/ef/d6c74951a7405d171ab69c14e7d6.php:488 -msgid "Select a list on the left and edit it !" -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:34 -msgid "You do not have rights to remove all selected documents. Are you sure ?" -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:53 -msgid "These records will be definitely deleted and can not be recovered" -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:63 -msgid "Also delete records that rely on groupings." -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:117 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:102 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 -msgid "Cancel" -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:150 -msgid "No document selected" -msgstr "" - -#: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:159 -msgid "You do not have rights to remove selected documents" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:31 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:35 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:31 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:35 -msgid "Empty quarantine" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:64 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:64 -msgid "No document in quarantine" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:73 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:73 -msgid "You do not have enough rights to access quarantine" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:135 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:135 -msgid "" -"Empty quarantine will remove all items, are you sure you want to continue ?" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:342 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:342 -msgid "Last uploaded version" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:354 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:354 -msgid "Filename" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:360 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:360 -msgid "Date" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:374 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:374 -msgid "Uploaded by : %username%" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:381 -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 -msgid "Collection" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:427 -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:431 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 -msgid "Substitute" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:466 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 -msgid "A record matches the unique identifier :" -msgstr "" - -#: tmp/cache_twig/16/38/56d91fe0225e06ee66dc91080354.php:472 -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 -msgid "%record_count% records match the unique identifier :" -msgstr "" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:27 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:27 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:27 -msgid "Creer" -msgstr "" - -#: tmp/cache_twig/16/8c/ac058b7eaae25dd868b8141bd001.php:38 -#: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:38 -#: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:38 -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:58 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:58 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:58 -msgid "Actions" -msgstr "" - -#: tmp/cache_twig/18/56/0f2f309654a0797ee7def6a11bdb.php:54 -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:57 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:57 -#: tmp/cache_twig/fc/62/f98ef476853fc94b47c39b38e3fc.php:54 -msgid "Voulez-vous dire %link% ?" -msgstr "" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:34 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:46 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:45 -msgid "report:: Du (date)" -msgstr "" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:44 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:56 -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:57 -msgid "report:: Au (date)" -msgstr "" - -#: tmp/cache_twig/19/38/34698e70ca5987616cac2ed11cd8.php:76 -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:40 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:40 -#: tmp/cache_twig/9c/f5/03c8dfd5290eafe458549db863ba.php:32 -#: tmp/cache_twig/ee/cf/4405efc5408b8dbf4ce47da0bb73.php:32 -msgid "report:: Dashboard" -msgstr "" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:27 -msgid "validation:: votre note" -msgstr "" - -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:74 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2023 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:516 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:524 -#: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:54 -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 +"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" +msgstr "" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:125 +msgid "thesaurus:: reindexer tous les enregistrements" +msgstr "" + +#: tmp/cache_twig/05/4e/bb8944f66a030f9a0a37bebc2ff228290f556f251629db757beb623d7f5f.php:135 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:79 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:79 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:968 +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:283 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:43 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2019 +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:74 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:54 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:516 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:524 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:196 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:225 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:274 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:56 msgid "boutton::fermer" msgstr "" -#: tmp/cache_twig/19/fd/0221a3ecee4f656fba13c301bca2.php:83 -msgid "boutton::enregistrer" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:69 +msgid "Rights" msgstr "" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 -msgid "Reorder collections" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:79 +msgid "Infos" msgstr "" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 -msgid "admin::base:collorder: monter" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:111 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:89 +msgid "Reglages:: reglages d acces guest" msgstr "" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 -msgid "admin::base:collorder: descendre" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:117 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:97 +msgid "Reglages:: reglages d inscitpition automatisee" msgstr "" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:129 +msgid "Edition des droits de %display_name%" msgstr "" -#: tmp/cache_twig/1a/ce/1f3b74665a2429657a253680d601.php:55 -#: tmp/cache_twig/e4/ae/bf62854dee4df77ed0000aa85a37.php:61 -msgid "%nb_records% records" +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:141 +msgid "Edition des droits de %number% utilisateurs" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:35 +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:150 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:209 +msgid "Apply a template" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:155 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:214 +msgid "boutton::choisir" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:177 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:249 +msgid "Delete all users rights" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:461 +msgid "Allowed to publish" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:470 +msgid "Manage Thesaurus" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:479 +msgid "Manage Database" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:488 +msgid "Manage DB fields" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:509 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:113 +msgid "Access" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:518 +msgid "Active" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:527 +msgid "Allowed to add in basket" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:536 +msgid "Access to preview" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:545 +msgid "Remove watermark" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:554 +msgid "Access to HD" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:563 +msgid "Allowed to order" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:572 +msgid "Set download quotas" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:599 +msgid "Set time restrictions" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:626 +msgid "Set statuses restrictions" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:656 +msgid "Allowed to add" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:665 +msgid "Allowed to edit" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:674 +msgid "Allowed to change statuses" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:683 +msgid "Allowed to delete" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:692 +msgid "Access to image tools" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:701 +msgid "Manage users" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:710 +msgid "Allowed to access report" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:719 +msgid "Allowed to push" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:728 +msgid "Manage collection" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:737 +msgid "Manage values lists" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:779 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:279 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:67 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:303 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:112 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:105 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:429 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1558 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 +msgid "admin::compte-utilisateur identifiant" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:793 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 +msgid "admin::compte-utilisateur sexe" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:804 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:131 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:645 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 +msgid "admin::compte-utilisateur:sexe: mademoiselle" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:812 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:142 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:653 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 +msgid "admin::compte-utilisateur:sexe: madame" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:820 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:153 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:661 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 +msgid "admin::compte-utilisateur:sexe: monsieur" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:871 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:363 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:220 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:748 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:301 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 +msgid "admin::compte-utilisateur adresse" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:885 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:233 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:761 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:303 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 +msgid "admin::compte-utilisateur code postal" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:899 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:246 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:774 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:302 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 +msgid "admin::compte-utilisateur ville" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:913 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:339 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:259 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:735 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:307 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 +msgid "admin::compte-utilisateur poste" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:927 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:311 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:331 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:272 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:722 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:298 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:308 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 +msgid "admin::compte-utilisateur societe" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:941 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:347 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:285 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:309 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 +msgid "admin::compte-utilisateur activite" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:956 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:355 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:298 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:709 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:306 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:305 +msgid "admin::compte-utilisateur telephone" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:970 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:311 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:787 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:306 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 +msgid "admin::compte-utilisateur fax" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:996 +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:78 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:421 +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:107 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:142 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:82 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:107 +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:78 +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:78 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:67 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:107 +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:223 +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:78 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:213 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:119 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:324 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:188 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:78 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:131 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:78 +msgid "boutton::retour" +msgstr "" + +#: tmp/cache_twig/05/50/0213648b6ff9690fccfbed37e3f562abd86c22a6ce25838f8be801703aae.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:31 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:68 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:508 +msgid "action : ajouter au panier" +msgstr "" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:54 +msgid "Remove from basket" +msgstr "" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:69 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:34 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:155 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:35 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:105 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:498 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1090 +msgid "action : print" +msgstr "" + +#: tmp/cache_twig/06/38/a939ed4d905a89fac759f308d945038421c23b6f80cf35ac21118b348f6b.php:83 +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:231 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:28 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:144 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:335 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:1024 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:381 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:343 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:29 +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:88 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:228 +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:488 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1080 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2113 +msgid "action : exporter" +msgstr "" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:25 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:25 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:25 +msgid "Ajouter a" +msgstr "" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:58 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:38 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:58 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:58 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:38 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:38 +msgid "Actions" +msgstr "" + +#: tmp/cache_twig/07/d4/02449d58ab5193b9c57006978cbed6e58f8ed5198f7db6b09256d0849ebb.php:73 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:172 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1535 +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:53 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:328 +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:73 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:314 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:78 +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:86 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:73 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:248 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:53 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:53 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:344 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:378 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:434 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:490 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:42 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:487 +msgid "boutton::supprimer" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:31 +msgid "First Name" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:42 +msgid "Last Name" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:53 +msgid "Email Name" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:64 +msgid "Job" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:75 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:223 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:89 +msgid "Company" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:86 +msgid "City" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:98 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:113 +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:32 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:406 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:410 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:350 +msgid "Add" +msgstr "" + +#: tmp/cache_twig/0a/49/430fac2e8fdbc5a8da691de446549cbdc09fff4248272712b8442c6c8524.php:102 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:117 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:346 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:78 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:135 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:151 +msgid "Cancel" +msgstr "" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:35 msgid "Suggested values" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:48 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:36 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:55 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 @@ -3685,3867 +2664,2797 @@ msgstr "" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1002 msgid "Successful update" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:72 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:311 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:111 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:311 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:72 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:311 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:111 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:46 msgid "phraseanet::chargement" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:95 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:95 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:111 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:104 msgid "boutton::vue xml" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:115 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:108 msgid "boutton::vue graphique" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:130 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:130 msgid "admin::sugval: champs" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:196 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:246 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:473 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:246 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:473 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:164 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:53 +msgid "admin::base:collorder: monter" +msgstr "" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:168 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:57 +msgid "admin::base:collorder: descendre" +msgstr "" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:176 +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:61 +msgid "admin::base:collorder: reinitialiser en ordre alphabetique" +msgstr "" + +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:196 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:246 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:473 msgid "boutton::ajouter" msgstr "" -#: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:1062 +#: tmp/cache_twig/0c/0f/1a47ca927b20e4adc2517eadd2f16a2ea68ba125cf72a1ec791f93021951.php:1062 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des " "modifications du xml si vous n'appliquez pas les changements avant.\n" "Continuer quand meme" msgstr "" -#: tmp/cache_twig/1b/66/5c1a950d678bd3bd829ca0652654.php:52 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:458 -#: tmp/cache_twig/81/59/c281d138d61d1fbad3cb006f1d5a.php:52 -msgid "report:: activite du site" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:215 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:215 +msgid "" +"Mettez à jour votre navigateur ou téléchargez un navigateur plus récent." msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:34 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:34 -msgid "Tableau de bord" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:221 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:221 +msgid "" +"Si vous ne pouvez pas installer un autre navigateur, utilisez Google Chrome " +"Frame." msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:63 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:63 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:22 -msgid "Setup" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:228 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:228 +msgid "Installer Google Chrome" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:74 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:74 -msgid "SearchEngine settings" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:234 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:234 +msgid "Installer Google Chrome Frame" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:116 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:394 -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:461 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:116 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:394 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:461 -msgid "admin::utilisateurs: utilisateurs" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:324 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:324 +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:25 +#: tmp/cache_twig/9d/3f/9db15040ddd2998d5b48eaaf7f4cc5117d98fb54ef8259809c783174693c.php:25 +msgid "Home" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:133 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:133 -msgid "admin::utilisateurs: demandes en cours" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:330 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:330 +msgid "Help" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1923 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:247 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 -msgid "Publications" +#: tmp/cache_twig/0c/5e/6171d43b9d922e11400454c76b5d3737af409f0abff029f7ad2a94b4f84a.php:364 +#: tmp/cache_twig/11/b8/949c28d1a3d982f4edba1bffd0c1f2b49ac0ebc7cfbdf02d9c9df2e85d00.php:364 +#: tmp/cache_twig/74/72/ce1e36331d2c6d8e030e5849e6d9faa747b01380bf11dd14a9fb8681b878.php:34 +#: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 +msgid "Terms of use" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:177 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:177 -msgid "admin::utilisateurs: gestionnaire de taches" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:34 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:43 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:46 +msgid "report:: Du (date)" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:199 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:199 -msgid "admin::utilisateurs: bases de donnees" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:44 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:55 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:56 +msgid "report:: Au (date)" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:288 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:288 -msgid "admin::structure: reglage de la structure" +#: tmp/cache_twig/0c/8e/617fa7c19606870a8f95413cabadc5cb95cac184eabf0f91e0ae8eaa917f.php:76 +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:40 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:40 +#: tmp/cache_twig/b0/68/8df402b56c39d510a9d6d04c179a52d90fa80d9fd6ad5c68b5c21ea0076f.php:32 +#: tmp/cache_twig/f0/c8/dec944507ec91ef867d854c9718175767c72a41c78536d7f086c60b949be.php:32 +msgid "report:: Dashboard" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:300 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:300 -msgid "CHAMPS" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:44 +msgid "The user has been created." msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:312 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:312 -msgid "SUBDEFS" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:50 +#, php-format +msgid "%user_count% users have been created." msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:324 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:324 -msgid "admin::status: reglage des status" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:63 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:182 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:91 +#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 +msgid "Users" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:335 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:335 -msgid "admin:: CGUs" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:71 +msgid "admin::user: nouvel utilisateur" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:347 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:347 -msgid "admin::collection: ordre des collections" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:75 +msgid "admin::user: nouveau template" msgstr "" -#: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:438 -#: tmp/cache_twig/46/c4/c6aeda9950bf43b0b63da17f20eb.php:438 -msgid "admin::base: preferences de collection" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:81 +msgid "admin::user: import d'utilisateurs" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:27 -msgid "Chercher" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:85 +msgid "admin::user: export d'utilisateurs" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:70 -msgid "thesaurus:: le terme" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:112 +msgid "Filter" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:74 -msgid "thesaurus:: est egal a " +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:121 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:161 +msgid "Push::filter on login" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:81 -msgid "thesaurus:: commence par" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:129 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:295 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:71 +msgid "First/Last Name" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:88 -msgid "thesaurus:: contient" +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:137 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:173 +msgid "Push::filter on countries" msgstr "" -#: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:99 -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:228 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:324 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:119 -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:75 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:75 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:190 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:250 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:489 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:107 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:184 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:237 -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:130 -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:186 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:148 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:310 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:334 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:155 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:270 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:486 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:829 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1056 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:145 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:179 +msgid "Push::filter on companies" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:153 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:185 +msgid "Push::filter on emails" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:158 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:197 +msgid "Push::filter starts" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:166 +msgid "Last applied template" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:236 +msgid "boutton::appliquer" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:265 +msgid "admin::compte-utilisateur id utilisateur" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:343 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:304 +msgid "admin::compte-utilisateur pays" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:359 +msgid "admin::compte-utilisateur dernier modele applique" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:375 +msgid "admin::compte-utilisateur date de creation" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:420 +msgid "This is a template" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:429 +msgid "This user has no rights" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:638 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:649 +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:660 +msgid "%n_par_page% par page" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:665 +#: tmp/cache_twig/73/37/e3b20793b38fb7ab75acd68e87009654ea726d191453f251f2de1b8ef1fd.php:22 +#: tmp/cache_twig/b8/3f/87a926d83151a23e51c94f5bc6b4e980c11a5b5fc693fcb89b5131dfeac5.php:22 +#: tmp/cache_twig/d4/25/a94dbfc016b6e0064d671b20c9ba4a0db1cffe147d3fde0340190faef0b2.php:22 +msgid "boutton::modifier" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:669 +msgid "Supprimer" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:807 +msgid "boutton::exporter" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:831 +msgid "select at least one user" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:843 +msgid "Are you sure you want delete users rights ?" +msgstr "" + +#: tmp/cache_twig/0c/bf/406036cddce3148e618d102ba29a085181bab74af6da2bd3c9c73eb7163e.php:867 +msgid "users rights have been reseted" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:49 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:152 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:145 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:47 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:62 +msgid "rafraichir" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:53 +msgid "Vous avez recu un nouveau panier" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:111 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:134 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:301 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:480 +msgid "action::exporter" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:145 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:491 +msgid "action::editer" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:170 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:341 +msgid "action::Valider" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:253 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:274 +msgid "paniers:: panier recu de %pusher%" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:317 +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:323 +msgid "action::renommer" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:358 +msgid "Archive" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:370 +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:134 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:129 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:325 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1440 +msgid "action : supprimer" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:504 +msgid "action::detacher" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:720 +msgid "delete" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:809 +msgid "panier:: ordre du panier" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:817 +msgid "panier:: ordre Validation ascendante" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:825 +msgid "panier:: ordre Validation descendante" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:873 +msgid "L'utilisateur approuve ce document" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:879 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:885 +msgid "L'utilisateur desapprouve ce document" +msgstr "" + +#: tmp/cache_twig/0d/f2/381898bcff3bca79443424d0e11e48af154802f393148f834cf422742689.php:894 +msgid "This user does not participate to the validation but is only viewer." +msgstr "" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:71 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:71 +msgid "veuillez choisir au minimum une collection" +msgstr "" + +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:75 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:75 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:190 +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:130 +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:213 +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:237 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:47 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:184 +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:228 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:108 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:113 +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:148 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:47 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:184 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:47 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:107 +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:186 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:188 +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:99 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:324 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:163 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:240 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:270 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:486 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:828 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1055 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:250 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:489 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:310 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:334 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:155 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:132 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:48 msgid "boutton::annuler" msgstr "" -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:99 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:99 -msgid "Erreur de login / mot de passe" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:107 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:107 -msgid "Bonjour, veuillez vous identifier sur %home_title% :" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1570 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 -msgid "admin::compte-utilisateur mot de passe" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:120 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:120 -msgid "Se connecter" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:126 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:126 -msgid "Problèmes de connexion ?" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:143 -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:95 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:95 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:143 -msgid "Hello %username%" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:157 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:157 -msgid "Autorisation d'accès" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:168 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:168 -msgid "" -"Autorisez-vous l'application \"%application_name%\" à " -"accéder à votre contenu sur %home_title% ?" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:198 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:198 -msgid "Autoriser" -msgstr "" - -#: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:222 -#: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:222 -msgid "Ne pas autoriser" -msgstr "" - -#: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:37 -msgid "Authorization code" -msgstr "" - -#: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:60 -msgid "Access code" -msgstr "" - -#: tmp/cache_twig/1d/8a/13fd9dbfa2bb448491d7ccebb5eb.php:66 -msgid "" -"Copy the code below, return to your application and paste the code to the " -"right place." -msgstr "" - -#: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:46 -msgid "Erreur lors de votre authentification" -msgstr "" - -#: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:61 -msgid "Vous etes authentifie avec succes" -msgstr "" - -#: tmp/cache_twig/1e/aa/3efb76f16a9f0563afbd78782d8c.php:67 -msgid "" -"Si cette fenetre ne se ferme pas automatiquement, fermez la, et " -"raffraichissez votre compte" -msgstr "" - -#: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:57 -msgid "Ce champ est decrit comme l'element DublinCore %element_name%" -msgstr "" - -#: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:63 -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:147 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:63 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:128 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:83 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:127 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:63 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:83 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:83 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:93 -msgid "Description" -msgstr "" - -#: tmp/cache_twig/1e/c7/1d9f3cb39396af06d1339387d36e.php:74 -msgid "Pour davantage d'informations, consulter le lien suivant %lien%" -msgstr "" - -#: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:55 -msgid "Return to login page" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:24 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:24 -msgid "Details" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 -msgid "Subdef" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 -msgid "Number" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 -msgid "Weight" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 -msgid "Total" -msgstr "" - -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 -msgid "Cumulative total" -msgstr "" - -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:70 -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:114 -msgid "a propos" -msgstr "" - -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:101 -msgid "Deconnexion" -msgstr "" - -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:144 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:85 -msgid "Back" -msgstr "" - -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:155 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:79 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:77 -msgid "Voici vos validations en cours" -msgstr "" - -#: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:223 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:205 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:203 -msgid "Voici vos paniers" -msgstr "" - -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 -msgid "%value% like" -msgstr "" - -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 -msgid "%value% likes" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 -#: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 -msgid "thesaurus:: export en topics" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:118 -msgid "thesaurus:: exporter" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:124 -msgid "thesaurus:: exporter vers topics pour toutes les langues" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:131 -msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:141 -msgid "phraseanet:: tri" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:147 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:533 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:537 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:533 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:537 -msgid "phraseanet:: tri par date" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:157 -msgid "thesaurus:: recherche" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:163 -msgid "thesaurus:: recherche thesaurus *:\"query\"" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:170 -msgid "thesaurus:: recherche fulltext" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:177 -msgid "thesaurus:: question complete (avec operateurs)" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:187 -msgid "thesaurus:: presentation" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:193 -msgid "thesaurus:: presentation : branches refermables" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:200 -msgid "thesaurus:: presentation : branche ouvertes" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:207 -msgid "thesaurus:: tout deployer - refermable" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:214 -msgid "thesaurus:: tout deployer - statique" -msgstr "" - -#: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:221 -msgid "thesaurus:: tout fermer" -msgstr "" - -#: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:35 -msgid "Granted bases" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:39 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:39 -msgid "reportage" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:45 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:45 -msgid "image" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:51 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:51 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:244 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:397 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:244 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:397 -msgid "document" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:57 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:57 -msgid "animation flash" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:63 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:63 -msgid "video" -msgstr "" - -#: tmp/cache_twig/2e/9f/7434ccaee372fc4a87c2807d5151.php:69 -#: tmp/cache_twig/3b/e5/f640706ec7da0a8011d7f3661d0d.php:69 -msgid "audio" -msgstr "" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:27 -msgid "thesaurus has been updated" -msgstr "" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:46 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:247 -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:267 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:247 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:29 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:310 -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:30 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:267 -msgid "phraseanet:: thesaurus" -msgstr "" - -#: tmp/cache_twig/2f/11/f74e0ec018928f7059fb9181c552.php:101 -msgid "" -"Thesaurus ou CTerms invalide\n" -" effacer (OK) ou quitter (Annuler) ?" -msgstr "" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:31 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:31 -msgid "First Name" -msgstr "" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:42 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:42 -msgid "Last Name" -msgstr "" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:53 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:53 -msgid "Email Name" -msgstr "" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:64 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:64 -msgid "Job" -msgstr "" - -#: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:86 -#: tmp/cache_twig/d5/5e/d67b71ccd06e52497aa22bdd3ecd.php:86 -msgid "City" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:152 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:269 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:411 -msgid "report:: 3 - Type de report" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:165 -msgid "report:: (connexions) Par utilisateurs" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:178 -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:282 -msgid "report:: Grouper par" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:209 -msgid "report:: (connexions) Globales" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:219 -msgid "report:: (connexions) OS et navigateurs" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:313 -msgid "report:: par utilisateurs" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:326 -msgid "report:: (telechargement) Global" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:336 -msgid "report:: (telechargement) Par jours base par base" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:346 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:351 -msgid "report::aucune precision" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:355 -msgid "report::la description contient" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:359 -msgid "report:: recordid" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:428 -msgid "report:: toutes les questions" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:438 -msgid "report:: Les questions les plus posees" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:468 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 -#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 -msgid "report:: document" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:475 -msgid "report:: pushe" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:481 -msgid "report:: ajoute" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:487 -msgid "report:: edite" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:493 -msgid "report:: valide" -msgstr "" - -#: tmp/cache_twig/31/73/1487758ec5a3e4c137a2986f489e.php:499 -msgid "Sent" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:188 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:188 -msgid "Chargement" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:235 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:239 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 -msgid "phraseanet:: propositions" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:258 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:258 -msgid "Close the WorkZone" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:284 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:284 -msgid "prod::thesaurusTab:thesaurus" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:291 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:291 -msgid "prod::thesaurusTab:candidats" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:306 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:306 -msgid "prod::thesaurusTab:wizard:accepter le terme candidat" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:312 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:312 -msgid "prod::thesaurusTab:wizard:remplacer par le terme" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:320 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:588 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 -msgid "boutton::rechercher" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:368 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:436 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:368 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:436 -msgid "chargement" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:477 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:483 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:487 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:477 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:483 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:487 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:135 -msgid "action:: nouveau panier" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:494 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:500 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:494 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:500 -msgid "Browse Baskets" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:511 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:517 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:521 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:511 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:517 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:521 -msgid "action:: nouveau reportage" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:545 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:549 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:545 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:549 -msgid "phraseanet:: tri par nom" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:557 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1481 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1662 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 -msgid "Preferences" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:583 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:583 -msgid "Advanced Search" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:606 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1053 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 -msgid "phraseanet::type:: documents" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:618 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 -msgid "phraseanet::type:: reportages" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:631 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:631 -msgid "Tout type" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:635 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:635 -msgid "Image" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:639 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:639 -msgid "Video" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:643 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:643 -msgid "Audio" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:647 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:647 -msgid "Document" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:651 -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:200 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:651 -msgid "Flash" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:668 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 -msgid "boutton:: selectionner toutes les bases" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:673 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 -msgid "boutton:: selectionner aucune base" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:687 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:687 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:34 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:33 -msgid "Re-initialiser" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:693 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:693 -msgid "Trier par " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:749 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 -msgid "rechercher par stemme" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:759 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:764 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:945 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 -msgid "rechercher dans tous les champs" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:805 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 -msgid "Status des documents a rechercher" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:917 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 -msgid "Rechercher dans un champ date" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:954 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 -msgid "phraseanet::time:: de" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:964 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 -msgid "phraseanet::time:: a" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1026 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 -msgid "reponses:: selectionner tout" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1035 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 -msgid "reponses:: selectionner rien" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1044 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 -msgid "phraseanet::type:: images" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1062 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 -msgid "phraseanet::type:: videos" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1071 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 -msgid "phraseanet::type:: audios" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1542 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 -msgid "raccourci :: a propos des raccourcis claviers" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1547 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 -msgid "Raccourcis claviers en cours de recherche : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1552 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1588 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 -msgid "Raccourcis:: ctrl-a : tout selectionner " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1556 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1592 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 -msgid "Raccourcis:: ctrl-p : imprimer la selection " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1560 -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1596 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 -msgid "Raccourcis:: ctrl-e : editer la selection " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1564 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 -msgid "Raccourcis::fleche gauche : page precedente " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1568 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 -msgid "Raccourcis::fleche droite : page suivante " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1572 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 -msgid "Raccourcis::fleche haut : scroll vertical " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1576 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 -msgid "Raccourcis::fleche bas : scroll vertical " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1583 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 -msgid "Raccourcis claviers de la zone des paniers : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1603 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 -msgid "Raccourcis claviers en cours de editing : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1608 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 -msgid "Raccourcis::tab/shift-tab se ballade dans les champs " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1615 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 -msgid "Raccourcis claviers en cours de preview : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1620 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 -msgid "Raccourcis::fleche gauche : en avant " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1624 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 -msgid "Raccourcis::fleche gauche : en arriere " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1628 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 -msgid "Raccourcis::espace : arreter/demarrer le diaporama " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1636 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 -msgid "" -"Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1647 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 -msgid "raccourcis :: ne plus montrer cette aide" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1668 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 -msgid "Affichage" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1672 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 -msgid "Configuration" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1680 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 -msgid "Mode de presentation" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1695 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 -msgid "reponses:: mode vignettes" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1707 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 -msgid "reponses:: mode liste" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1714 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 -msgid "Theme" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1723 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 -msgid "Selecteur de theme" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1745 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 -msgid "Presentation de vignettes" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1756 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 -msgid "Iconographe (description au rollover)" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1768 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 -msgid "Graphiste (preview au rollover)" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1778 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 -msgid "Informations techniques" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1789 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 -msgid "Afficher" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1801 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 -msgid "Afficher dans la notice" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1813 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 -msgid "Ne pas afficher" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1823 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 -msgid "Type de documents" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1834 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 -msgid "Afficher une icone" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1843 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 -msgid "reponses:: images par pages : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1856 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 -msgid "reponses:: taille des images : " -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1870 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 -msgid "Couleur de selection" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1875 -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 -msgid "choisir" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1885 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 -msgid "Affichage au demarrage" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1901 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 -msgid "Ma derniere question" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1912 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 -msgid "Une question personnelle" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1934 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 -msgid "Aide" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1981 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 -msgid "preview:: Description" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1985 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 -msgid "preview:: Historique" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:1992 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 -msgid "preview:: Popularite" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2041 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 -msgid "Presentation de vignettes de panier" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2059 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 -msgid "Afficher les status" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2079 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 -msgid "Afficher la fiche descriptive" -msgstr "" - -#: tmp/cache_twig/32/5c/32dd9ce73ab48fcf15e5d4095542.php:2099 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 -msgid "Afficher le titre" -msgstr "" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:27 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "" - -#: tmp/cache_twig/34/91/cca000a4c02c5c9267097c574889.php:58 -msgid "preview::statistiques de telechargement" -msgstr "" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:22 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:285 -msgid "admin::base:collection: Creer une collection" -msgstr "" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:34 -msgid "" -"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " -"collection" -msgstr "" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:45 -msgid "An error occured, please retry or contact an admin if problem persist" -msgstr "" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:61 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "" - -#: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:70 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:406 -msgid "" -"admin::base:collection: Vous pouvez choisir une collection de reference pour " -"donenr des acces " -msgstr "" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:24 -msgid "" -"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " -"pour continuer" -msgstr "" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:35 -msgid "login:: connexion" -msgstr "" - -#: tmp/cache_twig/36/6d/300e979d73c0661fbb49e250657f.php:69 -msgid "boutton::refresh" -msgstr "" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:35 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:35 -msgid "Suppression de %n_element% playlists" -msgstr "" - -#: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:51 -#: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:51 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:35 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:35 -msgid "status:: numero de bit" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:49 -msgid "admin::status: case A" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 -msgid "admin::status: texte a afficher" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 -msgid "Labels" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 -msgid "Symbolized by" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:69 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 -msgid "Select files..." -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 -msgid "admin::status:: aucun symbole" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 -msgid "admin::status: case B" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 -msgid "" -"status:: Afficher le status dans les feuilles de reponses pour tous les " -"utilisateurs" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "" - -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 -msgid "" -"Invalid file type, only (%supported_file_types%) file formats are supported" -msgstr "" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:71 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:71 -msgid "veuillez choisir au minimum une collection" -msgstr "" - -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:87 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:87 -#: tmp/cache_twig/6c/5f/66e80c09597f4ba0561cd6d303fa.php:111 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:87 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:87 +#: tmp/cache_twig/82/d7/778fef2f7381a6889a8cfea5de86dca1dbdadc64d3bdb6e6c170d6a16253.php:111 msgid "report::Heures" msgstr "" -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:105 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:105 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:105 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:105 msgid "report::Nombre de connexions" msgstr "" -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:109 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:109 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:109 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:109 #: lib/Alchemy/Phrasea/Controller/Report/Activity.php:370 msgid "report:: jour" msgstr "" -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:113 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:113 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:113 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:113 msgid "report:: Heures" msgstr "" -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:117 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:117 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:117 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:117 msgid "report::Nombre de document ajoute" msgstr "" -#: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:121 -#: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:121 +#: tmp/cache_twig/0e/00/afe03702d9d1a4e4dc56ffa40f3fe23454f8629959062ba586a78cef99fe.php:121 +#: tmp/cache_twig/0e/07/e387a435e6781c17cc01d794a2459e246ef2965b5062626b9760471f2c18.php:121 msgid "report::Nombre de document edite" msgstr "" -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:92 -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:203 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:51 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:154 -msgid "Connection" +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:169 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:195 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:168 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:154 +msgid "notice" msgstr "" -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:113 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 -msgid "Your account is locked, please follow the following link to unlock it" +#: tmp/cache_twig/0e/13/41cb3f91923eb4544f2da10183366e276d96d296861dffc64e02469562f4.php:202 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:344 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:318 +#: tmp/cache_twig/c8/e2/9470ca9314560b01ff54a1a5019144585686e80a85ba3e2b01777afbfe46.php:200 +msgid "boutton::telecharger tous les documents" msgstr "" -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:121 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 -msgid "login:: Envoyer a nouveau le mail de confirmation" +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:35 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:35 +msgid "Suppression de %n_element% playlists" msgstr "" -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:178 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 -msgid "Forgot password?" +#: tmp/cache_twig/0f/5d/d97452c1b9d33ad7ae3e396127e2d6ed65a89ce6a9a41987e418ca0f5b78.php:51 +#: tmp/cache_twig/fe/02/9f5524219d755a38cbdd251f0bff1be6d958e8838bac18be27e09476b93d.php:51 +msgid "Etes vous sur de supprimer %number% playlists ?" msgstr "" -#: tmp/cache_twig/38/de/f5ab2bfefeb0e31fba026e607e18.php:233 -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 -msgid "Or login with" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:73 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:71 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:275 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:251 +msgid "Validations" msgstr "" -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:25 -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:31 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:25 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:31 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:649 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:781 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:944 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1025 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1196 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:25 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:31 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:25 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:31 -msgid "boutton::precedent" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:79 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:77 +msgid "Voici vos validations en cours" msgstr "" -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:37 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:37 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:37 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:37 -msgid "boutton::demarrer" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:133 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:131 +msgid "(validation) session terminee" msgstr "" -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:43 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:43 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:43 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:43 -msgid "boutton::pause" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:139 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:137 +msgid "(validation) envoyee" msgstr "" -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:49 -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:55 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:49 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:55 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:539 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:655 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:787 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:950 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1031 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:49 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:55 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:49 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:55 -msgid "boutton::suivant" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:145 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:143 +msgid "(validation) a envoyer" msgstr "" -#: tmp/cache_twig/38/df/f443ab6dacd072bd5ce93d7048ce.php:61 -#: tmp/cache_twig/55/76/95e30db0c6544833fe96de032c6f.php:61 -#: tmp/cache_twig/5c/90/5599648213ede006c5f4ab3063f0.php:61 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:266 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:266 -#: tmp/cache_twig/ff/f9/51fcae2caafbca0cc51bc3331b89.php:61 -msgid "boutton::telecharger" -msgstr "" - -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:80 -msgid "client::answers: rapport de questions par bases" -msgstr "" - -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:101 -msgid "client::answers: %available_results% reponses" -msgstr "" - -#: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:508 -#: tmp/cache_twig/8c/3a/fd98b01fe80e00a6b511832ccc0e.php:68 -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:31 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:68 -msgid "action : ajouter au panier" -msgstr "" - -#: tmp/cache_twig/3c/b2/b4489362672031c8c9bf73839f2e.php:23 -msgid "Security" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:35 -msgid "Client application" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:46 -msgid "Application" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:68 -msgid "settings OAuth" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:72 -msgid "Les parametres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:94 -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:157 -msgid "URL de callback" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:126 -msgid "Modify" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:151 -msgid "Activer le grant_type de type password pour votre application" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:173 -msgid "Votre token d'access" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:177 -msgid "Les paramétres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:186 -msgid "Token" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:202 -msgid "Le token n'a pas encore ete genere" -msgstr "" - -#: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:212 -msgid "boutton::generer" -msgstr "" - -#: tmp/cache_twig/3f/46/a089ef2d5f3f194790f0b9f4a952.php:169 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:37 -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:211 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:30 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:35 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:263 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:220 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:35 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:233 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:220 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:30 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:30 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:60 -msgid "Upload" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:54 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:52 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:52 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:558 -msgid "Vous n'avez selectionne aucun element" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:58 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:56 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:56 -msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:61 -msgid "Le bridge FlickR ne prend en charge que les photos" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:71 -msgid "%n_elements% elements ne peuvent etre uploades" -msgstr "" - -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:83 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:154 +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:256 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:152 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:254 #, php-format -msgid "Upload sur Flickr de %elements_length% elements" +msgid "%basket_length% documents" msgstr "" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:119 -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:49 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:95 -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:67 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:38 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:95 -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:49 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:67 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:37 -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:133 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:67 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:44 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:139 -msgid "Titre" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:199 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:197 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:308 +#: tmp/cache_twig/99/e4/9565c13f12d432ea847aaded368c0c015d9febb95ab5c2b3d8379039a0c8.php:284 +msgid "Paniers" msgstr "" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:178 -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:197 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:159 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:99 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:132 -msgid "Tags" +#: tmp/cache_twig/10/30/f65f01ec28b514297534c8b1fa21d2ea7b71095a9155f3273629f2a4c6d1.php:205 +#: tmp/cache_twig/35/4b/26f30376d021a5789526bd8f7657d09735b791be8edbb0d7430de52dea60.php:203 +msgid "Voici vos paniers" msgstr "" -#: tmp/cache_twig/3f/7b/4a9ba5474e0ea48d9d90328f92d4.php:197 -msgid "2000 caracteres maximum, separe par des espaces" +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:27 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:139 +#: tmp/cache_twig/fa/6c/5a1478433bb48ba074484fbf8f310f00024e6b7e19d6c1fde38d05b22b30.php:27 +msgid "thesaurus:: export au format texte" msgstr "" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:40 +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:124 +msgid "thesaurus:: options d'export : " +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:128 +msgid "thesaurus:: example" +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:147 +msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:154 +msgid "thesaurus:: exporter avec une ligne par synonyme" +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:161 +msgid "thesaurus:: export : numeroter les lignes " +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:168 +msgid "thesaurus:: export : inclure la langue" +msgstr "" + +#: tmp/cache_twig/12/9c/fb938f29fe82f256985041cfcc58d9b3f1d72c617a7ac4be7f628216edb5.php:175 +msgid "thesaurus:: export : inclure les hits" +msgstr "" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:124 +msgid "En attente" +msgstr "" + +#: tmp/cache_twig/13/65/8648195023acdf0cb868a6088e07bf38f13208274d6810b2c0e125965245.php:130 +msgid "En cours d'envoi" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:124 +msgid "" +"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:259 +msgid "prod::thesaurusTab:dlg:Remplacement en cours." +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:322 +msgid "prod::thesaurusTab:dlg:Acceptation en cours." +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:415 +msgid "prod::thesaurusTab:dlg:Suppression en cours." +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:489 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:498 +#, php-format +msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:607 +#, php-format +msgid "" +"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:616 +#, php-format +msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:654 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:663 +#, php-format +msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:703 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:712 +#, php-format +msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:776 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:781 +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1035 +msgid "prod::thesaurusTab:tree:loading" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1412 +msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1422 +msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1504 +msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +msgstr "" + +#: tmp/cache_twig/13/d2/a5ee05fe24758eaf3d13a11f09483e5f1e3e64e296fe5e8f4271d6064ea9.php:1524 +msgid "prod::thesaurusTab:cmenu:Remplacer par..." +msgstr "" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:27 +msgid "thesaurus:: Lier la branche de thesaurus au champ" +msgstr "" + +#: tmp/cache_twig/14/d6/29185d50a751eb2ab2f63a512919a2451ac064bf11dd838ea0b3f48bdb77.php:90 +msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +msgstr "" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:42 +msgid "Oups ! something went wrong !" +msgstr "" + +#: tmp/cache_twig/16/3a/f513ddbd383fc8f0ca4d280fe87b4e0abe8dee5b66d3f4bb6d9fd2f62bb4.php:70 +msgid "boutton::retry" +msgstr "" + +#: tmp/cache_twig/19/8a/f61f452a3d884b4c7585281f7072c0f751be4de09a697d7168dd9ef21704.php:27 +#: tmp/cache_twig/8b/8c/c96898b4b1d04c82c031a77d476df0c1c3d3d3476c28498e6c18f57a7bd2.php:27 +#: tmp/cache_twig/92/60/552a9b1f2187e94a6b1aba2efb05f01b07aa79b763cbc5d47903cdf0467c.php:27 +msgid "Creer" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:36 +msgid "Type texte" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:42 +msgid "Type nombre" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:48 +msgid "Type date" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:67 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:96 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:160 +msgid "Source" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:82 +msgid "Ce champ n'est pas indexe" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:94 +msgid "Ce champ est multivalue" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:106 +msgid "Ce champ est en lecture seule" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:118 +msgid "Ce champ est relie a une branche de thesaurus" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:130 +msgid "Ce champ est utilise en titre a l'affichage" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:142 +msgid "Ce champ est requis" +msgstr "" + +#: tmp/cache_twig/1a/7c/21a941f1a3603c3fa8b35506c81b538a5ae24632abcc43f586cae4cee411.php:160 +msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" +msgstr "" + +#: tmp/cache_twig/1a/fb/db11c01b421496c86fc409ec0e00f79f233bacc795c203184675a2658212.php:38 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:38 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:36 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:35 +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:36 +#: tmp/cache_twig/53/1c/1127b446126fc7f8361c53c14197be34ad89919dd350ac42ee437d537620.php:36 +#: tmp/cache_twig/c0/13/c75d4bec88a17e758ec4175868b886b2fa61abfe0ae6a1a942460fdc28ee.php:35 +msgid "Register" +msgstr "" + +#: tmp/cache_twig/1a/fb/db11c01b421496c86fc409ec0e00f79f233bacc795c203184675a2658212.php:51 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:51 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:48 +#: tmp/cache_twig/c0/13/c75d4bec88a17e758ec4175868b886b2fa61abfe0ae6a1a942460fdc28ee.php:48 +msgid "Inscription" +msgstr "" + +#: tmp/cache_twig/1a/fb/db11c01b421496c86fc409ec0e00f79f233bacc795c203184675a2658212.php:57 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:57 +msgid "Complete the fields below to register on %instance_title%!" +msgstr "" + +#: tmp/cache_twig/1a/fb/db11c01b421496c86fc409ec0e00f79f233bacc795c203184675a2658212.php:157 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:157 +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:153 +msgid "I have read the terms of use" +msgstr "" + +#: tmp/cache_twig/1a/fb/db11c01b421496c86fc409ec0e00f79f233bacc795c203184675a2658212.php:217 +#: tmp/cache_twig/31/fe/0cb6ed0d4e2a6b41001c6dedcd4cdf5383df9ef7a2efec8464f638f2769a.php:217 +msgid "Request access" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:44 +#: tmp/cache_twig/9e/7a/714c406cc01b2ef18eaa625a977077a4b2b2545345b30f9715aa3ab4ca50.php:34 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:45 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1109 +msgid "action : editer" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:57 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:58 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1127 +msgid "action : status" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:70 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:71 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1145 +msgid "action : collection" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:83 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:84 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1324 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1369 +msgid "action : push" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:96 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:97 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1334 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1379 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +msgid "Feedback" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:107 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:108 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1344 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1394 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2104 +msgid "action : bridge" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:113 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:114 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1354 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1404 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2109 +msgid "action : publier" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:126 +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:127 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1424 +msgid "action : outils" +msgstr "" + +#: tmp/cache_twig/1b/32/e74bb000af2a0c144c6cc8709a8c3bebf4ca875aafa2474615db31551f73.php:147 +msgid "Certaines donnees du reportage ont change" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:95 +msgid "Notify users about this publication" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:99 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:69 +msgid "publication : titre" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:107 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:77 +msgid "publication : sous titre" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:115 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:85 +msgid "publication : autheur" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:123 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:93 +msgid "publication : email autheur" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:135 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:105 +msgid "Fils disponibles" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:174 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:232 +msgid "This feed is public" +msgstr "" + +#: tmp/cache_twig/1f/ba/c0d4f7dcba833652516603c13e3488bbf85948824b0c4e627d2ec3f4f0e7.php:209 +msgid "boutton::publier" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:47 +msgid "Edition" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:145 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:57 +msgid "Sous-titre" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:150 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:62 +msgid "Short description" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:159 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:69 +msgid "Etendue de la publication" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:170 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:75 +msgid "Non-Restreinte (publique)" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:223 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:119 +msgid "Publique" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:245 +msgid "Liste des personnes habilitees a publier sur ce fil" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:252 +msgid "Id" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:257 +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:171 +msgid "Email" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:261 +msgid "Owner" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:360 +msgid "Ajouter un publisher" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:365 +msgid "Name or email" +msgstr "" + +#: tmp/cache_twig/1f/ba/d9d94b2766312158cad15bb4b376e9cd22032014849cd82632b6e4923e06.php:416 +msgid "You are not the feed owner" +msgstr "" + +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:38 msgid "report:: 1 - Periode" msgstr "" -#: tmp/cache_twig/3f/e7/746e57c111cfdabeb8f38e4c4187.php:70 +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:72 msgid "report:: 2 - Bases" msgstr "" -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:39 -msgid "Change my email address" +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:80 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:450 +msgid "Select all" msgstr "" -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:89 -msgid "admin::compte-utilisateur nouvelle adresse email" +#: tmp/cache_twig/20/57/fd9589ab16320b4317448b806e40041590e885a73d04fd2d42fbfdf0b3d2.php:86 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:454 +msgid "Deselect all" msgstr "" -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:99 -msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:20 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:20 +msgid "Limite temporelle" msgstr "" -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:120 +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:27 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:27 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:125 +msgid "Base %base%" +msgstr "" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:50 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:488 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:58 +msgid "Activer" +msgstr "" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:58 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:66 +msgid "De" +msgstr "" + +#: tmp/cache_twig/21/d7/68c1069dc50788f4dcf07197b6594c6cbb955072d6af36d5a97e0f5a2528.php:73 +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:81 +msgid "A" +msgstr "" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:52 +msgid "Le champ doit contenir %minLength% caracteres minimum." +msgstr "" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:65 +msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +msgstr "" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:78 +msgid "Les indications donnees ci dessous sont a titre informatif." +msgstr "" + +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:82 msgid "" -"admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " -"changer mon adresse email ?" +"Si vous ne les respectez pas, les documents seront correctement indexes, " +"mais les metadonnees inscrites risquent d'etre erronnees" msgstr "" -#: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:125 +#: tmp/cache_twig/22/37/048b07ca11b12b6d5db5ccc57e7d9c00c92f389fd0e4158772f8f245d149.php:89 msgid "" -"admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " -"perte de votre mot de passe afin de pouvoir le reinitialiser, il est " -"important que vous soyez la seule personne a pouvoir la changer." +"Ces informations sont directement fournies par la norme de metadonnees de ce " +"champ : %norm_name%" msgstr "" -#: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:33 -#: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:33 -msgid "Creer une playlist" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:93 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:204 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:51 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:154 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:93 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:204 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:51 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:178 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:151 +msgid "Connection" msgstr "" -#: tmp/cache_twig/43/8b/3aebe83dca4c51e99b80c87c269b.php:26 -msgid "Technical Informations" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:114 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:114 +msgid "Your account is locked, please follow the following link to unlock it" msgstr "" -#: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 -#: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 -#: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 -msgid "boutton::modifier" +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:122 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:122 +msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:213 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:213 +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:179 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:125 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:179 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:149 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:121 +msgid "Forgot password?" +msgstr "" + +#: tmp/cache_twig/26/53/a3c653dadf255e160dbf8f490b1b01916300a8fae29932e4c9f823633a79.php:234 +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:82 +#: tmp/cache_twig/70/fa/48c561e58b49ea2c0a811af66914fc735ddaec1523e81c2ab82ecb251167.php:234 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:177 +#: tmp/cache_twig/c0/13/c75d4bec88a17e758ec4175868b886b2fa61abfe0ae6a1a942460fdc28ee.php:82 +msgid "Or login with" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:46 +msgid "Download of documents" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:57 +msgid "" +"Please wait while your files are being gathered for the download, this " +"operation may take a few minutes." +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:75 +msgid "" +"Your documents are ready. If the download does not start, %before_link%click " +"here%after_link%" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:88 +msgid "The file contains the following elements" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:95 +msgid "Base" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:99 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:86 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:49 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:227 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +msgid "Name" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:103 +msgid "Sub definition" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:107 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:80 +msgid "Size" +msgstr "" + +#: tmp/cache_twig/29/5e/ed184548020edb9cddeb6e3a94c6e92415cb1955d00fbdb2f9f4b2a6e314.php:111 +msgid "Thumbnail" +msgstr "" + +#: tmp/cache_twig/2c/af/53fbe25b25a93fcaa1ff96dfb2c0f11a6ee2996c2f3f53347d5756f8b729.php:52 +#: tmp/cache_twig/9e/7e/5e5254d3aba851e5723d6cf5b9ffa12fea4e23facdd81700a4589a5a5acb.php:52 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:458 +msgid "report:: activite du site" +msgstr "" + +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:25 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:31 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:649 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:781 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:944 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1025 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1196 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:25 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:31 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:25 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:31 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:25 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:31 +msgid "boutton::precedent" +msgstr "" + +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:37 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:37 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:37 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:37 +msgid "boutton::demarrer" +msgstr "" + +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:43 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:43 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:43 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:43 +msgid "boutton::pause" +msgstr "" + +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:49 +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:55 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:539 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:655 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:787 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:950 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1031 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:49 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:55 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:49 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:55 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:49 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:55 +msgid "boutton::suivant" +msgstr "" + +#: tmp/cache_twig/2e/a4/390e9c03d09f1c6721e5b1795e5817579b11764197af977c9fe75a06d77c.php:61 +#: tmp/cache_twig/89/0a/7d0e64637f7659a2b932b7ab6579e3516ad12b3b9bd8d0c3aafd6da6fb4e.php:61 +#: tmp/cache_twig/bb/5f/1be88f88e935921525a24ccd960d2e348f5eec632b9f239be6bbf3753d8d.php:61 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:266 +#: tmp/cache_twig/f1/cf/65c670725de3dfae6f183436a1649beab0b7772f67928de7d116324f5308.php:61 +msgid "boutton::telecharger" +msgstr "" + +#: tmp/cache_twig/2e/c8/6a8b65962285cc957b4f1cb0a6d3c6cfcece8142ec2c2d9bcd51db856e63.php:25 +msgid "" +"Le connecteur API requis n'est pas configure correctement, veuillez " +"contacter un administrateur" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:60 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:30 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:30 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:37 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:211 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:35 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:233 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:35 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:263 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:220 +msgid "Upload" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:136 +msgid "nouveau" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:146 +msgid "Vers quel API voulez vous vous connecter ?" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:203 +msgid "Aucun bridge disponible. Veuillez contacter un administrateur." +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:320 +msgid "You are about to delete this account. Would you like to continue ?" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:463 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:376 +msgid "Loading" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:558 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:54 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:52 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:52 +msgid "Vous n'avez selectionne aucun element" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:567 +msgid "Vous n'avez pas assez de droits sur les elements selectionnes" +msgstr "" + +#: tmp/cache_twig/30/b8/b650c719bacf7cf92c22c070a25b892407f433f57e8f8b485eae76450e6e.php:576 +msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" +msgstr "" + +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:57 +msgid "Ce champ est decrit comme l'element DublinCore %element_name%" +msgstr "" + +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:63 +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:83 +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:63 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:83 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:83 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:147 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:127 +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:63 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:93 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:128 +msgid "Description" +msgstr "" + +#: tmp/cache_twig/32/49/0656d16d8898ec72c7938cd48637f18aa2629df96052cc98812c5a31140f.php:74 +msgid "Pour davantage d'informations, consulter le lien suivant %lien%" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:41 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:41 +#: tmp/cache_twig/8f/f1/add262f43c2025ffd797634bebe9f8c994b8baf024c0b82342e573721fc8.php:41 +msgid "Edition de 1 element" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:99 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:132 +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:178 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:159 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:197 +msgid "Tags" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:115 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:99 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:160 +msgid "Categorie" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:148 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:148 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:204 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:234 +msgid "Confidentialite" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:158 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:158 +msgid "privé" +msgstr "" + +#: tmp/cache_twig/33/57/9a9a5b7d5afc620a9154d977e6fbe19559cc7b85810abf8b579557938e45.php:168 +#: tmp/cache_twig/8b/a7/a89f8e414dc434986682c4231be6ff5ec2100c4a81f27b7a9370e608975a.php:168 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:221 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:251 +msgid "public" +msgstr "" + +#: tmp/cache_twig/34/0a/291a29ef1fafdcb1907705b5072d6b2910713ecf5de5144fa63448de3947.php:43 +#: tmp/cache_twig/55/90/a1b7a3692fbebfcce45be064c2d4326e95542caf28d257497889a0aa121c.php:43 +msgid "Playlist" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:66 +msgid "General settings" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:68 +msgid "your configuration" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:79 +msgid "all caches services have been flushed" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:94 +msgid "setup:: administrateurs de l'application" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:130 +msgid "Add an admin" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:147 +msgid "setup:: Reinitialisation des droits admins" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:151 +msgid "boutton::reinitialiser" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:166 +msgid "setup::Tests d'envois d'emails" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:175 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:307 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:312 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:262 +#: tmp/cache_twig/6f/4c/b6f51c4a378b733e29cbedf82c9b95114695156c188eba999619b2434f72.php:107 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:502 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +msgid "Send" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:184 +msgid "Email test result : %email_status%" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:206 +msgid "Reset cache" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:258 +msgid "Requirements" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:308 +msgid "Recommendations" +msgstr "" + +#: tmp/cache_twig/34/72/b4365da9ed04893c7a4499cdecc648c9ff493afd4121179c7d2f87a179fc.php:358 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:260 +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:116 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:116 +msgid "Informations" +msgstr "" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:23 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:23 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1919 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:153 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:247 +msgid "Publications" +msgstr "" + +#: tmp/cache_twig/36/6f/780dbc597ccf2dd49889c5a797b2aa1bd0d6c243a7bee1445a0190772a9a.php:56 +#: tmp/cache_twig/41/37/efc7f9a44ff96a9c91ec5c0136ee8fbfd936990d93f2629c4f5aa76b2e12.php:56 +msgid "Vous devez remplir les champs requis" +msgstr "" + +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:35 +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:35 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:35 +msgid "Deplacement %n_element% elements" +msgstr "" + +#: tmp/cache_twig/37/6b/b82907c2f8dae31d26ecf2b96023c47e9194cb331a39999d935670f69e49.php:51 +msgid "Which photosets you want to put you %number% photos into ?" +msgstr "" + +#: tmp/cache_twig/38/89/0fd589fb8e12312b7560686f74ddffceff60014dd8bd8ceb14f98b3b1bcb.php:30 +#: tmp/cache_twig/8e/c2/d739949fe6a6c8c6d3c4e91956d989a3adbd869aac5c54c923235f3bbfa3.php:30 +msgid "Guest access" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:43 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:43 +msgid "Quarantine" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:70 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:77 +msgid "maximum : %maxFileSizeReadable%" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:77 +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:84 +msgid "You are using the Flash uploader." +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:87 +msgid "" +"This version does not allow you to access all the features offered by the " +"HTML5 uploader" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:94 +msgid "Use the HTML5 uploader" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:104 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:118 +msgid "upload:: Destination (collection) :" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:191 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:202 +msgid "upload:: Status :" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:287 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:354 +msgid "You can not upload files" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:299 +msgid "Selected files" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:303 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:308 +msgid "Clear list" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:318 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:324 +msgid "Transmited files" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:324 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:336 +msgid "Cancel all" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:412 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:69 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:132 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:252 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:399 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:455 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:511 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:567 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:123 +msgid "Select files..." +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:457 +msgid "You have attempted to queue too many files" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:464 +msgid "Unknow Error" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:474 +msgid "Cannot upload Zero Byte files" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:480 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:584 +msgid "Invalid file type" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:487 +msgid "Unhandled Error" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:520 +msgid "Unknow reason" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:527 +msgid "Bad request, please contact an admin" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:533 +msgid "Upload URL is not set, please contact an admin" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:539 +msgid "Connection terminates unexpetecdly, please retry" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:545 +msgid "The upload violates a security restriction, please retry" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:551 +msgid "File upload limit (%maxFileSizeReadable%) has been reached" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:557 +msgid "Could not initiate upload, please retry" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:563 +msgid "" +"Could not retrieve the file ID, please retry or contact an admin if problem " +"persist" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:569 +msgid "File validation failed" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:575 +msgid "File upload has been cancelled" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:581 +msgid "File upload has been stopped" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:588 +msgid "Error while uploading" +msgstr "" + +#: tmp/cache_twig/3a/45/17d16424018aca23e9a440f798b21671ee8d3acd7d1b0a034c6be22a5307.php:682 +msgid "Please select at least one valid file" +msgstr "" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:50 +msgid "Completion of your registration" +msgstr "" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:69 +msgid "Please complete the information to complete your registration" +msgstr "" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:134 +msgid "Mandatory fields" +msgstr "" + +#: tmp/cache_twig/3a/c4/37d9bcc800ee4bbcb7b503dda7b7aeac594054fa4525a44940d33386bdab.php:180 +msgid "Resquest access" +msgstr "" + +#: tmp/cache_twig/3f/3a/3300c61f78d542e94fe24177bcb78e81a8ea7309372ba93e5feee69c6d20.php:62 +#: tmp/cache_twig/c0/13/c75d4bec88a17e758ec4175868b886b2fa61abfe0ae6a1a942460fdc28ee.php:62 +msgid "Create an account manually" +msgstr "" + +#: tmp/cache_twig/40/63/092bad36e7ddb1be21251c76b7ae07f9bd347b7e0a473d74c9344f5ae86c.php:54 +#: tmp/cache_twig/70/2a/502b10ed471d5a8338149f7f460f8cbb2a48176dbe2570034569f2a91ac0.php:54 +msgid "Incorrect please try again" +msgstr "" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:84 +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:91 +msgid "You are using the HTML5 uploader." +msgstr "" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:97 +msgid "Your browser does not support all HTML5 features properly." +msgstr "" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:107 +msgid "Use the Flash uploader" +msgstr "" + +#: tmp/cache_twig/41/2f/76a8ef62f1cc884756fa669edc30d284df416d2d44a2899c4c2c085205c2.php:304 +msgid "%quantity%selected files" +msgstr "" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:24 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:24 +msgid "Details" +msgstr "" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:33 +msgid "admin::base: objet" +msgstr "" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:37 +msgid "admin::base: nombre" +msgstr "" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:41 +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:45 +msgid "admin::base: poids" +msgstr "" + +#: tmp/cache_twig/42/8f/62b8fe6175fa423560233b2d406837d177b55d6a30914df5b89b33f5ca7b.php:111 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:163 +msgid "Total" +msgstr "" + +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:213 msgid "Create new subdef" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:217 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:217 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:217 msgid "Delete the subdef ?" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:223 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:223 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:223 msgid "" "These subdef will be permanently deleted and cannot be recovered. Are you " "sure?" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:234 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:234 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:234 msgid "Subdef name" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:239 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:239 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:239 msgid "classe d'acces" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:248 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:405 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:248 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:405 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:244 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:397 +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:51 +msgid "document" +msgstr "" + +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:248 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:405 msgid "preview" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:252 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:413 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:252 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:413 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:252 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:413 msgid "tout le monde" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:359 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:359 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:359 msgid "Telechargeable" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:377 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:389 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:377 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:389 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:377 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:389 msgid "classe" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:439 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:439 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:439 msgid "Write Metas" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:460 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:460 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:460 msgid "mediatype" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:475 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:605 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 -msgid "Choisir" -msgstr "" - -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:639 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:639 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:207 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:178 msgid "yes" msgstr "" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 -#: tmp/cache_twig/94/69/25ce73d32c3d3ea057287d319bee.php:648 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 +#: tmp/cache_twig/45/80/95290eaaf877ab310b2982c51159498cf8a1fadea2359a302db95e816bb2.php:648 +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:213 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:174 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:61 msgid "no" msgstr "" -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:29 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:29 -msgid "Fail" -msgstr "" - -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1360 -msgid "Success" -msgstr "" - -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:110 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:110 -msgid "Erreur" -msgstr "" - -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:117 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:117 -msgid "%error%" -msgstr "" - -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:133 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:133 -msgid "Code d'acces" -msgstr "" - -#: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:140 -#: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:140 -msgid "" -"Copiez le code ci-dessous, retournez dans votre application et collez-le " -"à l'endroit requis :" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:27 -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:139 -#: tmp/cache_twig/56/ed/04b81690ff3572267e05fa8ed599.php:27 -msgid "thesaurus:: export au format texte" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:124 -msgid "thesaurus:: options d'export : " -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:128 -msgid "thesaurus:: example" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:147 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:154 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:161 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:168 -msgid "thesaurus:: export : inclure la langue" -msgstr "" - -#: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:175 -msgid "thesaurus:: export : inclure les hits" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:158 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:158 -msgid "Aucun statut editable" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:164 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:164 -msgid "" -"Les status de certains documents ne sont pas accessibles par manque de droits" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:242 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:242 -msgid "boutton::remplacer" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:273 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:273 -msgid "phraseanet:: presse-papier" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:277 -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:34 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:277 -msgid "phraseanet:: preview" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:281 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:281 -msgid "prod::editing: rechercher-remplacer" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:285 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:285 -msgid "prod::editing: modeles de fiches" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:332 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:332 -msgid "prod::editing::replace: remplacer dans le champ" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:338 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:338 -msgid "prod::editing::replace: remplacer dans tous les champs" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:363 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:363 -msgid "prod::editing:replace: chaine a rechercher" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:372 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:372 -msgid "prod::editing:remplace: chaine remplacante" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:381 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:381 -msgid "prod::editing:remplace: options de remplacement" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:387 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:387 -msgid "prod::editing:remplace::option : utiliser une expression reguliere" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:418 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:418 -msgid "Aide sur les expressions regulieres" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:427 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:427 -msgid "prod::editing:remplace::option: remplacer toutes les occurences" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:433 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:433 -msgid "prod::editing:remplace::option: rester insensible a la casse" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:440 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:440 -msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:446 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:446 -msgid "prod::editing:remplace::option la valeur est comprise dans le champ" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:452 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:452 -msgid "prod::editing:remplace::option respecter la casse" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:503 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:503 -msgid "prod::editing:indexation en cours" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:528 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:528 -msgid "prod::editing: valider ou annuler les modifications" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:536 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:536 -msgid "edit::preset:: titre" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:545 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:545 -msgid "Edition impossible" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:554 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:554 -msgid "" -"prod::edit: Impossible d'editer simultanement des documents provenant de " -"bases differentes" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:560 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:560 -msgid "" -"prod::editing: aucun documents ne peuvent etre edites car vos droits sont " -"induffisants" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:597 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:597 -msgid "" -"prod::editing: %not_actionable% documents ne peuvent etre edites car vos " -"droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:603 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:603 -msgid "" -"prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:764 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:764 -msgid "edit::Certains champs doivent etre remplis pour valider cet editing" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:797 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:797 -msgid "edit: chosiir limage du regroupement" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:843 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:843 -msgid "prod::editing::fields: status " -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:894 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:894 -msgid "Ce champ est decrit comme un element DublinCore" -msgstr "" - -#: tmp/cache_twig/47/73/e5d444ad934e6722ef4afbcb23b0.php:903 -#: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:903 -msgid "This field represents the title of the document" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 -msgid "Do not forget to restart the tasks scheduler" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 -msgid "version" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 -msgid "admin::base: Version" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 -msgid "update::Votre version est a jour : " -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 -msgid "Propositions de modifications des tables" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 -msgid "update::Verifier els tables" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 -msgid "admin::base: creer une base" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -msgid "" -"phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 -msgid "phraseanet:: hostname" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 -msgid "phraseanet:: port" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 -msgid "phraseanet:: user" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 -msgid "phraseanet:: password" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 -msgid "phraseanet:: dbname" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 -msgid "phraseanet:: Modele de donnees" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "boutton::creer" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 -msgid "admin::base: Monter une base" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 -msgid "" -"phraseanet:: Monter une base provenant d'un serveur different de " -"l'application box" -msgstr "" - -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 -msgid "boutton::monter" -msgstr "" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:48 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:51 -msgid "Inscription" -msgstr "" - -#: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:62 -msgid "Create an account manually" -msgstr "" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:27 -msgid "Apparait aussi dans ces reportages" -msgstr "" - -#: tmp/cache_twig/4d/b8/ee3d5747d59a23d648d285289ea1.php:73 -msgid "Apparait aussi dans ces paniers" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:27 -msgid "%displayName% wants to place an order" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:82 -msgid "Destinataire" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:94 -msgid "Date de commande" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:124 -msgid "Nombre total d'element commandes" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:136 -msgid "" -"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " -"elements correspondants aux collections sur lesquelles vous gerez les " -"commandes" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:179 -msgid "Document refuse par %name%" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:188 -msgid "Forcer l'envoi du document" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:211 -msgid "Document envoye par %name%" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:259 -msgid "Selectionnez des documents et " -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "" - -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 -msgid "Retour aux commandes" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:22 -msgid "Story_id" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:30 -msgid "Record_id" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:50 -msgid "Nom Original" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:80 -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:107 -msgid "Size" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:130 -msgid "Camera Model" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:144 -msgid "Color space" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:158 -msgid "Channels" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:172 -msgid "Color Depth" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:186 -msgid "ISO sensibility" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:226 -msgid "Shutter speed" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:240 -msgid "Aperture" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:254 -msgid "Focal length" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:268 -msgid "Hyperfocal distance" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:282 -msgid "Light Value" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:298 -msgid "Duree" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:312 -msgid "Images par secondes" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:326 -msgid "Codec Audio" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:340 -msgid "Codec Video" -msgstr "" - -#: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:354 -msgid "Frequence d'echantillonage" -msgstr "" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:28 -msgid "Back to basket list" -msgstr "" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:171 -msgid "No records" -msgstr "" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:177 -msgid "1 record" -msgstr "" - -#: tmp/cache_twig/51/66/df4d169b3c7bc56e58d0f63945e5.php:183 -msgid "%ElementsCount% records" -msgstr "" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:152 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:152 -msgid "Fichiers envoyes" -msgstr "" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:169 -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:418 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:418 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:169 -msgid "phraseanet:: deconnection" -msgstr "" - -#: tmp/cache_twig/52/6b/fd3e83f09dc00a6d38b7d1f4c4ac.php:234 -#: tmp/cache_twig/f1/43/8d58c7b0a018c67e15f257183a67.php:234 -msgid "Terms of service" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:43 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:43 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:43 -msgid "Quarantine" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 -msgid "maximum : %maxFileSizeReadable%" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:84 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:91 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:84 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:91 -msgid "You are using the HTML5 uploader." -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:97 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:97 -msgid "Your browser does not support all HTML5 features properly." -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:107 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:107 -msgid "Use the Flash uploader" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:118 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:118 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:104 -msgid "upload:: Destination (collection) :" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:202 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:202 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:191 -msgid "upload:: Status :" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:304 -msgid "%quantity%selected files" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:308 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 -msgid "Clear list" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:324 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 -msgid "Transmited files" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:336 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 -msgid "Cancel all" -msgstr "" - -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 -#: tmp/cache_twig/9c/c5/4245249df531c5e7f2df7ff0cd2c.php:354 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 -msgid "You can not upload files" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:20 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:20 -msgid "Limite temporelle" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:27 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:125 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:27 -msgid "Base %base%" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:35 -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:133 -msgid "Collection %collection%" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:58 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:488 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:50 -msgid "Activer" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:66 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:58 -msgid "De" -msgstr "" - -#: tmp/cache_twig/58/36/95d55cd27629d0e7db3c972f5678.php:81 -#: tmp/cache_twig/e5/27/ca522dcd9789e3a8e86e3fd220fd.php:73 -msgid "A" -msgstr "" - -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:65 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:65 msgid "Erreur lors du contact avec le serveur WEB" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:69 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:69 msgid "Delai depasse lors du contact avec le serveur WEB" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:73 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:73 msgid "Required" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:77 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:77 msgid "forms::merci d'entrer une adresse e-mail valide" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:81 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:85 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:81 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:85 msgid "forms::ce champ est requis" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:89 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:89 msgid "forms::les mots de passe ne correspondent pas" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:93 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:93 msgid "Vous devez specifier une adresse email et un mot de passe valides" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:97 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:97 msgid "Le nom de base de donnee est incorrect" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:101 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:101 msgid "Il y a des erreurs, merci de les corriger avant de continuer" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:108 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:108 msgid "forms::le mot de passe est trop similaire a l'identifiant" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:112 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:112 msgid "forms::la valeur donnee est trop courte" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:116 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:120 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:116 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:120 msgid "forms::le mot de passe est trop simple" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:124 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:124 msgid "forms::le mot de passe est bon" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:128 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:128 msgid "forms::le mot de passe est tres bon" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:174 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:174 msgid "Veuillez corriger les erreurs avant de poursuivre" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:319 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:319 msgid "Successfull connection" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:325 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:325 msgid "Warning, this database is not empty" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:338 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:338 msgid "Connection is OK but database does not exists or can not be accessed" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:345 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:357 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:365 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:345 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:357 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:365 msgid "Unable to connect to MySQL server" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:417 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:417 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:423 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:423 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:429 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:429 msgid "" "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage " "pour vos documents, et de configurer votre serveur web pour qu'il publie " "certains de ces dossiers de stockage." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:439 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:439 msgid "" "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez " "continuer sans corriger ces problèmes." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:499 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:499 msgid "Review system configuration" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:521 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:521 msgid "Prerequisite and Configuration" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:555 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:555 msgid "Executables externes" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:598 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:598 msgid "Required field" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:622 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:622 msgid "Phraseanet may require many binaries." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:628 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:628 msgid "" "Some of them are required, like the indexer, Exiftool or ImageMagick " "components, some others are optionnal, like FFmpeg which is used to preview " "video files." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:634 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:634 msgid "Don't worry, You can modify your configuration later" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:673 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:673 msgid "Creation de votre compte" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:685 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:685 msgid "Votre adresse email" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:692 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:692 msgid "Votre mot de passe" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:711 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:711 msgid "Confirmation de votre mot de passe" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:721 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:721 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:725 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:725 msgid "" "admin::compte-utilisateur Les mots de passe doivent etre clairement " "distincts du login et contenir au moins deux types parmis les caracteres " "suivants :" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:730 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:730 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:734 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:734 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:738 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:738 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:742 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:742 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:762 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:762 msgid "Your email will be used to log in the application." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:766 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:766 msgid "Please be sure it is still valid and you can access it" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:811 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:811 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:824 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1060 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:824 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1060 msgid "MySQL database connection parameters" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:838 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:831 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:416 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1528 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:85 +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:133 +msgid "phraseanet:: adresse" +msgstr "" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:838 msgid "Database user" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:859 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1075 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:845 +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:79 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:116 +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:442 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1574 +msgid "admin::compte-utilisateur mot de passe" +msgstr "" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:852 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:247 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:328 +msgid "phraseanet:: port" +msgstr "" + +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:859 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1075 msgid "Database" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:867 -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1083 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:867 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1083 msgid "boutton::tester" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:887 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:887 msgid "" "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage " "d'options%fin_lien%" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:906 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:906 msgid "ApplicationBox is a Mysql database." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:912 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:912 msgid "" "It stores users datas, rights, and references to DataBoxes where records are " "stored." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:924 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:924 msgid "" "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a " "replacement for MySQL." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:968 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:968 msgid "setup::Configuration des repertoires de stockage" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:980 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:980 msgid "Repertoire de stockage des fichiers" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:998 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:998 msgid "" "Your medias and their subdefinitions (previews, thumbnails..) will be stored " "in these directories." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1004 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1004 msgid "" "Thumbnails directory is mounted to be accessible via HTTP, while other files " "are not." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1010 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1010 msgid "" "If you plan to store large files, be sure it will fit in these directories." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1048 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1048 msgid "setup::Configuration de la base de stockage DataBox" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1067 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1067 msgid "Ne pas creer de DataBox maintenant" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1095 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1095 msgid "Modele de donnees" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1126 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1126 msgid "Creation des taches" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1131 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1131 msgid "" "Phraseanet embarque un moteur de taches pour la lecture / ecriture des " "metadonnes, et autre operations" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1142 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1142 msgid "Creer la tache d'ecriture des metadonnees" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1151 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1151 msgid "Creer la tache de creation des sous-definitions" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1160 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1160 msgid "Creer la tache d'indexation" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1177 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1177 msgid "" "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet " "ApplicationBox." msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1181 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1181 msgid "Databoxes store records, metadatas and their classifications" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1202 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1202 msgid "button::Install" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1212 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1212 msgid "Install in progess" msgstr "" -#: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:1218 +#: tmp/cache_twig/46/55/f06deef9c88078a96d5f417995fb10abb60b737f5cb22e5d278ec0f88586.php:1218 msgid "Installation is currenlty processing, please wait..." msgstr "" -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:44 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:44 -msgid "Votre recherche ne retourne aucun resultat" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:76 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:76 -msgid "" -"La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " -"gauche de l'écran." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:79 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:79 -msgid "" -"Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " -"suivants :" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:83 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:83 -msgid "" -"* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " -"LAST , ALL)" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:88 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:88 -msgid "Caractères de troncature" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:95 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:95 -msgid "auto*" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:99 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:99 -msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:105 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:105 -msgid "dé?it" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:109 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:109 -msgid "retourne \"délit\", \"débit\", ..." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:116 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:116 -msgid "Visualiser tous les enregistrements / les derniers enregistrements" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:122 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:122 -msgid "TOUT" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:126 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:126 -msgid "retourne tous les enregistrements des collections selectionnees" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:132 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:132 -msgid "LAST 20" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:136 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:136 -msgid "" -"retourne les 20 derniers enregistrements archives dans les collections " -"selectionnees" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:143 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:143 -msgid "Recherche multicritères" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:147 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:147 -msgid "" -"Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " -"DANS" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:153 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:153 -msgid "sport" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:155 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:155 -msgid "automobile" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:159 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:159 -msgid "retourne les documents comprenant les deux mots." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:165 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:165 -msgid "journal OU jt" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:169 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:169 -msgid "retourne les documents comprenant un mot et/ou l'autre." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:175 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:175 -msgid "cannes SAUF festival" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:179 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:179 -msgid "retourne les documents comprenant cannes sans le mot festival." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:185 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:185 -msgid "thalassa DANS titre" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:189 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:189 -msgid "" -"retourne les documents où le terme est au moins présent dans le titre, en " -"évitant par exemple celles où le terme est uniquement cité dans la légende." -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:119 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 -msgid "Attention" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:201 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:201 -msgid "" -"pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " -"guillemets :" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:205 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:205 -msgid "C dans l'air" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:209 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:209 -msgid "Et Dieu créa la femme" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:213 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:213 -msgid "bijou en or" -msgstr "" - -#: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:217 -#: tmp/cache_twig/b9/ee/05f592cc0188d3f257d5485a000c.php:217 -msgid "tout le sport" -msgstr "" - -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:36 -msgid "Forgotten password" -msgstr "" - -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:49 -msgid "Forgot your password?" -msgstr "" - -#: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:55 -msgid "Enter your e-mail address to retrieve your password" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:70 -msgid "report :: configurer le tableau" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:79 -msgid "report :: imprimer le tableau" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 -msgid "%total_count% results" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 -msgid "Trier" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 -msgid "Filtrer" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 -msgid "report :: filtrer" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 -msgid "Grouper" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 -msgid "report :: grouper" -msgstr "" - -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 -msgid "report :: aucun resultat trouve" -msgstr "" - -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:76 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:76 msgid "%nb_elements% elements" msgstr "" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:158 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:158 msgid "Imagette indisponible" msgstr "" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:207 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:207 msgid "Aucune description." msgstr "" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:229 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:229 msgid "dans %category%" msgstr "" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:245 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:245 msgid "Confidentialite : privee" msgstr "" -#: tmp/cache_twig/5b/93/869fcc6b181f56e2d7131e5542d8.php:251 +#: tmp/cache_twig/47/b1/c18b914608a0cf54d9e9d2128df99f62f387fec17fd6c6027d4040804128.php:251 msgid "Confidentialite : publique" msgstr "" -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:43 -msgid "forms::operation effectuee OK" +#: tmp/cache_twig/48/cf/ba69cce6bd6c1f73ffa7f1f7a5f305667556a21de384794229602fae5e66.php:26 +#: tmp/cache_twig/53/1c/1127b446126fc7f8361c53c14197be34ad89919dd350ac42ee437d537620.php:26 +msgid "No account yet?" msgstr "" -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:81 -msgid "admin::base: Alias" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:99 -msgid "Rename" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:112 -msgid "admin::base: nombre d'enregistrements sur la base :" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:122 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:107 -msgid "phraseanet:: details" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:133 -msgid "admin::base: nombre de mots uniques sur la base : " -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:142 -msgid "admin::base: nombre de mots indexes sur la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:155 -msgid "admin::base: nombre de termes de Thesaurus indexes :" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:174 -msgid "admin::base: document indexes en utilisant la fiche xml" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:185 -msgid "admin::base: document indexes en utilisant le thesaurus" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:210 -msgid "admin::base: Cette base est indexable" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:268 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:271 -msgid "Set labels" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:296 -msgid "admin::base: Confirmer la suppression de tous les logs" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:301 -msgid "admin::base: supprimer tous les logs" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:312 -msgid "admin::base: Confirmer vous l'arret de la publication de la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:317 -msgid "admin::base: arreter la publication de la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:328 -msgid "admin::base: Confirmer le vidage complet de la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:333 -msgid "admin::base: vider la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:344 -msgid "admin::base: Confirmer la suppression de la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:349 -msgid "admin::base: supprimer la base" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:361 -msgid "Confirmez-vous la re-indexation de la base ?" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:365 -msgid "base:: re-indexer" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:379 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:438 -msgid "admin::base:collection: Monter une collection" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:397 -msgid "Monter" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:466 -msgid "Activer une collection" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:510 -msgid "admin::base: logo impression PDF" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:526 -msgid "admin::base:collection: supprimer le logo" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:536 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:389 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 -msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:546 -msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" -msgstr "" - -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 -msgid "admin::base: aucun alias" -msgstr "" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:46 -msgid "Download of documents" -msgstr "" - -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:57 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:24 msgid "" -"Please wait while your files are being gathered for the download, this " -"operation may take a few minutes." +"Vous etes actuellement deconnecte de votre compte, vous devez vous connecter " +"pour continuer" msgstr "" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:75 +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:35 +msgid "login:: connexion" +msgstr "" + +#: tmp/cache_twig/48/e7/f2fccdf87eb44b0dc03ae809fb4079dd842006031dbd952b74949654a4b6.php:69 +msgid "boutton::refresh" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:36 +msgid "List Name" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:65 +msgid "Share the list" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:70 +msgid "Set sharing permission" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:85 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:415 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:419 +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:72 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:147 +msgid "Delete" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:107 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:273 +msgid "%length% peoples" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:113 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:129 +msgid "Edit" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:155 +msgid "View" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:167 +msgid "Push::filter on name" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:191 +msgid "Push::filter on templates" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:211 +msgid "Activite" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:217 +msgid "Template" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:229 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:125 +msgid "Country" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:235 +msgid "Position" +msgstr "" + +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:244 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:269 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:294 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:319 +#: tmp/cache_twig/49/49/ecfeeacf433bfbe3f1528ea1934e5e1098e5bf372ee0f4c635df01702cd4.php:344 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:42 +msgid "All" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:27 +msgid "%displayName% wants to place an order" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:51 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:42 +#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:292 +msgid "Order has been sent" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:57 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:48 +#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:327 +msgid "Order has been denied" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:70 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:61 +msgid "An error occured, please retry or contact an admin if problem persists" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:82 +msgid "Destinataire" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:94 +msgid "Date de commande" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:104 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:92 +msgid "Deadline" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:114 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:96 +msgid "Utilisation prevue" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:124 +msgid "Nombre total d'element commandes" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:136 msgid "" -"Your documents are ready. If the download does not start, %before_link%click " -"here%after_link%" +"Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les " +"elements correspondants aux collections sur lesquelles vous gerez les " +"commandes" msgstr "" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:88 -msgid "The file contains the following elements" +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:179 +msgid "Document refuse par %name%" msgstr "" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:95 -msgid "Base" +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:188 +msgid "Forcer l'envoi du document" msgstr "" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:103 -msgid "Sub definition" +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:211 +msgid "Document envoye par %name%" msgstr "" -#: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:111 -msgid "Thumbnail" +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:259 +msgid "Selectionnez des documents et " msgstr "" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:53 +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:266 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:95 +msgid "Deny" +msgstr "" + +#: tmp/cache_twig/4a/f1/bcf373c0f160eafb6da11b9c48f5590d107c7af35e308cd04a679e787f0f.php:270 +msgid "Retour aux commandes" +msgstr "" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:37 +msgid "you are about to change the representation thumbnail of your video" +msgstr "" + +#: tmp/cache_twig/4c/54/52358baa60b3c9df452a24791f246f8daa695f5b6ffed40c9034562bdfc8.php:47 +msgid "do you want to validate" +msgstr "" + +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:39 +msgid "reportage" +msgstr "" + +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:45 +msgid "image" +msgstr "" + +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:57 +msgid "animation flash" +msgstr "" + +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:63 +msgid "video" +msgstr "" + +#: tmp/cache_twig/4e/3b/311165579a94df1c992aa5e66facf66ebce082d34395bf16e293979e2484.php:69 +msgid "audio" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:28 +msgid "Save all changes" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:40 +msgid "Close" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:44 +msgid "Ok" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:56 +msgid "Live search" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:74 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:80 +msgid "Add a new field" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:108 +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:189 +msgid "Multivalued" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:133 +msgid "Order" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:174 +msgid "DCES" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:197 +msgid "Advanced field parameters" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:203 +msgid "Thesaurus branch" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:210 +msgid "Type" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:225 +msgid "Vocabulary type" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:243 +msgid "Limited vocabulary" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:255 +msgid "Business Fields" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:263 +msgid "Separator" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:270 +msgid "Display & action settings" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:279 +msgid "Mandatory" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:290 +msgid "Indexable" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:301 +msgid "Read-only" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:320 +msgid "Display thumbnails" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:326 +msgid "Tous" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:330 +msgid "Aucun" +msgstr "" + +#: tmp/cache_twig/4f/59/93452defa07264dbb8aff4b673f98e72a5545a6d30bf2d6969335347d17b.php:395 +msgid "Current configuration contains some errors" +msgstr "" + +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:63 +msgid "Par %author%" +msgstr "" + +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:77 +msgid "boutton::editer" +msgstr "" + +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:117 +msgid "Derniere mise a jour le %updated_on%" +msgstr "" + +#: tmp/cache_twig/51/ed/f57b4c87984bb347a669362892b3634d214ef908e1282b8634aa1d25b800.php:135 +msgid "dans %feed_name%" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:35 +msgid "Client applications" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:48 +msgid "Mes applications" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:83 +msgid "button::supprimer" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:101 +msgid "Are you sure you want to delete this application?" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:107 +msgid "No" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:113 +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:55 +msgid "Yes" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:156 +msgid "Aucune application creee." +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:168 +msgid "Decouvrez la documentation" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:173 +msgid "Demarrer avec l'API Phraseanet" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:180 +msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +msgstr "" + +#: tmp/cache_twig/52/fb/27ed93179ff76bf91180ab7d9cc6b5319fc3c81d5eb4a3aa73d7cc960adb.php:188 +msgid "Creer une nouvelle applications" +msgstr "" + +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:27 +msgid "preview::statistiques de visualisation pour le lien" +msgstr "" + +#: tmp/cache_twig/53/89/7ef0c8735911a70f97276e084c2d7a8a3addd756c288c5e434c1f2932743.php:58 +msgid "preview::statistiques de telechargement" +msgstr "" + +#: tmp/cache_twig/57/70/3f55b5097ce7cd19f6c09fca2d195e840d30bb832b2de10f2b8f73073863.php:33 +#: tmp/cache_twig/6b/af/03bfd9f3f220a6dc5e6d57a0c8eb799d40e1ca312b56fae181d1b587c2a8.php:33 +msgid "Creer une playlist" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:27 +#: tmp/cache_twig/b7/ae/b2c695b1e32e7444bdb909d0c68b873d1b89534471cd6255e3d5525dba02.php:27 +msgid "thesaurus:: export en topics" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:118 +msgid "thesaurus:: exporter" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:124 +msgid "thesaurus:: exporter vers topics pour toutes les langues" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:131 +msgid "thesaurus:: exporter a l'ecran pour la langue %piv%" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:141 +msgid "phraseanet:: tri" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:147 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:533 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:537 +msgid "phraseanet:: tri par date" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:157 +msgid "thesaurus:: recherche" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:163 +msgid "thesaurus:: recherche thesaurus *:\"query\"" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:170 +msgid "thesaurus:: recherche fulltext" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:177 +msgid "thesaurus:: question complete (avec operateurs)" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:187 +msgid "thesaurus:: presentation" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:193 +msgid "thesaurus:: presentation : branches refermables" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:200 +msgid "thesaurus:: presentation : branche ouvertes" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:207 +msgid "thesaurus:: tout deployer - refermable" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:214 +msgid "thesaurus:: tout deployer - statique" +msgstr "" + +#: tmp/cache_twig/58/30/c5d5de03aebba3f698d8b91e5a0c6b79cd6a31a0bb41551f1239b65f32c0.php:221 +msgid "thesaurus:: tout fermer" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:66 +msgid "" +"report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:81 +msgid "" +"report::Demande de validation vers %n_user% utilisateurs depuis lapplication " +"box %appbox%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:87 +msgid "report::Edition des meta-donnees" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:99 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:105 +msgid "report::Edition des status" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:114 +msgid "report::Impression des formats : %format%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:123 +msgid "report::Substitution de %dest%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:132 +msgid "report::Publication de %dest%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:141 +msgid "report::Telechargement de %dest%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:153 +msgid "Envoi par mail a %dest% de %content%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:165 +msgid "Envoi par ftp a %dest% de %content%" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:171 +msgid "report::supression du document" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:177 +msgid "report::ajout du documentt" +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:183 +msgid "report::Modification du document -- je ne me souviens plus de quoi..." +msgstr "" + +#: tmp/cache_twig/58/49/57dcacf3652638cfd106be8276021de5ce573bc0f1c64756871d0f78ae70.php:200 +msgid "report:: par %user_infos%" +msgstr "" + +#: tmp/cache_twig/5a/95/cbfb14ffec5d45fdbe9e888e221cfd3d5c2185e3d55529cf005d7b2069b8.php:26 +msgid "Technical Informations" +msgstr "" + +#: tmp/cache_twig/5a/97/b6c36bec1ef2acb1364e151b62e1d2b106c8483f927d7b8234da551f12ac.php:51 +#: tmp/cache_twig/9e/7a/51a504af233cd64439dd0b4258bb73cdba121e5cb59fd8d18ab478c000c4.php:51 +msgid "Which playlist you want to put you %number% elements into ?" +msgstr "" + +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:35 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:35 +msgid "Suppression de %n_element% videos" +msgstr "" + +#: tmp/cache_twig/5c/1f/346f87c1b4384861481930c133a5dc374b433bfb99ce458ae868487857a7.php:51 +#: tmp/cache_twig/ea/d2/a807a1e541ea3a12f28e460ca5356876c50a8e3ac8e806474e261228d68a.php:51 +msgid "Etes vous sur de supprimer %number% videos ?" +msgstr "" + +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:38 +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:53 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:38 +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:40 #: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 msgid "Login" msgstr "" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 -msgid "Your %provider_name% account matchs a Phraseanet account" -msgstr "" - -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:94 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:70 +#: tmp/cache_twig/5c/86/14e7833a7a9ce5d422b2490d3a43cc460c93a5c63dd63a1e95172aa1e3f3.php:70 +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:94 msgid "Login to link your account" msgstr "" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:192 -msgid "These informations do not match?" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:107 +msgid "E-Mail" msgstr "" -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:204 -msgid "Use my Phraseanet account" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:143 +msgid "Last Template" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:124 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:124 -msgid "" -"prod::thesaurusTab:dlg:Remplacement du candidat \"%(from)s\" par \"%(to)s\"" +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:161 +msgid "Creation date" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:259 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:259 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:281 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:175 +msgid "Previous" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:322 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:322 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." +#: tmp/cache_twig/5d/db/dbc3943aef366bf3677d6cf618df2220c8bf38aec7b90fffab474cf29c93.php:298 +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:188 +msgid "Next" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:415 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:415 -msgid "prod::thesaurusTab:dlg:Suppression en cours." +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:22 +#: tmp/cache_twig/60/cb/8dbed7cc448a32032a72c9755862e1a03dc8e2804c2f66884e9b119b0633.php:27 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:22 +#: tmp/cache_twig/77/62/2ce19603c7eb0ed55529c6452dfb9deeb9850633fd4929907fcb9b6ea1a1.php:27 +msgid "validation::envoyer mon rapport" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:489 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:489 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:35 +msgid "Suppression de %n_element% photosets" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:498 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:498 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" +#: tmp/cache_twig/65/19/bb23f71b3f614768f5ca71854d5f8f5e006d5ba74b6811de919b74e18db8.php:51 +msgid "Etes vous sur de supprimer %number% photosets ?" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:607 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:607 -#, php-format -msgid "" -"prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:35 +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:364 +msgid "paniers:: %nb_basket_elements% documents dans le panier" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:616 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:616 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:62 +msgid "paniers::categories: mes paniers" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:654 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:654 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:91 +msgid "paniers::categories: paniers recus" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:663 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:663 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:135 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:483 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:487 +msgid "action:: nouveau panier" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:703 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:703 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:168 +msgid "action : ouvrir dans le comparateur" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:712 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:712 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:188 +msgid "paniers:: panier emis par %pusher_name%" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:776 -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:781 -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1035 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:776 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:781 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1035 -msgid "prod::thesaurusTab:tree:loading" +#: tmp/cache_twig/66/9e/1f17c4e347c4b5a7e73b1172eec40c8853849501d0e03863fe73199ce178.php:380 +msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1412 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1412 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:31 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:282 +msgid "No results" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1422 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1422 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:37 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:288 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:121 +msgid "1 result" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1504 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1504 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:43 +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:294 +msgid "%Total% results" msgstr "" -#: tmp/cache_twig/61/95/c525f12b3f7cbe2b5f816e8397b6.php:1524 -#: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1524 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:116 +msgid "Delete basket" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:59 -msgid "Le bridge Youtube ne prend en charge que les videos" +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:191 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:93 +msgid "Received from %user_name%" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:63 -msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" +#: tmp/cache_twig/69/a8/8a04cab9e01dbbd4ca59e1d204954ebda2d9180ce80f881045c13f7fa743.php:242 +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:144 +msgid "Sent for validation to %list_participants%" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:100 -msgid "100 caracteres maximum" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:115 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:123 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:129 +msgid "validation:: OUI" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:133 -msgid "2000 caracteres maximum" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:129 +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:138 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:144 +msgid "validation:: NON" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:160 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:115 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:99 -msgid "Categorie" +#: tmp/cache_twig/69/fa/c10ddfc28ac8ebe1cedfe3130c122b38b3582bf8acf8a197ec61d4841d45.php:142 +msgid "validation:: editer ma note" msgstr "" -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:203 -msgid "500 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:207 -msgid "separe par un espace" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:234 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:204 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:148 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:148 -msgid "Confidentialite" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:241 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:211 -msgid "prive" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:251 -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:221 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:168 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:168 -msgid "public" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:279 -msgid "" -"En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " -"le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " -"accessible au public sur YouTube, et qu'il est autrement conforme aux " -"Conditions d'utilisation de YouTubesitue a %lien_term_youtube%" -msgstr "" - -#: tmp/cache_twig/62/c9/febc32447208e81a85470d962bdb.php:299 -msgid "Retour" -msgstr "" - -#: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:24 -msgid "Nom du nouveau panier" -msgstr "" - -#: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:30 -msgid "paniers::description du nouveau panier" -msgstr "" - -#: tmp/cache_twig/63/7f/82d2f2e4b5036e6518f2b51c2819.php:38 -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:59 -msgid "Ajouter ma selection courrante" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:47 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:47 -msgid "admin::monitor: Ancienne version (client)" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:66 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:66 -msgid "admin::monitor: Nouvelle version (prod)" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:79 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:79 -msgid "admin::monitor: production" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:270 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:270 -msgid "Commandes" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:297 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:297 -msgid "Notifications" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:334 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:334 -msgid "Guest" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:343 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 -msgid "login:: Mon compte" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:364 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:364 -msgid "phraseanet:: aide" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:382 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:382 -msgid "phraseanet:: raccourcis clavier" -msgstr "" - -#: tmp/cache_twig/64/28/a7d70c5dc8c25acaf11754924ec3.php:398 -#: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:398 -msgid "phraseanet:: a propos" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:41 -msgid "print:: image de choix seulement" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:48 -msgid "print:: image de choix et description" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:55 -msgid "print:: image de choix et description avec planche contact" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:66 -msgid "print:: imagette" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:73 -msgid "print:: liste d'imagettes" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:80 -msgid "print:: planche contact (mosaique)" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:99 -msgid "boutton::imprimer" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:109 -msgid "None of the selected records can be printed" -msgstr "" - -#: tmp/cache_twig/64/5b/3b52c9e6402b1b9b14d1a02a24b1.php:115 -msgid "export:: erreur : aucun document selectionne" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:118 -msgid "Quotas" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:139 -msgid "Restrictions de telechargement" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:153 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:147 -msgid "Restriction" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:161 -msgid "Droits" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:169 -msgid "par mois" -msgstr "" - -#: tmp/cache_twig/64/ce/b0c8d427aab7dee5486218714ede.php:173 -msgid "Reste" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:35 -msgid "Granted third party applications" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:47 -msgid "Vous avez autorise ces applications a acceder a votre compte" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:77 -msgid "Revoquer l'access" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:89 -msgid "Authoriser l'access" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:111 -msgid "par %user_name%" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:125 -msgid "Not Allowed" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:133 -msgid "Allowed" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:155 -msgid "Aucune application n'a accés à vos données." -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:167 -msgid "Third-party applications" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:172 -msgid "" -"A third-party application is a product developed apart from Phraseanet and " -"that would access Phraseanet data." -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:180 -msgid "Developpeurs" -msgstr "" - -#: tmp/cache_twig/65/09/4f559930c6b314f6271623d0fbf9.php:185 -msgid "" -"Les developpeurs peuvent editer l'enregistrement de leurs application grace " -"a l'onglet 'developpeurs' ci-dessus" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:20 -msgid "SphinxSearch search-engine configuration" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:29 -msgid "Sphinx Search connection configuration" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:34 -msgid "Sphinx Search server" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:46 -msgid "Sphinx Search RealTime server" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:59 -msgid "Charset to use for indexation" -msgstr "" - -#: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 -msgid "Date fields available for search" -msgstr "" - -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:29 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:29 msgid "Search baskets" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:34 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:34 msgid "See" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:54 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:54 msgid "My baskets" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:66 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:66 msgid "Received baskets" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:78 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:78 msgid "Validations sent" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:90 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:90 msgid "Validations received" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:97 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:97 msgid "When" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:105 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:105 msgid "Any time" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:121 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:121 msgid "This year" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:137 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:137 msgid "Past year" msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:321 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:321 msgid "Something wrong happened, please retry or contact an admin." msgstr "" -#: tmp/cache_twig/67/56/912746c50bff3da02ed0a795feb5.php:336 +#: tmp/cache_twig/6e/0d/be1dc44b4d8e423243243cc5f39ff62602c7bac212eaa079ffed838c94f2.php:336 msgid "You are about to delete this basket. Would you like to continue ?" msgstr "" -#: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:41 -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:41 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:41 -msgid "Edition de 1 element" +#: tmp/cache_twig/6f/4c/b6f51c4a378b733e29cbedf82c9b95114695156c188eba999619b2434f72.php:36 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:36 +msgid "Forgotten password" msgstr "" -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:35 -msgid "Suppression de %n_element% photos" +#: tmp/cache_twig/6f/4c/b6f51c4a378b733e29cbedf82c9b95114695156c188eba999619b2434f72.php:49 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:49 +msgid "Forgot your password?" msgstr "" -#: tmp/cache_twig/6d/73/a213e5339d35274091140ee670fd.php:51 -msgid "Etes vous sur de supprimer %number% photos ?" +#: tmp/cache_twig/6f/4c/b6f51c4a378b733e29cbedf82c9b95114695156c188eba999619b2434f72.php:55 +#: tmp/cache_twig/ce/04/abb0dd38a3ae86bcd87ae985b919fe210c5e0325b9d4adbc0ace6887bca0.php:55 +msgid "Enter your e-mail address to retrieve your password" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 -msgid "phraseanet:: collection" +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:39 +msgid "Ajouter une publication" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 -msgid "admin::base:collection: numero de collection distante" +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:49 +msgid "Feed name" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:97 -msgid "admin::base:collection: etat de la collection" +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:143 +msgid "Date Creation" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 -msgid "admin::base:collection: activer la collection" +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:147 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:153 +msgid "Restriction" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:99 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:312 -msgid "admin::base:collection: descativer la collection" +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:151 +msgid "Public" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:118 -msgid "admin::collection:: Gestionnaires des commandes" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:166 -msgid "setup:: ajouter un administrateur des commandes" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:180 +#: tmp/cache_twig/71/06/43329b12be71d7994f70bef2225df62319272e2340739b84430795e89588.php:278 msgid "" -"admin::collection:: presentation des elements lors de la diffusion aux " -"utilisateurs externes (publications)" +"Une fois la publication supprimee, les donnees publiees seront " +"definitivement perdues. Continuer ?" msgstr "" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:193 -msgid "admin::colelction::presentation des elements : rien" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:203 -msgid "admin::colelction::presentation des elements : watermark" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:213 -msgid "admin::colelction::presentation des elements : stamp" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:291 -msgid "admin::base:collection: renommer la collection" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 -msgid "" -"admin::base:collection: etes vous sur darreter la publication de cette " -"collection" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:307 -msgid "admin::base:collection: etes vous sur de publier cette collection ?" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:323 -msgid "admin::base:collection: etes vous sur de vider la collection ?" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:328 -msgid "admin::base:collection: vider la collection" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:339 -msgid "admin::collection: Confirmez vous la suppression de cette collection ?" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:358 -msgid "admin::base:collection: minilogo actuel" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 -msgid "Watermark" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 -msgid "Stamp logo" -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 -msgid "admin::base:collection: image de presentation : " -msgstr "" - -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "" - -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:118 msgid "regeneration of sub-definitions" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:138 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:138 msgid "video tool" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:161 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:161 msgid "image tool" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:175 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:175 msgid "substitution" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:189 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:189 msgid "meta-datas" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:208 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:208 msgid "Reconstruire les sous definitions" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:217 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:217 msgid "Attention, certain documents ont des sous-definitions substituees" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:224 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:224 msgid "" "Forcer la reconstruction sur les enregistrements ayant des thumbnails " "substituees" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:240 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:240 msgid "recreer aucune sous-definitions" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:246 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:246 msgid "recreer toutes les sous-definitions" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:260 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:429 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:459 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:531 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:610 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:659 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:260 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:429 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:459 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:531 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:610 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:659 msgid "validate" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:264 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:535 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:614 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:663 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:264 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:535 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:614 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:663 msgid "cancel" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:287 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:287 msgid "screenshot video" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:353 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:353 msgid "No preview available" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:364 -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:475 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:364 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:475 msgid "take a screenshot" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:380 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:380 msgid "To take a screenshot click on camera" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:410 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:410 msgid "brightness settings" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:440 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:440 msgid "contrast settings" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:504 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:504 msgid "image rotation" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:510 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:510 msgid "rotation 90 degres horaire" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:518 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:518 msgid "rotation 90 degres anti-horaires" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:561 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:561 msgid "Substitution is not possible for this kind of record" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:583 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:583 msgid "substitution HD" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:592 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:592 msgid "mettre a jour le nom original de fichier apres substitution" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:641 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:641 msgid "substitution SD" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:988 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:988 msgid "alert" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:999 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:999 msgid "no image selected" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1055 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1055 msgid "processing" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1070 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "" -#: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1084 +#: tmp/cache_twig/71/68/1112b2df513872fc6a0bb3e013221f23122021671b9e314c3fd3a725642d.php:1084 msgid "thumbnail validation" msgstr "" -#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:51 -msgid "" -"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " -"votre navigateur." -msgstr "" - -#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:198 -msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." -msgstr "" - -#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:210 -msgid "Message automatique de Phraseanet" -msgstr "" - -#: tmp/cache_twig/6f/4f/c0ae19f2315f82becdae577da950.php:228 -msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" -msgstr "" - -#: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:143 -msgid "Certaines donnees du panier ont change" -msgstr "" - -#: tmp/cache_twig/74/40/b2543df43567118d10e9074b1175.php:62 -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 -msgid "language" -msgstr "" - -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:26 -msgid "panier:: nom" -msgstr "" - -#: tmp/cache_twig/74/8c/fb3b8f5779d71130f9a892a10ada.php:34 -msgid "panier:: description" -msgstr "" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:25 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:24 -msgid "Reordonner automatiquement" -msgstr "" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:43 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:379 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:385 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:513 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:519 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:42 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:379 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:385 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:513 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:519 -msgid "Re-ordonner" -msgstr "" - -#: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:47 -#: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:46 -msgid "Inverser" -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 -msgid "" -"prod::Les enregistrements ne provienent pas tous de la meme base et ne " -"peuvent donc etre traites ensemble" -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 -msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 -msgid "erreur : Vous n'avez pas les droits" -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 -msgid "One document can not be modified." -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 -#, php-format -msgid "%countable% documents can not be modified." -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 -msgid "Move one record to the chosen collection in the list." -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 -msgid "Move %countable% records to the chosen collection in the list." -msgstr "" - -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 -msgid "" -"prod::collection deplacer egalement les documents rattaches a ce(s) " -"regroupement(s)" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:59 -msgid "Le bridge Dailymotion ne prend en charge que les videos" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:63 -msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:100 -msgid "255 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:132 -msgid "1000 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:165 -msgid "250 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:169 -msgid "10 tags maximum" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:173 -msgid "Séparez les tags par un espace: Paris vacances restaurant" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:177 -msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" -msgstr "" - -#: tmp/cache_twig/77/5d/2d4141c254300be996817c43b5df.php:245 -msgid "" -"Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " -"contenu de la vidéo que vous allez mettre en ligne est conforme aux " -"conditions d'utilisations" -msgstr "" - -#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:28 -#: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 -msgid "Aucune notification" -msgstr "" - -#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:37 -#: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 -msgid "toutes les notifications" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:203 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:243 -msgid "thesaurus::menu: proprietes" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:207 -msgid "thesaurus::menu: refuser" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:211 -msgid "thesaurus::menu: accepter" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:216 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:255 -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:111 -msgid "thesaurus::menu: supprimer" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:220 -msgid "thesaurus::menu: supprimer les candidats a 0 hits" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:225 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:260 -msgid "thesaurus::menu: chercher" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:229 -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:264 -msgid "thesaurus::menu: exporter" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:236 -msgid "thesaurus::menu: importer" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:247 -msgid "thesaurus::menu: Nouveau terme" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:251 -msgid "thesaurus::menu: Nouveau synonyme" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:268 -msgid "thesaurus::menu: export topics" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:273 -msgid "thesaurus::menu: lier au champ" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:321 -msgid "thesaurus:: onglet stock" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:327 -msgid "thesaurus:: afficher les termes refuses" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:341 -msgid "thesaurus:: onglet thesaurus" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:546 -msgid "" -"thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " -"en candidats a la prochaine indexation)" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:551 -msgid "" -"thesaurus:: Des reponses sont retournees par cette branche. Supprimer " -"quand meme ? (les termes concernes remonteront en candidats a la " -"prochaine indexation)" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:605 -msgid "thesaurus:: Tous les termes ont des hits" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:614 -msgid "" -"thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " -"supprimer ?" -msgstr "" - -#: tmp/cache_twig/79/7e/0f07e823a9358f833aa4cbdcc8bd.php:1217 -msgid "thesaurus:: deplacer le terme dans la corbeille ?" -msgstr "" - -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:79 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:80 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 msgid "" @@ -7553,8 +5462,7 @@ msgid "" "contactez le support technique" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:83 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:84 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 msgid "" @@ -7562,1391 +5470,528 @@ msgid "" "indisponible" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:87 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:88 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 msgid "" "phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:91 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:92 msgid "Cocher toute la colonne" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:95 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:96 msgid "Decocher toute la colonne" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:99 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:100 msgid "Creer un model" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:103 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:104 msgid "Creer un utilisateur" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:111 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 msgid "This file is too big" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:115 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:116 msgid "This field is required" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:299 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:120 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:197 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +msgid "Attention" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:124 +msgid "Reset and apply" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:128 +msgid "Confirm reset users rights before applying template" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:132 +msgid "Rights will be erased before applying template, do you confirm?" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:136 +msgid "Reset and apply template" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:140 +msgid "Apply template" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:144 +msgid "Reset rights before applying template?" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:148 +msgid "Would you like to reset rights before applying the template?" +msgstr "" + +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:328 msgid "Successful install" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:317 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:346 msgid "Ajouter un nouvel utilisateur" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:322 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:351 msgid "Adresse email du nouvel utilisateur" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:329 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:358 msgid "Send an email to the user to setup his password" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:336 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:365 msgid "Require email validation to activate the account" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:344 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:373 msgid "Creer un modele" msgstr "" -#: tmp/cache_twig/79/b4/aaeae6a7b428bb7783c080e07f87.php:349 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 +#: tmp/cache_twig/73/03/9a27406d67e97dba3fafde7321d7008cb06ff2134c95c4d3d54b48fbab0a.php:378 msgid "Nom du nouveau modele" msgstr "" -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:33 -msgid "Creer un Photoset" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:38 +msgid "Records Statut" msgstr "" -#: tmp/cache_twig/7a/4d/f323ec63b36ee09ba2715deaf772.php:82 -msgid "Photo principale" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:45 +msgid "Records type" msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:53 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:53 -msgid "Vous avez recu un nouveau panier" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:57 +msgid "You have selected one record." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:111 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:111 -msgid "Vous avez recu une demande de validation de document sur ce panier" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:63 +msgid "You have selected %nbReceivedDocuments% records." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:134 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:301 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:480 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:134 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:301 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:480 -msgid "action::exporter" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:74 +msgid "None of the records can be modified." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:145 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:491 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:145 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:491 -msgid "action::editer" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:86 +msgid "Only one record can be modified." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:170 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:341 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:170 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:341 -msgid "action::Valider" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:92 +msgid "Only %nbEditableDocuments% records can be modified." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:253 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:253 -msgid "Vous avez envoye une demande de validation de document sur ce panier" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:151 +msgid "Stories status edition" msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:274 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:274 -msgid "paniers:: panier recu de %pusher%" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:157 +msgid "Records status edition" msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:317 -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:323 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:317 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:323 -msgid "action::renommer" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:310 +msgid "Apply status on stories children." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:358 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:358 -msgid "Archive" +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:316 +msgid "Apply status on story children." msgstr "" -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:504 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:504 -msgid "action::detacher" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:720 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:720 -msgid "delete" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:809 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:809 -msgid "panier:: ordre du panier" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:817 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:817 -msgid "panier:: ordre Validation ascendante" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:825 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:825 -msgid "panier:: ordre Validation descendante" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:873 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:873 -msgid "L'utilisateur approuve ce document" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:879 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:879 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:885 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:885 -msgid "L'utilisateur desapprouve ce document" -msgstr "" - -#: tmp/cache_twig/7a/fb/c753f3c4bcef74da1893baab1955.php:894 -#: tmp/cache_twig/f8/85/9157487f457f3f2277b96a073cdf.php:894 -msgid "This user does not participate to the validation but is only viewer." -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:35 -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:364 -msgid "paniers:: %nb_basket_elements% documents dans le panier" -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:62 -msgid "paniers::categories: mes paniers" -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:91 -msgid "paniers::categories: paniers recus" -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:168 -msgid "action : ouvrir dans le comparateur" -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:188 -msgid "paniers:: panier emis par %pusher_name%" -msgstr "" - -#: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:380 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "" - -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:63 -msgid "Hi, Please log in" -msgstr "" - -#: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:53 -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:48 -msgid "Erreur !" -msgstr "" - -#: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:57 -msgid "Le panier demande nexiste plus" -msgstr "" - -#: tmp/cache_twig/7e/ae/634cc7a06d2fabdba9ab8bd5ef84.php:67 -msgid "Retour a l'accueil" -msgstr "" - -#: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:22 -msgid "Terms Of Use" -msgstr "" - -#: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:35 -msgid "" -"admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" -msgstr "" - -#: tmp/cache_twig/80/2a/90b7ded4920d9f03a0b72c945a3a.php:40 -msgid "Mettre a jour" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:50 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:191 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:50 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:191 -msgid "Les documents ne peuvent pas etre exportes" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:68 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:104 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:68 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:104 -msgid "export:: telechargement" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:72 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:280 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:72 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:280 -msgid "export:: envoi par mail" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:81 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:81 -msgid "export:: commande" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:90 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:844 -msgid "export:: FTP" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:172 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:385 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:560 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:953 -msgid "Documents indisponibles" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:230 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:445 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1013 -msgid "Include Business-fields in caption" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:256 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:471 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:813 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1036 -msgid "" -"By checking this box, you accept %beginning_link% Terms of Use %end_link%" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:297 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:297 -msgid "export::mail: destinataire" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:311 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:311 -msgid "Recevoir un accuse de reception a %my_email%" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:320 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:320 -msgid "" -"Accuse de reception indisponible, vous n'avez pas declare d'adresse email" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:328 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:328 -msgid "Entrez plusieurs adresses email en les separant par des points-virgules" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:334 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:334 -msgid "export::mail: contenu du mail" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:341 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:909 -msgid "export::mail: fichiers joint" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:404 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:571 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:972 -msgid "La sous resolution n'est pas disponible pour les documents suivants" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:481 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1051 -msgid "boutton::envoyer" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:518 -msgid "Un document commande" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:524 -#, php-format -msgid "%docs_orderable% documents commandes" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:539 -msgid "Un document ne peut etre commande" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:545 -#, php-format -msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:616 -msgid "commande::utilisation prevue" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:626 -msgid "commande::deadline" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:636 -msgid "Civility" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:824 -msgid "boutton::commander" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:862 -msgid "phraseanet:: prereglages" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1046 -msgid "boutton::essayer" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1099 -msgid "You must agree to the Terms of Use to continue." -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1111 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1167 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1197 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1365 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1422 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1449 -msgid "Warning !" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1155 -msgid "Certains champs sont obligatoires, veuillez les remplir" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1185 -msgid "Vous devez selectionner un type de sous definitions" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1217 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 -msgid "Terms of Use" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1286 -msgid "" -"You can not directly download more than %max_download% Mo ; time to package " -"all documents is too long" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1295 -msgid "You can alternatively receive an email when the download is ready." -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1304 -msgid "Would you like to receive an e-mail when your download is ready ?" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1540 -msgid "phraseanet:: utiliser SSL" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1586 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 -msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1604 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 -msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1620 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 -msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1636 -msgid "admin::compte-utilisateur:ftp: creer un dossier" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1664 -msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1706 -msgid "Nom des fichiers a l'export" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1723 -msgid "export::titre: titre du documument" -msgstr "" - -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 -#: tmp/cache_twig/d1/b2/2347bd60854d7061889027965f84.php:1740 -msgid "export::titre: nom original du document" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:28 -msgid "thesaurus:: Nouveau terme specifique" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:30 -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:29 -msgid "thesaurus:: Nouveau synonyme" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:68 -msgid "thesaurus:: le terme %term% avec contexte %context%" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:80 -msgid "thesaurus:: le terme %term% sans contexte" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:97 -msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:103 -msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:155 -msgid "thesaurus:: selectionner la provenance a accepter" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:184 -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:190 -msgid "" -"thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " -"a cet emplacement du thesaurus" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:201 -msgid "thesaurus:: n'est pas present dans les candidats" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:209 -msgid "thesaurus:: attention :" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:229 -msgid "thesaurus:: Ajouter le terme dans reindexer" -msgstr "" - -#: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:234 -msgid "thesaurus:: ajouter le terme et reindexer" -msgstr "" - -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:35 -#: tmp/cache_twig/8b/07/41594b1dedbacd0ce078f5a060ef.php:95 -msgid "report:: activite par jour" -msgstr "" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:35 -msgid "Apply to all selected documents" -msgstr "" - -#: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 +#: tmp/cache_twig/74/3d/4b2851d1f18c8ae4b91891284ae6d293c84c4718d08f94fe9a506e8ba6d7.php:340 +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:147 msgid "Apply changes" msgstr "" -#: tmp/cache_twig/8c/3a/fd98b01fe80e00a6b511832ccc0e.php:126 -#: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:126 -msgid "reponses:: partager" +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:39 +msgid "Change my email address" msgstr "" -#: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:158 -#: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:158 -msgid "privé" +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:89 +msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "" -#: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:56 -#: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:56 -msgid "Vous devez remplir les champs requis" +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:99 +msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "" -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:22 -#: tmp/cache_twig/91/83/38166d65e1c1a023b692189b19d6.php:27 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:22 -#: tmp/cache_twig/a1/e2/138b34bdc3f10a871997e5d7b03d.php:27 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:166 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:170 -msgid "validation::envoyer mon rapport" +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:120 +msgid "" +"admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour " +"changer mon adresse email ?" msgstr "" -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:71 -msgid "First/Last Name" +#: tmp/cache_twig/77/d3/dcfe7da857b9ab84851a598e4dee837bd3edfee407c3312fad764f3c21a1.php:125 +msgid "" +"admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la " +"perte de votre mot de passe afin de pouvoir le reinitialiser, il est " +"important que vous soyez la seule personne a pouvoir la changer." msgstr "" -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:107 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:107 -msgid "E-Mail" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:34 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:277 +msgid "phraseanet:: preview" msgstr "" -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:143 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:143 -msgid "Last Template" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:41 +msgid "print:: image de choix seulement" msgstr "" -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:161 -#: tmp/cache_twig/e8/b4/a3bca02871ed30f07a56c1874a56.php:161 -msgid "Creation date" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:48 +msgid "print:: image de choix et description" msgstr "" -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 -msgid "More" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:55 +msgid "print:: image de choix et description avec planche contact" msgstr "" -#: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:54 -msgid "Remove from basket" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:66 +msgid "print:: imagette" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:35 -msgid "Client applications" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:73 +msgid "print:: liste d'imagettes" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:48 -msgid "Mes applications" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:80 +msgid "print:: planche contact (mosaique)" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:83 -msgid "button::supprimer" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:99 +msgid "boutton::imprimer" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:101 -msgid "Are you sure you want to delete this application?" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:109 +msgid "None of the selected records can be printed" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:107 -msgid "No" +#: tmp/cache_twig/79/47/eed7a9ea46e1d02eb0ebd80194214a7494b7e3d4638b527cc660f24fe618.php:115 +msgid "export:: erreur : aucun document selectionne" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 -msgid "Yes" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:66 +msgid "admin::tasks: nom de la tache" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:156 -msgid "Aucune application creee." +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:73 +msgid "admin::tasks: lancer au demarrage du scheduler" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:168 -msgid "Decouvrez la documentation" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:85 +msgid "admin::tasks: Nombre de crashes : " msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:173 -msgid "Demarrer avec l'API Phraseanet" +#: tmp/cache_twig/79/ac/d3a891b78a652108edcf354cf1add002d3f815ce24132d97879dee31bbad.php:93 +msgid "admin::tasks: reinitialiser el compteur de crashes" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:180 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:26 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:238 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:27 +msgid "VALIDATION" msgstr "" -#: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:188 -msgid "Creer une nouvelle applications" +#: tmp/cache_twig/7b/5a/abce5d0d0cf730cfe1cd883da07909dba632612fb648294592e0a8b0365f.php:32 +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:265 +#: tmp/cache_twig/c1/cf/fb5783f907c1f83aab502508e97d488917fee6feb3eca0e9bf1e716fdc01.php:33 +msgid "lightbox::recaptitulatif" msgstr "" -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:51 -msgid "Story name" +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:26 +msgid "panier:: nom" msgstr "" -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:40 -msgid "Toutes les publications" +#: tmp/cache_twig/7b/78/ec649f2f6de8b9f587807a7506886160f0962b43f440ee8d1294cb96e9f3.php:34 +msgid "panier:: description" msgstr "" -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:76 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:84 -msgid "publications:: s'abonner aux publications" -msgstr "" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:97 -msgid "Aller a" -msgstr "" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:165 -msgid "Aucune entree pour le moment" -msgstr "" - -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:188 -#: tmp/cache_twig/9d/58/076e3e45ff1b920f80c3fc20ad69.php:199 -msgid "charger d'avantage de publications" -msgstr "" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:57 -msgid "thesaurus:: Editer le thesaurus" -msgstr "" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:62 -msgid "phraseanet:: choisir" -msgstr "" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:99 -msgid "thesaurus:: langue pivot" -msgstr "" - -#: tmp/cache_twig/9e/0b/789352126ca1a206b17457608d52.php:138 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 -msgid "Renew password" -msgstr "" - -#: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:51 -#: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:49 -msgid "Choose a new password" -msgstr "" - -#: tmp/cache_twig/a0/94/5e2e90f360df19ba927301e724d5.php:77 -msgid "No matches found" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:47 -msgid "Edition" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:145 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:57 -msgid "Sous-titre" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:150 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:62 -msgid "Short description" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:159 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:69 -msgid "Etendue de la publication" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:170 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:75 -msgid "Non-Restreinte (publique)" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:223 -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:119 -msgid "Publique" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:245 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:252 -msgid "Id" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:257 -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:171 -msgid "Email" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:261 -msgid "Owner" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:360 -msgid "Ajouter un publisher" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:365 -msgid "Name or email" -msgstr "" - -#: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:416 -msgid "You are not the feed owner" -msgstr "" - -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:25 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 -msgid "Updated structure" -msgstr "" - -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:29 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:29 -msgid "Structure has been successfully updated" -msgstr "" - -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:45 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:45 -msgid "Structure errors" -msgstr "" - -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:49 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:49 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "" - -#: tmp/cache_twig/a2/51/9f337198d517a7195877ddb2f6d4.php:105 -#: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:105 -msgid "admin::base: structure" -msgstr "" - -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:146 msgid "client:: recherche" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:165 msgid "client:: recherche avancee" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:184 msgid "client:: topics" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:219 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:221 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:242 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:244 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:533 msgid "phraseanet::technique:: et" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:225 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:227 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:248 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:250 msgid "phraseanet::technique:: or" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:231 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:233 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:254 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:256 msgid "phraseanet::technique:: except" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:269 msgid "client::recherche: rechercher dans les bases :" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:279 msgid "client::recherche: rechercher dans toutes les bases" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:343 msgid "phraseanet:: presentation des resultats" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:397 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:606 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1049 +msgid "phraseanet::type:: documents" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:405 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:618 +msgid "phraseanet::type:: reportages" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:419 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:320 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:588 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 +msgid "boutton::rechercher" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:434 msgid "phraseanet:: collections" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:436 msgid "" "client::recherche: cliquez ici pour desactiver tous les filtres de toutes " "base" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:452 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:235 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:239 +msgid "phraseanet:: propositions" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:463 msgid "phraseanet:: historique" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:478 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:668 +msgid "boutton:: selectionner toutes les bases" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:482 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:673 +msgid "boutton:: selectionner aucune base" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:521 msgid "" "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:703 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:950 +msgid "phraseanet::time:: de" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:709 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:960 +msgid "phraseanet::time:: a" +msgstr "" + +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:793 msgid "client::recherche: filter sur" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:806 msgid "client::recherche: filtrer par dates" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:819 msgid "client::recherche: filtrer par status" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:832 msgid "client::recherche: filtrer par champs" msgstr "" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:841 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "" -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 -msgid "validation:: editer ma note" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:987 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1977 +msgid "preview:: Description" msgstr "" -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:23 -msgid "publications:: dernieres publications" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:991 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1981 +msgid "preview:: Historique" msgstr "" -#: tmp/cache_twig/a8/88/87d8e44e39b577e82849f2f9b761.php:86 -msgid "publications:: derniere mise a jour" +#: tmp/cache_twig/7b/d2/727d4c9199e9e52f920cff098e5de9b86906f279696610f3599ca2a04bdf.php:995 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1988 +msgid "preview:: Popularite" msgstr "" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 -msgid "The user has been created." +#: tmp/cache_twig/7e/d7/fc11a3521d90d05479b8e9e5b7a637086675de8b1e83c76016239918b8f0.php:54 +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:57 +#: tmp/cache_twig/ec/97/b5b5bcb1a77a1178342e9aadece33928490fd66f74bf94ac4961513eafd6.php:54 +msgid "Voulez-vous dire %link% ?" msgstr "" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#, php-format -msgid "%user_count% users have been created." +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:63 +msgid "Setup" msgstr "" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 -msgid "admin::user: nouvel utilisateur" +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:247 +#: tmp/cache_twig/7e/e9/dcb5c6d20c45e2232fc0afb5b12b055ace60f7fde45f2512ae1c3a1ac7eb.php:298 +msgid "erreur avec la valeur %name%" msgstr "" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 -msgid "admin::user: nouveau template" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 -msgid "Filter" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 -msgid "Last applied template" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 -msgid "boutton::appliquer" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 -msgid "This is a template" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 -msgid "This user has no rights" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 -msgid "%n_par_page% par page" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 -msgid "Supprimer" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 -msgid "boutton::exporter" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 -msgid "select at least one user" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 -msgid "Are you sure you want delete users rights ?" -msgstr "" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 -msgid "users rights have been reseted" -msgstr "" - -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:28 +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:30 msgid "" -"%name% est momentanement indisponible a cause d'un trop grand nombre de " -"requetes" +"Cochez les cases correspondantes aux colonnes que vous desirez voire " +"apparaitre dans le report" msgstr "" -#: tmp/cache_twig/ab/45/99676827a85971aec9edbe824e39.php:33 -msgid "le service sera de nouveau disponible dans quelques minutes" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:36 +msgid "cocher tout" msgstr "" -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:27 -msgid "thesaurus:: Lier la branche de thesaurus au champ" +#: tmp/cache_twig/81/44/0c9c4bee88c4c88e7e1d1c098cfb075a19b5938b5e48aec05454d5218196.php:43 +msgid "tout decocher" msgstr "" -#: tmp/cache_twig/ae/cf/7a527210014fe3479d5fdf4c2d50.php:90 -msgid "thesaurus:: Lier la branche de thesaurus au champ %branch%" +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:35 +msgid "Granted third party applications" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:27 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:27 -msgid "thesaurus:: Lier la branche de thesaurus" +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:47 +msgid "Vous avez autorise ces applications a acceder a votre compte" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:90 -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:77 +msgid "Revoquer l'access" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:97 -msgid "thesaurus:: nouvelle branche" +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:89 +msgid "Authoriser l'access" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:110 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:111 +msgid "par %user_name%" +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:125 +msgid "Not Allowed" +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:133 +msgid "Allowed" +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:155 +msgid "Aucune application n'a accés à vos données." +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:167 +msgid "Third-party applications" +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:172 msgid "" -"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " -"candidats seront supprimes" +"A third-party application is a product developed apart from Phraseanet and " +"that would access Phraseanet data." msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:129 +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:180 +msgid "Developpeurs" +msgstr "" + +#: tmp/cache_twig/81/48/d14631080f07b95467ae60560096b7b8e1bd61003f08810d24585629368f.php:185 msgid "" -"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " -"est necessaire" +"Les developpeurs peuvent editer l'enregistrement de leurs application grace " +"a l'onglet 'developpeurs' ci-dessus" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:137 -msgid "" -"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " -"base est necessaire" +#: tmp/cache_twig/81/77/aa0ae872f23da6cf43651559488ecd8b2ce0d312802b035d74cc9454f38f.php:62 +#: tmp/cache_twig/9d/3f/9db15040ddd2998d5b48eaaf7f4cc5117d98fb54ef8259809c783174693c.php:62 +msgid "language" msgstr "" -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:167 -msgid "thesaurus:: reindexation necessaire" -msgstr "" - -#: tmp/cache_twig/af/eb/d1f28ad2e4dd6a9c900505bf13ad.php:173 -msgid "thesaurus:: pas de reindexation" -msgstr "" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:48 -msgid "thesaurus:: suppression du lien du champ %field%" -msgstr "" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:66 -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:81 -msgid "" -"thesaurus:: suppression de la branche de mot candidats pour le champ %field%" -msgstr "" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:96 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:110 -msgid "" -"thesaurus:: suppression des indexes vers le thesaurus pour le champ %field%" -msgstr "" - -#: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:125 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:124 -msgid "En attente" -msgstr "" - -#: tmp/cache_twig/b0/f2/1c32b9fc72d89dd38356f5565081.php:130 -msgid "En cours d'envoi" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:28 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:28 -msgid "Save all changes" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:40 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:40 -msgid "Close" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:44 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:44 -msgid "Ok" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:56 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:56 -msgid "Live search" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:74 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:80 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:74 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:80 -msgid "Add a new field" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:108 -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:189 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:108 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:189 -msgid "Multivalued" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:133 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:133 -msgid "Order" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:174 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:174 -msgid "DCES" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:197 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:197 -msgid "Advanced field parameters" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:203 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:203 -msgid "Thesaurus branch" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:210 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:210 -msgid "Type" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:225 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:225 -msgid "Vocabulary type" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:243 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:243 -msgid "Limited vocabulary" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:255 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:255 -msgid "Business Fields" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:263 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:263 -msgid "Separator" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:270 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:270 -msgid "Display & action settings" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:279 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:279 -msgid "Mandatory" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:290 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:290 -msgid "Indexable" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:301 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:301 -msgid "Read-only" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:320 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:320 -msgid "Display thumbnails" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:326 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:326 -msgid "Tous" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:330 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:330 -msgid "Aucun" -msgstr "" - -#: tmp/cache_twig/b3/d3/b17e5c4d0f8db9b9fd3856b08ef2.php:395 -#: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:395 -msgid "Current configuration contains some errors" -msgstr "" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:42 -msgid "Oups ! something went wrong !" -msgstr "" - -#: tmp/cache_twig/b6/30/cdb992eaf26c1a34c5a7368b2328.php:70 -msgid "boutton::retry" -msgstr "" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:58 -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:66 -msgid "admin::tasks: nom de la tache" -msgstr "" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:73 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:85 -msgid "admin::tasks: Nombre de crashes : " -msgstr "" - -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:93 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:77 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:84 -msgid "You are using the Flash uploader." -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:87 -msgid "" -"This version does not allow you to access all the features offered by the " -"HTML5 uploader" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:94 -msgid "Use the HTML5 uploader" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 -msgid "You have attempted to queue too many files" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:464 -msgid "Unknow Error" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:474 -msgid "Cannot upload Zero Byte files" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 -msgid "Unhandled Error" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:520 -msgid "Unknow reason" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:527 -msgid "Bad request, please contact an admin" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:533 -msgid "Upload URL is not set, please contact an admin" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:539 -msgid "Connection terminates unexpetecdly, please retry" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:545 -msgid "The upload violates a security restriction, please retry" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:551 -msgid "File upload limit (%maxFileSizeReadable%) has been reached" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:557 -msgid "Could not initiate upload, please retry" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:563 -msgid "" -"Could not retrieve the file ID, please retry or contact an admin if problem " -"persist" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:569 -msgid "File validation failed" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:575 -msgid "File upload has been cancelled" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:581 -msgid "File upload has been stopped" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:588 -msgid "Error while uploading" -msgstr "" - -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:682 -msgid "Please select at least one valid file" -msgstr "" - -#: tmp/cache_twig/b9/af/9971d91b73068f7c9e5f5d93b0d6.php:33 +#: tmp/cache_twig/83/68/65f9edf3853f4922da92ff91c9ca2314897251b8b5c685aedde10186bd09.php:33 msgid "report:: Enlever le filtre" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:37 -msgid "thesaurus:: accepter..." +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:48 +msgid "Erreur !" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:181 -msgid "thesaurus:: removed_src" +#: tmp/cache_twig/84/98/cb0959342358a22ad58d36f66207e27698c94d0e83a6b7e331ba6c05f4ae.php:62 +msgid "Retour a laccueil" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:187 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:216 -msgid "thesaurus:: refresh" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:27 +msgid "No preview available." msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:210 -msgid "thesaurus:: removed tgt" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:33 +msgid "No permalink available." msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:261 -msgid "thesaurus:: Accepter le terme comme" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:62 +msgid "Send to Twitter" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:269 -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:292 -msgid "thesaurus:: comme terme specifique" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:74 +msgid "Send to Facebook" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:278 -msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:83 +msgid "Resource URL" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:289 -msgid "thesaurus:: Accepter la branche comme" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:91 +msgid "Detailed view URL" msgstr "" -#: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:323 -msgid "" -"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " -"ne peut etre accepte" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:102 +msgid "Embed code" msgstr "" -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:133 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:131 -msgid "(validation) session terminee" +#: tmp/cache_twig/87/a4/ca705c343ce48b730241b81a040452a7e56ea4fe520e9a5ae6781b3c2f0d.php:138 +msgid "No URL available" msgstr "" -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:139 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:137 -msgid "(validation) envoyee" -msgstr "" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:145 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:143 -msgid "(validation) a envoyer" -msgstr "" - -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:154 -#: tmp/cache_twig/c4/25/3d83cc10f0a070ab4edc497f7e99.php:256 -#: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:109 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:152 -#: tmp/cache_twig/d3/f5/6514cccadf5afe3bb041585a94aa.php:254 -#, php-format -msgid "%basket_length% documents" -msgstr "" - -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:22 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:22 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:320 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:355 @@ -8957,710 +6002,3092 @@ msgstr "" msgid "You are not authorized to do this" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:29 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:29 msgid "About Roles : " msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:34 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:34 msgid "Admin can edit shares, modify content" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:40 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:40 msgid "Editor can modify content" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:46 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:46 msgid "Access user have readonly access" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:54 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:54 msgid "Find a user" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:91 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:91 msgid "You are Admin" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:100 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:100 msgid "Role" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:126 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:126 msgid "Editor" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:139 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:139 msgid "Admin" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:155 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:155 msgid "Remove" msgstr "" -#: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:164 +#: tmp/cache_twig/8b/0a/f7912f8126e064a4a3fccfee7149e008d622893db5469d1e1564a7c6152b.php:164 msgid "Notify" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:38 -msgid "Records Statut" +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:23 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:110 +msgid "Lists" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:45 -msgid "Records type" +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:41 +msgid "Refresh" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 -msgid "You have selected one record." +#: tmp/cache_twig/8e/32/5ac705704ef9e1dbf489dab6f7f17ec63072bd430fd23996e2b58512149f.php:77 +msgid "(%length%)" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 -msgid "You have selected %nbReceivedDocuments% records." +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:43 +msgid "forms::operation effectuee OK" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 -msgid "None of the records can be modified." +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:81 +msgid "admin::base: Alias" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 -msgid "Only one record can be modified." +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:99 +msgid "Rename" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 -msgid "Only %nbEditableDocuments% records can be modified." +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:112 +msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 -msgid "Stories status edition" +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:122 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:107 +msgid "phraseanet:: details" msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 -msgid "Records status edition" +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:133 +msgid "admin::base: nombre de mots uniques sur la base : " msgstr "" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 -msgid "Loading" +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:142 +msgid "admin::base: nombre de mots indexes sur la base" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:35 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:155 +msgid "admin::base: nombre de termes de Thesaurus indexes :" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:174 +msgid "admin::base: document indexes en utilisant la fiche xml" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:185 +msgid "admin::base: document indexes en utilisant le thesaurus" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:210 +msgid "admin::base: Cette base est indexable" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:268 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:271 +msgid "Set labels" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:285 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:22 +msgid "admin::base:collection: Creer une collection" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:296 +msgid "admin::base: Confirmer la suppression de tous les logs" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:301 +msgid "admin::base: supprimer tous les logs" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:312 +msgid "admin::base: Confirmer vous l'arret de la publication de la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:317 +msgid "admin::base: arreter la publication de la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:328 +msgid "admin::base: Confirmer le vidage complet de la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:333 +msgid "admin::base: vider la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:344 +msgid "admin::base: Confirmer la suppression de la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:349 +msgid "admin::base: supprimer la base" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:361 +msgid "Confirmez-vous la re-indexation de la base ?" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:365 +msgid "base:: re-indexer" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:379 +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:438 +msgid "admin::base:collection: Monter une collection" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:397 +msgid "Monter" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:406 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:70 +msgid "" +"admin::base:collection: Vous pouvez choisir une collection de reference pour " +"donenr des acces " +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:411 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1871 +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:85 +msgid "choisir" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:466 +msgid "Activer une collection" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:510 +msgid "admin::base: logo impression PDF" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:526 +msgid "admin::base:collection: supprimer le logo" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:536 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:389 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:445 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:501 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:557 +msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:546 +msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:569 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 +msgid "admin::base: aucun alias" +msgstr "" + +#: tmp/cache_twig/8f/c0/f715caf5a5e0a9877b0a258e829b98624be5d0dffc4175f0d8ee6dc5e473.php:696 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:350 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:594 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:146 +msgid "" +"Invalid file type, only (%supported_file_types%) file formats are supported" +msgstr "" + +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:58 +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:56 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:56 +msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" +msgstr "" + +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:61 +msgid "Le bridge FlickR ne prend en charge que les photos" +msgstr "" + +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:71 +msgid "%n_elements% elements ne peuvent etre uploades" +msgstr "" + +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:83 +#, php-format +msgid "Upload sur Flickr de %elements_length% elements" +msgstr "" + +#: tmp/cache_twig/91/84/4f6da9bab2a9a61fcc290c8e3644331563205545ddbcc7c7812abf509148.php:197 +msgid "2000 caracteres maximum, separe par des espaces" +msgstr "" + +#: tmp/cache_twig/93/07/88e9fdb0119187d9130740b9f5c0369b49557cebb300f7c182b9627cc987.php:391 +#: lib/Alchemy/Phrasea/Controller/Lightbox.php:449 +msgid "Do you want to send your report ?" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:90 +msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %old_branch%" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:97 +msgid "thesaurus:: nouvelle branche" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:110 +msgid "" +"thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et " +"candidats seront supprimes" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:129 +msgid "" +"thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base " +"est necessaire" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:137 +msgid "" +"thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la " +"base est necessaire" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:167 +msgid "thesaurus:: reindexation necessaire" +msgstr "" + +#: tmp/cache_twig/95/57/c615642fd8f0448acdbdde587d2b316e491f1c32c40896fa06ed62875ad8.php:173 +msgid "thesaurus:: pas de reindexation" +msgstr "" + +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:37 +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:60 +msgid "Authorization Access" +msgstr "" + +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:77 +msgid "" +"Do you authorize the application %application_name% to access to your " +"Phraseanet content?" +msgstr "" + +#: tmp/cache_twig/97/bf/6e80dc8e38f931a75e18aa4cebe783a4bc463899c10228ba4294c5ff2180.php:89 +msgid "Authorize" +msgstr "" + +#: tmp/cache_twig/97/fc/84a85b0beb714a19ecdec14dfb0882cf1a3bf4cee1c20a8a70bad2d7229b.php:22 +msgid "Reorder collections" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:71 +msgid "Do not forget to restart the tasks scheduler" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:101 +msgid "version" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:132 +msgid "admin::base: Version" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:140 +msgid "update::Votre application necessite une mise a jour vers : " +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:148 +msgid "update::Votre version est a jour : " +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:189 +msgid "Propositions de modifications des tables" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:217 +msgid "update::Verifier els tables" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:225 +msgid "admin::base: creer une base" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:236 +msgid "" +"phraseanet:: Creer une base sur un serveur different de l'application box" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:242 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:323 +msgid "phraseanet:: hostname" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:252 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:333 +msgid "phraseanet:: user" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:257 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:338 +msgid "phraseanet:: password" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:263 +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:344 +msgid "phraseanet:: dbname" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:268 +msgid "phraseanet:: Modele de donnees" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:297 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 +msgid "boutton::creer" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:306 +msgid "admin::base: Monter une base" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:317 +msgid "" +"phraseanet:: Monter une base provenant d'un serveur different de " +"l'application box" +msgstr "" + +#: tmp/cache_twig/98/93/7d0a71abf2bb9dbce8679222208d475e97386c87f03b6847cea9a11043a8.php:350 +msgid "boutton::monter" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:202 +msgid "admin:: demandes en cours" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:214 +msgid "Requests for the application registrations were recorded successfully" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:232 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:405 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:409 +msgid "admin:: refuser l'acces" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:238 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:416 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:420 +msgid "admin:: donner les droits de telechargement et consultation de previews" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:244 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:427 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:431 +msgid "admin:: donner les droits de telechargements de preview et hd" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:250 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:438 +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:442 +msgid "admin:: watermarquer les documents" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:264 +msgid "admin::collection" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:268 +msgid "Models" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:456 +msgid "admin:: appliquer le modele" +msgstr "" + +#: tmp/cache_twig/98/d9/8de0254696524ed146bfd8b1ffd063a2f779e64fd025f334643a60170c7d.php:511 +msgid "No application for registration has been recorded" +msgstr "" + +#: tmp/cache_twig/9a/af/a1037f8c999f73036a656301976bf104ace3fbd735257245a01214edc010.php:122 +#: tmp/cache_twig/b0/d1/517f30cd82f5d4ead4063de4342d258e96da49577fc507c20e2018163776.php:122 +msgid "More" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:22 +msgid "Story_id" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:30 +msgid "Record_id" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:50 +msgid "Nom Original" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:130 +msgid "Camera Model" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:144 +msgid "Color space" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:158 +msgid "Channels" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:172 +msgid "Color Depth" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:186 +msgid "ISO sensibility" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:200 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:651 +msgid "Flash" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:226 +msgid "Shutter speed" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:240 +msgid "Aperture" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:254 +msgid "Focal length" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:268 +msgid "Hyperfocal distance" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:282 +msgid "Light Value" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:298 +msgid "Duree" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:312 +msgid "Images par secondes" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:326 +msgid "Codec Audio" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:340 +msgid "Codec Video" +msgstr "" + +#: tmp/cache_twig/9b/71/aabfd6faed31f47e6f4c6943070223592d6836456f7c812cb4f5965369c8.php:354 +msgid "Frequence d'echantillonage" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:29 +msgid "Fail" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:35 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1359 +msgid "Success" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:95 +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:143 +msgid "Hello %username%" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:110 +msgid "Erreur" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:117 +msgid "%error%" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:133 +msgid "Code d'acces" +msgstr "" + +#: tmp/cache_twig/a0/6d/b012d0833deb0d1b98b1e841abca7107316bde59efdbed92e7de0a57c178.php:140 +msgid "" +"Copiez le code ci-dessous, retournez dans votre application et collez-le " +"à l'endroit requis :" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:152 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:269 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:411 +msgid "report:: 3 - Type de report" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:165 +msgid "report:: (connexions) Par utilisateurs" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:178 +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:282 +msgid "report:: Grouper par" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:209 +msgid "report:: (connexions) Globales" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:219 +msgid "report:: (connexions) OS et navigateurs" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:313 +msgid "report:: par utilisateurs" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:326 +msgid "report:: (telechargement) Global" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:336 +msgid "report:: (telechargement) Par jours base par base" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:346 +msgid "report:: (telechargement) Par documents sur la base" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:351 +msgid "report::aucune precision" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:355 +msgid "report::la description contient" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:359 +msgid "report:: recordid" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:428 +msgid "report:: toutes les questions" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:438 +msgid "report:: Les questions les plus posees" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:468 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:53 +#: lib/Alchemy/Phrasea/Controller/Report/Informations.php:298 +msgid "report:: document" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:475 +msgid "report:: pushe" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:481 +msgid "report:: ajoute" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:487 +msgid "report:: edite" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:493 +msgid "report:: valide" +msgstr "" + +#: tmp/cache_twig/a0/72/1e49ccee500b6d7a08b9fd3e09e7c918ec3d7746c184703f6a72e4685f0e.php:499 +msgid "Sent" +msgstr "" + +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:152 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:152 +msgid "Fichiers envoyes" +msgstr "" + +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:169 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:169 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:418 +msgid "phraseanet:: deconnection" +msgstr "" + +#: tmp/cache_twig/a0/b0/773dc4749e1d0ea8dec74c13aa559902747c29700c7c9458b62d59c6676d.php:234 +#: tmp/cache_twig/ac/fe/ac404ac2d733f61d78325799baf70e6628eaa8897817317c61392b78cb3e.php:234 +msgid "Terms of service" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:36 +#: lib/Alchemy/Phrasea/Controller/Prod/Order.php:197 +msgid "The records have been properly ordered" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:75 +msgid "Page %page%" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:84 +msgid "Utilisateur" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:88 +msgid "Date de demande" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:100 +msgid "Statut" +msgstr "" + +#: tmp/cache_twig/a5/b2/1315419bfbeff64ca926ca0c71ae59d35a4657aa15b817a459d6288afc59.php:139 +msgid "Aucune" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:31 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:35 +msgid "Empty quarantine" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:64 +msgid "No document in quarantine" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:73 +msgid "You do not have enough rights to access quarantine" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:135 +msgid "" +"Empty quarantine will remove all items, are you sure you want to continue ?" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:342 +msgid "Last uploaded version" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:354 +msgid "Filename" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:360 +msgid "Date" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:374 +msgid "Uploaded by : %username%" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:381 +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:41 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:25 +msgid "Collection" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:427 +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:431 +msgid "Substitute" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:466 +msgid "A record matches the unique identifier :" +msgstr "" + +#: tmp/cache_twig/a6/e6/feec39bfbe55ad70f1479bb6fa19f3ed91d2ad21bf4dddc4bbd1c152e9d9.php:472 +msgid "%record_count% records match the unique identifier :" +msgstr "" + +#: tmp/cache_twig/a9/2a/7c86630da096409cf9f025763680ed0fe0f34989177114c62c7ac9a21f68.php:143 +msgid "Certaines donnees du panier ont change" +msgstr "" + +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:24 +msgid "Nom du nouveau panier" +msgstr "" + +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:30 +msgid "paniers::description du nouveau panier" +msgstr "" + +#: tmp/cache_twig/aa/47/333d1ea05df2f596a5d420f3a7c50ab08852c59c17f36ad062692b905030.php:38 +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:59 +msgid "Ajouter ma selection courrante" +msgstr "" + +#: tmp/cache_twig/aa/4e/eb6c877afea8239b78d4f3a1e02a6a5341ad8ea4fef1456ffc2c5532dae9.php:23 +#: tmp/cache_twig/f6/4e/d681a03846f865619a9f3a22158482751a3a60b91db32644f920a16cfda8.php:23 +msgid "Security" +msgstr "" + +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:28 +msgid "Back to basket list" +msgstr "" + +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:171 +msgid "No records" +msgstr "" + +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:177 +msgid "1 record" +msgstr "" + +#: tmp/cache_twig/aa/50/6b9e0fd5a8f9122e0673edc259cf6c779dc5bc2d40c951993c030b9858f8.php:183 +msgid "%ElementsCount% records" +msgstr "" + +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:34 +msgid "You do not have rights to remove all selected documents. Are you sure ?" +msgstr "" + +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:53 +msgid "These records will be definitely deleted and can not be recovered" +msgstr "" + +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:63 +msgid "Also delete records that rely on groupings." +msgstr "" + +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:150 +msgid "No document selected" +msgstr "" + +#: tmp/cache_twig/ab/94/2da3b9a2ccad64369487532e29cc38fe122a7b9569c6145f0807199d98fd.php:159 +msgid "You do not have rights to remove selected documents" +msgstr "" + +#: tmp/cache_twig/ad/f2/729310ca9a232e57a4b9b0a8712f22ac9f3beed123d66108eb967410eb92.php:35 +msgid "Loading database documentary structure ..." +msgstr "" + +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:54 +msgid "%value% like" +msgstr "" + +#: tmp/cache_twig/ae/00/0bd065f1d8610704ea58f27b52bc0fd28141f9e6880ae93953cf77ff8cb6.php:60 +msgid "%value% likes" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:35 +msgid "Client application" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:46 +msgid "Application" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:68 +msgid "settings OAuth" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:72 +msgid "Les parametres oauth de votre application." +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:94 +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:157 +msgid "URL de callback" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:126 +msgid "Modify" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:151 +msgid "Activer le grant_type de type password pour votre application" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:173 +msgid "Votre token d'access" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:177 +msgid "Les paramétres oauth de votre application." +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:186 +msgid "Token" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:202 +msgid "Le token n'a pas encore ete genere" +msgstr "" + +#: tmp/cache_twig/ae/b5/6c72c5ccd51726624a5c0ec34fdf736755f84fb9f0e65b6f2a59c6097cf8.php:212 +msgid "boutton::generer" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:70 +msgid "report :: configurer le tableau" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:79 +msgid "report :: imprimer le tableau" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:127 +msgid "%total_count% results" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:173 +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:177 +msgid "Trier" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:204 +msgid "Filtrer" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:208 +msgid "report :: filtrer" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:219 +msgid "Grouper" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:223 +msgid "report :: grouper" +msgstr "" + +#: tmp/cache_twig/af/ae/a247151c935f45ef9624247c42d091ceb2f2db3425adbd8671afc8a71a5f.php:389 +msgid "report :: aucun resultat trouve" +msgstr "" + +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:126 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:126 +msgid "Acces" +msgstr "" + +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:136 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:136 +msgid "Sessions" +msgstr "" + +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:146 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:146 +msgid "Applications" +msgstr "" + +#: tmp/cache_twig/af/d0/941b77e0b327d6f2856cbf6f0de4f397a80e5a0e9e901b4e46c8257d2f03.php:156 +#: tmp/cache_twig/c4/cf/6f8c35c59af55101233701abb0f5dc190d6ed9d941f8f5261d643505cb50.php:156 +msgid "Developpeur" +msgstr "" + +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:60 +msgid "Your %provider_name% account matchs a Phraseanet account" +msgstr "" + +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:192 +msgid "These informations do not match?" +msgstr "" + +#: tmp/cache_twig/b1/1f/ba5dd03d69758d66a86fcdab0dfaafa230b266f64e55ec34a8e454ba3ded.php:204 +msgid "Use my Phraseanet account" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:37 +msgid "thesaurus:: Proprietes" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:111 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:216 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:255 +msgid "thesaurus::menu: supprimer" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:115 +msgid "thesaurus:: remplacer" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:138 +msgid "thesaurus:: %hits% reponses retournees" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:160 +msgid "thesaurus:: synonymes" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:164 +msgid "thesaurus:: hits" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:168 +msgid "thesaurus:: ids" +msgstr "" + +#: tmp/cache_twig/b1/c6/9fab1f0b479675f22a225e283d098be1232d7e7d9bf25d046938478e274e.php:438 +#, php-format +msgid "thesaurus:: Confirmer la suppression du terme %s" +msgstr "" + +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:35 +msgid "Suppression de %n_element% photos" +msgstr "" + +#: tmp/cache_twig/b3/0e/2020aaa94f7bd77b1eaa0eb5680bc015205297e24c2f50dbe491078f5dbf.php:51 +msgid "Etes vous sur de supprimer %number% photos ?" +msgstr "" + +#: tmp/cache_twig/b3/95/c7bc0a8d474e17a38f75ed69bda525a925655d54453a6709a4056578725b.php:35 +msgid "Granted bases" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:59 +msgid "Le bridge Dailymotion ne prend en charge que les videos" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:63 +msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:100 +msgid "255 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:132 +msgid "1000 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:165 +msgid "250 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:169 +msgid "10 tags maximum" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:173 +msgid "Séparez les tags par un espace: Paris vacances restaurant" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:177 +msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:211 +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:241 +msgid "prive" +msgstr "" + +#: tmp/cache_twig/b3/b5/00f3446b97c4f511ad30afeec22639a75147602de7085fac05045c684825.php:245 +msgid "" +"Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le " +"contenu de la vidéo que vous allez mettre en ligne est conforme aux " +"conditions d'utilisations" +msgstr "" + +#: tmp/cache_twig/b7/0f/7aa39ae06305bf2523f0b48646f315a3568a7f17c1336ef36524a7646498.php:169 +msgid "report:: Volumetrie des questions posees sur %home_title%" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:44 +msgid "Votre recherche ne retourne aucun resultat" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:76 +msgid "" +"La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à " +"gauche de l'écran." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:79 +msgid "" +"Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux " +"suivants :" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:83 +msgid "" +"* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , " +"LAST , ALL)" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:88 +msgid "Caractères de troncature" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:95 +msgid "auto*" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:99 +msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:105 +msgid "dé?it" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:109 +msgid "retourne \"délit\", \"débit\", ..." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:116 +msgid "Visualiser tous les enregistrements / les derniers enregistrements" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:122 +msgid "TOUT" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:126 +msgid "retourne tous les enregistrements des collections selectionnees" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:132 +msgid "LAST 20" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:136 +msgid "" +"retourne les 20 derniers enregistrements archives dans les collections " +"selectionnees" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:143 +msgid "Recherche multicritères" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:147 +msgid "" +"Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou " +"DANS" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:153 +msgid "sport" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:155 +msgid "automobile" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:159 +msgid "retourne les documents comprenant les deux mots." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:165 +msgid "journal OU jt" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:169 +msgid "retourne les documents comprenant un mot et/ou l'autre." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:175 +msgid "cannes SAUF festival" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:179 +msgid "retourne les documents comprenant cannes sans le mot festival." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:185 +msgid "thalassa DANS titre" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:189 +msgid "" +"retourne les documents où le terme est au moins présent dans le titre, en " +"évitant par exemple celles où le terme est uniquement cité dans la légende." +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:201 +msgid "" +"pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les " +"guillemets :" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:205 +msgid "C dans l'air" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:209 +msgid "Et Dieu créa la femme" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:213 +msgid "bijou en or" +msgstr "" + +#: tmp/cache_twig/b7/36/d51ba9f9b21ffc4fdb7a45cb67b3b951cf912d0404d3c7bb044cd846b8fb.php:217 +msgid "tout le sport" +msgstr "" + +#: tmp/cache_twig/ba/36/60824373158439cc340be0d2ae83b91da0a2ae59dcdfab2ba3ff497660f6.php:126 +msgid "reponses:: partager" +msgstr "" + +#: tmp/cache_twig/bc/d4/7f2ab550e30e0d103c8c4b4a21ac5b2721aeb8fa5c4cc6965e76cecd407b.php:63 +msgid "Hi, Please log in" +msgstr "" + +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:27 +msgid "thesaurus has been updated" +msgstr "" + +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:46 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:247 +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:30 +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:267 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:29 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:310 +msgid "phraseanet:: thesaurus" +msgstr "" + +#: tmp/cache_twig/bd/ee/59653e526b4684221ccd894429bc5dbdfc6091e97c0e16d3e030c2d12293.php:101 +msgid "" +"Thesaurus ou CTerms invalide\n" +" effacer (OK) ou quitter (Annuler) ?" +msgstr "" + +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:23 +msgid "publications:: dernieres publications" +msgstr "" + +#: tmp/cache_twig/bf/45/a9866db5a2d8f1009436625ed2bcc581032de69077cc651d6b10776400cf.php:86 +msgid "publications:: derniere mise a jour" +msgstr "" + +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:55 +msgid "Subdef" +msgstr "" + +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:61 +msgid "Number" +msgstr "" + +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:65 +msgid "Weight" +msgstr "" + +#: tmp/cache_twig/c1/35/67f033a4522aeeff0b38c26d888db356a54bd72d7e12f19def8ed98bac2f.php:194 +msgid "Cumulative total" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:28 +msgid "None of the selected records can be pushed." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:34 +msgid "None of the selected records can be sent for feedback." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:71 +msgid "Grant rights" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:82 +msgid "Contributor" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:90 +msgid "See others" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:101 +msgid "HD Download" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:116 +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:535 +msgid "List Manager" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:124 +msgid "Save this list" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:187 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:194 +msgid "or" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:199 +msgid "Add user" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:283 +msgid "and %n% more peoples" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:306 +msgid "" +"Please consider send this push to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:312 +msgid "" +"Please consider send this validation to the following users : %recommendation" +"%" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:324 +msgid "Users suggestion" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:371 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:377 +msgid "" +"Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:405 +msgid "You are about to push %nb_push_items% records." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:414 +msgid "" +"You are about to push %nb_push_items% records, %nb_not_available% records " +"can not be processed." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:429 +msgid "You are about to ask for feedback for %nb_push_items% records." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:438 +msgid "" +"You are about to ask for feedback for %nb_push_items% records, " +"%nb_not_available% records can not be processed." +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:520 +msgid "Back to Push" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:526 +msgid "Back to Feedback" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:553 +msgid "Welcome to the ListManager !" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:562 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "" + +#: tmp/cache_twig/c2/80/28b1715b2ad1460bb2cc2b4a1f862c786658197b57da92b05278696e6b0a.php:571 +msgid "Select a list on the left and edit it !" +msgstr "" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:35 msgid "Access history" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:47 msgid "" "If you notice any unfamiliar devices or locations, click 'End Activity' to " "end the session." msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:57 msgid "Date de connexion" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:63 msgid "Dernier access" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:69 msgid "IP" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:75 msgid "Browser" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:101 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:103 msgid "End Activity" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:109 +msgid "Current session" +msgstr "" + +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:162 msgid "End session activity" msgstr "" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +#: tmp/cache_twig/c4/6b/ab34935acda3c90c265bdc00445b285ec271a5b2fbef24ab4aa35bb647e6.php:168 msgid "Do you really want to end the activity of this session?" msgstr "" -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 -msgid "thesaurus:: Nouveau terme" -msgstr "" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:25 -msgid "thesaurus:: terme" -msgstr "" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:32 -msgid "thesaurus:: synonyme" -msgstr "" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:103 -msgid "thesaurus:: contexte" -msgstr "" - -#: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:111 -msgid "phraseanet:: language" -msgstr "" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 -msgid "The following errors have been detected" -msgstr "" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 -msgid "Would you like to continue ?" -msgstr "" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 -msgid "Apply a model" -msgstr "" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 -msgid "You need define a model before importing a list of users" -msgstr "" - -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 -msgid "There is no user to add." -msgstr "" - -#: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 -msgid "Ajouter a" -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:136 -msgid "nouveau" -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:146 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:203 -msgid "Aucun bridge disponible. Veuillez contacter un administrateur." -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:320 -msgid "You are about to delete this account. Would you like to continue ?" -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:567 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "" - -#: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:576 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "" - -#: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:43 -#: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:43 -msgid "Playlist" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:69 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:93 -msgid "publication : titre" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:77 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:101 -msgid "publication : sous titre" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:85 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:109 -msgid "publication : autheur" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:93 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:117 -msgid "publication : email autheur" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:105 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:129 -msgid "Fils disponibles" -msgstr "" - -#: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:184 +#: tmp/cache_twig/c5/35/5cb030423e0d3ed7b269f4de381c3b9ebebb9ddbf84623a0c9c4d033705d.php:184 msgid "boutton::mettre a jour" msgstr "" -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:37 -msgid "you are about to change the representation thumbnail of your video" +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:22 +msgid "Phrasea search-engine configuration" msgstr "" -#: tmp/cache_twig/d2/74/5a71fbb4693dc1c64f455d7d4134.php:47 -msgid "do you want to validate" +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:33 +msgid "Stemming" msgstr "" -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:37 +msgid "Enable stemming" msgstr "" -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" +#: tmp/cache_twig/c5/69/94a283163d82a8ca5b75672a1e57c89e7fdcd6521cac61ec319c5a3fbf30.php:47 +msgid "Default sort" msgstr "" -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:33 +msgid "Creer un Photoset" msgstr "" -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:35 -msgid "new client application" +#: tmp/cache_twig/cd/54/9caede81847a55c0fb5176e97d77c3a3a0cbce25333a32d8bf8049f88251.php:82 +msgid "Photo principale" msgstr "" -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:80 -msgid "Nom" +#: tmp/cache_twig/cf/3e/e1d89f6514485729bfa2ba6dc3be1d53c29c1d22dce9eee2e2b2faacbf67.php:35 +msgid "Page" msgstr "" -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:106 -msgid "Site web" -msgstr "" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:123 -msgid "Type d'application" -msgstr "" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:133 -msgid "Application web" -msgstr "" - -#: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:144 -msgid "Application desktop" -msgstr "" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:30 -msgid "" -"Cochez les cases correspondantes aux colonnes que vous desirez voire " -"apparaitre dans le report" -msgstr "" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:36 -msgid "cocher tout" -msgstr "" - -#: tmp/cache_twig/da/12/492d74910697f5f51b60fe7026c2.php:43 -msgid "tout decocher" -msgstr "" - -#: tmp/cache_twig/e2/5e/6e2b3e2a6604c56b80dd0d3378f7.php:26 -#: tmp/cache_twig/fc/40/b874454c3bf222948d849229781e.php:26 -msgid "Caption" -msgstr "" - -#: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:88 -#, php-format -msgid "%entry_length% documents" -msgstr "" - -#: tmp/cache_twig/e7/93/823d307f35f2705bd78bb9bfd0fb.php:35 -msgid "Loading database documentary structure ..." -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:22 -msgid "Upload a csv file for users creation" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:40 -msgid "An error occured while upload the file. Please retry" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:46 -msgid "Row login is missing, script has stopped" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:52 -msgid "Row password is missing, script has stopped" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 -msgid "Row mail is missing, script has stopped" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 -msgid "The file does not contains any user to add" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 -msgid "You can download an example by clicking here" -msgstr "" - -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 -msgid "You can download the documentation here" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 -msgid "Ajouter une publication" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:49 -msgid "Feed name" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:143 -msgid "Date Creation" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:151 -msgid "Public" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:232 -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:168 -msgid "This feed is public" -msgstr "" - -#: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:278 -msgid "" -"Une fois la publication supprimee, les donnees publiees seront " -"definitivement perdues. Continuer ?" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:37 -msgid "thesaurus:: Proprietes" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:115 -msgid "thesaurus:: remplacer" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:138 -msgid "thesaurus:: %hits% reponses retournees" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:160 -msgid "thesaurus:: synonymes" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:164 -msgid "thesaurus:: hits" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:168 -msgid "thesaurus:: ids" -msgstr "" - -#: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:438 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "" - -#: tmp/cache_twig/ea/d5/eb9b91c79fe449026042ddf07f1c.php:54 -#: tmp/cache_twig/ea/d9/cd9ee77c78ef2e6d220a24be7cd5.php:54 -msgid "Incorrect please try again" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:27 -msgid "No preview available." -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:33 -msgid "No permalink available." -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:62 -msgid "Send to Twitter" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:74 -msgid "Send to Facebook" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:83 -msgid "Resource URL" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:91 -msgid "Detailed view URL" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:102 -msgid "Embed code" -msgstr "" - -#: tmp/cache_twig/eb/b2/5d57d0fd7ae0c46e1a188b11ea2f.php:138 -msgid "No URL available" -msgstr "" - -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:22 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:22 msgid "admin::tasks: planificateur de taches" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:27 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:27 msgid "Last update at" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:54 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:54 msgid "admin::tasks: statut de la tache" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:58 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:58 msgid "admin::tasks: process_id de la tache" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:62 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:62 msgid "admin::tasks: etat de progression de la tache" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:135 msgid "Start" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:141 msgid "Stop" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:153 msgid "Logs" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:216 msgid "admin::tasks: Nouvelle tache" msgstr "" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 +#: tmp/cache_twig/cf/81/95f7b9ca04a37c761aa27b6be6cb0cb00dd8dc2ccbf0d5aae617ffe55406.php:468 msgid "admin::tasks: supprimer la tache ?" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:27 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:35 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:35 +msgid "status:: numero de bit" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:49 +msgid "admin::status: case A" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:55 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:175 +msgid "admin::status: texte a afficher" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:93 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:213 +msgid "Labels" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:124 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:244 +msgid "Symbolized by" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:154 +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:274 +msgid "admin::status:: aucun symbole" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:169 +msgid "admin::status: case B" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:294 +msgid "" +"status:: Afficher le status dans les feuilles de reponses pour tous les " +"utilisateurs" +msgstr "" + +#: tmp/cache_twig/d0/a5/30b6702365db18bfaadf2afa975006a0e9dc7c17ed32f1403b82a95faad2.php:304 +msgid "status:: retrouver sous forme de filtre dans la recherche" +msgstr "" + +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:80 +msgid "client::answers: rapport de questions par bases" +msgstr "" + +#: tmp/cache_twig/d1/57/b9252a4f4339f3c2c01e156231b7311e5126e455043255f6aec44ea6f876.php:101 +msgid "client::answers: %available_results% reponses" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:99 +msgid "Erreur de login / mot de passe" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:107 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:120 +msgid "Se connecter" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:126 +msgid "Problèmes de connexion ?" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:157 +msgid "Autorisation d'accès" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:168 +msgid "" +"Autorisez-vous l'application \"%application_name%\" à " +"accéder à votre contenu sur %home_title% ?" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:198 +msgid "Autoriser" +msgstr "" + +#: tmp/cache_twig/d1/79/b0e745b0a2464323024d1129c827392361f9b963ee3f16fd71b67f2b7a0b.php:222 +msgid "Ne pas autoriser" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:78 +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:343 +msgid "login:: Mon compte" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:100 +msgid "Informations personnelles" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:198 +msgid "login:: Changer mon adresse email" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:206 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 +msgid "Password" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:213 +msgid "admin::compte-utilisateur changer mon mot de passe" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:324 +msgid "Notification par email" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:386 +msgid "FTP" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:393 +msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:455 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1624 +msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:468 +msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:483 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1590 +msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" +msgstr "" + +#: tmp/cache_twig/d3/79/f3e6763e75db59915f271e412b5e97d543130b0a18f0c10e907dc4981e34.php:497 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1608 +msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" +msgstr "" + +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:27 +msgid "Chercher" +msgstr "" + +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:70 +msgid "thesaurus:: le terme" +msgstr "" + +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:74 +msgid "thesaurus:: est egal a " +msgstr "" + +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:81 +msgid "thesaurus:: commence par" +msgstr "" + +#: tmp/cache_twig/d5/dd/5ab8585f8833be54f0210510c097696c188844f9a7833581d14df6bf23e3.php:88 +msgid "thesaurus:: contient" +msgstr "" + +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:29 +msgid "The following errors have been detected" +msgstr "" + +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:50 +msgid "Would you like to continue ?" +msgstr "" + +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:87 +msgid "Apply a model" +msgstr "" + +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:146 +msgid "You need define a model before importing a list of users" +msgstr "" + +#: tmp/cache_twig/d5/f3/b530a50eaeb7069d4eb70612ff62e72eb07169be2925369f4d6eb5d5d411.php:155 +msgid "There is no user to add." +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:35 +msgid "new client application" +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:80 +msgid "Nom" +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:106 +msgid "Site web" +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:123 +msgid "Type d'application" +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:133 +msgid "Application web" +msgstr "" + +#: tmp/cache_twig/d6/86/98df4af3efb8ec2b82cec6c31e1c1f8349f803efd414098b2251e21ec73e.php:144 +msgid "Application desktop" +msgstr "" + +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:40 +msgid "Toutes les publications" +msgstr "" + +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:76 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:84 +msgid "publications:: s'abonner aux publications" +msgstr "" + +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:97 +msgid "Aller a" +msgstr "" + +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:165 +msgid "Aucune entree pour le moment" +msgstr "" + +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:188 +#: tmp/cache_twig/d6/ea/5fe92369fdf7413bc40454cab1e3bc597277de52204b0862400f3d6985c9.php:199 +msgid "charger d'avantage de publications" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:188 +msgid "Chargement" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:258 +msgid "Close the WorkZone" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:284 +msgid "prod::thesaurusTab:thesaurus" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:291 +msgid "prod::thesaurusTab:candidats" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:306 +msgid "prod::thesaurusTab:wizard:accepter le terme candidat" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:312 +msgid "prod::thesaurusTab:wizard:remplacer par le terme" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:368 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:436 +msgid "chargement" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:494 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:500 +msgid "Browse Baskets" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:511 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:517 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:521 +msgid "action:: nouveau reportage" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:545 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:549 +msgid "phraseanet:: tri par nom" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:557 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1477 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1658 +msgid "Preferences" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:583 +msgid "Advanced Search" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:631 +msgid "Tout type" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:635 +msgid "Image" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:639 +msgid "Video" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:643 +msgid "Audio" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:647 +msgid "Document" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:693 +msgid "Trier par " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:745 +msgid "rechercher par stemme" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:755 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:760 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:941 +msgid "rechercher dans tous les champs" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:801 +msgid "Status des documents a rechercher" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:913 +msgid "Rechercher dans un champ date" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1022 +msgid "reponses:: selectionner tout" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1031 +msgid "reponses:: selectionner rien" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1040 +msgid "phraseanet::type:: images" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1058 +msgid "phraseanet::type:: videos" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1067 +msgid "phraseanet::type:: audios" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1538 +msgid "raccourci :: a propos des raccourcis claviers" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1543 +msgid "Raccourcis claviers en cours de recherche : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1548 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1584 +msgid "Raccourcis:: ctrl-a : tout selectionner " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1552 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1588 +msgid "Raccourcis:: ctrl-p : imprimer la selection " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1556 +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1592 +msgid "Raccourcis:: ctrl-e : editer la selection " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1560 +msgid "Raccourcis::fleche gauche : page precedente " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1564 +msgid "Raccourcis::fleche droite : page suivante " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1568 +msgid "Raccourcis::fleche haut : scroll vertical " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1572 +msgid "Raccourcis::fleche bas : scroll vertical " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1579 +msgid "Raccourcis claviers de la zone des paniers : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1599 +msgid "Raccourcis claviers en cours de editing : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1604 +msgid "Raccourcis::tab/shift-tab se ballade dans les champs " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1611 +msgid "Raccourcis claviers en cours de preview : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1616 +msgid "Raccourcis::fleche gauche : en avant " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1620 +msgid "Raccourcis::fleche gauche : en arriere " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1624 +msgid "Raccourcis::espace : arreter/demarrer le diaporama " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1632 +msgid "" +"Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1643 +msgid "raccourcis :: ne plus montrer cette aide" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1664 +msgid "Affichage" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1668 +msgid "Configuration" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1676 +msgid "Mode de presentation" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1691 +msgid "reponses:: mode vignettes" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1703 +msgid "reponses:: mode liste" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1710 +msgid "Theme" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1719 +msgid "Selecteur de theme" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1741 +msgid "Presentation de vignettes" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1752 +msgid "Iconographe (description au rollover)" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1764 +msgid "Graphiste (preview au rollover)" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1774 +msgid "Informations techniques" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1785 +msgid "Afficher" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1797 +msgid "Afficher dans la notice" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1809 +msgid "Ne pas afficher" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1819 +msgid "Type de documents" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1830 +msgid "Afficher une icone" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1839 +msgid "reponses:: images par pages : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1852 +msgid "reponses:: taille des images : " +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1866 +msgid "Couleur de selection" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1881 +msgid "Affichage au demarrage" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1897 +msgid "Ma derniere question" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1908 +msgid "Une question personnelle" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:1930 +msgid "Aide" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2037 +msgid "Presentation de vignettes de panier" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2055 +msgid "Afficher les status" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2075 +msgid "Afficher la fiche descriptive" +msgstr "" + +#: tmp/cache_twig/d9/2f/355ae9eea3054ec32f40555d4efd829847edaa9dae340c739983fc278435.php:2095 +msgid "Afficher le titre" +msgstr "" + +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:27 msgid "phraseanet::status bit" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:40 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:40 msgid "status:: nom" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:44 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:44 msgid "status:: cherchable par tous" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:48 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:48 msgid "status:: Affichable pour tous" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 msgid "oui" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:142 -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:146 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:142 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:146 msgid "non" msgstr "" -#: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 +#: tmp/cache_twig/d9/40/3bebef566e0b8f45226f4c6935ab0ac99525575c3264349c51dab0291701.php:184 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 msgid "An error occurred" msgstr "" -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:247 -#: tmp/cache_twig/ee/4e/50ddc39461aa2c4be5ada801a8fc.php:298 -msgid "erreur avec la valeur %name%" +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:57 +msgid "thesaurus:: Editer le thesaurus" msgstr "" -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:50 -msgid "Completion of your registration" +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:62 +msgid "phraseanet:: choisir" msgstr "" -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:69 -msgid "Please complete the information to complete your registration" +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:99 +msgid "thesaurus:: langue pivot" msgstr "" -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:134 -msgid "Mandatory fields" +#: tmp/cache_twig/dc/26/6758289c6788c9e0f8ad63a6e4d2198e4a46434e6f8967df44af9e5c5646.php:138 +msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "" -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 -msgid "I have read the terms of use" +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:69 +msgid "element(s)" msgstr "" -#: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:173 -msgid "Resquest access" +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:111 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:115 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:103 +msgid "User contribute to the feedback" msgstr "" -#: tmp/cache_twig/f3/ed/24beb6c75205136ecb29ee84f485.php:35 -msgid "Page" +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:122 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:126 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +msgid "User can see others choices" msgstr "" -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:37 -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:60 -msgid "Authorization Access" +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:133 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:137 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:279 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:283 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:102 +msgid "User can download HD" msgstr "" -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:77 +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:157 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +msgid "New list name ?" +msgstr "" + +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:167 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +msgid "Are you sure you want to delete this list ?" +msgstr "" + +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +msgid "Time for feedback (days)" +msgstr "" + +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:234 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +msgid "Message" +msgstr "" + +#: tmp/cache_twig/dc/46/70b1de5fa220a0fc6a545548067e06edbdb658c9d7844247ca2b5b048357.php:243 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +msgid "Accuse de reception" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:28 +msgid "thesaurus:: Nouveau terme specifique" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:30 +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:29 +msgid "thesaurus:: Nouveau synonyme" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:68 +msgid "thesaurus:: le terme %term% avec contexte %context%" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:80 +msgid "thesaurus:: le terme %term% sans contexte" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:97 +msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:103 +msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:155 +msgid "thesaurus:: selectionner la provenance a accepter" +msgstr "" + +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:184 +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:190 msgid "" -"Do you authorize the application %application_name% to access to your " -"Phraseanet content?" +"thesaurus:: est candidat en provenance des champs mais ne peut etre accepte " +"a cet emplacement du thesaurus" msgstr "" -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:89 -msgid "Authorize" +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:201 +msgid "thesaurus:: n'est pas present dans les candidats" msgstr "" -#: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 -msgid "validation:: note" +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:209 +msgid "thesaurus:: attention :" msgstr "" -#: tmp/cache_twig/f5/d7/59d838a307020cb934a1b76f5273.php:62 -msgid "Retour a laccueil" +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:229 +msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:66 -msgid "General settings" +#: tmp/cache_twig/dd/f5/11318ce6a87abfb0489fa8b48582e6ac6db154f24f6793c24ebc6861bb69.php:234 +msgid "thesaurus:: ajouter le terme et reindexer" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:68 -msgid "your configuration" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:33 +msgid "" +"prod::Les enregistrements ne provienent pas tous de la meme base et ne " +"peuvent donc etre traites ensemble" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:79 -msgid "all caches services have been flushed" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:42 +msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:94 -msgid "setup:: administrateurs de l'application" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:51 +msgid "erreur : Vous n'avez pas les droits" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:130 -msgid "Add an admin" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:74 +msgid "One document can not be modified." msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:147 -msgid "setup:: Reinitialisation des droits admins" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:80 +#, php-format +msgid "%countable% documents can not be modified." msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:151 -msgid "boutton::reinitialiser" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:99 +msgid "Move one record to the chosen collection in the list." msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:166 -msgid "setup::Tests d'envois d'emails" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:105 +msgid "Move %countable% records to the chosen collection in the list." msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:184 -msgid "Email test result : %email_status%" +#: tmp/cache_twig/de/95/6443db0a18c72483b778e54527cd70cf71e7fda917ba3d41e540b9a5c7bf.php:142 +msgid "" +"prod::collection deplacer egalement les documents rattaches a ce(s) " +"regroupement(s)" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:206 -msgid "Reset cache" +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:37 +msgid "Authorization code" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:258 -msgid "Requirements" +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:60 +msgid "Access code" msgstr "" -#: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:308 -msgid "Recommendations" +#: tmp/cache_twig/de/be/686c925f13f05e2b4782415da1513f9c7a1cf7bd4736ea7f1e2c84ee5e20.php:66 +msgid "" +"Copy the code below, return to your application and paste the code to the " +"right place." msgstr "" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:22 -msgid "Phrasea search-engine configuration" +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:28 +msgid "Aucune notification" msgstr "" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 -msgid "Stemming" +#: tmp/cache_twig/df/e0/4f5e21d7167bc1379b48929062b2925b6c528fb9ab4c4c931261b7034264.php:37 +msgid "toutes les notifications" msgstr "" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 -msgid "Enable stemming" +#: tmp/cache_twig/e0/2c/88622cc5b91b3b7b0428336383210f5f7a427dadc48c67067d6e3e79b8f1.php:51 +msgid "Story name" msgstr "" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 -msgid "Default sort" +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:27 +msgid "validation:: votre note" msgstr "" -#: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:203 -msgid "boutton::publier" +#: tmp/cache_twig/e0/c3/c5811bb8e7787d601724d4aa7ae3917a733be6d598827ff162793916e7da.php:83 +msgid "boutton::enregistrer" msgstr "" -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:38 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:50 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:191 +msgid "Les documents ne peuvent pas etre exportes" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:68 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:104 +msgid "export:: telechargement" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:72 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:280 +msgid "export:: envoi par mail" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:81 +msgid "export:: commande" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:90 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:843 +msgid "export:: FTP" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:172 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:385 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:559 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:952 +msgid "Documents indisponibles" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:230 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:445 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1012 +msgid "Include Business-fields in caption" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:256 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:471 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:812 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1035 +msgid "" +"By checking this box, you accept %beginning_link% Terms of Use %end_link%" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:297 +msgid "export::mail: destinataire" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:311 +msgid "Recevoir un accuse de reception a %my_email%" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:320 +msgid "" +"Accuse de reception indisponible, vous n'avez pas declare d'adresse email" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:328 +msgid "Entrez plusieurs adresses email en les separant par des points-virgules" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:334 +msgid "export::mail: contenu du mail" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:341 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:908 +msgid "export::mail: fichiers joint" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:404 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:570 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:971 +msgid "La sous resolution n'est pas disponible pour les documents suivants" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:481 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1050 +msgid "boutton::envoyer" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:517 +msgid "Un document commande" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:523 +#, php-format +msgid "%docs_orderable% documents commandes" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:538 +msgid "Un document ne peut etre commande" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:544 +#, php-format +msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:615 +msgid "commande::utilisation prevue" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:625 +msgid "commande::deadline" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:635 +msgid "Civility" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:823 +msgid "boutton::commander" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:861 +msgid "phraseanet:: prereglages" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1045 +msgid "boutton::essayer" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1098 +msgid "You must agree to the Terms of Use to continue." +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1110 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1166 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1196 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1364 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1421 +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1448 +msgid "Warning !" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1154 +msgid "Certains champs sont obligatoires, veuillez les remplir" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1184 +msgid "Vous devez selectionner un type de sous definitions" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1216 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:63 +msgid "Terms of Use" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1285 +msgid "" +"You can not directly download more than %max_download% Mo ; time to package " +"all documents is too long" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1294 +msgid "You can alternatively receive an email when the download is ready." +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1303 +msgid "Would you like to receive an e-mail when your download is ready ?" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1544 +msgid "phraseanet:: utiliser SSL" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1640 +msgid "admin::compte-utilisateur:ftp: creer un dossier" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1668 +msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1710 +msgid "Nom des fichiers a l'export" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1727 +msgid "export::titre: titre du documument" +msgstr "" + +#: tmp/cache_twig/e0/dd/b1907cdd101f86af2e081e1302dc44d6ef84d81307a71967e96f2b37df75.php:1744 +msgid "export::titre: nom original du document" +msgstr "" + +#: tmp/cache_twig/e2/a3/cdd218f6c291e82e409dffce34c5b6d40a806f7d45453ab8e5aa8b063191.php:35 +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:133 +msgid "Collection %collection%" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:158 +msgid "Aucun statut editable" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:164 +msgid "" +"Les status de certains documents ne sont pas accessibles par manque de droits" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:242 +msgid "boutton::remplacer" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:273 +msgid "phraseanet:: presse-papier" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:281 +msgid "prod::editing: rechercher-remplacer" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:285 +msgid "prod::editing: modeles de fiches" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:332 +msgid "prod::editing::replace: remplacer dans le champ" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:338 +msgid "prod::editing::replace: remplacer dans tous les champs" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:363 +msgid "prod::editing:replace: chaine a rechercher" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:372 +msgid "prod::editing:remplace: chaine remplacante" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:381 +msgid "prod::editing:remplace: options de remplacement" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:387 +msgid "prod::editing:remplace::option : utiliser une expression reguliere" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:418 +msgid "Aide sur les expressions regulieres" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:427 +msgid "prod::editing:remplace::option: remplacer toutes les occurences" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:433 +msgid "prod::editing:remplace::option: rester insensible a la casse" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:440 +msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:446 +msgid "prod::editing:remplace::option la valeur est comprise dans le champ" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:452 +msgid "prod::editing:remplace::option respecter la casse" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:503 +msgid "prod::editing:indexation en cours" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:528 +msgid "prod::editing: valider ou annuler les modifications" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:536 +msgid "edit::preset:: titre" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:545 +msgid "Edition impossible" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:554 +msgid "" +"prod::edit: Impossible d'editer simultanement des documents provenant de " +"bases differentes" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:560 +msgid "" +"prod::editing: aucun documents ne peuvent etre edites car vos droits sont " +"induffisants" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:597 +msgid "" +"prod::editing: %not_actionable% documents ne peuvent etre edites car vos " +"droits sont induffisants" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:603 +msgid "" +"prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:764 +msgid "edit::Certains champs doivent etre remplis pour valider cet editing" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:797 +msgid "edit: chosiir limage du regroupement" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:843 +msgid "prod::editing::fields: status " +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:894 +msgid "Ce champ est decrit comme un element DublinCore" +msgstr "" + +#: tmp/cache_twig/e3/ab/84a66401be69b11649e50bde7202dd9654ce87b7804b570263154920b281.php:903 +msgid "This field represents the title of the document" +msgstr "" + +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:22 +msgid "Terms Of Use" +msgstr "" + +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:35 +msgid "" +"admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" +msgstr "" + +#: tmp/cache_twig/e3/f0/fa3789e3d73d09c29db11f71b382040380eaa48c31feaf2ed511fbe8a5df.php:40 +msgid "Mettre a jour" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:37 +msgid "thesaurus:: accepter..." +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:181 +msgid "thesaurus:: removed_src" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:187 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:216 +msgid "thesaurus:: refresh" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:210 +msgid "thesaurus:: removed tgt" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:261 +msgid "thesaurus:: Accepter le terme comme" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:269 +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:292 +msgid "thesaurus:: comme terme specifique" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:278 +msgid "thesaurus:: comme synonyme de %fullpath_tgt_raw%" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:289 +msgid "thesaurus:: Accepter la branche comme" +msgstr "" + +#: tmp/cache_twig/e4/17/69f43cfc914781a1fa1802b0c6f0044276fe5a2ee801741542f271f3ee93.php:323 +msgid "" +"thesaurus:: A cet emplacement du thesaurus , un candidat du champ %cfield% " +"ne peut etre accepte" +msgstr "" + +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:28 +msgid "" +"%name% est momentanement indisponible a cause d'un trop grand nombre de " +"requetes" +msgstr "" + +#: tmp/cache_twig/e4/69/6657069a98ef8b7072491f73cc45a70fe93e71d3dd33c6a0aa13f415170f.php:33 +msgid "le service sera de nouveau disponible dans quelques minutes" +msgstr "" + +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:51 +msgid "" +"Si cet email contient des liens non cliquables, copiez/collez ces liens dans " +"votre navigateur." +msgstr "" + +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:198 +msgid "Le contenu de cet email est confidentiel, ne le divulguez pas." +msgstr "" + +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:210 +msgid "Message automatique de Phraseanet" +msgstr "" + +#: tmp/cache_twig/e9/1a/9e2396dbfd0df38fa3c35df138bcc0606bacbbd117d37b40fb246fa6aaf6.php:228 +msgid "Pour gérer l'envoi d'email automatique, connectez-vous à %link%" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:59 +msgid "Le bridge Youtube ne prend en charge que les videos" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:63 +msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:100 +msgid "100 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:133 +msgid "2000 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:203 +msgid "500 caracteres maximum" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:207 +msgid "separe par un espace" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:279 +msgid "" +"En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour " +"le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu " +"accessible au public sur YouTube, et qu'il est autrement conforme aux " +"Conditions d'utilisation de YouTubesitue a %lien_term_youtube%" +msgstr "" + +#: tmp/cache_twig/e9/49/406e6d61efed296d58e5356a77a622909c068b709020709aa697c9fd4c69.php:299 +msgid "Retour" +msgstr "" + +#: tmp/cache_twig/ea/05/08255f94fc4216dbff13166ede04e1c038faf7332a59c93ff40e9e3dd830.php:26 +msgid "Caption" +msgstr "" + +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:25 +msgid "Updated structure" +msgstr "" + +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:29 +msgid "Structure has been successfully updated" +msgstr "" + +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:45 +msgid "Structure errors" +msgstr "" + +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:49 +msgid "admin::base: xml invalide, les changements ne seront pas appliques" +msgstr "" + +#: tmp/cache_twig/ea/2c/5ad87acf6a22fcde68baa36ed683077ec3d39a43be6d0607b10112d3c997.php:105 +msgid "admin::base: structure" +msgstr "" + +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:118 +msgid "Quotas" +msgstr "" + +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:139 +msgid "Restrictions de telechargement" +msgstr "" + +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:161 +msgid "Droits" +msgstr "" + +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:169 +msgid "par mois" +msgstr "" + +#: tmp/cache_twig/ec/b2/093a7fcd4553a286d58bef9d21a42370ee815432dbb842425cbd2e450cc6.php:173 +msgid "Reste" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:40 +msgid "phraseanet:: collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:91 +msgid "admin::base:collection: numero de collection distante" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:97 +msgid "admin::base:collection: etat de la collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 +msgid "admin::base:collection: activer la collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:99 +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:312 +msgid "admin::base:collection: descativer la collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:118 +msgid "admin::collection:: Gestionnaires des commandes" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:166 +msgid "setup:: ajouter un administrateur des commandes" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:180 +msgid "" +"admin::collection:: presentation des elements lors de la diffusion aux " +"utilisateurs externes (publications)" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:193 +msgid "admin::colelction::presentation des elements : rien" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:203 +msgid "admin::colelction::presentation des elements : watermark" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:213 +msgid "admin::colelction::presentation des elements : stamp" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:291 +msgid "admin::base:collection: renommer la collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 +msgid "" +"admin::base:collection: etes vous sur darreter la publication de cette " +"collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:307 +msgid "admin::base:collection: etes vous sur de publier cette collection ?" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:323 +msgid "admin::base:collection: etes vous sur de vider la collection ?" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:328 +msgid "admin::base:collection: vider la collection" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:339 +msgid "admin::collection: Confirmez vous la suppression de cette collection ?" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:358 +msgid "admin::base:collection: minilogo actuel" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:414 +msgid "Watermark" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:470 +msgid "Stamp logo" +msgstr "" + +#: tmp/cache_twig/ee/14/09ffd8ebfdf40dd4dd6beee94d971485629531cb9ea3166ed3c90251d108.php:526 +msgid "admin::base:collection: image de presentation : " +msgstr "" + +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:57 +msgid "%nb_rating% like" +msgstr "" + +#: tmp/cache_twig/ee/1b/63f056ee0ccfc6f7945958c68c90842f5ff944d25170686206cfb3ddefe8.php:63 +msgid "%nb_rating% likes" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:203 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:243 +msgid "thesaurus::menu: proprietes" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:207 +msgid "thesaurus::menu: refuser" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:211 +msgid "thesaurus::menu: accepter" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:220 +msgid "thesaurus::menu: supprimer les candidats a 0 hits" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:225 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:260 +msgid "thesaurus::menu: chercher" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:229 +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:264 +msgid "thesaurus::menu: exporter" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:236 +msgid "thesaurus::menu: importer" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:247 +msgid "thesaurus::menu: Nouveau terme" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:251 +msgid "thesaurus::menu: Nouveau synonyme" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:268 +msgid "thesaurus::menu: export topics" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:273 +msgid "thesaurus::menu: lier au champ" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:321 +msgid "thesaurus:: onglet stock" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:327 +msgid "thesaurus:: afficher les termes refuses" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:341 +msgid "thesaurus:: onglet thesaurus" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:546 +msgid "" +"thesaurus:: Supprimer cette branche ? (les termes concernes remonteront " +"en candidats a la prochaine indexation)" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:551 +msgid "" +"thesaurus:: Des reponses sont retournees par cette branche. Supprimer " +"quand meme ? (les termes concernes remonteront en candidats a la " +"prochaine indexation)" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:605 +msgid "thesaurus:: Tous les termes ont des hits" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:614 +msgid "" +"thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les " +"supprimer ?" +msgstr "" + +#: tmp/cache_twig/ef/6f/ffd79f3c98e6e44a9c5af7f8b4b0f229ee98a7c36f882151ba9e67caf96b.php:1217 +msgid "thesaurus:: deplacer le terme dans la corbeille ?" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:22 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:95 +msgid "admin::utilisateurs: utilisateurs connectes" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:104 +msgid "admin::monitor: total des utilisateurs uniques : " +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:125 +msgid "admin::monitor: utilisateur" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:129 +msgid "admin::monitor: modules" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:137 +msgid "admin::monitor: date de connexion" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:141 +msgid "admin::monitor: dernier access" +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:322 +msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " +msgstr "" + +#: tmp/cache_twig/f0/11/9a89ce584359ce4309f729380e512b90f93aae52fc9367e72388292f7f54.php:358 +msgid "Session persistente" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:34 +msgid "Tableau de bord" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:74 +msgid "SearchEngine settings" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:116 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:394 +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:461 +msgid "admin::utilisateurs: utilisateurs" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:133 +msgid "admin::utilisateurs: demandes en cours" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:177 +msgid "admin::utilisateurs: gestionnaire de taches" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:199 +msgid "admin::utilisateurs: bases de donnees" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:288 +msgid "admin::structure: reglage de la structure" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:300 +msgid "CHAMPS" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:312 +msgid "SUBDEFS" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:324 +msgid "admin::status: reglage des status" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:335 +msgid "admin:: CGUs" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:347 +msgid "admin::collection: ordre des collections" +msgstr "" + +#: tmp/cache_twig/f4/53/50b288419c19d6c191e3360723713b50bf7e07fe2b7d1bb42aec7a33e24b.php:438 +msgid "admin::base: preferences de collection" +msgstr "" + +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:22 +msgid "thesaurus:: Nouveau terme" +msgstr "" + +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:25 +msgid "thesaurus:: terme" +msgstr "" + +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:32 +msgid "thesaurus:: synonyme" +msgstr "" + +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:103 +msgid "thesaurus:: contexte" +msgstr "" + +#: tmp/cache_twig/f5/45/dc53d3373ad9ce0a23025c826e6e8eac147741afe976f430c5f0f7c91db6.php:111 +msgid "phraseanet:: language" +msgstr "" + +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:34 +msgid "" +"admin:: La collection n'a pas ete creee : vous devez donner un nom a votre " +"collection" +msgstr "" + +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:45 +msgid "An error occured, please retry or contact an admin if problem persist" +msgstr "" + +#: tmp/cache_twig/f6/80/70077de73343915dc25be14f44fd49ef4d568c2d86dd7927b03f796c74c2.php:61 +msgid "admin::base:collection: Nom de la nouvelle collection : " +msgstr "" + +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:38 msgid "thesaurus:: Importer" msgstr "" -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:101 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:101 msgid "thesaurus:: langue par default" msgstr "" -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:109 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:109 msgid "Fichier ASCII tabule" msgstr "" -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:119 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:119 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "" -#: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:125 +#: tmp/cache_twig/f6/9c/df4a0906d950ecf4afedd9ad59ecc3066baf705cc91d0b7c7679adfd7ae0.php:125 msgid "thesaurus:: reindexer la base apres l'import" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 -msgid "Informations personnelles" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:20 +msgid "SphinxSearch search-engine configuration" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 -msgid "login:: Changer mon adresse email" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:29 +msgid "Sphinx Search connection configuration" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 -msgid "Password" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:34 +msgid "Sphinx Search server" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 -msgid "admin::compte-utilisateur changer mon mot de passe" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:46 +msgid "Sphinx Search RealTime server" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 -msgid "Notification par email" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:59 +msgid "Charset to use for indexation" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 -msgid "FTP" +#: tmp/cache_twig/f7/6a/3bdde9dab0327184d99e51272e03171be86422656a45aaaf743d7987ffa2.php:85 +msgid "Date fields available for search" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" +#: tmp/cache_twig/f8/e3/e2521ee718d22abc0436fc94e77f0b299c38b7f616be5a5e0096ed0ecd50.php:35 +msgid "Apply to all selected documents" msgstr "" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:22 +msgid "Upload a csv file for users creation" msgstr "" -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %instance_title%!" +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:40 +msgid "An error occured while upload the file. Please retry" msgstr "" -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 -msgid "Request access" +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:46 +msgid "Row login is missing, script has stopped" msgstr "" -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:52 -msgid "Le champ doit contenir %minLength% caracteres minimum." +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:52 +msgid "Row password is missing, script has stopped" msgstr "" -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:65 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:58 +msgid "Row mail is missing, script has stopped" msgstr "" -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:78 -msgid "Les indications donnees ci dessous sont a titre informatif." +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:64 +msgid "The file does not contains any user to add" msgstr "" -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:82 +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:108 +msgid "You can download an example by clicking here" +msgstr "" + +#: tmp/cache_twig/fb/f2/e85c3d56358d001011139b57357ef992df46ed32528903e8e6267b26f7f5.php:116 +msgid "You can download the documentation here" +msgstr "" + +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:46 +msgid "Erreur lors de votre authentification" +msgstr "" + +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:61 +msgid "Vous etes authentifie avec succes" +msgstr "" + +#: tmp/cache_twig/fe/89/f4665f670ffcc1a44c99fa5e1d2582609dd18f16f70843a9c698870eece2.php:67 msgid "" -"Si vous ne les respectez pas, les documents seront correctement indexes, " -"mais les metadonnees inscrites risquent d'etre erronnees" +"Si cette fenetre ne se ferme pas automatiquement, fermez la, et " +"raffraichissez votre compte" msgstr "" -#: tmp/cache_twig/ff/6c/1d43a5333018a32dcb006b650ea5.php:89 -msgid "" -"Ces informations sont directement fournies par la norme de metadonnees de ce " -"champ : %norm_name%" +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:27 +msgid "Apparait aussi dans ces reportages" +msgstr "" + +#: tmp/cache_twig/ff/41/616d098ea247276616d7646ee7f8d90ab2b326fce3b52d6ea31a037748fb.php:73 +msgid "Apparait aussi dans ces paniers" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:47 +msgid "admin::monitor: Ancienne version (client)" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:66 +msgid "admin::monitor: Nouvelle version (prod)" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:79 +msgid "admin::monitor: production" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:270 +msgid "Commandes" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:297 +msgid "Notifications" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:334 +msgid "Guest" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:364 +msgid "phraseanet:: aide" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:382 +msgid "phraseanet:: raccourcis clavier" +msgstr "" + +#: tmp/cache_twig/ff/5c/fc6c0a7809a3173507a05f40d8a73d234592a100ff05e6fd331109fe9cc0.php:398 +msgid "phraseanet:: a propos" msgstr "" #: lib/Alchemy/Phrasea/Border/Checker/Colorspace.php:65 @@ -9861,47 +9288,47 @@ msgstr "" msgid "Database could not be mounted" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:129 msgid "Something wrong happened, please try again or contact an admin." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:130 #, php-format msgid "%s field has been created with success." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:131 #, php-format msgid "%s field has been deleted with success." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:132 #, php-format msgid "Do you really want to delete the field %s ?" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:133 msgid "Field can not be blank." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:134 msgid "Field name already exists." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:135 msgid "Field name is not valid." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:136 msgid "Field source is not valid." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:137 #, php-format msgid "Field %s contains errors." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:139 +#: lib/Alchemy/Phrasea/Controller/Admin/Fields.php:138 msgid "Your configuration has been successfuly saved." msgstr "" @@ -9959,48 +9386,48 @@ msgstr "" msgid "Clear" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:555 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:564 msgid "" "login::register:email: Vous avez ete accepte sur les collections suivantes : " msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:558 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:567 msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:662 #, php-format msgid "Login line %d is empty" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:664 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:667 #, php-format msgid "Login %s already exists in database" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:678 #, php-format msgid "Mail line %d is empty" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Email '%s' for login '%s' already exists in database" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:690 #, php-format msgid "Password is empty at line %d" msgstr "" #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1010 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1025 msgid "login::erreur: Erreur d'authentification" msgstr "" @@ -10037,7 +9464,7 @@ msgid "boutton::renouveller" msgstr "" #: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Print" msgstr "" @@ -10121,11 +9548,11 @@ msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 msgid "Export" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:245 +#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:244 msgid "Vocabulary not found" msgstr "" @@ -10350,60 +9777,64 @@ msgstr "" msgid "List name can not be empty" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +msgid "Please provide a name for this selection." +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 #, php-format msgid "%d fields have been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "No users selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "An error occurred reading this file" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 msgid "Please select one record" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 msgid "You can choose only one record" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 msgid "An error occured, please retry" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Some files are being downloaded" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 msgid "This feature is not supported by your browser" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:100 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "No active basket" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:104 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Force sending of the document ?" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:106 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Share" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Move" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Tool box" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:113 msgid "Attention !" msgstr "" @@ -10464,86 +9895,86 @@ msgid "" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Push.php:154 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:274 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:269 msgid "Unable to send the documents" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:163 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:160 #, php-format msgid "Push from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:166 msgid "No receivers specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:170 msgid "No elements to push" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:182 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:371 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:177 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:361 #, php-format msgid "Unknown user %d" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:248 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:287 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:279 #, php-format msgid "Validation from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:285 msgid "No participants specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:299 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:289 msgid "No elements to validate" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:365 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:355 #, php-format msgid "Missing mandatory parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:457 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:447 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:521 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:511 msgid "You are not allowed to add users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:514 msgid "First name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:527 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:517 msgid "Last name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:530 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:520 msgid "Email is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:533 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:523 msgid "Email is invalid" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:547 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 msgid "User already exists" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:570 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:560 msgid "User successfully created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:574 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:564 msgid "Error while creating user" msgstr "" @@ -10849,7 +10280,7 @@ msgid "report:: module" msgstr "" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:591 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:606 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "" @@ -10903,167 +10334,167 @@ msgstr "" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:204 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Please provide a value." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 #, php-format msgid "Please select at least %s choice." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Please provide a valid email address." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:222 msgid "Please provide a valid IP address." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:223 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:224 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:225 msgid "Please provide the same emails." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:226 msgid "Please accept the terms of use to register." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:227 msgid "No collection selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 #, php-format msgid "%d collection selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:229 #, php-format msgid "%d collections selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:230 msgid "Select all collections" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:217 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:232 msgid "Weak" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:233 msgid "Ordinary" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:234 msgid "Good" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:235 msgid "Great" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:263 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:270 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:278 msgid "You tried to register with an unknown provider" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:290 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:305 msgid "Invalid captcha answer." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:395 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:466 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:410 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:481 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:398 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:413 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:484 msgid "Unable to send your account unlock email." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:459 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:474 msgid "Invalid link." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:508 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:516 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:524 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:523 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:539 msgid "Invalid unlock link." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:530 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:545 msgid "Account is already unlocked, you can login." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:541 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:556 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:567 msgid "Account has been unlocked, you can now login." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:557 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:572 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:627 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:642 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:633 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:648 msgid "Invalid email address" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:649 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:664 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:697 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:712 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:724 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:739 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:769 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:784 msgid "Phraseanet guest-access is disabled" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:889 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:904 #, php-format msgid "Unable to authenticate with %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:913 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:928 msgid "Unable to retrieve provider identity" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:952 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:967 msgid "Your identity is not recognized." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:984 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:999 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1014 msgid "Please fill the captcha" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1003 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1018 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "" @@ -11071,47 +10502,47 @@ msgstr "" msgid "The application is going down for maintenance, please logout." msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:431 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:430 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:447 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:446 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:449 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:448 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:609 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:608 #, php-format msgid "over-indent at line %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:616 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:615 #, php-format msgid "bad encoding at line %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:622 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:621 #, php-format msgid "bad character at line %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1819 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1976 -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3195 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1818 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:1975 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:3194 msgid "thesaurus:: corbeille" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1608 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1514 #, php-format msgid "prod::thesaurusTab:dlg:%d record(s) updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1611 +#: lib/Alchemy/Phrasea/Controller/Thesaurus/Xmlhttp.php:1517 #, php-format msgid "prod::thesaurusTab:dlg:too many (%1$d) records to update (limit=%2$d)" msgstr "" @@ -11192,11 +10623,11 @@ msgstr "" msgid "Password (confirmation)" msgstr "" -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:66 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:67 msgid "Please accept the Terms and conditions in order to register." msgstr "" -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:116 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:118 #, php-format msgid "You must select at least %s collection." msgstr "" @@ -11209,16 +10640,16 @@ msgstr "" msgid "Default basket" msgstr "" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:596 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:599 msgid "Email addess is not valid" msgstr "" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:624 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:627 #, php-format msgid "You will now receive notifications at %s" msgstr "" -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:635 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:638 #, php-format msgid "You will no longer receive notifications at %s" msgstr "" diff --git a/templates/web/prod/actions/edit_default.html.twig b/templates/web/prod/actions/edit_default.html.twig index 6907aedf12..0e3e1c8217 100644 --- a/templates/web/prod/actions/edit_default.html.twig +++ b/templates/web/prod/actions/edit_default.html.twig @@ -127,7 +127,7 @@ -
+
@@ -150,7 +150,7 @@
-
+
{{_self.HTML_fieldlist(recordsRequest, fields)}}
@@ -230,7 +230,7 @@
-
+
    {% if thesaurus %} diff --git a/tests/classes/PhraseanetPHPUnitAbstract.php b/tests/classes/PhraseanetPHPUnitAbstract.php index e83ac22474..4079bf0db3 100644 --- a/tests/classes/PhraseanetPHPUnitAbstract.php +++ b/tests/classes/PhraseanetPHPUnitAbstract.php @@ -220,6 +220,7 @@ abstract class PhraseanetPHPUnitAbstract extends WebTestCase return new Client($DI['app'], array()); }); + self::$DI['user']->purgePreferences(); } public function tearDown() diff --git a/tests/classes/userTest.php b/tests/classes/userTest.php index bb6315c1a3..bd8a7b15fe 100644 --- a/tests/classes/userTest.php +++ b/tests/classes/userTest.php @@ -58,6 +58,30 @@ class userTest extends PhraseanetPHPUnitAbstract $this->assertSame(\User_Adapter::$def_values['editing_top_box'], $user->getPrefs('editing_top_box')); } + public function testGetPrefWithACustomizedConf() + { + $data = isset(self::$DI['app']['phraseanet.configuration']['user-settings']) ? self::$DI['app']['phraseanet.configuration']['user-settings'] : null; + + self::$DI['app']['phraseanet.configuration']['user-settings'] = array( + 'images_per_page' => 42, + 'images_size' => 666, + 'lalala' => 'didou', + ); + + $user = $this->get_user(); + + $this->assertNull($user->getPrefs('lalala')); + $this->assertSame(666, $user->getPrefs('images_size')); + $this->assertSame(42, $user->getPrefs('images_per_page')); + $this->assertSame(\User_Adapter::$def_values['editing_top_box'], $user->getPrefs('editing_top_box')); + + if (null === $data) { + unset(self::$DI['app']['phraseanet.configuration']['user-settings']); + } else { + self::$DI['app']['phraseanet.configuration']['user-settings'] = $data; + } + } + public function testSetPref() { $user = $this->get_user(); diff --git a/www/skins/prod/jquery.edit.js b/www/skins/prod/jquery.edit.js index 5f2ac50e0e..ca285f134d 100644 --- a/www/skins/prod/jquery.edit.js +++ b/www/skins/prod/jquery.edit.js @@ -1740,7 +1740,7 @@ function startThisEditing(sbas_id, what, regbasprid, ssel) { }, stop: function () { hsplit1(); - setPref('editing_top_box', Math.floor($('#EDIT_TOP').height() * 100 / $('#EDIT_ALL').height()) + '%'); + setPref('editing_top_box', Math.floor($('#EDIT_TOP').height() * 100 / $('#EDIT_ALL').height())); setSizeLimits(); } }); @@ -1753,7 +1753,7 @@ function startThisEditing(sbas_id, what, regbasprid, ssel) { setPreviewEdit(); }, stop: function () { - setPref('editing_right_box', Math.floor($('#divS').width() * 100 / $('#EDIT_MID_L').width()) + '%'); + setPref('editing_right_box', Math.floor($('#divS').width() * 100 / $('#EDIT_MID_L').width())); vsplit1(); setSizeLimits(); } @@ -1769,7 +1769,7 @@ function startThisEditing(sbas_id, what, regbasprid, ssel) { setPreviewEdit(); }, stop: function () { - setPref('editing_left_box', Math.floor($('#EDIT_MID_R').width() * 100 / $('#EDIT_MID').width()) + '%'); + setPref('editing_left_box', Math.floor($('#EDIT_MID_R').width() * 100 / $('#EDIT_MID').width())); vsplit2(); setSizeLimits(); }