Changeset 5207


Ignore:
Timestamp:
Mar 20, 2010, 11:35:39 PM (14 years ago)
Author:
nikrou
Message:

Fix some language keys problems
Need translations !

Location:
trunk
Files:
1 added
21 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/cat_modify.php

    r5196 r5207  
    517517    $page['infos'],
    518518    sprintf(
    519       l10n('An information email was sent to group \"%s\"'),
     519      l10n('An information email was sent to group "%s"'),
    520520      $group_name
    521521      )
  • trunk/admin/include/c13y_internal.class.php

    r5196 r5207  
    209209            create_user_infos($id);
    210210
    211             $page['infos'][] = sprintf(l10n('User \"%s\" created with \"%s\" like password'), $name, $password);
     211            $page['infos'][] = sprintf(l10n('User "%s" created with "%s" like password'), $name, $password);
    212212
    213213            $result = true;
     
    240240              $updates);
    241241
    242             $page['infos'][] = sprintf(l10n('Status of user \"%s\" updated'), get_username($id));
     242            $page['infos'][] = sprintf(l10n('Status of user "%s" updated'), get_username($id));
    243243
    244244            $result = true;
  • trunk/admin/include/functions_permalinks.php

    r5196 r5207  
    141141      or preg_match( '#^(\d)+(-.*)?$#', $permalink) )
    142142  {
    143     $page['errors'][] = l10n('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 \"-\"');
     143    $page['errors'][] = l10n('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 "-"');
    144144    return false;
    145145  }
  • trunk/admin/site_update.php

    r5196 r5207  
    5757  'PWG-UPDATE-1' => array(
    5858    l10n('wrong filename'),
    59     l10n('The name of directories and files must be composed of letters, numbers, \"-\", \"_\" or \".\"')
     59    l10n('The name of directories and files must be composed of letters, numbers, "-", "_" or "."')
    6060    ),
    6161  'PWG-UPDATE-2' => array(
    6262    l10n('missing thumbnail'),
    63     l10n('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 :').implode(',', $conf['picture_ext'])
     63    l10n('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 :').implode(',', $conf['picture_ext'])
    6464    ),
    6565  'PWG-ERROR-NO-FS' => array(
     
    7373  'PWG-ERROR-NOLISTING' => array(
    7474    l10n('listing.xml file was not found'),
    75     l10n('listing.xml file was not found on the remote site. This file is generated by choosing the \"generate listing\" command in the Site manager')
     75    l10n('listing.xml file was not found on the remote site. This file is generated by choosing the "generate listing" command in the Site manager')
    7676    )
    7777  );
  • trunk/admin/themes/default/template/permalinks.tpl

    r5123 r5207  
    6161                <td>{$permalink.last_hit}</td>
    6262                <td>{$permalink.hit}</td>
    63                 <td><a href="{$permalink.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/Delete.png" alt="[{'Delete'|@translate}]" class="button"></a></td>
     63                <td><a href="{$permalink.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/delete.png" alt="[{'Delete'|@translate}]" class="button"></a></td>
    6464        </tr>
    6565{/foreach}
  • trunk/admin/themes/default/template/rating.tpl

    r5123 r5207  
    5959    <td><b>{$rate.USER}</b></td>
    6060    <td><span class="date">{$rate.DATE}</span></td>
    61     <td><a href="{$rate.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$themeconf.admin_icon_dir}/Delete.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{'Delete'|@translate}]"></a></td>
     61    <td><a href="{$rate.U_DELETE}" {$TAG_INPUT_ENABLED}><img src="{$themeconf.admin_icon_dir}/delete.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{'Delete'|@translate}]"></a></td>
    6262</tr>
    6363{/foreach} {*rates*}
  • trunk/install.php

    r5196 r5207  
    268268    array_push( $errors, l10n('enter a login for webmaster') );
    269269  else if ( preg_match( '/[\'"]/', $webmaster ) )
    270     array_push( $errors, l10n('webmaster login can\'t contain characters \' or \"') );
     270    array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') );
    271271  if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) )
    272272    array_push( $errors, l10n('please enter your password again') );
  • trunk/language/de_DE/admin.lang.php

    r5156 r5207  
    598598$lang['Show upload link every time'] = "Den Uploadlink immer anzeigen";
    599599$lang['User access level to upload'] = "dürfen Bilder hochladen";
    600 $lang['Free access'] = "Frei";
    601 $lang['Access to all'] = "Alle";
    602 $lang['Access to subscribed'] = "Mitglieder";
    603 $lang['Access to administrators'] = "Administratoren";
    604 $lang['Access to webmasters'] = "Webmaster";
    605 $lang['No access'] = "Keine Benutzer";
     600$lang['ACCESS_0'] = "Frei";
     601$lang['ACCESS_1'] = "Alle";
     602$lang['ACCESS_2'] = "Mitglieder";
     603$lang['ACCESS_3'] = "Administratoren";
     604$lang['ACCESS_4'] = "Webmaster";
     605$lang['ACCESS_5'] = "Keine Benutzer";
    606606$lang['Demo'] = "Demo";
    607607$lang['Piwigo home'] = "Home Piwigo";
  • trunk/language/en_UK/admin.lang.php

    r5156 r5207  
    598598$lang['Show upload link every time'] = "Show upload link every time";
    599599$lang['User access level to upload'] = "User access level to upload";
    600 $lang['Free access'] = "Free access";
    601 $lang['Access to all'] = "Access to all";
    602 $lang['Access to subscribed'] = "Access to subscribed";
    603 $lang['Access to administrators'] = "Access to administrators";
    604 $lang['Access to webmasters'] = "Access to webmasters";
    605 $lang['No access'] = "No access";
     600$lang['ACCESS_0'] = "Free access";
     601$lang['ACCESS_1'] = "Access to all";
     602$lang['ACCESS_2'] = "Access to subscribed";
     603$lang['ACCESS_3'] = "Access to administrators";
     604$lang['ACCESS_4'] = "Access to webmasters";
     605$lang['ACCESS_5'] = "No access";
    606606$lang['Demo'] = "Demo";
    607607$lang['Piwigo home'] = "Piwigo home";
     
    668668$lang['Cannot delete the old permalink !'] = "Cannot delete the old permalink !";
    669669$lang['Hit'] = "Hit";
     670
     671$lang['Tools'] = "Tools";
     672$lang['Photos'] = "Photos";
     673$lang['Themes'] = "Themes";
     674$lang['Instructions to use Piwigo'] = "Instructions to use Piwigo";
     675$lang['Order alphanumerically'] = "Order alphanumerically";
     676$lang['Order alphanumerically reverse'] = "Order alphanumerically reverse";
     677$lang['Installed Themes'] = "Installed Themes";
     678$lang['Add New Theme'] = "Add New Theme";
     679$lang['Forbid this theme to users'] = "Forbid this theme to users";
     680$lang['Set as default theme for unregistered and new users'] = "Set as default theme for unregistered and new users";
     681$lang['unknown'] = 'unknown';
    670682?>
  • trunk/language/en_UK/common.lang.php

    r5156 r5207  
    368368$lang['Sent by'] = "Sent by";
    369369$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "Cookies are blocked or not supported by your browser. You must enable cookies to connect.";
     370
     371$lang['Some info about this picture'] = "Some info about this picture";
     372$lang['Some more (technical) info about this picture'] = "Some more (technical) info about this picture";
     373$lang['edit this comment'] = "edit this comment";
     374$lang['Edit a comment'] = "Edit a comment";
    370375?>
  • trunk/language/es_ES/admin.lang.php

    r5156 r5207  
    597597$lang['Show upload link every time'] = "Mostrar el lazo de añadido de imagen todo el tiempo";
    598598$lang['User access level to upload'] = "Nivel de acceso usuario para cargar";
    599 $lang['Free access'] = "Acceso libre";
    600 $lang['Access to all'] = "Acceso todos";
    601 $lang['Access to subscribed'] = "Acceso inscritos";
    602 $lang['Access to administrators'] = "Acceso administradores";
    603 $lang['Access to webmasters'] = "Acceso webmestres";
    604 $lang['No access'] = "Ningún acceso";
     599$lang['ACCESS_0'] = "Acceso libre";
     600$lang['ACCESS_1'] = "Acceso todos";
     601$lang['ACCESS_2'] = "Acceso inscritos";
     602$lang['ACCESS_3'] = "Acceso administradores";
     603$lang['ACCESS_4'] = "Acceso webmestres";
     604$lang['ACCESS_5'] = "Ningún acceso";
    605605$lang['Demo'] = "Demo";
    606606$lang['Piwigo home'] = "Acogida Piwigo";
  • trunk/language/fr_FR/admin.lang.php

    r5156 r5207  
    597597$lang['Show upload link every time'] = "Afficher le lien d'ajout d'image tout le temps";
    598598$lang['User access level to upload'] = "Niveau d'accès utilisateur pour télécharger";
    599 $lang['Free access'] = "Accès libre";
    600 $lang['Access to all'] = "Accès à tous";
    601 $lang['Access to subscribed'] = "Accès aux inscrits";
    602 $lang['Access to administrators'] = "Accès aux administrateurs";
    603 $lang['Access to webmasters'] = "Accès aux webmestres";
    604 $lang['No access'] = "Pas d'accès";
     599$lang['ACCESS_0'] = "Accès libre";
     600$lang['ACCESS_1'] = "Accès à tous";
     601$lang['ACCESS_2'] = "Accès aux inscrits";
     602$lang['ACCESS_3'] = "Accès aux administrateurs";
     603$lang['ACCESS_4'] = "Accès aux webmestres";
     604$lang['ACCESS_5'] = "Pas d'accès";
    605605$lang['Demo'] = "Démo";
    606606$lang['Piwigo home'] = "Accueil Piwigo";
     
    667667$lang['Cannot delete the old permalink !'] = "Impossible de supprimer cet ancien lien permanent !";
    668668$lang['Hit'] = "score";
     669
     670$lang['Tools'] = "Outils";
     671$lang['Photos'] = "Photos";
     672$lang['Themes'] = "Thèmes";
     673$lang['Instructions to use Piwigo'] = "Aide pour utiliser Piwigo";
     674$lang['Order alphanumerically'] = "Ordre alphanumérique";
     675$lang['Order alphanumerically reverse'] = "Ordre alphanumérique inverse";
     676$lang['Installed Themes'] = "Thèmes installés";
     677$lang['Add New Theme'] = "Ajouter un thème";
     678$lang['Forbid this theme to users'] = "Interdire ce thème aux utilisateurs";
     679$lang['Set as default theme for unregistered and new users'] = "Thème par défaut pour les invités et les nouveaux utilisateurs";
     680$lang['unknown'] = 'inconnu';
    669681?>
  • trunk/language/fr_FR/common.lang.php

    r5156 r5207  
    368368$lang['Sent by'] = "Envoyé par";
    369369$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "Les cookies sont bloqués ou non supportés par votre navigateur web. Vous devez activer les cookies pour vous connecter.";
     370
     371$lang['Some info about this picture'] = "Informations sur cette image";
     372$lang['Some more (technical) info about this picture'] = "Informations (techniques) sur cette image";
     373$lang['edit this comment'] = "editer ce commentaire";
     374$lang['Edit a comment'] = "Editer ce commentaire";
    370375?>
  • trunk/language/it_IT/admin.lang.php

    r5156 r5207  
    597597$lang['Show upload link every time'] = "Sempre visualizzare il link per aggiungere le immagini";
    598598$lang['User access level to upload'] = "Livello d'accesso utente per l'upload";
    599 $lang['Free access'] = "Accesso libero";
    600 $lang['Access to all'] = "Accesso a tutti";
    601 $lang['Access to subscribed'] = "Accesso agli iscritti";
    602 $lang['Access to administrators'] = "Accesso agli amministratori";
    603 $lang['Access to webmasters'] = "Accesso agli webmaster";
    604 $lang['No access'] = "Nessun accesso";
     599$lang['ACCESS_0'] = "Accesso libero";
     600$lang['ACCESS_1'] = "Accesso a tutti";
     601$lang['ACCESS_2'] = "Accesso agli iscritti";
     602$lang['ACCESS_3'] = "Accesso agli amministratori";
     603$lang['ACCESS_4'] = "Accesso agli webmaster";
     604$lang['ACCESS_5'] = "Nessun accesso";
    605605$lang['Demo'] = "Demo";
    606606$lang['Piwigo home'] = "Home Piwigo";
  • trunk/language/nl_NL/admin.lang.php

    r5156 r5207  
    598598$lang['Show upload link every time'] = "Show upload link altijd";
    599599$lang['User access level to upload'] = "Gebruiker toegangsniveau om te uploaden";
    600 $lang['Free access'] = "Gratis toegang";
    601 $lang['Access to all'] = "Toegang tot alles";
    602 $lang['Access to subscribed'] = "Toegang tot geabbonnneerde";
    603 $lang['Access to administrators'] = "Toegang voor beheerders";
    604 $lang['Access to webmasters'] = "Toegang voor webmasters";
    605 $lang['No access'] = "Geen toegang";
     600$lang['ACCESS_0'] = "Gratis toegang";
     601$lang['ACCESS_1'] = "Toegang tot alles";
     602$lang['ACCESS_2'] = "Toegang tot geabbonnneerde";
     603$lang['ACCESS_3'] = "Toegang voor beheerders";
     604$lang['ACCESS_4'] = "Toegang voor webmasters";
     605$lang['ACCESS_5'] = "Geen toegang";
    606606$lang['Demo'] = "Demo";
    607607$lang['Piwigo home'] = "Piwigo Home";
  • trunk/language/pl_PL/admin.lang.php

    r5156 r5207  
    598598$lang['Show upload link every time'] = "Zawsze pokazuj link upload";
    599599$lang['User access level to upload'] = "Poziom uprawnień użytkoników dla upload'u";
    600 $lang['Free access'] = "Wolny dostęp";
    601 $lang['Access to all'] = "Dostęp dla wszystkich";
    602 $lang['Access to subscribed'] = "Dostep dla zapisanych";
    603 $lang['Access to administrators'] = "Dostęp dla Administratorów";
    604 $lang['Access to webmasters'] = "Dostęp dla webmasterów";
    605 $lang['No access'] = "Brak dostępu";
     600$lang['ACCESS_0'] = "Wolny dostęp";
     601$lang['ACCESS_1'] = "Dostęp dla wszystkich";
     602$lang['ACCESS_2'] = "Dostep dla zapisanych";
     603$lang['ACCESS_3'] = "Dostęp dla Administratorów";
     604$lang['ACCESS_4'] = "Dostęp dla webmasterów";
     605$lang['ACCESS_5'] = "Brak dostępu";
    606606$lang['Demo'] = "Demo";
    607607$lang['Piwigo home'] = "Strona domowa Piwigo";
  • trunk/language/templates/admin.lang.php

    r5196 r5207  
    668668$lang['Last hit'] = 'Last hit';
    669669$lang['Hit'] = 'Hit';
     670
     671$lang['Tools'] = "Tools";
     672$lang['Photos'] = "Photos";
     673$lang['Themes'] = "Themes";
     674$lang['Instructions to use Piwigo'] = "Instructions to use Piwigo";
     675$lang['Order alphanumerically'] = "Order alphanumerically";
     676$lang['Order alphanumerically reverse'] = "Order alphanumerically reverse";
     677$lang['Installed Themes'] = "Installed Themes";
     678$lang['Add New Theme'] = "Add New Theme";
     679$lang['Forbid this theme to users'] = "Forbid this theme to users";
     680$lang['Set as default theme for unregistered and new users'] = "Set as default theme for unregistered and new users";
    670681?>
  • trunk/language/templates/common.lang.php

    r5196 r5207  
    371371$lang['Sent by'] = 'Sent by';
    372372$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies are blocked or not supported by your browser. You must enable cookies to connect.';
     373
     374$lang['Some info about this picture'] = "Some info about this picture";
     375$lang['Some more (technical) info about this picture'] = "Some more (technical) info about this picture";
     376$lang['edit this comment'] = "edit this comment";
     377$lang['Edit a comment'] = "Edit a comment";
     378
    373379?>
  • trunk/themes/default/template/comment_list.tpl

    r5178 r5207  
    2323        {if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)}
    2424        <li>
    25           <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="edit this comment">
     25          <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="{'edit this comment'|@translate}">
    2626            <img src="{$ROOT_URL}{$themeconf.icon_dir}/edit.png" class="button" alt="[edit]">
    2727          </a>
     
    4242      <form  method="post" action="{$comment.U_EDIT}" class="filter" id="editComment">
    4343        <fieldset>
    44           <legend>Edit a comment</legend>
     44          <legend>{'Edit a comment'|@translate}</legend>
    4545          <label>{'Comment'|@translate}<textarea name="content" id="contenteditid" rows="5" cols="80">{$comment.CONTENT|@escape}</textarea></label>
    4646          <input type="hidden" name="key" value="{$comment.KEY}">
  • trunk/themes/default/template/picture.tpl

    r5178 r5207  
    110110{/if}
    111111
    112 <table id="standard" class="infoTable" summary="Some info about this picture">
     112<table id="standard" class="infoTable" summary="{'Some info about this picture'|@translate}">
    113113  <tr id="Author">
    114114    <td class="label">{'Author'|@translate}</td>
  • trunk/upgrade.php

    r5196 r5207  
    195195$template->assign(array(
    196196  'RELEASE' => PHPWG_VERSION,
    197   'L_UPGRADE_HELP' => sprintf(l10n('Need help ? Ask your question on <a href=\"%s\">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
     197  'L_UPGRADE_HELP' => sprintf(l10n('Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'), PHPWG_URL.'/forum'),
    198198  )
    199199);
Note: See TracChangeset for help on using the changeset viewer.