Changeset 5036 for trunk


Ignore:
Timestamp:
Mar 3, 2010, 12:18:21 PM (15 years ago)
Author:
nikrou
Message:

Feature 1451 : fix mispelling and missing translations

Location:
trunk
Files:
36 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/cat_options.php

    r5021 r5036  
    163163$tabsheet->add('status', l10n('Public / Private'), $opt_link.'status');
    164164$tabsheet->add('visible', l10n('Lock'), $opt_link.'visible');
    165 $tabsheet->add('Upload', l10n('Upload'), $opt_link.'Upload');
    166 $tabsheet->add('Comments', l10n('Comments'), $opt_link.'Comments');
     165$tabsheet->add('upload', l10n('Upload'), $opt_link.'upload');
     166$tabsheet->add('comments', l10n('Comments'), $opt_link.'comments');
    167167if ($conf['allow_random_representative'])
    168168{
  • trunk/admin/group_list.php

    r5021 r5036  
    7373  array_push(
    7474    $page['infos'],
    75     sprintf(l10n('group \"%s\" deleted'), $groupname)
     75    sprintf(l10n('group "%s" deleted'), $groupname)
    7676    );
    7777}
     
    8585  if (empty($_POST['groupname']))
    8686  {
    87     array_push($page['errors'], l10n('The name of a group must not contain \" or \' or be empty.'));
     87    array_push($page['errors'], l10n('The name of a group must not contain " or \' or be empty.'));
    8888  }
    8989  if (count($page['errors']) == 0)
     
    114114    array_push(
    115115      $page['infos'],
    116       sprintf(l10n('group \"%s\" added'), $_POST['groupname'])
     116      sprintf(l10n('group "%s" added'), $_POST['groupname'])
    117117      );
    118118  }
     
    142142  array_push(
    143143    $page['infos'],
    144     sprintf(l10n('group \"%s\" updated'), $groupname)
     144    sprintf(l10n('group "%s" updated'), $groupname)
    145145    );
    146146}
  • trunk/admin/history.php

    r5021 r5036  
    5252
    5353$types = array('none', 'picture', 'high', 'other');
    54 $display_thumbnails = array('no_display_thumbnail', 'display_thumbnail_classic', 'display_thumbnail_hoverbox');
     54$display_thumbnails = array('No display', 'Classic display', 'Hoverbox display');
    5555
    5656// +-----------------------------------------------------------------------+
  • trunk/admin/include/functions.php

    r5021 r5036  
    16671667    return array(
    16681668      'info' => sprintf(
    1669         l10n('Tag \"%s\" was added'),
     1669        l10n('Tag "%s" was added'),
    16701670        stripslashes($tag_name)
    16711671        ),
     
    16771677    return array(
    16781678      'error' => sprintf(
    1679         l10n('Tag \"%s\" already exists'),
     1679        l10n('Tag "%s" already exists'),
    16801680        stripslashes($tag_name)
    16811681        )
  • trunk/admin/include/functions_notification_by_mail.inc.php

    r5021 r5036  
    316316  if ($env_nbm['error_on_mail_count'] != 0)
    317317  {
    318     array_push($page['errors'], l10n_dec('nbm_msg_n_mail_not_send', 'nbm_msg_n_mails_not_send', $env_nbm['error_on_mail_count']));
     318    array_push($page['errors'], l10n_dec('%d mail was not sent.', '%d mails were not sent.', $env_nbm['error_on_mail_count']));
    319319    if ($env_nbm['sent_mail_count'] != 0)
    320       array_push($page['infos'], l10n_dec('nbm_msg_n_mail_sent', 'nbm_msg_n_mails_sent', $env_nbm['sent_mail_count']));
     320      array_push($page['infos'], l10n_dec('%d mail was sent.', '%d mails were sent.', $env_nbm['sent_mail_count']));
    321321  }
    322322  else
     
    325325      array_push($page['infos'], l10n('No mail to send.'));
    326326    else
    327       array_push($page['infos'], l10n_dec('nbm_msg_n_mail_sent', 'nbm_msg_n_mails_sent', $env_nbm['sent_mail_count']));
     327      array_push($page['infos'], l10n_dec('%d mail was sent.', '%d mails were sent.', $env_nbm['sent_mail_count']));
    328328  }
    329329}
     
    492492  }
    493493
    494   array_push($page['infos'], l10n_dec('nbm_user_change_enabled_updated_data_count', 'nbm_users_change_enabled_updated_data_count', $updated_data_count));
     494  array_push($page['infos'], l10n_dec('%d user was updated.', '%d users were updated.', $updated_data_count));
    495495  if ($error_on_updated_data_count != 0)
    496496  {
    497497    array_push($page['errors'],
    498       l10n_dec('nbm_user_change_enabled_error_on_updated_data_count',
    499                'nbm_users_change_enabled_error_on_updated_data_count',
     498      l10n_dec('%d user was not updated.',
     499               '%d users were not updated.',
    500500               $error_on_updated_data_count));
    501501  }
  • trunk/admin/include/functions_waiting.inc.php

    r5021 r5036  
    3131  $tabsheet = new tabsheet();
    3232  // TabSheet initialization
    33   $tabsheet->add('Comments', l10n('Comments'), $link_start.'Comments');
     33  $tabsheet->add('comments', l10n('Comments'), $link_start.'comments');
    3434  $tabsheet->add('upload', l10n('Pictures'), $link_start.'upload');
    3535  // TabSheet selection
  • trunk/admin/intro.php

    r4385 r5036  
    201201    'DB_ELEMENTS' => l10n_dec('%d element', '%d elements', $nb_elements),
    202202    'DB_CATEGORIES' =>
    203       l10n_dec('cat_inclu_part1_S', 'cat_inclu_part1_P',
     203      l10n_dec('%d category including ', '%d categories including ',
    204204        $nb_categories).
    205       l10n_dec('cat_inclu_part2_S', 'cat_inclu_part2_P',
     205      l10n_dec('%d physical', '%d physical',
    206206        $nb_physical).
    207       l10n_dec('cat_inclu_part3_S', 'cat_inclu_part3_P',
     207      l10n_dec(' and %d virtual', ' and %d virtual',
    208208        $nb_virtual),
    209209    'DB_IMAGE_CATEGORY' => l10n_dec('%d association', '%d associations', $nb_image_category),
  • trunk/admin/notification_by_mail.php

    r5021 r5036  
    8282      $must_repost = true;
    8383      array_push($page['errors'],
    84         l10n_dec('nbm_background_treatment_redirect_second',
    85                  'nbm_background_treatment_redirect_seconds',
     84        l10n_dec('Execution time is out, treatment must be continue [Estmated time: %d second].',
     85                 'Execution time is out, treatment must be continue [Estmated time: %d seconds].',
    8686                  $time_refresh));
    8787    }
     
    201201        $result = pwg_query($query);
    202202
    203         redirect($base_url.get_query_string_diff(array(), false), l10n('Processing treatment.
    204 
    205 Please wait...'));
     203        redirect($base_url.get_query_string_diff(array(), false), l10n("Processing treatment.\nPlease wait..."));
    206204      }
    207205    }
     
    534532
    535533      array_push($page['infos'],
    536         l10n_dec('nbm_updated_param_count', 'nbm_updated_params_count',
     534        l10n_dec('%d parameter was updated.', '%d parameters were updated.',
    537535          $updated_param_count));
    538536
  • trunk/admin/site_manager.php

    r5021 r5036  
    252252    array(
    253253      'NAME' => $row['galleries_url'],
    254       'TYPE' => l10n( $is_remote ? 'site_remote' : 'site_local' ),
     254      'TYPE' => l10n( $is_remote ? 'Remote' : 'Local' ),
    255255      'CATEGORIES' => (int)@$sites_detail[$row['id']]['nb_categories'],
    256256      'IMAGES' => (int)@$sites_detail[$row['id']]['nb_images'],
  • trunk/admin/tags.php

    r5021 r5036  
    6868          $page['errors'],
    6969          sprintf(
    70             l10n('Tag \"%s\" already exists'),
     70            l10n('Tag "%s" already exists'),
    7171            $tag_name
    7272            )
     
    126126    $page['infos'],
    127127    l10n_dec(
    128       'The %d following tag were deleted',
     128      'The following tag was deleted',
    129129      'The %d following tags were deleted',
    130130      count($tag_names)).' : '.
     
    165165      $page['infos'],
    166166      sprintf(
    167         l10n('Tag \"%s\" was added'),
     167        l10n('Tag "%s" was added'),
    168168        stripslashes($tag_name)
    169169        )
     
    175175      $page['errors'],
    176176      sprintf(
    177         l10n('Tag \"%s\" already exists'),
     177        l10n('Tag "%s" already exists'),
    178178        stripslashes($tag_name)
    179179        )
  • trunk/admin/template/goto/group_list.tpl

    r5021 r5036  
    3131    <td style="text-align:center;">
    3232      <a href="{$group.U_PERM}">
    33         <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Permissions.png" class="button" style="border:none" alt="{'Permissions'|@translate}" title="{'Permissions'|@translate}"></a>
     33        <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/permissions.png" class="button" style="border:none" alt="{'Permissions'|@translate}" title="{'Permissions'|@translate}"></a>
    3434      <a href="{$group.U_DELETE}" onclick="return confirm('{'delete'|@translate|@escape:'javascript'}' + '\n\n' + '{'Are you sure?'|@translate|@escape:'javascript'}');">
    35         <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Delete.png" class="button" style="border:none" alt="{'Delete'|@translate}" title="{'Delete'|@translate}" {$TAG_INPUT_ENABLED}></a>
    36       <a href="{$group.U_ISDEFAULT}" onclick="return confirm('{'toggle_is_default_group'|@translate|@escape:'javascript'}' +'\n\n' + '{'Are you sure?'|@translate|@escape:'javascript'}');">
    37         <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Toggle \'default group\' property.png" class="button" style="border:none" alt="{'Toggle \'default group\' property'|@translate}" title="{'Toggle \'default group\' property'|@translate}" {$TAG_INPUT_ENABLED}></a>
     35        <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/delete.png" class="button" style="border:none" alt="{'Delete'|@translate}" title="{'Delete'|@translate}" {$TAG_INPUT_ENABLED}></a>
     36      <a href="{$group.U_ISDEFAULT}" onclick="return confirm('{'Toggle \'default group\' property'|@translate|@escape:'javascript'}' +'\n\n' + '{'Are you sure?'|@translate|@escape:'javascript'}');">
     37        <img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/toggle_is_default_group.png" class="button" style="border:none" alt="{'Toggle \'default group\' property'|@translate}" title="{'Toggle \'default group\' property'|@translate}" {$TAG_INPUT_ENABLED}></a>
    3838    </td>
    3939  </tr>
  • trunk/admin/template/goto/plugins_new.tpl

    r5021 r5036  
    3939    <td>{$plugin.DATE}</td>
    4040    <td>{$plugin.AUTHOR}</td>
    41     <td style="text-align:center;"><a href="{$plugin.URL_INSTALL}" onclick="return confirm('{'plugins_confirm_install'|@translate|@escape:javascript}');">{'plugins_auto_install'|@translate}</a>
     41    <td style="text-align:center;"><a href="{$plugin.URL_INSTALL}" onclick="return confirm('{'Are you sure you want to install this plugin?'|@translate|@escape:javascript}');">{'Automatic installation'|@translate}</a>
    4242      / <a href="{$plugin.URL_DOWNLOAD}">{'Download file'|@translate}</a>
    4343    </td>
  • trunk/admin/template/goto/plugins_update.tpl

    r5021 r5036  
    3232    <td style="text-align:center;">{$plugin.VERSION}</td>
    3333    <td style="text-align:center;"><a href="{$plugin.EXT_URL}" onclick="window.open(this.href); return false;" class="cluetip" title="{$plugin.EXT_NAME}|{$plugin.NEW_VER_DESC|htmlspecialchars|nl2br}">{$plugin.NEW_VERSION}</a></td>
    34     <td style="text-align:center;"><a href="{$plugin.URL_UPDATE}" onclick="return confirm('{'plugins_confirm_upgrade'|@translate|@escape:javascript}');">{'plugins_auto_update'|@translate}</a>
     34    <td style="text-align:center;"><a href="{$plugin.URL_UPDATE}" onclick="return confirm('{'Are you sure to install this upgrade? You must verify if this version does not need uninstallation.'|@translate|@escape:javascript}');">{'plugins_auto_update'|@translate}</a>
    3535      / <a href="{$plugin.URL_DOWNLOAD}">{'Download file'|@translate}</a></td>
    3636  </tr>
  • trunk/admin/template/goto/site_manager.tpl

    r5021 r5036  
    3434<table class="table2">
    3535        <tr class="throw">
    36                 <td>{'Remote'|@translate} / {'Remote'|@translate}</td>
     36                <td>{'Local'|@translate} / {'Remote'|@translate}</td>
    3737                <td>{'Actions'|@translate}</td>
    3838        </tr>
  • trunk/admin/template/goto/tags.tpl

    r5021 r5036  
    4747    <p>
    4848      <input class="submit" type="submit" name="edit" value="{'Edit selected tags'|@translate}">
    49       <input class="submit" type="submit" name="delete" value="{'Are you sure?'|@translate}" onclick="return confirm('{'Are you sure?'|@translate}');" {$TAG_INPUT_ENABLED}>
     49      <input class="submit" type="submit" name="delete" value="{'Delete selected tags'|@translate}" onclick="return confirm('{'Are you sure?'|@translate}');" {$TAG_INPUT_ENABLED}>
    5050    </p>
    5151  </fieldset>
  • trunk/admin/template/goto/user_list.tpl

    r5021 r5036  
    8888    {/foreach}
    8989    <td style="text-align:center;">
    90       <a href="{$user.U_PERM}"><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Permissions.png" class="button" style="border:none" alt="{'Permissions'|@translate}" title="{'Permissions'|@translate}"></a>
     90      <a href="{$user.U_PERM}"><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/permissions.png" class="button" style="border:none" alt="{'Permissions'|@translate}" title="{'Permissions'|@translate}"></a>
    9191      <a href="{$user.U_PROFILE}"><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/edit_s.png" class="button" style="border:none" alt="{'Profile'|@translate}" title="{'Profile'|@translate}"></a>
    9292      {foreach from=$user.plugin_actions item=data}
  • trunk/admin/user_list.php

    r5021 r5036  
    216216          $page['infos'],
    217217          sprintf(
    218             l10n('user \"%s\" added'),
     218            l10n('user "%s" added'),
    219219            $_POST['login']
    220220          )
     
    236236        $page['infos'],
    237237        sprintf(
    238           l10n('user \"%s\" added'),
     238          l10n('user "%s" added'),
    239239          $_POST['login']
    240240          )
     
    593593    isset($_POST['pref_submit']) ? $_POST['language'] : get_default_language());
    594594
     595Log::getInstance()->debug($status);
    595596// Status options
    596597foreach (get_enums(USER_INFOS_TABLE, 'status') as $status)
     
    694695  $properties[] =
    695696    (isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true'))
    696         ? l10n('') : l10n('');
     697        ? l10n('High definition') : l10n('');
    697698
    698699  $template->append(
  • trunk/include/dblayer/functions_mysql.inc.php

    r5006 r5036  
    447447    array_push(
    448448          $page['infos'],
    449           l10n('Optimizations completed')
     449          l10n('All optimizations have been successfully completed.')
    450450          );
    451451  }
     
    454454    array_push(
    455455          $page['errors'],
    456           l10n('Optimizations errors')
     456          l10n('Optimizations have been completed with some errors.')
    457457          );
    458458  }
  • trunk/include/dblayer/functions_pdo-sqlite.inc.php

    r4967 r5036  
    389389 
    390390  array_push($page['infos'],
    391              l10n('Optimizations completed')
     391             l10n('All optimizations have been successfully completed.')
    392392             );
    393393}
  • trunk/include/dblayer/functions_pgsql.inc.php

    r5006 r5036  
    423423  }
    424424  array_push($page['infos'],
    425              l10n('Optimizations completed')
     425             l10n('All optimizations have been successfully completed.')
    426426             );
    427427}
  • trunk/include/dblayer/functions_sqlite.inc.php

    r4892 r5036  
    400400 
    401401  array_push($page['infos'],
    402              l10n('Optimizations completed')
     402             l10n('All optimizations have been successfully completed.')
    403403             );
    404404}
  • trunk/include/functions_category.inc.php

    r5021 r5036  
    485485    else
    486486    {
    487       $display_text.= ' '.l10n_dec('images_available_cat', 'images_available_cats', $cat_count_categories);
     487      $display_text.= ' '.l10n_dec('in %d sub-category', 'in %d sub-categories', $cat_count_categories);
    488488    }
    489489  }
  • trunk/language/de_DE/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "über Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Frei"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Alle"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Mitglieder"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Administratoren"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Webmaster"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Keine Benutzer"
    4141
     
    462462msgstr "Standartanzeige"
    463463
     464msgid "No display"
     465msgstr "Keine Anzeige"
     466
     467msgid "Classic display"
     468msgstr "Klassische Ansicht"
     469
     470msgid "Hoverbox display"
     471msgstr "Anzeige beim überflug"
     472
    464473msgid "Templates"
    465474msgstr "Templates (Modelle)"
     
    657666msgstr "herunterladen"
    658667
     668msgid "Download file"
     669msgstr "Laden Sie die Datei"
     670
    659671msgid "download this file"
    660672msgstr "Download dieser Datei"
     
    741753msgstr "Element Typ"
    742754
     755msgid "none"
     756msgstr "egal"
     757
     758msgid "high"
     759msgstr "hoch"
     760
     761msgid "other"
     762msgstr "anderes"
     763
    743764msgid "Email address"
    744765msgstr "E-Mail-Adresse"
     
    817838msgid "Filter"
    818839msgstr "Filter"
     840
     841msgid "%d line filtered"
     842msgid_plural "%d lines filtered"
     843msgstr[0] ""
     844msgstr[1] ""
    819845
    820846msgid "Filter and display"
     
    10801106msgstr "Buchstaben"
    10811107
    1082 msgid "Contacts"
     1108msgid "Level 0"
     1109msgstr "---"
     1110
     1111msgid "Level 1"
    10831112msgstr "Kontakt"
    10841113
    1085 msgid "Friends"
     1114msgid "Level 2"
    10861115msgstr "Freunde"
    10871116
    1088 msgid "Family"
     1117msgid "Level 4"
    10891118msgstr "Familie"
    10901119
    1091 msgid "Admins"
     1120msgid "Level 8"
    10921121msgstr "Admins"
    10931122
     
    11231152
    11241153msgid "Mail address"
    1125 msgstr ""
     1154msgstr "E-Mail-Adresse"
    11261155
    11271156msgid "Mail content"
     
    12731302msgstr "Gehe zu "
    12741303
    1275 msgid "."
    1276 msgstr "."
    1277 
    12781304msgid "Hello "
    12791305msgstr "Hallo "
    12801306
    1281 msgid ","
    1282 msgstr ","
    1283 
    12841307msgid "New elements were added "
    12851308msgstr "Neue Bilder wurden der Galerie hinzugefügt zwischen dem"
     
    12931316msgid " on "
    12941317msgstr " an "
     1318
     1319msgid ""
     1320"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1321msgid_plural ""
     1322"Execution time is out, treatment must be continue [Estmated time: %d "
     1323"seconds]."
     1324msgstr[0] "Ausführungszeit ist beendet, Vorgang muss manuell fortgesetzt werden [Verstrichene Zeit: %d Sekunde]."
     1325msgstr[1] "Ausführungszeit ist beendet, Vorgang muss manuell fortgesetzt werden [Verstrichene Zeit: %d Sekunden]."
     1326
     1327msgid "%d parameter was updated."
     1328msgid_plural "%d parameters were updated."
     1329msgstr[0] "%d Parameter aktualisiert."
     1330msgstr[1] "%d Parameter aktualisiert."
     1331
     1332msgid "%d user was updated."
     1333msgid_plural "%d users were updated."
     1334msgstr[0] "%d Benutzer aktualisiert."
     1335msgstr[1] "%d Benutzer aktualisiert."
     1336
     1337msgid "%d user was not updated."
     1338msgid_plural "%d users were not updated."
     1339msgstr[0] "%d Benutzer nicht aktualisiert."
     1340msgstr[1] "%d Benutzer nicht aktualisiert."
     1341
     1342msgid "%d mail was sent."
     1343msgid_plural "%d mails were sent."
     1344msgstr[0] "%d E-Mail wurde gesendet."
     1345msgstr[1] "%d E-Mails wurden gesendet."
     1346
     1347msgid "%d mail was not sent."
     1348msgid_plural "%d mails were not sent."
     1349msgstr[0] "%d E-Mail wurde nicht gesendet."
     1350msgstr[1] "%d E-Mails wurden nicht gesendet."
    12951351
    12961352msgid "[NBM] Problems or questions"
     
    13731429msgstr "Parameter"
    13741430
    1375 #, fuzzy
    1376 msgid "Processing treatment.Please wait..."
     1431msgid "Processing treatment.\nPlease wait..."
    13771432msgstr ""
    13781433"Processing treatment.\n"
     
    21872242msgid "Status"
    21882243msgstr "Status"
     2244
     2245msgid "User status"
     2246msgstr "Status des Benutzers"
     2247
     2248msgid "user_status_admin"
     2249msgstr "Administrator"
     2250
     2251msgid "user_status_generic"
     2252msgstr "Allgemein"
     2253
     2254msgid "user_status_guest"
     2255msgstr "Gast"
     2256
     2257msgid "user_status_normal"
     2258msgstr "Besucher"
     2259
     2260msgid "user_status_webmaster"
     2261msgstr "Webmaster"
    21892262
    21902263msgid "Parameters are correct"
     
    23092382msgstr[1] "%d Tags"
    23102383
     2384msgid "The following tag was deleted"
     2385msgid_plural "The %d following tags were deleted"
     2386msgstr[0] ""
     2387msgstr[1] ""
     2388
    23112389msgid "Tag results for"
    23122390msgstr "Ergebnisse der Tag für"
     
    27132791msgstr "Benutzer \"%s\" hinzugefügt"
    27142792
    2715 msgid "User status"
    2716 msgstr "Status des Benutzers"
    2717 
    27182793msgid "Administrator"
    27192794msgstr "Administrator"
     
    28292904msgid "You need to confirm deletion"
    28302905msgstr "Löschen bitte bestätigen"
    2831 
    2832 #~ msgid "Download file"
    2833 #~ msgstr "Laden Sie die Datei"
  • trunk/language/en_UK/LC_MESSAGES/messages.po

    r5021 r5036  
    2222msgstr ""
    2323
    24 msgid "Free access"
    25 msgstr ""
    26 
    27 msgid "Access to all"
    28 msgstr ""
    29 
    30 msgid "Access to subscribed"
    31 msgstr ""
    32 
    33 msgid "Access to administrators"
    34 msgstr ""
    35 
    36 msgid "Access to webmasters"
    37 msgstr ""
    38 
    39 msgid "No access"
     24msgid "ACCESS_0"
     25msgstr ""
     26
     27msgid "ACCESS_1"
     28msgstr ""
     29
     30msgid "ACCESS_2"
     31msgstr ""
     32
     33msgid "ACCESS_3"
     34msgstr ""
     35
     36msgid "ACCESS_4"
     37msgstr ""
     38
     39msgid "ACCESS_5"
    4040msgstr ""
    4141
     
    273273msgstr ""
    274274
    275 msgid "The version of %s [%s] installed is not compatible with the version required [%s]"
    276 msgstr ""
    277 
    278 msgid "You need to upgrade your system to take full advantage of the application else the application will not work correctly, or not at all"
     275msgid ""
     276"The version of %s [%s] installed is not compatible with the version required "
     277"[%s]"
     278msgstr ""
     279
     280msgid ""
     281"You need to upgrade your system to take full advantage of the application "
     282"else the application will not work correctly, or not at all"
    279283msgstr ""
    280284
     
    408412msgstr ""
    409413
    410 msgid "Anti-flood system : please wait for a moment before trying to post another comment"
     414msgid ""
     415"Anti-flood system : please wait for a moment before trying to post another "
     416"comment"
    411417msgstr ""
    412418
     
    414420msgstr ""
    415421
    416 msgid "Your comment has NOT been registered because it did not pass the validation rules"
     422msgid ""
     423"Your comment has NOT been registered because it did not pass the validation "
     424"rules"
     425msgstr ""
     426
     427msgid "Add a comment"
     428msgstr ""
     429
     430msgid "Comments for all"
     431msgstr ""
     432
     433msgid "An administrator must authorize your comment before it is visible."
     434msgstr ""
     435
     436msgid "This login is already used by another user"
     437msgstr ""
     438
     439msgid "Complete RSS feed (images, comments)"
     440msgstr ""
     441
     442msgid "Access type"
    417443msgstr ""
    418444
     
    420446msgstr ""
    421447
    422 msgid "Add a comment"
    423 msgstr ""
    424 
    425 msgid "Comments for all"
    426 msgstr ""
    427 
    428 msgid "An administrator must authorize your comment before it is visible."
    429 msgstr ""
    430 
    431 msgid "This login is already used by another user"
    432 msgstr ""
    433 
    434 msgid "Complete RSS feed (images, comments)"
    435 msgstr ""
    436 
    437 msgid "Access type"
    438 msgstr ""
    439 
    440448msgid "Information data registered in database"
    441449msgstr ""
     
    444452msgstr ""
    445453
     454msgid "No display"
     455msgstr ""
     456
     457msgid "Classic display"
     458msgstr ""
     459
     460msgid "Hoverbox display"
     461msgstr ""
     462
    446463msgid "Templates"
    447464msgstr ""
     
    501518msgstr ""
    502519
    503 msgid "Copy the text in pink between hyphens and paste it into the file \"include/config_database.inc.php\"(Warning : config_database.inc.php must only contain what is in pink, no line return or space character)"
     520msgid ""
     521"Copy the text in pink between hyphens and paste it into the file \"include/"
     522"config_database.inc.php\"(Warning : config_database.inc.php must only "
     523"contain what is in pink, no line return or space character)"
    504524msgstr ""
    505525
     
    540560msgstr ""
    541561
    542 msgid "As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:"
     562msgid ""
     563"As a precaution, following plugins have been deactivated. You must check for "
     564"plugins upgrade before reactiving them:"
    543565msgstr ""
    544566
     
    626648
    627649msgid "download"
     650msgstr ""
     651
     652msgid "Download file"
    628653msgstr ""
    629654
     
    712737msgstr ""
    713738
     739msgid "none"
     740msgstr ""
     741
     742msgid "high"
     743msgstr ""
     744
     745msgid "other"
     746msgstr ""
     747
    714748msgid "Email address"
    715749msgstr ""
     
    780814msgid "Filter"
    781815msgstr ""
     816
     817msgid "%d line filtered"
     818msgid_plural "%d lines filtered"
     819msgstr[0] ""
     820msgstr[1] ""
    782821
    783822msgid "Filter and display"
     
    873912msgstr ""
    874913
    875 msgid "Bad status for user \"guest\", using default status. Please notify the webmaster."
     914msgid ""
     915"Bad status for user \"guest\", using default status. Please notify the "
     916"webmaster."
    876917msgstr ""
    877918
     
    9621003msgstr ""
    9631004
    964 msgid "The configuration of Piwigo is finished, here is the next step<br><br>\n* go to the identification page and use the login/password given for webmaster<br>\n* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories"
    965 msgstr ""
    966 
    967 msgid "Need help ? Ask your question on <a href=\"%s\">Piwigo message board</a>."
     1005msgid ""
     1006"The configuration of Piwigo is finished, here is the next step<br><br>\n"
     1007"* go to the identification page and use the login/password given for "
     1008"webmaster<br>\n"
     1009"* this login will enable you to access to the administration panel and to "
     1010"the instructions in order to place pictures in your directories"
     1011msgstr ""
     1012
     1013msgid ""
     1014"Need help ? Ask your question on <a href=\"%s\">Piwigo message board</a>."
    9681015msgstr ""
    9691016
     
    9711018msgstr ""
    9721019
    973 msgid "It will be shown to the visitors. It is necessary for website administration"
     1020msgid ""
     1021"It will be shown to the visitors. It is necessary for website administration"
    9741022msgstr ""
    9751023
     
    10211069msgstr ""
    10221070
    1023 msgid "Contacts"
    1024 msgstr ""
    1025 
    1026 msgid "Friends"
    1027 msgstr ""
    1028 
    1029 msgid "Family"
    1030 msgstr ""
    1031 
    1032 msgid "Admins"
     1071msgid "Level 0"
     1072msgstr ""
     1073
     1074msgid "Level 1"
     1075msgstr ""
     1076
     1077msgid "Level 2"
     1078msgstr ""
     1079
     1080msgid "Level 4"
     1081msgstr ""
     1082
     1083msgid "Level 8"
    10331084msgstr ""
    10341085
     
    11781229msgstr ""
    11791230
    1180 msgid "Prepared time for list of users to send mail is limited. Others users are not listed."
     1231msgid ""
     1232"Prepared time for list of users to send mail is limited. Others users are "
     1233"not listed."
    11811234msgstr ""
    11821235
     
    12081261msgstr ""
    12091262
    1210 msgid "."
    1211 msgstr ""
    1212 
    12131263msgid "Hello "
    12141264msgstr ""
    12151265
    1216 msgid ","
    1217 msgstr ""
    1218 
    12191266msgid "New elements were added "
    12201267msgstr ""
     
    12291276msgstr ""
    12301277
     1278msgid ""
     1279"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1280msgid_plural ""
     1281"Execution time is out, treatment must be continue [Estmated time: %d "
     1282"seconds]."
     1283msgstr[0] ""
     1284msgstr[1] ""
     1285
     1286msgid "%d parameter was updated."
     1287msgid_plural "%d parameters were updated."
     1288msgstr[0] ""
     1289msgstr[1] ""
     1290
     1291msgid "%d user was updated."
     1292msgid_plural "%d users were updated."
     1293msgstr[0] ""
     1294msgstr[1] ""
     1295
     1296msgid "%d user was not updated."
     1297msgid_plural "%d users were not updated."
     1298msgstr[0] ""
     1299msgstr[1] ""
     1300
     1301msgid "%d mail was sent."
     1302msgid_plural "%d mails were sent."
     1303msgstr[0] ""
     1304msgstr[1] ""
     1305
     1306msgid "%d mail was not sent."
     1307msgid_plural "%d mails were not sent."
     1308msgstr[0] ""
     1309msgstr[1] ""
     1310
    12311311msgid "[NBM] Problems or questions"
    12321312msgstr ""
    12331313
    1234 msgid "If you encounter problems or have any question, please send a message to "
     1314msgid ""
     1315"If you encounter problems or have any question, please send a message to "
    12351316msgstr ""
    12361317
     
    12441325msgstr ""
    12451326
    1246 msgid "The webmaster has unsubscribed you from receiving notifications by mail."
     1327msgid ""
     1328"The webmaster has unsubscribed you from receiving notifications by mail."
    12471329msgstr ""
    12481330
     
    12741356msgstr ""
    12751357
    1276 msgid "Subscribers could be listed (available) only if there is new elements to notify."
     1358msgid ""
     1359"Subscribers could be listed (available) only if there is new elements to "
     1360"notify."
    12771361msgstr ""
    12781362
     
    12951379msgstr ""
    12961380
    1297 msgid "Processing treatment.\n Please wait..."
     1381msgid "Processing treatment.Please wait..."
    12981382msgstr ""
    12991383
     
    14131497msgstr ""
    14141498
    1415 msgid "Note you can change your configuration by yourself and restart Piwigo after that."
     1499msgid ""
     1500"Note you can change your configuration by yourself and restart Piwigo after "
     1501"that."
    14161502msgstr ""
    14171503
     
    14461532msgstr ""
    14471533
    1448 msgid "Only thumbnails prefix and webmaster mail address have been saved from previous configuration"
     1534msgid ""
     1535"Only thumbnails prefix and webmaster mail address have been saved from "
     1536"previous configuration"
    14491537msgstr ""
    14501538
     
    15121600msgstr ""
    15131601
    1514 msgid "Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem."
     1602msgid ""
     1603"Perform a maintenance check in [Administration>Specials>Maintenance] if you "
     1604"encounter any problem."
    15151605msgstr ""
    15161606
     
    15271617msgstr ""
    15281618
    1529 msgid "The permalink name must be composed of a-z, A-Z, 0-9, \"-\", \"_\" or \"/\". It must not be numeric or start with number followed by \"-\""
     1619msgid ""
     1620"The permalink name must be composed of a-z, A-Z, 0-9, \"-\", \"_\" or \"/\". "
     1621"It must not be numeric or start with number followed by \"-\""
    15301622msgstr ""
    15311623
     
    15341626
    15351627#, c-format
    1536 msgid "Permalink %s has been previously used by category %s. Delete from the permalink history first"
     1628msgid ""
     1629"Permalink %s has been previously used by category %s. Delete from the "
     1630"permalink history first"
    15371631msgstr ""
    15381632
     
    15801674msgstr ""
    15811675
    1582 msgid "Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file."
     1676msgid ""
     1677"Piwigo may try to switch your configuration to PHP 5 by creating or "
     1678"modifying a .htaccess file."
    15831679msgstr ""
    15841680
     
    16161712msgstr ""
    16171713
    1618 msgid "Download file"
    1619 msgstr ""
    1620 
    16211714msgid "An error occured during extraction (%s)."
    16221715msgstr ""
     
    18321925msgstr ""
    18331926
    1834 msgid "Replacement of original templates by customized templates from template-extension subfolder"
     1927msgid ""
     1928"Replacement of original templates by customized templates from template-"
     1929"extension subfolder"
    18351930msgstr ""
    18361931
     
    20702165msgstr ""
    20712166
     2167msgid "User status"
     2168msgstr ""
     2169
     2170msgid "user_status_admin"
     2171msgstr ""
     2172
     2173msgid "user_status_generic"
     2174msgstr ""
     2175
     2176msgid "user_status_guest"
     2177msgstr ""
     2178
     2179msgid "user_status_normal"
     2180msgstr ""
     2181
     2182msgid "user_status_webmaster"
     2183msgstr ""
     2184
    20722185msgid "Parameters are correct"
    20732186msgstr ""
     
    21002213msgstr ""
    21012214
    2102 msgid "database tables names will be prefixed with it (enables you to manage better your tables)"
     2215msgid ""
     2216"database tables names will be prefixed with it (enables you to manage better "
     2217"your tables)"
    21032218msgstr ""
    21042219
     
    21512266msgstr ""
    21522267
    2153 msgid "Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it's important to know and upgrade) and when major events happen to the project. Only a few emails a year."
     2268msgid ""
     2269"Keep in touch with Piwigo project, subscribe to Piwigo Announcement "
     2270"Newsletter. You will receive emails when a new release is available "
     2271"(sometimes including a security bug fix, it's important to know and upgrade) "
     2272"and when major events happen to the project. Only a few emails a year."
     2273msgstr ""
     2274
     2275msgid "Subscribe %s"
    21542276msgstr ""
    21552277
     
    21742296msgstr[1] ""
    21752297
     2298msgid "The following tag was deleted"
     2299msgid_plural "The %d following tags were deleted"
     2300msgstr[0] ""
     2301msgstr[1] ""
     2302
    21762303msgid "Tag results for"
    21772304msgstr ""
     
    22092336msgstr ""
    22102337
    2211 msgid "The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader."
     2338msgid ""
     2339"The RSS notification feed provides notification on news from this website : "
     2340"new pictures, updated categories, new comments. Use a RSS feed reader."
    22122341msgstr ""
    22132342
     
    23592488msgstr ""
    23602489
    2361 msgid "display maximum informations (added categories and elements, deleted categories and elements)"
     2490msgid ""
     2491"display maximum informations (added categories and elements, deleted "
     2492"categories and elements)"
    23622493msgstr ""
    23632494
     
    23712502msgstr ""
    23722503
    2373 msgid "Version of create_listing_file.php on the remote site and Piwigo must be the same"
     2504msgid ""
     2505"Version of create_listing_file.php on the remote site and Piwigo must be the "
     2506"same"
    23742507msgstr ""
    23752508
     
    23772510msgstr ""
    23782511
    2379 msgid "listing.xml file was not found on the remote site. This file is generated by choosing the \"generate listing\" command in the Site manager"
     2512msgid ""
     2513"listing.xml file was not found on the remote site. This file is generated by "
     2514"choosing the \"generate listing\" command in the Site manager"
    23802515msgstr ""
    23812516
     
    23892524msgstr ""
    23902525
    2391 msgid "The file or directory cannot be accessed (either it does not exist or the access is denied)"
    2392 msgstr ""
    2393 
    2394 msgid "a picture filetype requires a thumbnail. The thumbnail must be present in the sub-directory \"thumbnail\" of the category directory. The thumbnail filename must start with the configured thumbnail prefix and the extension must be among the following list :"
     2526msgid ""
     2527"The file or directory cannot be accessed (either it does not exist or the "
     2528"access is denied)"
     2529msgstr ""
     2530
     2531msgid ""
     2532"a picture filetype requires a thumbnail. The thumbnail must be present in "
     2533"the sub-directory \"thumbnail\" of the category directory. The thumbnail "
     2534"filename must start with the configured thumbnail prefix and the extension "
     2535"must be among the following list :"
    23952536msgstr ""
    23962537
     
    24612602msgstr ""
    24622603
    2463 msgid "The name of directories and files must be composed of letters, numbers, \"-\", \"_\" or \".\""
     2604msgid ""
     2605"The name of directories and files must be composed of letters, numbers, \"-"
     2606"\", \"_\" or \".\""
    24642607msgstr ""
    24652608
     
    25062649msgstr ""
    25072650
    2508 msgid "Picture uploaded with success, an administrator will validate it as soon as possible"
     2651msgid ""
     2652"Picture uploaded with success, an administrator will validate it as soon as "
     2653"possible"
    25092654msgstr ""
    25102655
     
    25352680#, c-format
    25362681msgid "user \"%s\" added"
    2537 msgstr ""
    2538 
    2539 msgid "User status"
    25402682msgstr ""
    25412683
     
    26412783msgstr ""
    26422784
    2643 msgid "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."
     2785msgid ""
     2786"You may referer to your hosting provider's support and see how you could "
     2787"switch to PHP 5 by yourself."
    26442788msgstr ""
    26452789
  • trunk/language/es_ES/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "Acerca de Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Acceso libre"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Acceso todos"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Acceso inscritos"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Acceso administradores"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Acceso webmestres"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Ningún acceso"
    4141
     
    471471msgid "Default display"
    472472msgstr "Fijación por defecto"
     473
     474msgid "No display"
     475msgstr "Ninguna fijación"
     476
     477msgid "Classic display"
     478msgstr "Fijación clásica"
     479
     480msgid "Hoverbox display"
     481msgstr "Fijación en el momento del sobrevuelo"
    473482
    474483msgid "Templates"
     
    670679msgstr "descargar"
    671680
     681msgid "Download file"
     682msgstr "Descargar el fichero"
     683
    672684msgid "download this file"
    673685msgstr "descargar este fichero"
     
    754766msgstr "Tipo de elemento"
    755767
     768msgid "none"
     769msgstr "Ninguno"
     770
     771msgid "high"
     772msgstr "alto"
     773
     774msgid "other"
     775msgstr "Otro"
     776
    756777msgid "Email address"
    757778msgstr "Dirección electrónica"
     
    827848msgid "Filter"
    828849msgstr "Filtro"
     850
     851msgid "%d line filtered"
     852msgid_plural "%d lines filtered"
     853msgstr[0] ""
     854msgstr[1] ""
    829855
    830856msgid "Filter and display"
     
    10881114msgstr "letras"
    10891115
    1090 msgid "Contacts"
     1116msgid "Level 0"
     1117msgstr "---"
     1118
     1119msgid "Level 1"
    10911120msgstr "Contactos"
    10921121
    1093 msgid "Friends"
     1122msgid "Level 2"
    10941123msgstr "Amigos"
    10951124
    1096 msgid "Family"
     1125msgid "Level 4"
    10971126msgstr "Familia"
    10981127
    1099 msgid "Admins"
     1128msgid "Level 8"
    11001129msgstr "Admins"
    11011130
     
    12811310msgstr "Cita sobre "
    12821311
    1283 msgid "."
    1284 msgstr "."
    1285 
    12861312msgid "Hello "
    12871313msgstr "Buenos días "
    12881314
    1289 msgid ","
    1290 msgstr ","
    1291 
    12921315msgid "New elements were added "
    12931316msgstr "Los nuevos elementos han sido añadidos "
     
    13021325msgstr " el "
    13031326
     1327msgid ""
     1328"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1329msgid_plural ""
     1330"Execution time is out, treatment must be continue [Estmated time: %d "
     1331"seconds]."
     1332msgstr[0] "Ser sobrepasado el tiempo de ejecución, el tratamiento debe continuar [el Tiempo estimado: %d el segundo]."
     1333msgstr[1] "Ser sobrepasado el tiempo de ejecución, el tratamiento debe continuar [el Tiempo estimado: %d secundas]."
     1334
     1335msgid "%d parameter was updated."
     1336msgid_plural "%d parameters were updated."
     1337msgstr[0] "%d parámetro ha sido puesto al día."
     1338msgstr[1] "%d parámetros han sido puestos al día."
     1339
     1340msgid "%d user was updated."
     1341msgid_plural "%d users were updated."
     1342msgstr[0] "%d utilizador ha sido puesto al día."
     1343msgstr[1] "%d utilizadores han sido puestos al día."
     1344
     1345msgid "%d user was not updated."
     1346msgid_plural "%d users were not updated."
     1347msgstr[0] "%d utilizador no ha sido puesto al día."
     1348msgstr[1] "%d Utilizadores no han sido puestos al día."
     1349
     1350msgid "%d mail was sent."
     1351msgid_plural "%d mails were sent."
     1352msgstr[0] "%s mail ha sido enviado."
     1353msgstr[1] "%s mails han sido enviados."
     1354
     1355msgid "%d mail was not sent."
     1356msgid_plural "%d mails were not sent."
     1357msgstr[0] "%s mail no ha sido enviado."
     1358msgstr[1] "%s mails no han sido enviados."
     1359
    13041360msgid "[NBM] Problems or questions"
    13051361msgstr "[NBM] Problemas o de cuestiones"
     
    13811437msgstr "Parametraje"
    13821438
    1383 #, fuzzy
    1384 msgid "Processing treatment.Please wait..."
     1439msgid "Processing treatment.\nPlease wait..."
    13851440msgstr ""
    13861441"Tratamiento corriente.\n"
     
    21972252msgid "Status"
    21982253msgstr "Estatuto"
     2254
     2255msgid "User status"
     2256msgstr "Estatuto del utilizador"
     2257
     2258msgid "user_status_admin"
     2259msgstr "Administrador"
     2260
     2261msgid "user_status_generic"
     2262msgstr "Genérico"
     2263
     2264msgid "user_status_guest"
     2265msgstr "Invitado"
     2266
     2267msgid "user_status_normal"
     2268msgstr "Visitador"
     2269
     2270msgid "user_status_webmaster"
     2271msgstr "Webmestre"
    21992272
    22002273msgid "Parameters are correct"
     
    23182391msgstr[1] "%d tags"
    23192392
     2393msgid "The following tag was deleted"
     2394msgid_plural "The %d following tags were deleted"
     2395msgstr[0] "El tag siguiente ha sido suprimido"
     2396msgstr[1] "Los %d tags siguientes han sido suprimidos"
     2397
    23202398msgid "Tag results for"
    23212399msgstr "Resultados de las etiquetas para"
     
    27252803msgstr "utilizador \"%s\" añadido"
    27262804
    2727 msgid "User status"
    2728 msgstr "Estatuto del utilizador"
    2729 
    27302805msgid "Administrator"
    27312806msgstr "Administrador"
     
    28402915msgid "You need to confirm deletion"
    28412916msgstr "Usted debe confirmar la supresión"
    2842 
    2843 #~ msgid "Download file"
    2844 #~ msgstr "Descargar el fichero"
  • trunk/language/fr_FR/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "À propos de Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Accès libre"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Accès à tous"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Accès aux inscrits"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Accès aux administrateurs"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Accès aux webmestres"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Pas d'accès"
    4141
     
    467467msgid "Default display"
    468468msgstr "Affichage par défaut"
     469
     470msgid "No display"
     471msgstr "Pas d'affichage"
     472
     473msgid "Classic display"
     474msgstr "Affichage classique"
     475
     476msgid "Hoverbox display"
     477msgstr "Affichage lors du survol"
    469478
    470479msgid "Templates"
     
    666675msgstr "télécharger"
    667676
     677msgid "Download file"
     678msgstr "télécharger le fichier"
     679
    668680msgid "download this file"
    669681msgstr "télécharger ce fichier"
     
    750762msgstr "Type d'élément"
    751763
     764msgid "none"
     765msgstr "aucun"
     766
     767msgid "high"
     768msgstr "high"
     769
     770msgid "other"
     771msgstr "autre"
     772
    752773msgid "Email address"
    753774msgstr "Adresse e-mail"
     
    819840msgid "Filter"
    820841msgstr "Filtre"
     842
     843msgid "%d line filtered"
     844msgid_plural "%d lines filtered"
     845msgstr[0] "%d ligne filtrée"
     846msgstr[1] "%d lignes filtrées"
    821847
    822848msgid "Filter and display"
     
    10821108msgstr "lettres"
    10831109
    1084 msgid "Contacts"
     1110msgid "Level 0"
     1111msgstr "---"
     1112
     1113msgid "Level 1"
    10851114msgstr "Contacts"
    10861115
    1087 msgid "Friends"
     1116msgid "Level 2"
    10881117msgstr "Amis"
    10891118
    1090 msgid "Family"
     1119msgid "Level 4"
    10911120msgstr "Famille"
    10921121
    1093 msgid "Admins"
     1122msgid "Level 8"
    10941123msgstr "Admins"
    10951124
     
    12751304msgstr "Rendez-vous sur "
    12761305
    1277 msgid "."
    1278 msgstr ""
    1279 
    12801306msgid "Hello "
    12811307msgstr "Bonjour "
    12821308
    1283 msgid ","
    1284 msgstr ""
    1285 
    12861309msgid "New elements were added "
    12871310msgstr "De nouveaux éléments ont été ajoutés "
     
    12951318msgid " on "
    12961319msgstr " le "
     1320
     1321msgid ""
     1322"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1323msgid_plural ""
     1324"Execution time is out, treatment must be continue [Estmated time: %d "
     1325"seconds]."
     1326msgstr[0] "Le temps d'exécution étant dépassé, le traitement doit continuer [Temps estimé: %d second]."
     1327msgstr[1] "Le temps d'exécution étant dépassé, le traitement doit continuer [Temps estimé: %d secondes]."
     1328
     1329msgid "%d parameter was updated."
     1330msgid_plural "%d parameters were updated."
     1331msgstr[0] "%d paramètre a été mis à jour."
     1332msgstr[1] "%d paramètres ont été mis à jour."
     1333
     1334msgid "%d user was updated."
     1335msgid_plural "%d users were updated."
     1336msgstr[0] "%d utilisateur a été mis à jour."
     1337msgstr[1] "%d utilisateurs ont été mis à jour."
     1338
     1339msgid "%d user was not updated."
     1340msgid_plural "%d users were not updated."
     1341msgstr[0] "%d utilisateur n'a pas été mis à jour."
     1342msgstr[1] "%d utilisateurs n'ont pas été mis à jour."
     1343
     1344msgid "%d mail was sent."
     1345msgid_plural "%d mails were sent."
     1346msgstr[0] "%d mail a été envoyé."
     1347msgstr[1] "%d mails ont été envoyés."
     1348
     1349msgid "%d mail was not sent."
     1350msgid_plural "%d mails were not sent."
     1351msgstr[0] "%s mail n'a pas été envoyé."
     1352msgstr[1] "%s mails n'ont pas été envoyés."
    12971353
    12981354msgid "[NBM] Problems or questions"
     
    21862242msgid "Status"
    21872243msgstr "Statut"
     2244
     2245msgid "User status"
     2246msgstr "Statut de l'utilisateur"
     2247
     2248msgid "user_status_admin"
     2249msgstr "Administrateur"
     2250
     2251msgid "user_status_generic"
     2252msgstr "Générique"
     2253
     2254msgid "user_status_guest"
     2255msgstr "Invité"
     2256
     2257msgid "user_status_normal"
     2258msgstr "Visiteur"
     2259
     2260msgid "user_status_webmaster"
     2261msgstr "Webmestre"
    21882262
    21892263msgid "Parameters are correct"
     
    23082382msgstr[1] "%d tags"
    23092383
     2384msgid "The following tag was deleted"
     2385msgid_plural "The %d following tags were deleted"
     2386msgstr[0] "Le tag suivant a été supprimé"
     2387msgstr[1] "Les %d tags suivants ont été supprimés"
     2388
    23102389msgid "Tag results for"
    23112390msgstr "Résultats des tags pour"
     
    27182797msgstr "utilisateur \"%s\" ajouté"
    27192798
    2720 msgid "User status"
    2721 msgstr "Statut de l'utilisateur"
    2722 
    27232799msgid "Administrator"
    27242800msgstr "Administrateur"
  • trunk/language/it_IT/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "Mostra le informazioni su Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Accesso libero"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Accesso a tutti"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Accesso agli iscritti"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Accesso agli amministratori"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Accesso agli webmaster"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Nessun accesso"
    4141
     
    467467msgid "Default display"
    468468msgstr "Visualizzazione di default"
     469
     470msgid "No display"
     471msgstr "Nessuna visualizzazione"
     472
     473msgid "Classic display"
     474msgstr "Visualizzazione classica"
     475
     476msgid "Hoverbox display"
     477msgstr "Visualizzazione durante il passaggio del mouse"
    469478
    470479msgid "Templates"
     
    665674msgstr "Scaricare"
    666675
     676msgid "Download file"
     677msgstr "Scaricare il file"
     678
    667679msgid "download this file"
    668680msgstr "Scaricare questo file"
     
    749761msgstr "tipo di elemento"
    750762
     763msgid "none"
     764msgstr "nessuno"
     765
     766msgid "high"
     767msgstr ""
     768
     769msgid "other"
     770msgstr "altro"
     771
    751772msgid "Email address"
    752773msgstr "Indirizzo email"
     
    819840msgid "Filter"
    820841msgstr "Filtro"
     842
     843msgid "%d line filtered"
     844msgid_plural "%d lines filtered"
     845msgstr[0] ""
     846msgstr[1] ""
    821847
    822848msgid "Filter and display"
     
    10771103msgstr "lettere"
    10781104
    1079 msgid "Contacts"
     1105msgid "Level 0"
     1106msgstr "---"
     1107
     1108msgid "Level 1"
    10801109msgstr "Contatti"
    10811110
    1082 msgid "Friends"
     1111msgid "Level 2"
    10831112msgstr "Amici"
    10841113
    1085 msgid "Family"
     1114msgid "Level 4"
    10861115msgstr "Famiglia"
    10871116
    1088 msgid "Admins"
     1117msgid "Level 8"
    10891118msgstr "Amministratori"
    10901119
     
    12711300msgstr "A presto su "
    12721301
    1273 msgid "."
    1274 msgstr "."
    1275 
    12761302msgid "Hello "
    12771303msgstr "Ciao "
    12781304
    1279 msgid ","
    1280 msgstr ","
    1281 
    12821305msgid "New elements were added "
    12831306msgstr "Nuovi elementi sono stati aggiunti "
     
    12911314msgid " on "
    12921315msgstr " il "
     1316
     1317msgid ""
     1318"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1319msgid_plural ""
     1320"Execution time is out, treatment must be continue [Estmated time: %d "
     1321"seconds]."
     1322msgstr[0] "Il tempo di esecuzione è scaduto, il trattamento deve continuare [Tempo stimato: %d secondo]."
     1323msgstr[1] "Il tempo di esecuzione è scaduto, il trattamento deve continuare [Tempo stimato: %d secondi]."
     1324
     1325msgid "%d parameter was updated."
     1326msgid_plural "%d parameters were updated."
     1327msgstr[0] "%d parametro è stato aggiornato."
     1328msgstr[1] "%d parametri sono stati aggiornati."
     1329
     1330msgid "%d user was updated."
     1331msgid_plural "%d users were updated."
     1332msgstr[0] "%d utente aggiornato."
     1333msgstr[1] "%d utenti aggiornati."
     1334
     1335msgid "%d user was not updated."
     1336msgid_plural "%d users were not updated."
     1337msgstr[0] "%d utente non è stato aggiornato."
     1338msgstr[1] "%d utenti non sono stati aggiornati."
     1339
     1340msgid "%d mail was sent."
     1341msgid_plural "%d mails were sent."
     1342msgstr[0] "%s email inviata."
     1343msgstr[1] "%s email inviate."
     1344
     1345msgid "%d mail was not sent."
     1346msgid_plural "%d mails were not sent."
     1347msgstr[0] "%s email non è stata inviata."
     1348msgstr[1] "%s email non sono state inviate."
    12931349
    12941350msgid "[NBM] Problems or questions"
     
    13701426msgstr "Parametri"
    13711427
    1372 #, fuzzy
    1373 msgid "Processing treatment.Please wait..."
     1428msgid "Processing treatment.\nPlease wait..."
    13741429msgstr ""
    13751430"Trattamento in corso.\n"
     
    21802235msgid "Status"
    21812236msgstr "Stato"
     2237
     2238msgid "User status"
     2239msgstr "Statuto del'utente"
     2240
     2241msgid "user_status_admin"
     2242msgstr "Amministratore"
     2243
     2244msgid "user_status_generic"
     2245msgstr "Generico"
     2246
     2247msgid "user_status_guest"
     2248msgstr "Ospite"
     2249
     2250msgid "user_status_normal"
     2251msgstr "Utente"
     2252
     2253msgid "user_status_webmaster"
     2254msgstr "Webmaster"
    21822255
    21832256msgid "Parameters are correct"
     
    23022375msgstr[1] "%d tags"
    23032376
     2377msgid "The following tag was deleted"
     2378msgid_plural "The %d following tags were deleted"
     2379msgstr[0] ""
     2380msgstr[1] ""
     2381
    23042382msgid "Tag results for"
    23052383msgstr "Risultato dei tag per"
     
    27072785msgstr "utente \"%s\" aggiunto"
    27082786
    2709 msgid "User status"
    2710 msgstr "Statuto del'utente"
    2711 
    27122787msgid "Administrator"
    27132788msgstr "Amministratore"
     
    28212896msgid "You need to confirm deletion"
    28222897msgstr "Dovete confermare la soppressione"
    2823 
    2824 #~ msgid "Download file"
    2825 #~ msgstr "Scaricare il file"
  • trunk/language/nl_NL/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "Over Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Gratis toegang"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Toegang tot alles"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Toegang tot geabbonnneerde"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Toegang voor beheerders"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Toegang voor webmasters"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Geen toegang"
    4141
     
    463463msgstr "Standaard weergave"
    464464
     465msgid "No display"
     466msgstr "Geen weergave"
     467
     468msgid "Classic display"
     469msgstr "Klassieke weergave"
     470
     471msgid "Hoverbox display"
     472msgstr "Hoverbox weergave"
     473
    465474msgid "Templates"
    466475msgstr "Sjablonen"
     
    659668msgstr "download"
    660669
     670msgid "Download file"
     671msgstr "Download bestand"
     672
    661673msgid "download this file"
    662674msgstr "download dit bestand"
     
    743755msgstr "Element type"
    744756
     757msgid "none"
     758msgstr "geen"
     759
     760msgid "high"
     761msgstr "hoog"
     762
     763msgid "other"
     764msgstr "anders"
     765
    745766msgid "Email address"
    746767msgstr "Email adres"
     
    811832msgid "Filter"
    812833msgstr "Filter"
     834
     835msgid "%d line filtered"
     836msgid_plural "%d lines filtered"
     837msgstr[0] ""
     838msgstr[1] ""
    813839
    814840msgid "Filter and display"
     
    10711097msgstr ""
    10721098
    1073 msgid "Contacts"
     1099msgid "Level 0"
     1100msgstr "---"
     1101
     1102msgid "Level 1"
    10741103msgstr "Contacten"
    10751104
    1076 msgid "Friends"
     1105msgid "Level 2"
    10771106msgstr "Vrienden"
    10781107
    1079 msgid "Family"
     1108msgid "Level 4"
    10801109msgstr "Familie"
    10811110
    1082 msgid "Admins"
     1111msgid "Level 8"
    10831112msgstr "Admins"
    10841113
     
    12631292msgstr "Ga naar "
    12641293
    1265 msgid "."
    1266 msgstr "http://www.terwolde.net"
    1267 
    12681294msgid "Hello "
    12691295msgstr "Hallo "
    12701296
    1271 msgid ","
    1272 msgstr ","
    1273 
    12741297msgid "New elements were added "
    12751298msgstr "Nieuwe elementen toegevoegd "
     
    12831306msgid " on "
    12841307msgstr " op "
     1308
     1309msgid ""
     1310"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1311msgid_plural ""
     1312"Execution time is out, treatment must be continue [Estmated time: %d "
     1313"seconds]."
     1314msgstr[0] "Executie tijd is om, treatment moet verder gaan [Verwachte tijd: %d seconden]."
     1315msgstr[1] "Executie tijd is om, treatment moet verder gaan [Verwachte tijd: %d seconden]."
     1316
     1317msgid "%d parameter was updated."
     1318msgid_plural "%d parameters were updated."
     1319msgstr[0] "%d parameter is bijgewerkt."
     1320msgstr[1] "%d parameters zijn bijgewerkt."
     1321
     1322msgid "%d user was updated."
     1323msgid_plural "%d users were updated."
     1324msgstr[0] "%d gebruiker is bijgewerkt."
     1325msgstr[1] "%d gebruikers zijn bijgewerkt."
     1326
     1327msgid "%d user was not updated."
     1328msgid_plural "%d users were not updated."
     1329msgstr[0] "%d gebruiker is niet bijgewerkt."
     1330msgstr[1] "%d gebruikers zijn niet bijgewerkt."
     1331
     1332msgid "%d mail was sent."
     1333msgid_plural "%d mails were sent."
     1334msgstr[0] "%d mail is verstuurd."
     1335msgstr[1] "%d mails zijn verstuurd."
     1336
     1337msgid "%d mail was not sent."
     1338msgid_plural "%d mails were not sent."
     1339msgstr[0] "%d mail is niet verstuurd."
     1340msgstr[1] "%d mails zijn niet verstuurd."
    12851341
    12861342msgid "[NBM] Problems or questions"
     
    13561412msgstr "Parameter"
    13571413
    1358 #, fuzzy
    1359 msgid "Processing treatment.Please wait..."
     1414msgid "Processing treatment.\nPlease wait..."
    13601415msgstr ""
    13611416"Bezig met voltooien van de bewerking.\n"
     
    21602215msgid "Status"
    21612216msgstr "Status"
     2217
     2218msgid "User status"
     2219msgstr "Gebruikers status"
     2220
     2221msgid "user_status_admin"
     2222msgstr "Beheerder"
     2223
     2224msgid "user_status_generic"
     2225msgstr "Generic"
     2226
     2227msgid "user_status_guest"
     2228msgstr "Gast"
     2229
     2230msgid "user_status_normal"
     2231msgstr "Gebruiker"
     2232
     2233msgid "user_status_webmaster"
     2234msgstr "Webmaster"
    21622235
    21632236msgid "Parameters are correct"
     
    22792352msgstr[0] "%d tag"
    22802353msgstr[1] "%d tags"
     2354
     2355msgid "The following tag was deleted"
     2356msgid_plural "The %d following tags were deleted"
     2357msgstr[0] ""
     2358msgstr[1] ""
    22812359
    22822360msgid "Tag results for"
     
    26842762msgstr "gebruiker \"%s\" toegevoegd"
    26852763
    2686 msgid "User status"
    2687 msgstr "Gebruikers status"
    2688 
    26892764msgid "Administrator"
    26902765msgstr "Beheerder"
     
    27972872msgid "You need to confirm deletion"
    27982873msgstr "Je moet de verwijdering bevestigen"
    2799 
    2800 #~ msgid "Download file"
    2801 #~ msgstr "Download bestand"
  • trunk/language/pl_PL/LC_MESSAGES/messages.po

    r5022 r5036  
    2222msgstr "O Piwigo"
    2323
    24 msgid "Free access"
     24msgid "ACCESS_0"
    2525msgstr "Wolny dostęp"
    2626
    27 msgid "Access to all"
     27msgid "ACCESS_1"
    2828msgstr "Dostęp dla wszystkich"
    2929
    30 msgid "Access to subscribed"
     30msgid "ACCESS_2"
    3131msgstr "Dostep dla zapisanych"
    3232
    33 msgid "Access to administrators"
     33msgid "ACCESS_3"
    3434msgstr "Dostęp dla Administratorów"
    3535
    36 msgid "Access to webmasters"
     36msgid "ACCESS_4"
    3737msgstr "Dostęp dla webmasterów"
    3838
    39 msgid "No access"
     39msgid "ACCESS_5"
    4040msgstr "Brak dostępu"
    4141
     
    461461msgstr "Wyświetlanie domyślne"
    462462
     463msgid "No display"
     464msgstr "Brak wyświetlania"
     465
     466msgid "Classic display"
     467msgstr "Wyświetlanie klasyczne"
     468
     469msgid "Hoverbox display"
     470msgstr "Wyświetlanie w ramkach w kształcie poduszek"
     471
    463472msgid "Templates"
    464473msgstr "Szablony"
     
    658667msgstr "Pobierz"
    659668
     669msgid "Download file"
     670msgstr "Pobierz plik"
     671
    660672msgid "download this file"
    661673msgstr "Pobierz ten plik"
     
    742754msgstr "Typ elementu"
    743755
     756msgid "none"
     757msgstr "brak"
     758
     759msgid "high"
     760msgstr "wysoki"
     761
     762msgid "other"
     763msgstr "inny"
     764
    744765msgid "Email address"
    745766msgstr "Adres email"
     
    813834msgid "Filter"
    814835msgstr "Filtr"
     836
     837msgid "%d line filtered"
     838msgid_plural "%d lines filtered"
     839msgstr[0] ""
     840msgstr[1] ""
    815841
    816842msgid "Filter and display"
     
    10711097msgstr "litery"
    10721098
    1073 msgid "Contacts"
     1099msgid "Level 0"
     1100msgstr "---"
     1101
     1102msgid "Level 1"
    10741103msgstr "Kontakty"
    10751104
    1076 msgid "Friends"
     1105msgid "Level 2"
    10771106msgstr "Przyjaciele"
    10781107
    1079 msgid "Family"
     1108msgid "Level 4"
    10801109msgstr "Rodzina"
    10811110
    1082 msgid "Admins"
     1111msgid "Level 8"
    10831112msgstr "Administratorzy"
    10841113
     
    12641293msgstr "Przejdź do "
    12651294
    1266 msgid "."
    1267 msgstr "."
    1268 
    12691295msgid "Hello "
    12701296msgstr "Witaj "
    12711297
    1272 msgid ","
    1273 msgstr ","
    1274 
    12751298msgid "New elements were added "
    12761299msgstr "dodano nowe elementy "
     
    12841307msgid " on "
    12851308msgstr " dnia "
     1309
     1310msgid ""
     1311"Execution time is out, treatment must be continue [Estmated time: %d second]."
     1312msgid_plural ""
     1313"Execution time is out, treatment must be continue [Estmated time: %d "
     1314"seconds]."
     1315msgstr[0] "Czas wykonania minął, proces musi być kontynuowany [Szacowany czas: %d sekund]."
     1316msgstr[1] "Czas wykonania minął, proces musi być kontynuowany [Szacowany czas: %d sekund]."
     1317
     1318msgid "%d parameter was updated."
     1319msgid_plural "%d parameters were updated."
     1320msgstr[0] "Zaktualizowano %d parametr."
     1321msgstr[1] "Zaktualizowano %d parametrów."
     1322
     1323msgid "%d user was updated."
     1324msgid_plural "%d users were updated."
     1325msgstr[0] "Zaktualizowano użytkownika %d."
     1326msgstr[1] "Zaktualizowano %d użytkowników."
     1327
     1328msgid "%d user was not updated."
     1329msgid_plural "%d users were not updated."
     1330msgstr[0] "Użytkownik %d nie został zaktualizowany."
     1331msgstr[1] "Nie zaktualizowano %d użytkowników."
     1332
     1333msgid "%d mail was sent."
     1334msgid_plural "%d mails were sent."
     1335msgstr[0] "Wysłano %d wiadomość."
     1336msgstr[1] "Wysłano %d wiadomości."
     1337
     1338msgid "%d mail was not sent."
     1339msgid_plural "%d mails were not sent."
     1340msgstr[0] "Nie wysłano %d wiadomości."
     1341msgstr[1] "Nie wysłano %d wiadomości."
    12861342
    12871343msgid "[NBM] Problems or questions"
     
    13571413msgstr "Parametr"
    13581414
    1359 #, fuzzy
    1360 msgid "Processing treatment.Please wait..."
     1415msgid "Processing treatment.\nPlease wait..."
    13611416msgstr ""
    13621417"Procesowanie.\n"
     
    21612216msgid "Status"
    21622217msgstr "Status"
     2218
     2219msgid "User status"
     2220msgstr "Staus użytkownika"
     2221
     2222msgid "user_status_admin"
     2223msgstr "Administrator"
     2224
     2225msgid "user_status_generic"
     2226msgstr "Ogólny"
     2227
     2228msgid "user_status_guest"
     2229msgstr "Gość"
     2230
     2231msgid "user_status_normal"
     2232msgstr "Użytkownik"
     2233
     2234msgid "user_status_webmaster"
     2235msgstr "Webmaster"
    21632236
    21642237msgid "Parameters are correct"
     
    22822355msgstr[1] "%d tagów"
    22832356
     2357msgid "The following tag was deleted"
     2358msgid_plural "The %d following tags were deleted"
     2359msgstr[0] ""
     2360msgstr[1] ""
     2361
    22842362msgid "Tag results for"
    22852363msgstr "Wyniki tagów dla"
     
    26792757msgstr "użytkownik \"%s\" został dodany"
    26802758
    2681 msgid "User status"
    2682 msgstr "Staus użytkownika"
    2683 
    26842759msgid "Administrator"
    26852760msgstr "Administrator"
     
    27922867msgid "You need to confirm deletion"
    27932868msgstr "Musisz potwierdzić usunięcie"
    2794 
    2795 #~ msgid "Download file"
    2796 #~ msgstr "Pobierz plik"
  • trunk/language/templates/messages.pot

    r5022 r5036  
    2222msgstr ""
    2323
    24 msgid "Free access"
    25 msgstr ""
    26 
    27 msgid "Access to all"
     24msgid "ACCESS_0"
     25msgstr ""
     26
     27msgid "ACCESS_1"
     28msgstr ""
     29
     30msgid "ACCESS_2"
    2831msgstr ""
    2932 
    30 msgid "Access to subscribed"
    31 msgstr ""
    32  
    33 msgid "Access to administrators"
    34 msgstr ""
    35  
    36 msgid "Access to webmasters"
    37 msgstr ""
    38  
    39 msgid "No access"
     33msgid "ACCESS_3"
     34msgstr ""
     35
     36msgid "ACCESS_4"
     37msgstr ""
     38
     39msgid "ACCESS_5"
    4040msgstr ""
    4141
     
    444444msgstr ""
    445445
     446msgid "No display"
     447msgstr ""
     448
     449msgid "Classic display"
     450msgstr ""
     451
     452msgid "Hoverbox display"
     453msgstr ""
     454
    446455msgid "Templates"
    447456msgstr ""
     
    626635
    627636msgid "download"
     637msgstr ""
     638
     639msgid "Download file"
    628640msgstr ""
    629641
     
    712724msgstr ""
    713725
     726msgid "none"
     727msgstr ""
     728
     729msgid "high"
     730msgstr ""
     731
     732msgid "other"
     733msgstr ""
     734
    714735msgid "Email address"
    715736msgstr ""
     
    780801msgid "Filter"
    781802msgstr ""
     803
     804msgid "%d line filtered"
     805msgid_plural "%d lines filtered"
     806msgstr[0] ""
     807msgstr[1] ""
    782808
    783809msgid "Filter and display"
     
    10211047msgstr ""
    10221048
    1023 msgid "Contacts"
    1024 msgstr ""
    1025 
    1026 msgid "Friends"
    1027 msgstr ""
    1028 
    1029 msgid "Family"
    1030 msgstr ""
    1031 
    1032 msgid "Admins"
     1049msgid "Level 0"
     1050msgstr ""
     1051
     1052msgid "Level 1"
     1053msgstr ""
     1054
     1055msgid "Level 2"
     1056msgstr ""
     1057
     1058msgid "Level 4"
     1059msgstr ""
     1060
     1061msgid "Level 8"
    10331062msgstr ""
    10341063
     
    12081237msgstr ""
    12091238
    1210 msgid "."
    1211 msgstr ""
    1212 
    12131239msgid "Hello "
    12141240msgstr ""
    12151241
    1216 msgid ","
    1217 msgstr ""
    1218 
    12191242msgid "New elements were added "
    12201243msgstr ""
     
    12281251msgid " on "
    12291252msgstr ""
     1253
     1254msgid "Execution time is out, treatment must be continue [Estmated time: %d second]."
     1255msgid_plural "Execution time is out, treatment must be continue [Estmated time: %d seconds]."   
     1256msgstr[0] ""
     1257msgstr[1] ""
     1258
     1259msgid "%d parameter was updated."
     1260msgid_plural "%d parameters were updated."
     1261msgstr[0] ""
     1262msgstr[1] ""
     1263
     1264msgid "%d user was updated."
     1265msgid_plural "%d users were updated."
     1266msgstr[0] ""
     1267msgstr[1] ""
     1268
     1269msgid "%d user was not updated."
     1270msgid_plural "%d users were not updated."
     1271msgstr[0] ""
     1272msgstr[1] ""
     1273
     1274msgid "%d mail was sent."
     1275msgid_plural "%d mails were sent."
     1276msgstr[0] ""
     1277msgstr[1] ""
     1278
     1279msgid "%d mail was not sent."
     1280msgid_plural "%d mails were not sent."
     1281msgstr[0] ""
     1282msgstr[1] ""
    12301283
    12311284msgid "[NBM] Problems or questions"
     
    20652118
    20662119msgid "Status"
     2120msgstr ""
     2121
     2122msgid "User status"
     2123msgstr ""
     2124
     2125msgid "user_status_admin"
     2126msgstr ""
     2127
     2128msgid "user_status_generic"
     2129msgstr ""
     2130
     2131msgid "user_status_guest"
     2132msgstr ""
     2133
     2134msgid "user_status_normal"
     2135msgstr ""
     2136
     2137msgid "user_status_webmaster"
    20672138msgstr ""
    20682139
     
    21742245msgstr[1] ""
    21752246
     2247msgid "The following tag was deleted"
     2248msgid_plural "The %d following tags were deleted"
     2249msgstr[0] ""
     2250msgstr[1] ""
     2251
    21762252msgid "Tag results for"
    21772253msgstr ""
     
    25352611#, c-format
    25362612msgid "user \"%s\" added"
    2537 msgstr ""
    2538 
    2539 msgid "User status"
    25402613msgstr ""
    25412614
Note: See TracChangeset for help on using the changeset viewer.