Revert gettext stuff.

Keep english values for language keys translation.
Provide a script to use english values for key in language files.

Todo : provide a script (to help transition) to keep using
original keys in language files for translators.

git-svn-id: http://piwigo.org/svn/trunk@5156 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou 2010-03-17 09:22:51 +00:00
commit 3631839e54
52 changed files with 8742 additions and 31308 deletions

View file

@ -30,7 +30,6 @@ include_once( PHPWG_ROOT_PATH .'include/functions_html.inc.php' );
include_once( PHPWG_ROOT_PATH .'include/functions_tag.inc.php' );
include_once( PHPWG_ROOT_PATH .'include/functions_url.inc.php' );
include_once( PHPWG_ROOT_PATH .'include/functions_plugins.inc.php' );
include_once( PHPWG_ROOT_PATH .'include/php-gettext/gettext.inc.php' );
//----------------------------------------------------------- generic functions
function get_extra_fields($order_by_fields)
@ -872,26 +871,14 @@ function get_name_from_file($filename)
*/
function l10n($key, $textdomain='messages')
{
global $user;
global $lang, $conf;
if (empty($user['language']))
if ($conf['debug_l10n'] and !isset($lang[$key]) and !empty($key))
{
$locale = $GLOBALS['language'];
}
else
{
$locale = $user['language'];
trigger_error('[l10n] language key "'.$key.'" is not defined', E_USER_WARNING);
}
T_setlocale(LC_ALL, $locale.'.UTF-8');
// Specify location of translation tables
T_bindtextdomain($textdomain, "./language");
// Choose domain
T_textdomain($textdomain);
return T_gettext($key);
return isset($lang[$key]) ? $lang[$key] : $key;
}
/**
@ -903,33 +890,17 @@ function l10n($key, $textdomain='messages')
* @param decimal value
* @return string
*/
function l10n_dec($singular_fmt_key, $plural_fmt_key,
$decimal, $textdomain='messages')
function l10n_dec($singular_fmt_key, $plural_fmt_key, $decimal)
{
global $user;
global $lang_info;
if (empty($user['language']))
{
$locale = $GLOBALS['language'];
}
else
{
$locale = $user['language'];
}
T_setlocale(LC_ALL, $locale.'.UTF-8');
// Specify location of translation tables
T_bindtextdomain($textdomain, "./language");
// Choose domain
T_textdomain($textdomain);
return sprintf(T_ngettext($singular_fmt_key,
$plural_fmt_key,
$decimal),
$decimal
);
return
sprintf(
l10n((
(($decimal > 1) or ($decimal == 0 and $lang_info['zero_plural']))
? $plural_fmt_key
: $singular_fmt_key
)), $decimal);
}
/*

View file

@ -1,418 +0,0 @@
<?php
/*
Copyright (c) 2005 Steven Armstrong <sa at c-area dot ch>
Copyright (c) 2009 Danilo Segan <danilo@kvota.net>
Drop in replacement for native gettext.
This file is part of PHP-gettext.
PHP-gettext is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PHP-gettext is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PHP-gettext; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
LC_CTYPE 0
LC_NUMERIC 1
LC_TIME 2
LC_COLLATE 3
LC_MONETARY 4
LC_MESSAGES 5
LC_ALL 6
*/
// LC_MESSAGES is not available if php-gettext is not loaded
// while the other constants are already available from session extension.
if (!defined('LC_MESSAGES')) {
define('LC_MESSAGES', 5);
}
require('streams.php');
require('gettext.php');
// Variables
global $text_domains, $default_domain, $LC_CATEGORIES, $EMULATEGETTEXT, $CURRENTLOCALE;
$text_domains = array();
$default_domain = 'messages';
$LC_CATEGORIES = array('LC_CTYPE', 'LC_NUMERIC', 'LC_TIME', 'LC_COLLATE', 'LC_MONETARY', 'LC_MESSAGES', 'LC_ALL');
$EMULATEGETTEXT = 0;
$CURRENTLOCALE = '';
/* Class to hold a single domain included in $text_domains. */
class domain {
var $l10n;
var $path;
var $codeset;
}
// Utility functions
/**
* Return a list of locales to try for any POSIX-style locale specification.
*/
function get_list_of_locales($locale) {
/* Figure out all possible locale names and start with the most
* specific ones. I.e. for sr_CS.UTF-8@latin, look through all of
* sr_CS.UTF-8@latin, sr_CS@latin, sr@latin, sr_CS.UTF-8, sr_CS, sr.
*/
$locale_names = array();
$lang = NULL;
$country = NULL;
$charset = NULL;
$modifier = NULL;
if ($locale) {
if (preg_match("/^(?P<lang>[a-z]{2,3})" // language code
."(?:_(?P<country>[A-Z]{2}))?" // country code
."(?:\.(?P<charset>[-A-Za-z0-9_]+))?" // charset
."(?:@(?P<modifier>[-A-Za-z0-9_]+))?$/", // @ modifier
$locale, $matches)) {
if (isset($matches["lang"])) $lang = $matches["lang"];
if (isset($matches["country"])) $country = $matches["country"];
if (isset($matches["charset"])) $charset = $matches["charset"];
if (isset($matches["modifier"])) $modifier = $matches["modifier"];
if ($modifier) {
if ($country) {
if ($charset)
array_push($locale_names, "${lang}_$country.$charset@$modifier");
array_push($locale_names, "${lang}_$country@$modifier");
} elseif ($charset)
array_push($locale_names, "${lang}.$charset@$modifier");
array_push($locale_names, "$lang@$modifier");
}
if ($country) {
if ($charset)
array_push($locale_names, "${lang}_$country.$charset");
array_push($locale_names, "${lang}_$country");
} elseif ($charset)
array_push($locale_names, "${lang}.$charset");
array_push($locale_names, $lang);
}
// If the locale name doesn't match POSIX style, just include it as-is.
if (!in_array($locale, $locale_names))
array_push($locale_names, $locale);
}
return $locale_names;
}
/**
* Utility function to get a StreamReader for the given text domain.
*/
function _get_reader($domain=null, $category=5, $enable_cache=true) {
global $text_domains, $default_domain, $LC_CATEGORIES;
if (!isset($domain)) $domain = $default_domain;
if (!isset($text_domains[$domain]->l10n)) {
// get the current locale
$locale = _setlocale(LC_MESSAGES, 0);
$bound_path = isset($text_domains[$domain]->path) ?
$text_domains[$domain]->path : './';
$subpath = $LC_CATEGORIES[$category] ."/$domain.mo";
$locale_names = get_list_of_locales($locale);
$input = null;
foreach ($locale_names as $locale) {
$full_path = $bound_path . $locale . "/" . $subpath;
if (file_exists($full_path)) {
$input = new FileReader($full_path);
break;
}
}
if (!array_key_exists($domain, $text_domains)) {
// Initialize an empty domain object.
$text_domains[$domain] = new domain();
}
$text_domains[$domain]->l10n = new gettext_reader($input,
$enable_cache);
}
return $text_domains[$domain]->l10n;
}
/**
* Returns whether we are using our emulated gettext API or PHP built-in one.
*/
function locale_emulation() {
global $EMULATEGETTEXT;
return $EMULATEGETTEXT;
}
/**
* Checks if the current locale is supported on this system.
*/
function _check_locale() {
global $EMULATEGETTEXT;
return !$EMULATEGETTEXT;
}
/**
* Get the codeset for the given domain.
*/
function _get_codeset($domain=null) {
global $text_domains, $default_domain, $LC_CATEGORIES;
if (!isset($domain)) $domain = $default_domain;
return (isset($text_domains[$domain]->codeset))? $text_domains[$domain]->codeset : ini_get('mbstring.internal_encoding');
}
/**
* Convert the given string to the encoding set by bind_textdomain_codeset.
*/
function _encode($text) {
$source_encoding = mb_detect_encoding($text);
$target_encoding = _get_codeset();
if ($source_encoding != $target_encoding) {
return mb_convert_encoding($text, $target_encoding, $source_encoding);
}
else {
return $text;
}
}
// Custom implementation of the standard gettext related functions
/**
* Returns passed in $locale, or environment variable $LANG if $locale == ''.
*/
function _get_default_locale($locale) {
if ($locale == '') // emulate variable support
return getenv('LANG');
else
return $locale;
}
/**
* Sets a requested locale, if needed emulates it.
*/
function _setlocale($category, $locale) {
global $CURRENTLOCALE, $EMULATEGETTEXT;
if ($locale === 0) { // use === to differentiate between string "0"
if ($CURRENTLOCALE != '')
return $CURRENTLOCALE;
else
// obey LANG variable, maybe extend to support all of LC_* vars
// even if we tried to read locale without setting it first
return _setlocale($category, $CURRENTLOCALE);
} else {
if (function_exists('setlocale')) {
$ret = setlocale($category, $locale);
if (($locale == '' and !$ret) or // failed setting it by env
($locale != '' and $ret != $locale)) { // failed setting it
// Failed setting it according to environment.
$CURRENTLOCALE = _get_default_locale($locale);
$EMULATEGETTEXT = 1;
} else {
$CURRENTLOCALE = $ret;
$EMULATEGETTEXT = 0;
}
} else {
// No function setlocale(), emulate it all.
$CURRENTLOCALE = _get_default_locale($locale);
$EMULATEGETTEXT = 1;
}
// Allow locale to be changed on the go for one translation domain.
global $text_domains, $default_domain;
unset($text_domains[$default_domain]->l10n);
return $CURRENTLOCALE;
}
}
/**
* Sets the path for a domain.
*/
function _bindtextdomain($domain, $path) {
global $text_domains;
// ensure $path ends with a slash ('/' should work for both, but lets still play nice)
if (substr(php_uname(), 0, 7) == "Windows") {
if ($path[strlen($path)-1] != '\\' and $path[strlen($path)-1] != '/')
$path .= '\\';
} else {
if ($path[strlen($path)-1] != '/')
$path .= '/';
}
if (!array_key_exists($domain, $text_domains)) {
// Initialize an empty domain object.
$text_domains[$domain] = new domain();
}
$text_domains[$domain]->path = $path;
}
/**
* Specify the character encoding in which the messages from the DOMAIN message catalog will be returned.
*/
function _bind_textdomain_codeset($domain, $codeset) {
global $text_domains;
$text_domains[$domain]->codeset = $codeset;
}
/**
* Sets the default domain.
*/
function _textdomain($domain) {
global $default_domain;
$default_domain = $domain;
}
/**
* Lookup a message in the current domain.
*/
function _gettext($msgid) {
$l10n = _get_reader();
//return $l10n->translate($msgid);
return _encode($l10n->translate($msgid));
}
/**
* Alias for gettext.
*/
function __($msgid) {
return _gettext($msgid);
}
/**
* Plural version of gettext.
*/
function _ngettext($single, $plural, $number) {
$l10n = _get_reader();
//return $l10n->ngettext($single, $plural, $number);
return _encode($l10n->ngettext($single, $plural, $number));
}
/**
* Override the current domain.
*/
function _dgettext($domain, $msgid) {
$l10n = _get_reader($domain);
//return $l10n->translate($msgid);
return _encode($l10n->translate($msgid));
}
/**
* Plural version of dgettext.
*/
function _dngettext($domain, $single, $plural, $number) {
$l10n = _get_reader($domain);
//return $l10n->ngettext($single, $plural, $number);
return _encode($l10n->ngettext($single, $plural, $number));
}
/**
* Overrides the domain and category for a single lookup.
*/
function _dcgettext($domain, $msgid, $category) {
$l10n = _get_reader($domain, $category);
//return $l10n->translate($msgid);
return _encode($l10n->translate($msgid));
}
/**
* Plural version of dcgettext.
*/
function _dcngettext($domain, $single, $plural, $number, $category) {
$l10n = _get_reader($domain, $category);
//return $l10n->ngettext($single, $plural, $number);
return _encode($l10n->ngettext($single, $plural, $number));
}
// Wrappers to use if the standard gettext functions are available, but the current locale is not supported by the system.
// Use the standard impl if the current locale is supported, use the custom impl otherwise.
function T_setlocale($category, $locale) {
return _setlocale($category, $locale);
}
function T_bindtextdomain($domain, $path) {
if (_check_locale()) return bindtextdomain($domain, $path);
else return _bindtextdomain($domain, $path);
}
function T_bind_textdomain_codeset($domain, $codeset) {
// bind_textdomain_codeset is available only in PHP 4.2.0+
if (_check_locale() and function_exists('bind_textdomain_codeset')) return bind_textdomain_codeset($domain, $codeset);
else return _bind_textdomain_codeset($domain, $codeset);
}
function T_textdomain($domain) {
if (_check_locale()) return textdomain($domain);
else return _textdomain($domain);
}
function T_gettext($msgid) {
if (_check_locale()) return gettext($msgid);
else return _gettext($msgid);
}
function T_($msgid) {
if (_check_locale()) return _($msgid);
return __($msgid);
}
function T_ngettext($single, $plural, $number) {
if (_check_locale()) return ngettext($single, $plural, $number);
else return _ngettext($single, $plural, $number);
}
function T_dgettext($domain, $msgid) {
if (_check_locale()) return dgettext($domain, $msgid);
else return _dgettext($domain, $msgid);
}
function T_dngettext($domain, $single, $plural, $number) {
if (_check_locale()) return dngettext($domain, $single, $plural, $number);
else return _dngettext($domain, $single, $plural, $number);
}
function T_dcgettext($domain, $msgid, $category) {
if (_check_locale()) return dcgettext($domain, $msgid, $category);
else return _dcgettext($domain, $msgid, $category);
}
function T_dcngettext($domain, $single, $plural, $number, $category) {
if (_check_locale()) return dcngettext($domain, $single, $plural, $number, $category);
else return _dcngettext($domain, $single, $plural, $number, $category);
}
// Wrappers used as a drop in replacement for the standard gettext functions
if (!function_exists('gettext')) {
function bindtextdomain($domain, $path) {
return _bindtextdomain($domain, $path);
}
function bind_textdomain_codeset($domain, $codeset) {
return _bind_textdomain_codeset($domain, $codeset);
}
function textdomain($domain) {
return _textdomain($domain);
}
function gettext($msgid) {
return _gettext($msgid);
}
function _($msgid) {
return __($msgid);
}
function ngettext($single, $plural, $number) {
return _ngettext($single, $plural, $number);
}
function dgettext($domain, $msgid) {
return _dgettext($domain, $msgid);
}
function dngettext($domain, $single, $plural, $number) {
return _dngettext($domain, $single, $plural, $number);
}
function dcgettext($domain, $msgid, $category) {
return _dcgettext($domain, $msgid, $category);
}
function dcngettext($domain, $single, $plural, $number, $category) {
return _dcngettext($domain, $single, $plural, $number, $category);
}
}
?>

View file

@ -1,408 +0,0 @@
<?php
/*
Copyright (c) 2003, 2009 Danilo Segan <danilo@kvota.net>.
Copyright (c) 2005 Nico Kaiser <nico@siriux.net>
This file is part of PHP-gettext.
PHP-gettext is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PHP-gettext is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PHP-gettext; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Provides a simple gettext replacement that works independently from
* the system's gettext abilities.
* It can read MO files and use them for translating strings.
* The files are passed to gettext_reader as a Stream (see streams.php)
*
* This version has the ability to cache all strings and translations to
* speed up the string lookup.
* While the cache is enabled by default, it can be switched off with the
* second parameter in the constructor (e.g. whenusing very large MO files
* that you don't want to keep in memory)
*/
class gettext_reader {
//public:
var $error = 0; // public variable that holds error code (0 if no error)
//private:
var $BYTEORDER = 0; // 0: low endian, 1: big endian
var $STREAM = NULL;
var $short_circuit = false;
var $enable_cache = false;
var $originals = NULL; // offset of original table
var $translations = NULL; // offset of translation table
var $pluralheader = NULL; // cache header field for plural forms
var $total = 0; // total string count
var $table_originals = NULL; // table for original strings (offsets)
var $table_translations = NULL; // table for translated strings (offsets)
var $cache_translations = NULL; // original -> translation mapping
/* Methods */
/**
* Reads a 32bit Integer from the Stream
*
* @access private
* @return Integer from the Stream
*/
function readint() {
if ($this->BYTEORDER == 0) {
// low endian
$input=unpack('V', $this->STREAM->read(4));
return array_shift($input);
} else {
// big endian
$input=unpack('N', $this->STREAM->read(4));
return array_shift($input);
}
}
function read($bytes) {
return $this->STREAM->read($bytes);
}
/**
* Reads an array of Integers from the Stream
*
* @param int count How many elements should be read
* @return Array of Integers
*/
function readintarray($count) {
if ($this->BYTEORDER == 0) {
// low endian
return unpack('V'.$count, $this->STREAM->read(4 * $count));
} else {
// big endian
return unpack('N'.$count, $this->STREAM->read(4 * $count));
}
}
/**
* Constructor
*
* @param object Reader the StreamReader object
* @param boolean enable_cache Enable or disable caching of strings (default on)
*/
function gettext_reader($Reader, $enable_cache = true) {
// If there isn't a StreamReader, turn on short circuit mode.
if (! $Reader || isset($Reader->error) ) {
$this->short_circuit = true;
return;
}
// Caching can be turned off
$this->enable_cache = $enable_cache;
$MAGIC1 = "\x95\x04\x12\xde";
$MAGIC2 = "\xde\x12\x04\x95";
$this->STREAM = $Reader;
$magic = $this->read(4);
if ($magic == $MAGIC1) {
$this->BYTEORDER = 1;
} elseif ($magic == $MAGIC2) {
$this->BYTEORDER = 0;
} else {
$this->error = 1; // not MO file
return false;
}
// FIXME: Do we care about revision? We should.
$revision = $this->readint();
$this->total = $this->readint();
$this->originals = $this->readint();
$this->translations = $this->readint();
}
/**
* Loads the translation tables from the MO file into the cache
* If caching is enabled, also loads all strings into a cache
* to speed up translation lookups
*
* @access private
*/
function load_tables() {
if (is_array($this->cache_translations) &&
is_array($this->table_originals) &&
is_array($this->table_translations))
return;
/* get original and translations tables */
$this->STREAM->seekto($this->originals);
$this->table_originals = $this->readintarray($this->total * 2);
$this->STREAM->seekto($this->translations);
$this->table_translations = $this->readintarray($this->total * 2);
if ($this->enable_cache) {
$this->cache_translations = array ();
/* read all strings in the cache */
for ($i = 0; $i < $this->total; $i++) {
$this->STREAM->seekto($this->table_originals[$i * 2 + 2]);
$original = $this->STREAM->read($this->table_originals[$i * 2 + 1]);
$this->STREAM->seekto($this->table_translations[$i * 2 + 2]);
$translation = $this->STREAM->read($this->table_translations[$i * 2 + 1]);
$this->cache_translations[$original] = $translation;
}
}
}
/**
* Returns a string from the "originals" table
*
* @access private
* @param int num Offset number of original string
* @return string Requested string if found, otherwise ''
*/
function get_original_string($num) {
$length = $this->table_originals[$num * 2 + 1];
$offset = $this->table_originals[$num * 2 + 2];
if (! $length)
return '';
$this->STREAM->seekto($offset);
$data = $this->STREAM->read($length);
return (string)$data;
}
/**
* Returns a string from the "translations" table
*
* @access private
* @param int num Offset number of original string
* @return string Requested string if found, otherwise ''
*/
function get_translation_string($num) {
$length = $this->table_translations[$num * 2 + 1];
$offset = $this->table_translations[$num * 2 + 2];
if (! $length)
return '';
$this->STREAM->seekto($offset);
$data = $this->STREAM->read($length);
return (string)$data;
}
/**
* Binary search for string
*
* @access private
* @param string string
* @param int start (internally used in recursive function)
* @param int end (internally used in recursive function)
* @return int string number (offset in originals table)
*/
function find_string($string, $start = -1, $end = -1) {
if (($start == -1) or ($end == -1)) {
// find_string is called with only one parameter, set start end end
$start = 0;
$end = $this->total;
}
if (abs($start - $end) <= 1) {
// We're done, now we either found the string, or it doesn't exist
$txt = $this->get_original_string($start);
if ($string == $txt)
return $start;
else
return -1;
} else if ($start > $end) {
// start > end -> turn around and start over
return $this->find_string($string, $end, $start);
} else {
// Divide table in two parts
$half = (int)(($start + $end) / 2);
$cmp = strcmp($string, $this->get_original_string($half));
if ($cmp == 0)
// string is exactly in the middle => return it
return $half;
else if ($cmp < 0)
// The string is in the upper half
return $this->find_string($string, $start, $half);
else
// The string is in the lower half
return $this->find_string($string, $half, $end);
}
}
/**
* Translates a string
*
* @access public
* @param string string to be translated
* @return string translated string (or original, if not found)
*/
function translate($string) {
if ($this->short_circuit)
return $string;
$this->load_tables();
if ($this->enable_cache) {
// Caching enabled, get translated string from cache
if (array_key_exists($string, $this->cache_translations))
return $this->cache_translations[$string];
else
return $string;
} else {
// Caching not enabled, try to find string
$num = $this->find_string($string);
if ($num == -1)
return $string;
else
return $this->get_translation_string($num);
}
}
/**
* Sanitize plural form expression for use in PHP eval call.
*
* @access private
* @return string sanitized plural form expression
*/
function sanitize_plural_expression($expr) {
// Get rid of disallowed characters.
$expr = preg_replace('@[^a-zA-Z0-9_:;\(\)\?\|\&=!<>+*/\%-]@', '', $expr);
// Add parenthesis for tertiary '?' operator.
$expr .= ';';
$res = '';
$p = 0;
for ($i = 0; $i < strlen($expr); $i++) {
$ch = $expr[$i];
switch ($ch) {
case '?':
$res .= ' ? (';
$p++;
break;
case ':':
$res .= ') : (';
break;
case ';':
$res .= str_repeat( ')', $p) . ';';
$p = 0;
break;
default:
$res .= $ch;
}
}
return $res;
}
/**
* Parse full PO header and extract only plural forms line.
*
* @access private
* @return string verbatim plural form header field
*/
function extract_plural_forms_header_from_po_header($header) {
if (preg_match("/(^|\n)plural-forms: ([^\n]*)\n/i", $header, $regs))
$expr = $regs[2];
else
$expr = "nplurals=2; plural=n == 1 ? 0 : 1;";
return $expr;
}
/**
* Get possible plural forms from MO header
*
* @access private
* @return string plural form header
*/
function get_plural_forms() {
// lets assume message number 0 is header
// this is true, right?
$this->load_tables();
// cache header field for plural forms
if (! is_string($this->pluralheader)) {
if ($this->enable_cache) {
$header = $this->cache_translations[""];
} else {
$header = $this->get_translation_string(0);
}
$expr = $this->extract_plural_forms_header_from_po_header($header);
$this->pluralheader = $this->sanitize_plural_expression($expr);
}
return $this->pluralheader;
}
/**
* Detects which plural form to take
*
* @access private
* @param n count
* @return int array index of the right plural form
*/
function select_string($n) {
$string = $this->get_plural_forms();
$string = str_replace('nplurals',"\$total",$string);
$string = str_replace("n",$n,$string);
$string = str_replace('plural',"\$plural",$string);
$total = 0;
$plural = 0;
eval("$string");
if ($plural >= $total) $plural = $total - 1;
return $plural;
}
/**
* Plural version of gettext
*
* @access public
* @param string single
* @param string plural
* @param string number
* @return translated plural form
*/
function ngettext($single, $plural, $number) {
if ($this->short_circuit) {
if ($number != 1)
return $plural;
else
return $single;
}
// find out the appropriate form
$select = $this->select_string($number);
// this should contains all strings separated by NULLs
$key = $single.chr(0).$plural;
if ($this->enable_cache) {
if (! array_key_exists($key, $this->cache_translations)) {
return ($number != 1) ? $plural : $single;
} else {
$result = $this->cache_translations[$key];
$list = explode(chr(0), $result);
return $list[$select];
}
} else {
$num = $this->find_string($key);
if ($num == -1) {
return ($number != 1) ? $plural : $single;
} else {
$result = $this->get_translation_string($num);
$list = explode(chr(0), $result);
return $list[$select];
}
}
}
}
?>

View file

@ -1,167 +0,0 @@
<?php
/*
Copyright (c) 2003, 2005, 2006, 2009 Danilo Segan <danilo@kvota.net>.
This file is part of PHP-gettext.
PHP-gettext is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PHP-gettext is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PHP-gettext; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Simple class to wrap file streams, string streams, etc.
// seek is essential, and it should be byte stream
class StreamReader {
// should return a string [FIXME: perhaps return array of bytes?]
function read($bytes) {
return false;
}
// should return new position
function seekto($position) {
return false;
}
// returns current position
function currentpos() {
return false;
}
// returns length of entire stream (limit for seekto()s)
function length() {
return false;
}
};
class StringReader {
var $_pos;
var $_str;
function StringReader($str='') {
$this->_str = $str;
$this->_pos = 0;
}
function read($bytes) {
$data = substr($this->_str, $this->_pos, $bytes);
$this->_pos += $bytes;
if (strlen($this->_str)<$this->_pos)
$this->_pos = strlen($this->_str);
return $data;
}
function seekto($pos) {
$this->_pos = $pos;
if (strlen($this->_str)<$this->_pos)
$this->_pos = strlen($this->_str);
return $this->_pos;
}
function currentpos() {
return $this->_pos;
}
function length() {
return strlen($this->_str);
}
};
class FileReader {
var $_pos;
var $_fd;
var $_length;
function FileReader($filename) {
if (file_exists($filename)) {
$this->_length=filesize($filename);
$this->_pos = 0;
$this->_fd = fopen($filename,'rb');
if (!$this->_fd) {
$this->error = 3; // Cannot read file, probably permissions
return false;
}
} else {
$this->error = 2; // File doesn't exist
return false;
}
}
function read($bytes) {
if ($bytes) {
fseek($this->_fd, $this->_pos);
// PHP 5.1.1 does not read more than 8192 bytes in one fread()
// the discussions at PHP Bugs suggest it's the intended behaviour
$data = '';
while ($bytes > 0) {
$chunk = fread($this->_fd, $bytes);
$data .= $chunk;
$bytes -= strlen($chunk);
}
$this->_pos = ftell($this->_fd);
return $data;
} else return '';
}
function seekto($pos) {
fseek($this->_fd, $pos);
$this->_pos = ftell($this->_fd);
return $this->_pos;
}
function currentpos() {
return $this->_pos;
}
function length() {
return $this->_length;
}
function close() {
fclose($this->_fd);
}
};
// Preloads entire file in memory first, then creates a StringReader
// over it (it assumes knowledge of StringReader internals)
class CachedFileReader extends StringReader {
function CachedFileReader($filename) {
if (file_exists($filename)) {
$length=filesize($filename);
$fd = fopen($filename,'rb');
if (!$fd) {
$this->error = 3; // Cannot read file, probably permissions
return false;
}
$this->_str = fread($fd, $length);
fclose($fd);
} else {
$this->error = 2; // File doesn't exist
return false;
}
}
};
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,354 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'Deutsch';
$lang_info['country'] = 'Deutschland';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'de';
$lang_info['zero_plural'] = false;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (beachtet %d mal, Standardabweichung = %.2f)';
$lang['%d Kb'] = '%d Kb';
$lang['%d category updated'] = '%d Kategorie wurde aktualisiert';
$lang['%d categories updated'] = '%d Kategorien wurden aktualisiert';
$lang['%d comment to validate'] = '%d Kommentar freizuschalten';
$lang['%d comments to validate'] = '%d Kommentare freizuschalten';
$lang['%d new comment'] = '%d neuer Kommentar';
$lang['%d new comments'] = '%d neue Kommentare';
$lang['%d comment'] = '%d Kommentar';
$lang['%d comments'] = '%d Kommentare';
$lang['%d hit'] = '%d Aufruf';
$lang['%d hits'] = '%d Aufrufe';
$lang['%d new element'] = '%d neues Element';
$lang['%d new elements'] = '%d neue Elemente';
$lang['%d new user'] = '%d neuer Benutzer';
$lang['%d new users'] = '%d neue Benutzer';
$lang['%d waiting element'] = '%d Element in der Warteschlange';
$lang['%d waiting elements'] = '%d Elemente in der Warteschlange';
$lang['About'] = 'über uns';
$lang['All tags must match'] = 'Alle Tags müssen übereinstimmen';
$lang['All tags'] = 'Alle Tags';
$lang['Any tag'] = 'Beliebigen Tag';
$lang['At least one listed rule must be satisfied.'] = 'Mindestens eine aufgelistete Regel muss übereinstimmen.';
$lang['At least one tag must match'] = 'Mindestens ein Tag muss übereinstimmen';
$lang['Author'] = 'Autor';
$lang['Average rate'] = 'Durchschnittliche Bewertung';
$lang['Categories'] = 'Kategorien';
$lang['Category'] = 'Kategorie';
$lang['Close this window'] = 'Dieses Fenster schließen';
$lang['Complete RSS feed'] = 'RSS-Feeds komplett (Bilder, Kommentare)';
$lang['Confirm Password'] = 'Neues Passwort bestätigen';
$lang['Connection settings'] = 'Login-Einstellungen';
$lang['Connection'] = 'Anmeldung';
$lang['Contact webmaster'] = 'Mail an den Webmaster';
$lang['Create a new account'] = 'Erstellen Sie ein neues Konto';
$lang['Created on'] = 'Erstellt am';
$lang['Creation date'] = 'Erstellungsdatum';
$lang['Current password is wrong'] = 'aktuelles Passwort ist falsch';
$lang['Dimensions'] = 'Abmessungen';
$lang['Display'] = 'Anzeige';
$lang['Each listed rule must be satisfied.'] = 'Jede aufgelistete Regel muss erfüllt sein';
$lang['Email address is missing'] = 'Die E-Mail-Adresse fehlt';
$lang['Email address'] = 'E-Mail-Adresse';
$lang['Enter your personnal informations'] = 'Geben Sie Ihre persönlichen Daten an';
$lang['Error sending email'] = 'Fehler beim Senden der Mail';
$lang['File name'] = 'Name der Datei';
$lang['File'] = 'Datei';
$lang['Filesize'] = 'Dateigröße';
$lang['Filter and display'] = 'Filtern und anzeigen';
$lang['Filter'] = 'Filter';
$lang['Forgot your password?'] = 'Passwort vergessen?';
$lang['Go through the gallery as a visitor'] = 'Besuche die Galerie mit Besucherrechten';
$lang['Help'] = 'Hilfe';
$lang['Identification'] = 'Anmeldung';
$lang['Image only RSS feed'] = 'Bilder RSS-Feed';
$lang['Keyword'] = 'Stichwort';
$lang['Links'] = 'Links';
$lang['Mail address'] = $lang['Email addresse'];
$lang['N/A'] = 'nicht vorhanden';
$lang['New on %s'] = 'Neu am %s';
$lang['New password confirmation does not correspond'] = 'Fehler bei der Bestätigung des Passwortes';
$lang['New password sent by email'] = 'Neues Passwort per E-Mail zusenden';
$lang['No email address'] = 'Keine E-Mail-Adresse';
$lang['No user matches this email address'] = 'Diese E-Mail-Adresse ist nicht bekannt';
$lang['Notification'] = 'Rss-Feed';
$lang['Number of items'] = 'Anzahl der Elemente';
$lang['Original dimensions'] = 'Ursprünglichen Abmessungen';
$lang['Password forgotten'] = 'Passwort vergessen';
$lang['Password'] = 'Passwort';
$lang['Post date'] = 'Eintragsdatum';
$lang['Posted on'] = 'Eingetragen am';
$lang['Profile'] = 'Profil';
$lang['Quick connect'] = 'Schnelle Anmeldung';
$lang['RSS feed'] = 'RSS-Feed';
$lang['Rate'] = 'Bewertung';
$lang['Register'] = 'Registrieren';
$lang['Registration'] = 'Registrierung';
$lang['Related tags'] = 'mit den Tags';
$lang['Reset'] = 'Abbrechen';
$lang['Retrieve password'] = 'Passwort abrufen';
$lang['Search rules'] = 'Suchkriterien';
$lang['Search tags'] = 'Tags suchen';
$lang['Search'] = 'Suchen';
$lang['See available tags'] = 'Alle verfügbaren Tags';
$lang['Send new password'] = 'Senden mir ein neues Passwort';
$lang['Since'] = 'Seit';
$lang['Sort by'] = 'Sortieren nach';
$lang['Sort order'] = 'Sortierreihenfolge';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'Der RSS-Feed teilt die Ereignisse in der Galerie mit: neue Bilder, Gruppen-Updates, neue Benutzer Kommentare. Für die Verwendung mit einem RSS-Reader.';
$lang['Unknown feed identifier'] = 'Feed-ID unbekanntem';
$lang['User comments'] = 'Benutzerkommentare';
$lang['Username'] = 'Benutzername';
$lang['Visits'] = 'Besuche';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Woche %d';
$lang['about_page_title'] = 'über Piwigo';
$lang['access_forbiden'] = 'Sie sind nicht berechtigt die gewünschte Seite aufzurufen';
$lang['add to caddie'] = 'in den Sammelkorb';
$lang['add_favorites_hint'] = 'Dieses Bild zu Ihren Favoriten hinzugefügt';
$lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Berater-Modus aktiv';
$lang['all'] = 'alle';
$lang['ascending'] = 'wachsende';
$lang['author(s) : %s'] = 'Autor(en) : %s';
$lang['auto_expand'] = 'Kategoriebaum immer vollständig sichtbar';
$lang['became available after %s (%s)'] = 'zur Verfügung gestellt nachdem die %s (%s)';
$lang['became available before %s (%s)'] = 'zur Verfügung gestellt, bevor die %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'zur Verfügung gestellt von %s (%s) und das %s (%s)';
$lang['became available on %s'] = 'zur Verfügung gestellt am %s';
$lang['best_rated_cat'] = 'Am besten bewertet';
$lang['best_rated_cat_hint'] = 'zeigt am besten bewertete Bilder';
$lang['caddie'] = 'Sammelkorb';
$lang['calendar'] = 'Kalender';
$lang['calendar_any'] = 'Alles';
$lang['calendar_hint'] = 'Anzeige von Jahr zu Jahr, Monat für Monat, Tag für Tag';
$lang['calendar_picture_hint'] = 'die Bilder des ';
$lang['calendar_view'] = 'Anblick';
$lang['chronology_monthly_calendar'] = 'Monatskalender';
$lang['chronology_monthly_list'] = 'Monatliche Liste';
$lang['chronology_weekly_list'] = 'Wöchentlichen Liste';
$lang['click_to_redirect'] = 'Klicken Sie hier, wenn Sie nicht durch ihren Browser weitergeleitet werden.';
$lang['comment date'] = 'Datum des Kommentars';
$lang['comment'] = 'Kommentar';
$lang['comment_added'] = 'Ihr Kommentar wurde gespeichert';
$lang['comment_anti-flood'] = 'Anti-Spam-Sperre, bitte warte eine Weile, bis du den nächsten Kommentar abgibst';
$lang['comment_not_added'] = 'Dein Kommentar wurde abgelehnt da er evtl. gesetzte Regeln verletzt';
$lang['comment_to_validate'] = 'Ein Administrator muss deinen Beitrag freischalten bevor er sichtbar wird.';
$lang['comment_user_exists'] = 'Dieser Benutzername ist bereits';
$lang['comments'] = 'Kommentare';
$lang['comments_add'] = 'Kommentar hinzufügen';
$lang['created after %s (%s)'] = 'erstellt nach dem %s (%s)';
$lang['created before %s (%s)'] = 'erstellt vor dem %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'erstellt von %s (%s) und das %s (%s)';
$lang['created on %s'] = 'erstellt am %s';
$lang['customize'] = 'Benutzerdaten / Layout';
$lang['customize_page_title'] = 'Anpassung des Seitentitels ';
$lang['day'][0] = 'Sonntag';
$lang['day'][1] = 'Montag';
$lang['day'][2] = 'Dienstag';
$lang['day'][3] = 'Mittwoch';
$lang['day'][4] = 'Donnerstag';
$lang['day'][5] = 'Freitag';
$lang['day'][6] = 'Samstag';
$lang['default_sort'] = 'Standardmäßig';
$lang['del_favorites_hint'] = 'dieses Bild löschen Favoriten';
$lang['delete'] = 'Löschen';
$lang['descending'] = 'absteigend';
$lang['download'] = 'herunterladen';
$lang['download_hint'] = 'Download dieser Datei';
$lang['edit'] = 'bearbeiten';
$lang['err_date'] = 'Datum falsch';
$lang['excluded'] = 'ausgeschlossen';
$lang['favorite_cat'] = 'Meine Favoriten';
$lang['favorite_cat_hint'] = 'meine Lieblingsbilder';
$lang['favorites'] = 'Favoriten';
$lang['first_page'] = 'Erste';
$lang['gallery_locked_message'] = 'Die Galerie ist gesperrt wegen Wartungsarbeiten. Bitte besuchen Sie uns später wieder.';
$lang['generation_time'] = 'Seite erstellt in';
$lang['guest'] = 'Besucher';
$lang['hello'] = 'Hallo';
$lang['hint_admin'] = 'nur für Administratoren';
$lang['hint_category'] = 'zeigt die Bilder an der Wurzel dieser Kategorie';
$lang['hint_comments'] = 'Zeige die letzten Kommentare Benutzer';
$lang['hint_customize'] = 'das Aussehen der Galerie';
$lang['hint_search'] = 'Suche';
$lang['home'] = 'Startseite';
$lang['identification'] = 'Identifikation';
$lang['images_available_cpl'] = 'in dieser Kategorie';
$lang['images_available_cat'] = 'in %d Unterkategorie';
$lang['images_available_cats'] = 'in %d Unterkategorien';
$lang['included'] = 'enthalten';
$lang['invalid_pwd'] = 'Passwort ungültig!';
$lang['language'] = 'Sprache';
$lang['last %d days'] = '%d lezte Tage';
$lang['last_page'] = 'Letzte Seite';
$lang['logout'] = 'Abmelden';
$lang['mail_address'] = $lang['Email address'];
$lang['mandatory'] = 'obligatorisch';
$lang['maxheight'] = 'Maximale Höhe der Bilder';
$lang['maxheight_error'] = 'Die maximale Höhe der Bilder muss mehr als 50';
$lang['maxwidth'] = 'Maximale Breite der Bilder';
$lang['maxwidth_error'] = 'Die Breite der Bilder muss mehr als 50';
$lang['mode_created_hint'] = 'zeige einen Kalender nach Erstellungsdatum';
$lang['mode_flat_hint'] = 'Zeige alle Bilder inclusive der Unterkategorien';
$lang['mode_normal_hint'] = 'Zurück zur normalen Ansicht';
$lang['mode_posted_hint'] = 'zeige einen Kalender nach Einstellungsdatum';
$lang['month'][10] = 'Oktober';
$lang['month'][11] = 'November';
$lang['month'][12] = 'Dezember';
$lang['month'][1] = 'Januar';
$lang['month'][2] = 'Februar';
$lang['month'][3] = 'März';
$lang['month'][4] = 'April';
$lang['month'][5] = 'Mai';
$lang['month'][6] = 'Juni';
$lang['month'][7] = 'Juli';
$lang['month'][8] = 'August';
$lang['month'][9] = 'September';
$lang['most_visited_cat'] = 'Am häufigsten gesehen';
$lang['most_visited_cat_hint'] = 'zeigt am meisten besuchte Bilder';
$lang['nb_image_line_error'] = 'Die Anzahl der Bilder pro Reihe muss mindestens 1 sein';
$lang['nb_image_per_row'] = 'Anzahl der Bilder pro Zeile';
$lang['nb_line_page_error'] = 'Die Anzahl der Zeilen pro Seite muss mindestens 1 sein';
$lang['nb_row_per_page'] = 'Anzahl der Zeilen pro Seite';
$lang['nbm_unknown_identifier'] = 'Identifikatoren unbekannt';
$lang['new_password'] = 'Neues Passwort';
$lang['new_rate'] = 'Bewerten Sie dieses Bild';
$lang['next_page'] = 'Vorwärts';
$lang['no_category'] = 'Startseite';
$lang['no_rate'] = 'noch keine Bewertung';
$lang['note_filter_day'] = 'Es werden nur Elemente angezeigt, die innerhalb des letzten Tages hochgeladen wurden.';
$lang['note_filter_days'] = 'Es werden nur Elemente angezeigt, die innerhalb der letzten %d Tage hochgeladen wurden.';
$lang['password updated'] = 'Passwort aktualisiert';
$lang['periods_error'] = 'Der Zeitraum der Neuheit muss eine positive ganze Zahl';
$lang['picture'] = 'Bild';
$lang['picture_high'] = 'Klicken Sie auf das Bild für die Anzeige in High Definition';
$lang['picture_show_metadata'] = 'Zeigen die Meta-Daten in der Datei';
$lang['powered_by'] = 'Unterstützt von';
$lang['preferences'] = 'Einstellungen';
$lang['previous_page'] = 'Zurück';
$lang['random_cat'] = 'Zufallsbilder';
$lang['random_cat_hint'] = 'Anzeigen eines zufälligen Bilder';
$lang['recent_cats_cat'] = 'Neue Kategorien';
$lang['recent_cats_cat_hint'] = 'Kategorien anzuzeigen, die kürzlich aktualisiert oder erstellt wurden';
$lang['recent_period'] = 'Wieviele Tage sollen Bilder als "neu" markiert werden?';
$lang['recent_pics_cat'] = 'Die neuesten Bilder';
$lang['recent_pics_cat_hint'] = 'zeigt die neuesten Bilder';
$lang['redirect_msg'] = 'Umleitung ...';
$lang['reg_err_login1'] = 'Bitte geben Sie einen Benutzernamen ein';
$lang['reg_err_login2'] = 'Benutzername darf nicht mit einem Leerzeichen enden';
$lang['reg_err_login3'] = 'Login dürfen nicht mit einem Leerzeichen anfangen';
$lang['reg_err_login5'] = 'Diesen Benutzername ist bereits vergeben';
$lang['reg_err_mail_address'] = 'E-Mail-Adresse muss in der Form xxx@yyy.eee (Beispiel: jack@altern.org)';
$lang['reg_err_pass'] = 'Bitte geben Sie erneut Ihr Passwort ein';
$lang['remember_me'] = 'Auto-Login';
$lang['remove this tag'] = 'entfernen diesem Tag in der Liste';
$lang['representative'] = 'representativ';
$lang['return to homepage'] = 'Zurück zur Homepage';
$lang['search_author'] = 'Suche nach Autor';
$lang['search_categories'] = 'Suche in Kategorien';
$lang['search_date'] = 'Suche nach Datum';
$lang['search_date_from'] = 'Datum';
$lang['search_date_to'] = 'Enddatum';
$lang['search_date_type'] = 'Datumstyp';
$lang['search_keywords'] = 'Suche nach Wort';
$lang['search_mode_and'] = 'Suche alle Wörter';
$lang['search_mode_or'] = 'Wörter suchen';
$lang['search_one_clause_at_least'] = 'Abfrage leer. Kein Kriterium zur Verfügung.';
$lang['search_options'] = 'Suchoptionen';
$lang['search_result'] = 'Suchergebnisse';
$lang['search_subcats_included'] = 'Suche in Unterkategorien';
$lang['search_title'] = 'Suche';
$lang['searched words : %s'] = 'Suchbegriffe : %s';
$lang['send_mail'] = 'Kontakt';
$lang['set as category representative'] = 'Als Vorschaubild dieser Kategorie';
$lang['show_nb_comments'] = 'Zeige die Anzahl der Kommentare';
$lang['show_nb_hits'] = 'Zeige die Anzahl der Bildaufrufe';
$lang['slideshow'] = 'Diashow';
$lang['slideshow_stop'] = 'Stop die Diashow';
$lang['special_categories'] = 'Erweitert';
$lang['sql_queries_in'] = 'SQL-Abfragen in';
$lang['start_filter_hint'] = 'zeigt erst vor kurzem gebucht Bilder';
$lang['stop_filter_hint'] = 'Zurück zur Anzeige aller Elemente';
$lang['the beginning'] = 'Beginn';
$lang['theme'] = 'Galerie-Layout';
$lang['thumbnails'] = 'Thumbnails';
$lang['title_menu'] = 'Menü';
$lang['title_send_mail'] = 'Ein Kommentar auf der Website';
$lang['today'] = 'heute';
$lang['update_rate'] = 'Aktualisieren Ihre Bewertung';
$lang['update_wrong_dirname'] = 'ungültiger Verzeichnisname';
$lang['upload_advise_filesize'] = 'die Datei darf nicht größer sein als: ';
$lang['upload_advise_filetype'] = 'das Bild muss im Dateiformat JPG, GIF, oder PNG sein';
$lang['upload_advise_height'] = 'die maximale Bildhöhe darf nicht überschritten werden: ';
$lang['upload_advise_thumbnail'] = 'Optional, aber empfohlen: Wählen Sie ein Miniaturbild, um zu ';
$lang['upload_advise_width'] = 'die Breite des Bildes darf nicht überschreiten: ';
$lang['upload_author'] = 'Autor';
$lang['upload_cannot_upload'] = 'Das Bild kann nicht hochgeladen werden';
$lang['upload_err_username'] = 'Nutzername fehlt';
$lang['upload_file_exists'] = 'Diese Datei existiert bereits';
$lang['upload_filenotfound'] = 'das Format der Datei entspricht nicht dem Bild';
$lang['upload_forbidden'] = 'in dieser Kategorie ist ein Upload nicht erlaubt';
$lang['upload_name'] = 'Name des Bildes';
$lang['upload_picture'] = 'Ein Bild hochladen';
$lang['upload_successful'] = 'Bild erfolgreich hinzugefügt, ein Administrator wird ihr Bild überprüfen und freischalten';
$lang['upload_title'] = 'Ein Bild hinzufügen';
$lang['useful when password forgotten'] = 'nützlich, wenn Sie ihr Passwort vergessen';
$lang['qsearch'] = 'Schnellsuche';
$lang['Connected user: %s'] = 'Connected Benutzer : %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Browser: %s';
$lang['Author: %s'] = 'Autor: %s';
$lang['Comment: %s'] = 'Kommentar: %s';
$lang['Delete: %s'] = 'Löschen: %s';
$lang['Validate: %s'] = 'Validierung: %s';
$lang['Comment by %s'] = 'Kommentar von %s';
$lang['User: %s'] = 'Benutzer: %s';
$lang['Email: %s'] = 'E-Mail: %s';
$lang['Admin: %s'] = 'Verwaltung: %s';
$lang['Registration of %s'] = 'Registrierung von %s';
$lang['Category: %s'] = 'Kategorie: %s';
$lang['Picture name: %s'] = 'Name des Bildes: %s';
$lang['Creation date: %s'] = 'Erstellungsdatum: %d';
$lang['Waiting page: %s'] = 'Seite warten: %s';
$lang['Picture uploaded by %s'] = 'Bild hochgeladen von %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Status der Benutzer "guest" nicht entspricht, Verwendung des Standard. Bitte kontaktieren Sie den Webmaster.';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrator, Webmaster und spezieller Benutzer können nicht diese Methode verwenden';
$lang['reg_err_mail_address_dbl'] = 'Diese E-Mail-Adresse wird bereits verwendet';
$lang['Category results for'] = 'Ergebnisse der Kategorien für';
$lang['Tag results for'] = 'Ergebnisse der Tag für';
$lang['from %s to %s'] = 'von %s bis %s';
$lang['start_play'] = 'Start der Diashow';
$lang['stop_play'] = 'Pause der Diashow';
$lang['start_repeat'] = 'Wiederholen der Diashow';
$lang['stop_repeat'] = 'Diashow nicht wiederholen';
$lang['inc_period'] = 'Diashow langsamer anzeigen';
$lang['dec_period'] = 'Diashow schneller anzeigen';
$lang['Submit'] = 'Bestätigen';
$lang['Yes'] = 'Ja';
$lang['No'] = 'Nein';
$lang['%d element']='%d Bild';
$lang['%d elements']='%d Bilder';
$lang['%d element are also linked to current tags'] = '%d Element ist auch mit weiteren Tags markiert';
$lang['%d elements are also linked to current tags'] = '%d Elemente sind auch mit weiteren Tags markiert';
$lang['See elements linked to this tag only'] = 'Zeige nur Bilder die mit diesem Tag markiert sind';
$lang['elements posted during the last %d days'] = 'Bilder hinzugefügt während der letzten %d Tage';
$lang['Choose an image'] = 'Wählen Sie ein Bild';
$lang['Piwigo Help'] = 'Hilfe Piwigo';
$lang['Rank'] = 'Rang';
$lang['group by letters'] = 'Gruppieren nach Buchstaben';
$lang['letters'] = 'Buchstaben';
$lang['show tag cloud'] = 'zeigen die Tag-Wolke';
$lang['cloud'] = 'Wolke';
$lang['Reset_To_Default'] = 'Zurücksetzen auf Standardwerte';
$lang['del_all_favorites_hint'] = 'Löscht alle Bilder aus deinen Favoriten';
$lang['Sent by'] = 'Gesendet von';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
/* TODO */ $lang['del_all_favorites_hint'] = 'delete all images from your favorites';
/* TODO */ $lang['Sent by'] = 'Sent by';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (beachtet %d mal, Standardabweichung = %.2f)";
$lang['%d Kb'] = "%d Kb";
$lang['%d category updated'] = "%d Kategorie wurde aktualisiert";
$lang['%d categories updated'] = "%d Kategorien wurden aktualisiert";
$lang['%d comment to validate'] = "%d Kommentar freizuschalten";
$lang['%d comments to validate'] = "%d Kommentare freizuschalten";
$lang['%d new comment'] = "%d neuer Kommentar";
$lang['%d new comments'] = "%d neue Kommentare";
$lang['%d comment'] = "%d Kommentar";
$lang['%d comments'] = "%d Kommentare";
$lang['%d hit'] = "%d Aufruf";
$lang['%d hits'] = "%d Aufrufe";
$lang['%d new image'] = "%d neues Element";
$lang['%d new images'] = "%d neue Elemente";
$lang['%d new user'] = "%d neuer Benutzer";
$lang['%d new users'] = "%d neue Benutzer";
$lang['%d waiting element'] = "%d Element in der Warteschlange";
$lang['%d waiting elements'] = "%d Elemente in der Warteschlange";
$lang['About'] = "über uns";
$lang['All tags must match'] = "Alle Tags müssen übereinstimmen";
$lang['All tags'] = "Alle Tags";
$lang['Any tag'] = "Beliebigen Tag";
$lang['At least one listed rule must be satisfied.'] = "Mindestens eine aufgelistete Regel muss übereinstimmen.";
$lang['At least one tag must match'] = "Mindestens ein Tag muss übereinstimmen";
$lang['Author'] = "Autor";
$lang['Average rate'] = "Durchschnittliche Bewertung";
$lang['Categories'] = "Kategorien";
$lang['Category'] = "Kategorie";
$lang['Close this window'] = "Dieses Fenster schließen";
$lang['Complete RSS feed (images, comments)'] = "RSS-Feeds komplett (Bilder, Kommentare)";
$lang['Confirm Password'] = "Neues Passwort bestätigen";
$lang['Connection settings'] = "Login-Einstellungen";
$lang['Login'] = "Anmeldung";
$lang['Contact webmaster'] = "Mail an den Webmaster";
$lang['Create a new account'] = "Erstellen Sie ein neues Konto";
$lang['Created on'] = "Erstellt am";
$lang['Creation date'] = "Erstellungsdatum";
$lang['Current password is wrong'] = "aktuelles Passwort ist falsch";
$lang['Dimensions'] = "Abmessungen";
$lang['Display'] = "Anzeige";
$lang['Each listed rule must be satisfied.'] = "Jede aufgelistete Regel muss erfüllt sein";
$lang['Email address is missing'] = "Die E-Mail-Adresse fehlt";
$lang['Email address'] = "E-Mail-Adresse";
$lang['Enter your personnal informations'] = "Geben Sie Ihre persönlichen Daten an";
$lang['Error sending email'] = "Fehler beim Senden der Mail";
$lang['File name'] = "Name der Datei";
$lang['File'] = "Datei";
$lang['Filesize'] = "Dateigröße";
$lang['Filter and display'] = "Filtern und anzeigen";
$lang['Filter'] = "Filter";
$lang['Forgot your password?'] = "Passwort vergessen?";
$lang['Go through the gallery as a visitor'] = "Besuche die Galerie mit Besucherrechten";
$lang['Help'] = "Hilfe";
$lang['Identification'] = "Anmeldung";
$lang['Image only RSS feed'] = "Bilder RSS-Feed";
$lang['Keyword'] = "Stichwort";
$lang['Links'] = "Links";
$lang['Mail address'] = "";
$lang['N/A'] = "nicht vorhanden";
$lang['New on %s'] = "Neu am %s";
$lang['New password confirmation does not correspond'] = "Fehler bei der Bestätigung des Passwortes";
$lang['New password sent by email'] = "Neues Passwort per E-Mail zusenden";
$lang['No email address'] = "Keine E-Mail-Adresse";
$lang['No classic user matches this email address'] = "Diese E-Mail-Adresse ist nicht bekannt";
$lang['Notification'] = "Rss-Feed";
$lang['Number of items'] = "Anzahl der Elemente";
$lang['Original dimensions'] = "Ursprünglichen Abmessungen";
$lang['Password forgotten'] = "Passwort vergessen";
$lang['Password'] = "Passwort";
$lang['Post date'] = "Eintragsdatum";
$lang['Posted on'] = "Eingetragen am";
$lang['Profile'] = "Profil";
$lang['Quick connect'] = "Schnelle Anmeldung";
$lang['RSS feed'] = "RSS-Feed";
$lang['Rate'] = "Bewertung";
$lang['Register'] = "Registrieren";
$lang['Registration'] = "Registrierung";
$lang['Related tags'] = "mit den Tags";
$lang['Reset'] = "Abbrechen";
$lang['Retrieve password'] = "Passwort abrufen";
$lang['Search rules'] = "Suchkriterien";
$lang['Search tags'] = "Tags suchen";
$lang['Search'] = "Suchen";
$lang['See available tags'] = "Alle verfügbaren Tags";
$lang['Send new password'] = "Senden mir ein neues Passwort";
$lang['Since'] = "Seit";
$lang['Sort by'] = "Sortieren nach";
$lang['Sort order'] = "Sortierreihenfolge";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "Der RSS-Feed teilt die Ereignisse in der Galerie mit: neue Bilder, Gruppen-Updates, neue Benutzer Kommentare. Für die Verwendung mit einem RSS-Reader.";
$lang['Unknown feed identifier'] = "Feed-ID unbekanntem";
$lang['User comments'] = "Benutzerkommentare";
$lang['Username'] = "Benutzername";
$lang['Visits'] = "Besuche";
$lang['Webmaster'] = "Webmaster";
$lang['Week %d'] = "Woche %d";
$lang['About Piwigo'] = "über Piwigo";
$lang['You are not authorized to access the requested page'] = "Sie sind nicht berechtigt die gewünschte Seite aufzurufen";
$lang['add to caddie'] = "in den Sammelkorb";
$lang['add this image to your favorites'] = "Dieses Bild zu Ihren Favoriten hinzugefügt";
$lang['Administration'] = "Administration";
$lang['Adviser mode enabled'] = "Berater-Modus aktiv";
$lang['all'] = "alle";
$lang['ascending'] = "wachsende";
$lang['author(s) : %s'] = "Autor(en) : %s";
$lang['Expand all categories'] = "Kategoriebaum immer vollständig sichtbar";
$lang['posted after %s (%s)'] = "zur Verfügung gestellt nachdem die %s (%s)";
$lang['posted before %s (%s)'] = "zur Verfügung gestellt, bevor die %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "zur Verfügung gestellt von %s (%s) und das %s (%s)";
$lang['posted on %s'] = "zur Verfügung gestellt am %s";
$lang['Best rated'] = "Am besten bewertet";
$lang['display best rated items'] = "zeigt am besten bewertete Bilder";
$lang['caddie'] = "Sammelkorb";
$lang['Calendar'] = "Kalender";
$lang['All'] = "Alles";
$lang['display each day with pictures, month per month'] = "Anzeige von Jahr zu Jahr, Monat für Monat, Tag für Tag";
$lang['display pictures added on'] = "die Bilder des";
$lang['View'] = "Anblick";
$lang['chronology_monthly_calendar'] = "Monatskalender";
$lang['chronology_monthly_list'] = "Monatliche Liste";
$lang['chronology_weekly_list'] = "Wöchentlichen Liste";
$lang['Click here if your browser does not automatically forward you'] = "Klicken Sie hier, wenn Sie nicht durch ihren Browser weitergeleitet werden.";
$lang['comment date'] = "Datum des Kommentars";
$lang['Comment'] = "Kommentar";
$lang['Your comment has been registered'] = "Ihr Kommentar wurde gespeichert";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Anti-Spam-Sperre, bitte warte eine Weile, bis du den nächsten Kommentar abgibst";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Dein Kommentar wurde abgelehnt da er evtl. gesetzte Regeln verletzt";
$lang['An administrator must authorize your comment before it is visible.'] = "Ein Administrator muss deinen Beitrag freischalten bevor er sichtbar wird.";
$lang['This login is already used by another user'] = "Dieser Benutzername ist bereits";
$lang['Comments'] = "Kommentare";
$lang['Add a comment'] = "Kommentar hinzufügen";
$lang['created after %s (%s)'] = "erstellt nach dem %s (%s)";
$lang['created before %s (%s)'] = "erstellt vor dem %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "erstellt von %s (%s) und das %s (%s)";
$lang['created on %s'] = "erstellt am %s";
$lang['Customize'] = "Benutzerdaten / Layout";
$lang['Your Gallery Customization'] = "Anpassung des Seitentitels";
$lang['day'][0] = "Sonntag";
$lang['day'][1] = "Montag";
$lang['day'][2] = "Dienstag";
$lang['day'][3] = "Mittwoch";
$lang['day'][4] = "Donnerstag";
$lang['day'][5] = "Freitag";
$lang['day'][6] = "Samstag";
$lang['Default'] = "Standardmäßig";
$lang['delete this image from your favorites'] = "dieses Bild löschen Favoriten";
$lang['Delete'] = "Löschen";
$lang['descending'] = "absteigend";
$lang['download'] = "herunterladen";
$lang['download this file'] = "Download dieser Datei";
$lang['edit'] = "bearbeiten";
$lang['wrong date'] = "Datum falsch";
$lang['excluded'] = "ausgeschlossen";
$lang['My favorites'] = "Meine Favoriten";
$lang['display my favorites pictures'] = "meine Lieblingsbilder";
$lang['Favorites'] = "Favoriten";
$lang['First'] = "Erste";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "Die Galerie ist gesperrt wegen Wartungsarbeiten. Bitte besuchen Sie uns später wieder.";
$lang['Page generated in'] = "Seite erstellt in";
$lang['guest'] = "Besucher";
$lang['Hello'] = "Hallo";
$lang['available for administrators only'] = "nur für Administratoren";
$lang['shows images at the root of this category'] = "zeigt die Bilder an der Wurzel dieser Kategorie";
$lang['See last users comments'] = "Zeige die letzten Kommentare Benutzer";
$lang['customize the appareance of the gallery'] = "das Aussehen der Galerie";
$lang['search'] = "Suche";
$lang['Home'] = "Startseite";
$lang['Identification'] = "Identifikation";
$lang['in this category'] = "in dieser Kategorie";
$lang['in %d sub-category'] = "in %d Unterkategorie";
$lang['in %d sub-categories'] = "in %d Unterkategorien";
$lang['included'] = "enthalten";
$lang['Invalid password!'] = "Passwort ungültig!";
$lang['Language'] = "Sprache";
$lang['last %d days'] = "%d lezte Tage";
$lang['Last'] = "Letzte Seite";
$lang['Logout'] = "Abmelden";
$lang['E-mail address'] = "E-Mail-Adresse";
$lang['obligatory'] = "obligatorisch";
$lang['Maximum height of the pictures'] = "Maximale Höhe der Bilder";
$lang['Maximum height must be a number superior to 50'] = "Die maximale Höhe der Bilder muss mehr als 50";
$lang['Maximum width of the pictures'] = "Maximale Breite der Bilder";
$lang['Maximum width must be a number superior to 50'] = "Die Breite der Bilder muss mehr als 50";
$lang['display a calendar by creation date'] = "zeige einen Kalender nach Erstellungsdatum";
$lang['display all elements in all sub-categories'] = "Zeige alle Bilder inclusive der Unterkategorien";
$lang['return to normal view mode'] = "Zurück zur normalen Ansicht";
$lang['display a calendar by posted date'] = "zeige einen Kalender nach Einstellungsdatum";
$lang['month'][10] = "Oktober";
$lang['month'][11] = "November";
$lang['month'][12] = "Dezember";
$lang['month'][1] = "Januar";
$lang['month'][2] = "Februar";
$lang['month'][3] = "März";
$lang['month'][4] = "April";
$lang['month'][5] = "Mai";
$lang['month'][6] = "Juni";
$lang['month'][7] = "Juli";
$lang['month'][8] = "August";
$lang['month'][9] = "September";
$lang['Most visited'] = "Am häufigsten gesehen";
$lang['display most visited pictures'] = "zeigt am meisten besuchte Bilder";
$lang['The number of images per row must be a not null scalar'] = "Die Anzahl der Bilder pro Reihe muss mindestens 1 sein";
$lang['Number of images per row'] = "Anzahl der Bilder pro Zeile";
$lang['The number of rows per page must be a not null scalar'] = "Die Anzahl der Zeilen pro Seite muss mindestens 1 sein";
$lang['Number of rows per page'] = "Anzahl der Zeilen pro Seite";
$lang['Unknown identifier'] = "Identifikatoren unbekannt";
$lang['New password'] = "Neues Passwort";
$lang['Rate this picture'] = "Bewerten Sie dieses Bild";
$lang['Next'] = "Vorwärts";
$lang['Home'] = "Startseite";
$lang['no rate'] = "noch keine Bewertung";
$lang['Elements posted within the last %d day.'] = "Es werden nur Elemente angezeigt, die innerhalb des letzten Tages hochgeladen wurden.";
$lang['Elements posted within the last %d days.'] = "Es werden nur Elemente angezeigt, die innerhalb der letzten %d Tage hochgeladen wurden.";
$lang['password updated'] = "Passwort aktualisiert";
$lang['Recent period must be a positive integer value'] = "Der Zeitraum der Neuheit muss eine positive ganze Zahl";
$lang['picture'] = "Bild";
$lang['Click on the picture to see it in high definition'] = "Klicken Sie auf das Bild für die Anzeige in High Definition";
$lang['Show file metadata'] = "Zeigen die Meta-Daten in der Datei";
$lang['Powered by'] = "Unterstützt von";
$lang['Preferences'] = "Einstellungen";
$lang['Previous'] = "Zurück";
$lang['Random pictures'] = "Zufallsbilder";
$lang['display a set of random pictures'] = "Anzeigen eines zufälligen Bilder";
$lang['Recent categories'] = "Neue Kategorien";
$lang['display recently updated categories'] = "Kategorien anzuzeigen, die kürzlich aktualisiert oder erstellt wurden";
$lang['Recent period'] = "Wieviele Tage sollen Bilder als \"neu\" markiert werden?";
$lang['Recent pictures'] = "Die neuesten Bilder";
$lang['display most recent pictures'] = "zeigt die neuesten Bilder";
$lang['Redirection...'] = "Umleitung ...";
$lang['Please, enter a login'] = "Bitte geben Sie einen Benutzernamen ein";
$lang['login mustn\'t end with a space character'] = "Benutzername darf nicht mit einem Leerzeichen enden";
$lang['login mustn\'t start with a space character'] = "Login dürfen nicht mit einem Leerzeichen anfangen";
$lang['this login is already used'] = "Diesen Benutzername ist bereits vergeben";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "E-Mail-Adresse muss in der Form xxx@yyy.eee (Beispiel: jack@altern.org)";
$lang['please enter your password again'] = "Bitte geben Sie erneut Ihr Passwort ein";
$lang['Auto login'] = "Auto-Login";
$lang['remove this tag from the list'] = "entfernen diesem Tag in der Liste";
$lang['representative'] = "representativ";
$lang['return to homepage'] = "Zurück zur Homepage";
$lang['Search for Author'] = "Suche nach Autor";
$lang['Search in Categories'] = "Suche in Kategorien";
$lang['Search by Date'] = "Suche nach Datum";
$lang['Date'] = "Datum";
$lang['End-Date'] = "Enddatum";
$lang['Kind of date'] = "Datumstyp";
$lang['Search for words'] = "Suche nach Wort";
$lang['Search for all terms'] = "Suche alle Wörter";
$lang['Search for any terms'] = "Wörter suchen";
$lang['Empty query. No criteria has been entered.'] = "Abfrage leer. Kein Kriterium zur Verfügung.";
$lang['Search Options'] = "Suchoptionen";
$lang['Search results'] = "Suchergebnisse";
$lang['Search in subcategories'] = "Suche in Unterkategorien";
$lang['Search'] = "Suche";
$lang['searched words : %s'] = "Suchbegriffe : %s";
$lang['Contact'] = "Kontakt";
$lang['set as category representative'] = "Als Vorschaubild dieser Kategorie";
$lang['Show number of comments'] = "Zeige die Anzahl der Kommentare";
$lang['Show number of hits'] = "Zeige die Anzahl der Bildaufrufe";
$lang['slideshow'] = "Diashow";
$lang['stop the slideshow'] = "Stop die Diashow";
$lang['Specials'] = "Erweitert";
$lang['SQL queries in'] = "SQL-Abfragen in";
$lang['display only recently posted images'] = "zeigt erst vor kurzem gebucht Bilder";
$lang['return to the display of all images'] = "Zurück zur Anzeige aller Elemente";
$lang['the beginning'] = "Beginn";
$lang['Interface theme'] = "Galerie-Layout";
$lang['Thumbnails'] = "Thumbnails";
$lang['Menu'] = "Menü";
$lang['A comment on your site'] = "Ein Kommentar auf der Website";
$lang['today'] = "heute";
$lang['Update your rating'] = "Aktualisieren Ihre Bewertung";
$lang['wrong filename'] = "ungültiger Verzeichnisname";
$lang['the filesize of the picture must not exceed :'] = "die Datei darf nicht größer sein als:";
$lang['the picture must be to the fileformat jpg, gif or png'] = "das Bild muss im Dateiformat JPG, GIF, oder PNG sein";
$lang['the height of the picture must not exceed :'] = "die maximale Bildhöhe darf nicht überschritten werden:";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Optional, aber empfohlen: Wählen Sie ein Miniaturbild, um zu";
$lang['the width of the picture must not exceed :'] = "die Breite des Bildes darf nicht überschreiten:";
$lang['Author'] = "Autor";
$lang['can\'t upload the picture on the server'] = "Das Bild kann nicht hochgeladen werden";
$lang['the username must be given'] = "Nutzername fehlt";
$lang['A picture\'s name already used'] = "Diese Datei existiert bereits";
$lang['You must choose a picture fileformat for the image'] = "das Format der Datei entspricht nicht dem Bild";
$lang['You can\'t upload pictures in this category'] = "in dieser Kategorie ist ein Upload nicht erlaubt";
$lang['Name of the picture'] = "Name des Bildes";
$lang['Upload a picture'] = "Ein Bild hochladen";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Bild erfolgreich hinzugefügt, ein Administrator wird ihr Bild überprüfen und freischalten";
$lang['Upload a picture'] = "Ein Bild hinzufügen";
$lang['useful when password forgotten'] = "nützlich, wenn Sie ihr Passwort vergessen";
$lang['Quick search'] = "Schnellsuche";
$lang['Connected user: %s'] = "Connected Benutzer : %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Browser: %s";
$lang['Author: %s'] = "Autor: %s";
$lang['Comment: %s'] = "Kommentar: %s";
$lang['Delete: %s'] = "Löschen: %s";
$lang['Validate: %s'] = "Validierung: %s";
$lang['Comment by %s'] = "Kommentar von %s";
$lang['User: %s'] = "Benutzer: %s";
$lang['Email: %s'] = "E-Mail: %s";
$lang['Admin: %s'] = "Verwaltung: %s";
$lang['Registration of %s'] = "Registrierung von %s";
$lang['Category: %s'] = "Kategorie: %s";
$lang['Picture name: %s'] = "Name des Bildes: %s";
$lang['Creation date: %s'] = "Erstellungsdatum: %d";
$lang['Waiting page: %s'] = "Seite warten: %s";
$lang['Picture uploaded by %s'] = "Bild hochgeladen von %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Status der Benutzer \"guest\" nicht entspricht, Verwendung des Standard. Bitte kontaktieren Sie den Webmaster.";
$lang['Administrator, webmaster and special user cannot use this method'] = "Administrator, Webmaster und spezieller Benutzer können nicht diese Methode verwenden";
$lang['a user use already this mail address'] = "Diese E-Mail-Adresse wird bereits verwendet";
$lang['Category results for'] = "Ergebnisse der Kategorien für";
$lang['Tag results for'] = "Ergebnisse der Tag für";
$lang['from %s to %s'] = "von %s bis %s";
$lang['Play of slideshow'] = "Start der Diashow";
$lang['Pause of slideshow'] = "Pause der Diashow";
$lang['Repeat the slideshow'] = "Wiederholen der Diashow";
$lang['Not repeat the slideshow'] = "Diashow nicht wiederholen";
$lang['Reduce diaporama speed'] = "Diashow langsamer anzeigen";
$lang['Accelerate diaporama speed'] = "Diashow schneller anzeigen";
$lang['Submit'] = "Bestätigen";
$lang['Yes'] = "Ja";
$lang['No'] = "Nein";
$lang['%d image'] = "%d Bild";
$lang['%d images'] = "%d Bilder";
$lang['%d image is also linked to current tags'] = "%d Element ist auch mit weiteren Tags markiert";
$lang['%d images are also linked to current tags'] = "%d Elemente sind auch mit weiteren Tags markiert";
$lang['See images linked to this tag only'] = "Zeige nur Bilder die mit diesem Tag markiert sind";
$lang['images posted during the last %d days'] = "Bilder hinzugefügt während der letzten %d Tage";
$lang['Choose an image'] = "Wählen Sie ein Bild";
$lang['Piwigo Help'] = "Hilfe Piwigo";
$lang['Rank'] = "Rang";
$lang['group by letters'] = "Gruppieren nach Buchstaben";
$lang['letters'] = "Buchstaben";
$lang['show tag cloud'] = "zeigen die Tag-Wolke";
$lang['cloud'] = "Wolke";
$lang['Reset to default values'] = "Zurücksetzen auf Standardwerte";
$lang['delete all images from your favorites'] = "delete all images from your favorites";
$lang['Sent by'] = "Sent by";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,59 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installation';
$lang['Initial_config'] = 'Basis-Konfiguration';
$lang['Default_lang'] = 'Standardsprache der Galerie';
$lang['step1_title'] = 'Konfiguration der Datenbank';
$lang['step2_title'] = 'Konfiguration des Administrator-Kontos';
$lang['Start_Install'] = 'Start der Installation';
$lang['reg_err_mail_address'] = 'Die E-Mail-Adresse muss in der Form xxx@yyy.eee (Beispiel: jack@altern.org)';
$lang['install_webmaster'] = 'Administrator';
$lang['install_webmaster_info'] = 'Benutzername des Administrators';
$lang['step1_confirmation'] = 'Die Parameter sind korrekt ausgefüllt';
$lang['step1_err_db'] = 'Die Verbindung zum Server ist OK, aber nicht die Verbindung zu dieser Datenbank';
$lang['step1_err_server'] = 'Es konnte keine Verbindung zum Datenbankserver aufgebaut werden';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'Benutzer';
$lang['step1_user_info'] = 'Benutzernamen für die MySQL Datenbank';
$lang['step1_pass'] = 'Passwort';
$lang['step1_pass_info'] = 'das von Ihrem Hosting-Provider';
$lang['step1_database'] = 'Name der Datenbank';
$lang['step1_database_info'] = 'Passwort für die MySQL Datenbank';
$lang['step1_prefix'] = 'Vorwahl Tabellen';
$lang['step1_prefix_info'] = 'die Namen der Tabellen mit diesem Pr&auml;fix (erm&ouml;glicht eine bessere Verwaltung der Datenbank)';
$lang['step2_err_login1'] = 'gib bitte einen Benutzernamen für den Webmaster an';
$lang['step2_err_login3'] = 'der Benutzername des Webmasters darf nicht die Zeichen \' und " enthalten';
$lang['step2_err_pass'] = 'Bitte w&auml;hlen Sie ein Passwort';
$lang['install_end_title'] = 'Installation abgeschlossen';
$lang['step2_pwd'] = 'Passwort';
$lang['step2_pwd_info'] = 'Administratorpasswort';
$lang['step2_pwd_conf'] = 'Passwort [Best&auml;tigung]';
$lang['step2_pwd_conf_info'] = 'Wiederholen Sie das eingegebene Passwort';
$lang['step1_err_copy'] = 'Kopieren Sie den rosa Text ohne die Bindestriche und fügen Sie ihn in die Datei "include / config_database.inc.php" auf dem Webserver ein (Warnung: die Datei "config_database.inc.php" darf nur die rosa Zeichen enthalten, nicht mehr und nicht weniger)';
$lang['install_help'] = 'Brauchen Sie Hilfe? Stellen Sie Ihre Frage auf der <a href="%s"> Forum Piwigo </a>.';
$lang['install_end_message'] = 'Die Konfiguration der Piwigo abgeschlossen ist, hier ist der n&auml;chste Schritt<br><br>
* Gehen Sie zum Anmelden auf die Startseite: [ <a href="./identification.php">Identifizierung</a> ] und verwenden Sie die Login / Passwort für Webmaster<br>
* diesem Login erm&ouml;glicht Ihnen den Zugang zu den Verwaltungs-Panel und der Bilder- und Benutzerverwaltung.';
$lang['conf_mail_webmaster'] = 'Webmaster Mail-Adresse';
$lang['conf_mail_webmaster_info'] = 'Kontakt E-Mailadresse (nur für angemeldete Benutzer sichtbar)';
$lang['PHP 5 is required'] = 'PHP 5 ist erforderlich';
$lang['It appears your webhost is currently running PHP %s.'] = 'Warscheinlich läuft auf ihrem Webhost die PHP-Version %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo wird versuchen ihre Konfiguration auf PHP 5 zu schalten durch die Erstellung oder Änderung einer .htaccess-Datei.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Hinweis: Sie können Ihre Konfiguration manuel ändern und die Piwigo danach neu starten.';
$lang['Try to configure PHP 5'] = 'Versuche PHP 5 zu konfigurieren';
$lang['Sorry!'] = 'Entschuldigung!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo ist nicht in der Lage PHP 5 zu konfigurieren.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "Sie können Kontakt zu ihrem Hosting-Provider aufnehmen und um Unterstützung bitten zur Umstellung auf PHP 5.";
$lang['Hope to see you back soon.'] = 'Wir hoffen, Sie sind bald wieder zurück.';
$lang['step1_err_copy_2'] = 'Der nächste Schritt der Installation ist nun möglich';
$lang['step1_err_copy_next'] = 'nächster Schritt';
$lang['Installation'] = "Installation";
$lang['Basic configuration'] = "Basis-Konfiguration";
$lang['Default gallery language'] = "Standardsprache der Galerie";
$lang['Database configuration'] = "Konfiguration der Datenbank";
$lang['Admin configuration'] = "Konfiguration des Administrator-Kontos";
$lang['Start Install'] = "Start der Installation";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "Die E-Mail-Adresse muss in der Form xxx@yyy.eee (Beispiel: jack@altern.org)";
$lang['Webmaster login'] = "Administrator";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "Benutzername des Administrators";
$lang['Parameters are correct'] = "Die Parameter sind korrekt ausgefüllt";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "Die Verbindung zum Server ist OK, aber nicht die Verbindung zu dieser Datenbank";
$lang['Can\'t connect to server'] = "Es konnte keine Verbindung zum Datenbankserver aufgebaut werden";
$lang['The next step of the installation is now possible'] = "Der nächste Schritt der Installation ist nun möglich";
$lang['next step'] = "nächster Schritt";
$lang['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)'] = "Kopieren Sie den rosa Text ohne die Bindestriche und fügen Sie ihn in die Datei \"include / config_database.inc.php\" auf dem Webserver ein (Warnung: die Datei \"config_database.inc.php\" darf nur die rosa Zeichen enthalten, nicht mehr und nicht weniger)";
$lang['Database type'] = "Database type";
$lang['The type of database your piwigo data will be store in'] = "The type of database your piwigo data will be store in";
$lang['Host'] = "Host";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "Benutzer";
$lang['user login given by your host provider'] = "Benutzernamen für die MySQL Datenbank";
$lang['Password'] = "Passwort";
$lang['user password given by your host provider'] = "das von Ihrem Hosting-Provider";
$lang['Database name'] = "Name der Datenbank";
$lang['also given by your host provider'] = "Passwort für die MySQL Datenbank";
$lang['Database table prefix'] = "Vorwahl Tabellen";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "die Namen der Tabellen mit diesem Pr&auml;fix (erm&ouml;glicht eine bessere Verwaltung der Datenbank)";
$lang['enter a login for webmaster'] = "gib bitte einen Benutzernamen für den Webmaster an";
$lang['webmaster login can\'t contain characters \' or "'] = "der Benutzername des Webmasters darf nicht die Zeichen ' und \" enthalten";
$lang['please enter your password again'] = "Bitte w&auml;hlen Sie ein Passwort";
$lang['Installation finished'] = "Installation abgeschlossen";
$lang['Webmaster password'] = "Passwort";
$lang['Keep it confidential, it enables you to access administration panel'] = "Administratorpasswort";
$lang['Password [confirm]'] = "Passwort [Best&auml;tigung]";
$lang['verification'] = "Wiederholen Sie das eingegebene Passwort";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Brauchen Sie Hilfe? Stellen Sie Ihre Frage auf der <a href=\"%s\"> Forum Piwigo </a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "Die Konfiguration der Piwigo abgeschlossen ist, hier ist der n&auml;chste Schritt<br><br>
* Gehen Sie zum Anmelden auf die Startseite: [ <a href=\"./identification.php\">Identifizierung</a> ] und verwenden Sie die Login / Passwort für Webmaster<br>
* diesem Login erm&ouml;glicht Ihnen den Zugang zu den Verwaltungs-Panel und der Bilder- und Benutzerverwaltung.";
$lang['Webmaster mail address'] = "Webmaster Mail-Adresse";
$lang['Visitors will be able to contact site administrator with this mail'] = "Kontakt E-Mailadresse (nur für angemeldete Benutzer sichtbar)";
$lang['PHP 5 is required'] = "PHP 5 ist erforderlich";
$lang['It appears your webhost is currently running PHP %s.'] = "Warscheinlich läuft auf ihrem Webhost die PHP-Version %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo wird versuchen ihre Konfiguration auf PHP 5 zu schalten durch die Erstellung oder Änderung einer .htaccess-Datei.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Hinweis: Sie können Ihre Konfiguration manuel ändern und die Piwigo danach neu starten.";
$lang['Try to configure PHP 5'] = "Versuche PHP 5 zu konfigurieren";
$lang['Sorry!'] = "Entschuldigung!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo ist nicht in der Lage PHP 5 zu konfigurieren.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "Sie können Kontakt zu ihrem Hosting-Provider aufnehmen und um Unterstützung bitten zur Umstellung auf PHP 5.";
$lang['Hope to see you back soon.'] = "Wir hoffen, Sie sind bald wieder zurück.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,24 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Upgrade';
$lang['introduction message'] = 'Diese Seite schlägt vor aktualisieren Ihre Datenbank von Ihre alte Version von Piwigo auf die aktuelle Version.
Der Upgrade-Assistent denkt Sie derzeit ein <strong>Freigabe %s</strong> (oder gleichwertig).';
$lang['Upgrade from %s to %s'] = 'Upgrade von Version %s bis %s';
$lang['Statistics'] = 'Statistik';
$lang['total upgrade time'] = 'insgesamt Upgrade-Zeit';
$lang['total SQL time'] = 'insgesamt SQL-Zeit';
$lang['SQL queries'] = 'SQL-Abfragen';
$lang['Upgrade informations'] = 'Upgrade-Informationen';
$lang['perform a maintenance check'] = 'Führen Sie einen Wartungs-Check am [Administration> Specials> Wartung], wenn Sie auf ein Problem stoßen';
$lang['deactivated plugins'] = 'Als Vorsichtsmaßnahme folgenden Plugins wurden deaktiviert. Sie müssen prüfen, ob Plugins aktualisieren, bevor sie reactiving:';
$lang['upgrade login message'] = 'Nur Administrator können Upgrade ausführen : Bitte melden Sie sich an unter.';
$lang['You do not have access rights to run upgrade'] = 'Sie haben nicht das Recht auf Zugang zum Upgrade ausführen';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'In <i>include/config_database.inc.php</i>, vor <b>?></b>, wird Folgendes eingefügt:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'Alle Unter-Kategorien von privaten Gruppen wirden privaten';
$lang['user permissions and group permissions have been erased'] = 'Benutzer und Gruppen Berechtigungen wurden gelöscht';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Nur Miniaturansichten Präfix und Webmaster Mail-Adresse gespeichert wurden aus früheren Konfiguration';
$lang['Upgrade'] = "Upgrade";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "Diese Seite schlägt vor aktualisieren Ihre Datenbank von Ihre alte Version von Piwigo auf die aktuelle Version.
Der Upgrade-Assistent denkt Sie derzeit ein <strong>Freigabe %s</strong> (oder gleichwertig).";
$lang['Upgrade from version %s to %s'] = "Upgrade von Version %s bis %s";
$lang['Statistics'] = "Statistik";
$lang['total upgrade time'] = "insgesamt Upgrade-Zeit";
$lang['total SQL time'] = "insgesamt SQL-Zeit";
$lang['SQL queries'] = "SQL-Abfragen";
$lang['Upgrade informations'] = "Upgrade-Informationen";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Führen Sie einen Wartungs-Check am [Administration> Specials> Wartung], wenn Sie auf ein Problem stoßen";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "Als Vorsichtsmaßnahme folgenden Plugins wurden deaktiviert. Sie müssen prüfen, ob Plugins aktualisieren, bevor sie reactiving:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Nur Administrator können Upgrade ausführen : Bitte melden Sie sich an unter.";
$lang['You do not have access rights to run upgrade'] = "Sie haben nicht das Recht auf Zugang zum Upgrade ausführen";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "In <i>include/config_database.inc.php</i>, vor <b>?></b>, wird Folgendes eingefügt:";
$lang['All sub-categories of private categories become private'] = "Alle Unter-Kategorien von privaten Gruppen wirden privaten";
$lang['User permissions and group permissions have been erased'] = "Benutzer und Gruppen Berechtigungen wurden gelöscht";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Nur Miniaturansichten Präfix und Webmaster Mail-Adresse gespeichert wurden aus früheren Konfiguration";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,353 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'English';
$lang_info['country'] = 'Great Britain';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'en';
$lang_info['zero_plural'] = true;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (rated %d times, standard deviation = %.2f)';
$lang['%d Kb'] = '%d Kb';
$lang['%d category updated'] = '%d category updated';
$lang['%d categories updated'] = '%d categories updated';
$lang['%d comment to validate'] = '%d comment to validate';
$lang['%d comments to validate'] = '%d comments to validate';
$lang['%d new comment'] = '%d new comment';
$lang['%d new comments'] = '%d new comments';
$lang['%d comment'] = '%d comment';
$lang['%d comments'] = '%d comments';
$lang['%d hit'] = '%d hit';
$lang['%d hits'] = '%d hits';
$lang['%d new element'] = '%d new image';
$lang['%d new elements'] = '%d new images';
$lang['%d new user'] = '%d new user';
$lang['%d new users'] = '%d new users';
$lang['%d waiting element'] = '%d waiting element';
$lang['%d waiting elements'] = '%d waiting elements';
$lang['About'] = 'About';
$lang['All tags must match'] = 'All tags must match';
$lang['All tags'] = 'All tags';
$lang['Any tag'] = 'Any tag';
$lang['At least one listed rule must be satisfied.'] = 'At least one listed rule must be satisfied.';
$lang['At least one tag must match'] = 'At least one tag must match';
$lang['Author'] = 'Author';
$lang['Average rate'] = 'Average rate';
$lang['Categories'] = 'Categories';
$lang['Category'] = 'Category';
$lang['Close this window'] = 'Close this window';
$lang['Complete RSS feed'] = 'Complete RSS feed (images, comments)';
$lang['Confirm Password'] = 'Confirm Password';
$lang['Connection settings'] = 'Connection settings';
$lang['Connection'] = 'Login';
$lang['Contact webmaster'] = 'Contact webmaster';
$lang['Create a new account'] = 'Create a new account';
$lang['Created on'] = 'Created on';
$lang['Creation date'] = 'Creation date';
$lang['Current password is wrong'] = 'Current password is wrong';
$lang['Dimensions'] = 'Dimensions';
$lang['Display'] = 'Display';
$lang['Each listed rule must be satisfied.'] = 'Each listed rule must be satisfied.';
$lang['Email address is missing'] = 'Email address is missing';
$lang['Email address'] = 'Email address';
$lang['Enter your personnal informations'] = 'Enter your personnal informations';
$lang['Error sending email'] = 'Error sending email';
$lang['File name'] = 'File name';
$lang['File'] = 'File';
$lang['Filesize'] = 'Filesize';
$lang['Filter and display'] = 'Filter and display';
$lang['Filter'] = 'Filter';
$lang['Forgot your password?'] = 'Forgot your password?';
$lang['Go through the gallery as a visitor'] = 'Go through the gallery as a visitor';
$lang['Help'] = 'Help';
$lang['Identification'] = 'Identification';
$lang['Image only RSS feed'] = 'Image only RSS feed';
$lang['Keyword'] = 'Keyword';
$lang['Links'] = 'Links';
$lang['Mail address'] = 'Mail address';
$lang['N/A'] = 'N/A';
$lang['New on %s'] = 'New on %s';
$lang['New password confirmation does not correspond'] = 'New password confirmation does not correspond';
$lang['New password sent by email'] = 'New password sent by email';
$lang['No email address'] = 'No email address';
$lang['No user matches this email address'] = 'No classic user matches this email address';
$lang['Notification'] = 'Notification';
$lang['Number of items'] = 'Number of items';
$lang['Original dimensions'] = 'Original dimensions';
$lang['Password forgotten'] = 'Password forgotten';
$lang['Password'] = 'Password';
$lang['Post date'] = 'Post date';
$lang['Posted on'] = 'Posted on';
$lang['Profile'] = 'Profile';
$lang['Quick connect'] = 'Quick connect';
$lang['RSS feed'] = 'RSS feed';
$lang['Rate'] = 'Rate';
$lang['Register'] = 'Register';
$lang['Registration'] = 'Registration';
$lang['Related tags'] = 'Related tags';
$lang['Reset'] = 'Reset';
$lang['Retrieve password'] = 'Retrieve password';
$lang['Search rules'] = 'Search rules';
$lang['Search tags'] = 'Search tags';
$lang['Search'] = 'Search';
$lang['See available tags'] = 'See available tags';
$lang['Send new password'] = 'Send new password';
$lang['Since'] = 'Since';
$lang['Sort by'] = 'Sort by';
$lang['Sort order'] = 'Sort order';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.';
$lang['Unknown feed identifier'] = 'Unknown feed identifier';
$lang['User comments'] = 'User comments';
$lang['Username'] = 'Username';
$lang['Visits'] = 'Visits';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Week %d';
$lang['about_page_title'] = 'About Piwigo';
$lang['access_forbiden'] = 'You are not authorized to access the requested page';
$lang['add to caddie'] = 'add to caddie';
$lang['add_favorites_hint'] = 'add this image to your favorites';
$lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Adviser mode enabled';
$lang['all'] = 'all';
$lang['ascending'] = 'ascending';
$lang['author(s) : %s'] = 'author(s) : %s';
$lang['auto_expand'] = 'Expand all categories';
$lang['became available after %s (%s)'] = 'posted after %s (%s)';
$lang['became available before %s (%s)'] = 'posted before %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'posted between %s (%s) and %s (%s)';
$lang['became available on %s'] = 'posted on %s';
$lang['best_rated_cat'] = 'Best rated';
$lang['best_rated_cat_hint'] = 'display best rated items';
$lang['caddie'] = 'caddie';
$lang['calendar'] = 'Calendar';
$lang['calendar_any'] = 'All';
$lang['calendar_hint'] = 'display each day with pictures, month per month';
$lang['calendar_picture_hint'] = 'display pictures added on ';
$lang['calendar_view'] = 'View';
$lang['chronology_monthly_calendar'] = 'Monthly calendar';
$lang['chronology_monthly_list'] = 'Monthly list';
$lang['chronology_weekly_list'] = 'Weekly list';
$lang['click_to_redirect'] = 'Click here if your browser does not automatically forward you';
$lang['comment date'] = 'comment date';
$lang['comment'] = 'Comment';
$lang['comment_added'] = 'Your comment has been registered';
$lang['comment_anti-flood'] = 'Anti-flood system : please wait for a moment before trying to post another comment';
$lang['comment_not_added'] = 'Your comment has NOT been registered because it did not pass the validation rules';
$lang['comment_to_validate'] = 'An administrator must authorize your comment before it is visible.';
$lang['comment_user_exists'] = 'This login is already used by another user';
$lang['comments'] = 'Comments';
$lang['comments_add'] = 'Add a comment';
$lang['created after %s (%s)'] = 'created after %s (%s)';
$lang['created before %s (%s)'] = 'created before %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'created between %s (%s) and %s (%s)';
$lang['created on %s'] = 'created on %s';
$lang['customize'] = 'Customize';
$lang['customize_page_title'] = 'Your Gallery Customization ';
$lang['day'][0] = 'Sunday';
$lang['day'][1] = 'Monday';
$lang['day'][2] = 'Tuesday';
$lang['day'][3] = 'Wednesday';
$lang['day'][4] = 'Thursday';
$lang['day'][5] = 'Friday';
$lang['day'][6] = 'Saturday';
$lang['default_sort'] = 'Default';
$lang['del_favorites_hint'] = 'delete this image from your favorites';
$lang['delete'] = 'Delete';
$lang['descending'] = 'descending';
$lang['download'] = 'download';
$lang['download_hint'] = 'download this file';
$lang['edit'] = 'edit';
$lang['err_date'] = 'wrong date';
$lang['excluded'] = 'excluded';
$lang['favorite_cat'] = 'My favorites';
$lang['favorite_cat_hint'] = 'display my favorites pictures';
$lang['favorites'] = 'Favorites';
$lang['first_page'] = 'First';
$lang['gallery_locked_message'] = 'The gallery is locked for maintenance. Please, come back later.';
$lang['generation_time'] = 'Page generated in';
$lang['guest'] = 'guest';
$lang['hello'] = 'Hello';
$lang['hint_admin'] = 'available for administrators only';
$lang['hint_category'] = 'shows images at the root of this category';
$lang['hint_comments'] = 'See last users comments';
$lang['hint_customize'] = 'customize the appareance of the gallery';
$lang['hint_search'] = 'search';
$lang['home'] = 'Home';
$lang['identification'] = 'Identification';
$lang['images_available_cpl'] = 'in this category';
$lang['images_available_cat'] = 'in %d sub-category';
$lang['images_available_cats'] = 'in %d sub-categories';
$lang['included'] = 'included';
$lang['invalid_pwd'] = 'Invalid password!';
$lang['language']='Language';
$lang['last %d days'] = 'last %d days';
$lang['last_page'] = 'Last';
$lang['logout'] = 'Logout';
$lang['mail_address'] = 'E-mail address';
$lang['mandatory'] = 'obligatory';
$lang['maxheight'] = 'Maximum height of the pictures';
$lang['maxheight_error'] = 'Maximum height must be a number superior to 50';
$lang['maxwidth'] = 'Maximum width of the pictures';
$lang['maxwidth_error'] = 'Maximum width must be a number superior to 50';
$lang['mode_created_hint'] = 'display a calendar by creation date';
$lang['mode_flat_hint'] = 'display all elements in all sub-categories';
$lang['mode_normal_hint'] = 'return to normal view mode';
$lang['mode_posted_hint'] = 'display a calendar by posted date';
$lang['month'][10] = 'October';
$lang['month'][11] = 'November';
$lang['month'][12] = 'December';
$lang['month'][1] = 'January';
$lang['month'][2] = 'February';
$lang['month'][3] = 'March';
$lang['month'][4] = 'April';
$lang['month'][5] = 'May';
$lang['month'][6] = 'June';
$lang['month'][7] = 'July';
$lang['month'][8] = 'August';
$lang['month'][9] = 'September';
$lang['most_visited_cat'] = 'Most visited';
$lang['most_visited_cat_hint'] = 'display most visited pictures';
$lang['nb_image_line_error'] = 'The number of images per row must be a not null scalar';
$lang['nb_image_per_row'] = 'Number of images per row';
$lang['nb_line_page_error'] = 'The number of rows per page must be a not null scalar';
$lang['nb_row_per_page'] = 'Number of rows per page';
$lang['nbm_unknown_identifier'] = 'Unknown identifier';
$lang['new_password'] = 'New password';
$lang['new_rate'] = 'Rate this picture';
$lang['next_page'] = 'Next';
$lang['no_category'] = 'Home';
$lang['no_rate'] = 'no rate';
$lang['note_filter_day'] = 'Elements posted within the last %d day.';
$lang['note_filter_days'] = 'Elements posted within the last %d days.';
$lang['password updated'] = 'password updated';
$lang['periods_error'] = 'Recent period must be a positive integer value';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'picture';
$lang['picture_high'] = 'Click on the picture to see it in high definition';
$lang['picture_show_metadata'] = 'Show file metadata';
$lang['powered_by'] = 'Powered by';
$lang['preferences'] = 'Preferences';
$lang['previous_page'] = 'Previous';
$lang['random_cat'] = 'Random pictures';
$lang['random_cat_hint'] = 'display a set of random pictures';
$lang['recent_cats_cat'] = 'Recent categories';
$lang['recent_cats_cat_hint'] = 'display recently updated categories';
$lang['recent_period'] = 'Recent period';
$lang['recent_pics_cat'] = 'Recent pictures';
$lang['recent_pics_cat_hint'] = 'display most recent pictures';
$lang['redirect_msg'] = 'Redirection...';
$lang['reg_err_login1'] = 'Please, enter a login';
$lang['reg_err_login2'] = 'login mustn\'t end with a space character';
$lang['reg_err_login3'] = 'login mustn\'t start with a space character';
$lang['reg_err_login5'] = 'this login is already used';
$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
$lang['reg_err_pass'] = 'please enter your password again';
$lang['remember_me'] = 'Auto login';
$lang['remove this tag'] = 'remove this tag from the list';
$lang['representative'] = 'representative';
$lang['return to homepage'] = 'return to homepage';
$lang['search_author'] = 'Search for Author';
$lang['search_categories'] = 'Search in Categories';
$lang['search_date'] = 'Search by Date';
$lang['search_date_from'] = 'Date';
$lang['search_date_to'] = 'End-Date';
$lang['search_date_type'] = 'Kind of date';
$lang['search_keywords'] = 'Search for words';
$lang['search_mode_and'] = 'Search for all terms ';
$lang['search_mode_or'] = 'Search for any terms';
$lang['search_one_clause_at_least'] = 'Empty query. No criteria has been entered.';
$lang['search_options'] = 'Search Options';
$lang['search_result'] = 'Search results';
$lang['search_subcats_included'] = 'Search in subcategories';
$lang['search_title'] = 'Search';
$lang['searched words : %s'] = 'searched words : %s';
$lang['send_mail'] = 'Contact';
$lang['set as category representative'] = 'set as category representative';
$lang['show_nb_comments'] = 'Show number of comments';
$lang['show_nb_hits'] = 'Show number of hits';
$lang['slideshow'] = 'slideshow';
$lang['slideshow_stop'] = 'stop the slideshow';
$lang['special_categories'] = 'Specials';
$lang['sql_queries_in'] = 'SQL queries in';
$lang['start_filter_hint'] = 'display only recently posted images';
$lang['stop_filter_hint'] = 'return to the display of all images';
$lang['the beginning'] = 'the beginning';
$lang['theme'] = 'Interface theme';
$lang['thumbnails'] = 'Thumbnails';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'A comment on your site';
$lang['today'] = 'today';
$lang['update_rate'] = 'Update your rating';
$lang['update_wrong_dirname'] = 'wrong filename';
$lang['upload_advise_filesize'] = 'the filesize of the picture must not exceed : ';
$lang['upload_advise_filetype'] = 'the picture must be to the fileformat jpg, gif or png';
$lang['upload_advise_height'] = 'the height of the picture must not exceed : ';
$lang['upload_advise_thumbnail'] = 'Optional, but recommended : choose a thumbnail to associate to ';
$lang['upload_advise_width'] = 'the width of the picture must not exceed : ';
$lang['upload_author'] = 'Author';
$lang['upload_cannot_upload'] = 'can\'t upload the picture on the server';
$lang['upload_err_username'] = 'the username must be given';
$lang['upload_file_exists'] = 'A picture\'s name already used';
$lang['upload_filenotfound'] = 'You must choose a picture fileformat for the image';
$lang['upload_forbidden'] = 'You can\'t upload pictures in this category';
$lang['upload_name'] = 'Name of the picture';
$lang['upload_picture'] = 'Upload a picture';
$lang['upload_successful'] = 'Picture uploaded with success, an administrator will validate it as soon as possible';
$lang['upload_title'] = 'Upload a picture';
$lang['useful when password forgotten'] = 'useful when password forgotten';
$lang['qsearch'] = 'Quick search';
$lang['Connected user: %s'] = 'Connected user: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Browser: %s';
$lang['Author: %s'] = 'Author: %s';
$lang['Comment: %s'] = 'Comment: %s';
$lang['Delete: %s'] = 'Delete: %s';
$lang['Validate: %s'] = 'Validate: %s';
$lang['Comment by %s'] = 'Comment by %s';
$lang['User: %s'] = 'User: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Admin: %s';
$lang['Registration of %s'] = 'Registration of %s';
$lang['Category: %s'] = 'Category: %s';
$lang['Picture name: %s'] = 'Picture name: %s';
$lang['Creation date: %s'] = 'Creation date: %s';
$lang['Waiting page: %s'] = 'Waiting page: %s';
$lang['Picture uploaded by %s'] = 'Picture uploaded by %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Bad status for user "guest", using default status. Please notify the webmaster.';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrator, webmaster and special user cannot use this method';
$lang['reg_err_mail_address_dbl'] = 'a user use already this mail address';
$lang['Category results for'] = 'Category results for';
$lang['Tag results for'] = 'Tag results for';
$lang['from %s to %s'] = 'from %s to %s';
$lang['start_play'] = 'Play of slideshow';
$lang['stop_play'] = 'Pause of slideshow';
$lang['start_repeat'] = 'Repeat the slideshow';
$lang['stop_repeat'] = 'Not repeat the slideshow';
$lang['inc_period'] = 'Reduce diaporama speed';
$lang['dec_period'] = 'Accelerate diaporama speed';
$lang['Submit'] = 'Submit';
$lang['Yes'] = 'Yes';
$lang['No'] = 'No';
$lang['%d element']='%d image';
$lang['%d elements']='%d images';
$lang['%d element are also linked to current tags'] = '%d image is also linked to current tags';
$lang['%d elements are also linked to current tags'] = '%d images are also linked to current tags';
$lang['See elements linked to this tag only'] = 'See images linked to this tag only';
$lang['elements posted during the last %d days'] = 'images posted during the last %d days';
$lang['Choose an image'] = 'Choose an image';
$lang['Piwigo Help'] = 'Piwigo Help';
$lang['Rank'] = 'Rank';
$lang['group by letters'] = 'group by letters';
$lang['letters'] = 'letters';
$lang['show tag cloud'] = 'show tag cloud';
$lang['cloud'] = 'cloud';
$lang['Reset_To_Default'] = 'Reset to default values';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
$lang['del_all_favorites_hint'] = 'delete all images from your favorites';
$lang['Sent by'] = 'Sent by';
$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.';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (rated %d times, standard deviation = %.2f)";
$lang['%d Kb'] = "%d Kb";
$lang['%d category updated'] = "%d category updated";
$lang['%d categories updated'] = "%d categories updated";
$lang['%d comment to validate'] = "%d comment to validate";
$lang['%d comments to validate'] = "%d comments to validate";
$lang['%d new comment'] = "%d new comment";
$lang['%d new comments'] = "%d new comments";
$lang['%d comment'] = "%d comment";
$lang['%d comments'] = "%d comments";
$lang['%d hit'] = "%d hit";
$lang['%d hits'] = "%d hits";
$lang['%d new image'] = "%d new image";
$lang['%d new images'] = "%d new images";
$lang['%d new user'] = "%d new user";
$lang['%d new users'] = "%d new users";
$lang['%d waiting element'] = "%d waiting element";
$lang['%d waiting elements'] = "%d waiting elements";
$lang['About'] = "About";
$lang['All tags must match'] = "All tags must match";
$lang['All tags'] = "All tags";
$lang['Any tag'] = "Any tag";
$lang['At least one listed rule must be satisfied.'] = "At least one listed rule must be satisfied.";
$lang['At least one tag must match'] = "At least one tag must match";
$lang['Author'] = "Author";
$lang['Average rate'] = "Average rate";
$lang['Categories'] = "Categories";
$lang['Category'] = "Category";
$lang['Close this window'] = "Close this window";
$lang['Complete RSS feed (images, comments)'] = "Complete RSS feed (images, comments)";
$lang['Confirm Password'] = "Confirm Password";
$lang['Connection settings'] = "Connection settings";
$lang['Login'] = "Login";
$lang['Contact webmaster'] = "Contact webmaster";
$lang['Create a new account'] = "Create a new account";
$lang['Created on'] = "Created on";
$lang['Creation date'] = "Creation date";
$lang['Current password is wrong'] = "Current password is wrong";
$lang['Dimensions'] = "Dimensions";
$lang['Display'] = "Display";
$lang['Each listed rule must be satisfied.'] = "Each listed rule must be satisfied.";
$lang['Email address is missing'] = "Email address is missing";
$lang['Email address'] = "Email address";
$lang['Enter your personnal informations'] = "Enter your personnal informations";
$lang['Error sending email'] = "Error sending email";
$lang['File name'] = "File name";
$lang['File'] = "File";
$lang['Filesize'] = "Filesize";
$lang['Filter and display'] = "Filter and display";
$lang['Filter'] = "Filter";
$lang['Forgot your password?'] = "Forgot your password?";
$lang['Go through the gallery as a visitor'] = "Go through the gallery as a visitor";
$lang['Help'] = "Help";
$lang['Identification'] = "Identification";
$lang['Image only RSS feed'] = "Image only RSS feed";
$lang['Keyword'] = "Keyword";
$lang['Links'] = "Links";
$lang['Mail address'] = "Mail address";
$lang['N/A'] = "N/A";
$lang['New on %s'] = "New on %s";
$lang['New password confirmation does not correspond'] = "New password confirmation does not correspond";
$lang['New password sent by email'] = "New password sent by email";
$lang['No email address'] = "No email address";
$lang['No classic user matches this email address'] = "No classic user matches this email address";
$lang['Notification'] = "Notification";
$lang['Number of items'] = "Number of items";
$lang['Original dimensions'] = "Original dimensions";
$lang['Password forgotten'] = "Password forgotten";
$lang['Password'] = "Password";
$lang['Post date'] = "Post date";
$lang['Posted on'] = "Posted on";
$lang['Profile'] = "Profile";
$lang['Quick connect'] = "Quick connect";
$lang['RSS feed'] = "RSS feed";
$lang['Rate'] = "Rate";
$lang['Register'] = "Register";
$lang['Registration'] = "Registration";
$lang['Related tags'] = "Related tags";
$lang['Reset'] = "Reset";
$lang['Retrieve password'] = "Retrieve password";
$lang['Search rules'] = "Search rules";
$lang['Search tags'] = "Search tags";
$lang['Search'] = "Search";
$lang['See available tags'] = "See available tags";
$lang['Send new password'] = "Send new password";
$lang['Since'] = "Since";
$lang['Sort by'] = "Sort by";
$lang['Sort order'] = "Sort order";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.";
$lang['Unknown feed identifier'] = "Unknown feed identifier";
$lang['User comments'] = "User comments";
$lang['Username'] = "Username";
$lang['Visits'] = "Visits";
$lang['Webmaster'] = "Webmaster";
$lang['Week %d'] = "Week %d";
$lang['About Piwigo'] = "About Piwigo";
$lang['You are not authorized to access the requested page'] = "You are not authorized to access the requested page";
$lang['add to caddie'] = "add to caddie";
$lang['add this image to your favorites'] = "add this image to your favorites";
$lang['Administration'] = "Administration";
$lang['Adviser mode enabled'] = "Adviser mode enabled";
$lang['all'] = "all";
$lang['ascending'] = "ascending";
$lang['author(s) : %s'] = "author(s) : %s";
$lang['Expand all categories'] = "Expand all categories";
$lang['posted after %s (%s)'] = "posted after %s (%s)";
$lang['posted before %s (%s)'] = "posted before %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "posted between %s (%s) and %s (%s)";
$lang['posted on %s'] = "posted on %s";
$lang['Best rated'] = "Best rated";
$lang['display best rated items'] = "display best rated items";
$lang['caddie'] = "caddie";
$lang['Calendar'] = "Calendar";
$lang['All'] = "All";
$lang['display each day with pictures, month per month'] = "display each day with pictures, month per month";
$lang['display pictures added on'] = "display pictures added on";
$lang['View'] = "View";
$lang['chronology_monthly_calendar'] = "Monthly calendar";
$lang['chronology_monthly_list'] = "Monthly list";
$lang['chronology_weekly_list'] = "Weekly list";
$lang['Click here if your browser does not automatically forward you'] = "Click here if your browser does not automatically forward you";
$lang['comment date'] = "comment date";
$lang['Comment'] = "Comment";
$lang['Your comment has been registered'] = "Your comment has been registered";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Anti-flood system : please wait for a moment before trying to post another comment";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Your comment has NOT been registered because it did not pass the validation rules";
$lang['An administrator must authorize your comment before it is visible.'] = "An administrator must authorize your comment before it is visible.";
$lang['This login is already used by another user'] = "This login is already used by another user";
$lang['Comments'] = "Comments";
$lang['Add a comment'] = "Add a comment";
$lang['created after %s (%s)'] = "created after %s (%s)";
$lang['created before %s (%s)'] = "created before %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "created between %s (%s) and %s (%s)";
$lang['created on %s'] = "created on %s";
$lang['Customize'] = "Customize";
$lang['Your Gallery Customization'] = "Your Gallery Customization";
$lang['day'][0] = "Sunday";
$lang['day'][1] = "Monday";
$lang['day'][2] = "Tuesday";
$lang['day'][3] = "Wednesday";
$lang['day'][4] = "Thursday";
$lang['day'][5] = "Friday";
$lang['day'][6] = "Saturday";
$lang['Default'] = "Default";
$lang['delete this image from your favorites'] = "delete this image from your favorites";
$lang['Delete'] = "Delete";
$lang['descending'] = "descending";
$lang['download'] = "download";
$lang['download this file'] = "download this file";
$lang['edit'] = "edit";
$lang['wrong date'] = "wrong date";
$lang['excluded'] = "excluded";
$lang['My favorites'] = "My favorites";
$lang['display my favorites pictures'] = "display my favorites pictures";
$lang['Favorites'] = "Favorites";
$lang['First'] = "First";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "The gallery is locked for maintenance. Please, come back later.";
$lang['Page generated in'] = "Page generated in";
$lang['guest'] = "guest";
$lang['Hello'] = "Hello";
$lang['available for administrators only'] = "available for administrators only";
$lang['shows images at the root of this category'] = "shows images at the root of this category";
$lang['See last users comments'] = "See last users comments";
$lang['customize the appareance of the gallery'] = "customize the appareance of the gallery";
$lang['search'] = "search";
$lang['Home'] = "Home";
$lang['Identification'] = "Identification";
$lang['in this category'] = "in this category";
$lang['in %d sub-category'] = "in %d sub-category";
$lang['in %d sub-categories'] = "in %d sub-categories";
$lang['included'] = "included";
$lang['Invalid password!'] = "Invalid password!";
$lang['Language'] = "Language";
$lang['last %d days'] = "last %d days";
$lang['Last'] = "Last";
$lang['Logout'] = "Logout";
$lang['E-mail address'] = "E-mail address";
$lang['obligatory'] = "obligatory";
$lang['Maximum height of the pictures'] = "Maximum height of the pictures";
$lang['Maximum height must be a number superior to 50'] = "Maximum height must be a number superior to 50";
$lang['Maximum width of the pictures'] = "Maximum width of the pictures";
$lang['Maximum width must be a number superior to 50'] = "Maximum width must be a number superior to 50";
$lang['display a calendar by creation date'] = "display a calendar by creation date";
$lang['display all elements in all sub-categories'] = "display all elements in all sub-categories";
$lang['return to normal view mode'] = "return to normal view mode";
$lang['display a calendar by posted date'] = "display a calendar by posted date";
$lang['month'][10] = "October";
$lang['month'][11] = "November";
$lang['month'][12] = "December";
$lang['month'][1] = "January";
$lang['month'][2] = "February";
$lang['month'][3] = "March";
$lang['month'][4] = "April";
$lang['month'][5] = "May";
$lang['month'][6] = "June";
$lang['month'][7] = "July";
$lang['month'][8] = "August";
$lang['month'][9] = "September";
$lang['Most visited'] = "Most visited";
$lang['display most visited pictures'] = "display most visited pictures";
$lang['The number of images per row must be a not null scalar'] = "The number of images per row must be a not null scalar";
$lang['Number of images per row'] = "Number of images per row";
$lang['The number of rows per page must be a not null scalar'] = "The number of rows per page must be a not null scalar";
$lang['Number of rows per page'] = "Number of rows per page";
$lang['Unknown identifier'] = "Unknown identifier";
$lang['New password'] = "New password";
$lang['Rate this picture'] = "Rate this picture";
$lang['Next'] = "Next";
$lang['Home'] = "Home";
$lang['no rate'] = "no rate";
$lang['Elements posted within the last %d day.'] = "Elements posted within the last %d day.";
$lang['Elements posted within the last %d days.'] = "Elements posted within the last %d days.";
$lang['password updated'] = "password updated";
$lang['Recent period must be a positive integer value'] = "Recent period must be a positive integer value";
$lang['picture'] = "picture";
$lang['Click on the picture to see it in high definition'] = "Click on the picture to see it in high definition";
$lang['Show file metadata'] = "Show file metadata";
$lang['Powered by'] = "Powered by";
$lang['Preferences'] = "Preferences";
$lang['Previous'] = "Previous";
$lang['Random pictures'] = "Random pictures";
$lang['display a set of random pictures'] = "display a set of random pictures";
$lang['Recent categories'] = "Recent categories";
$lang['display recently updated categories'] = "display recently updated categories";
$lang['Recent period'] = "Recent period";
$lang['Recent pictures'] = "Recent pictures";
$lang['display most recent pictures'] = "display most recent pictures";
$lang['Redirection...'] = "Redirection...";
$lang['Please, enter a login'] = "Please, enter a login";
$lang['login mustn\'t end with a space character'] = "login mustn't end with a space character";
$lang['login mustn\'t start with a space character'] = "login mustn't start with a space character";
$lang['this login is already used'] = "this login is already used";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "mail address must be like xxx@yyy.eee (example : jack@altern.org)";
$lang['please enter your password again'] = "please enter your password again";
$lang['Auto login'] = "Auto login";
$lang['remove this tag from the list'] = "remove this tag from the list";
$lang['representative'] = "representative";
$lang['return to homepage'] = "return to homepage";
$lang['Search for Author'] = "Search for Author";
$lang['Search in Categories'] = "Search in Categories";
$lang['Search by Date'] = "Search by Date";
$lang['Date'] = "Date";
$lang['End-Date'] = "End-Date";
$lang['Kind of date'] = "Kind of date";
$lang['Search for words'] = "Search for words";
$lang['Search for all terms'] = "Search for all terms";
$lang['Search for any terms'] = "Search for any terms";
$lang['Empty query. No criteria has been entered.'] = "Empty query. No criteria has been entered.";
$lang['Search Options'] = "Search Options";
$lang['Search results'] = "Search results";
$lang['Search in subcategories'] = "Search in subcategories";
$lang['Search'] = "Search";
$lang['searched words : %s'] = "searched words : %s";
$lang['Contact'] = "Contact";
$lang['set as category representative'] = "set as category representative";
$lang['Show number of comments'] = "Show number of comments";
$lang['Show number of hits'] = "Show number of hits";
$lang['slideshow'] = "slideshow";
$lang['stop the slideshow'] = "stop the slideshow";
$lang['Specials'] = "Specials";
$lang['SQL queries in'] = "SQL queries in";
$lang['display only recently posted images'] = "display only recently posted images";
$lang['return to the display of all images'] = "return to the display of all images";
$lang['the beginning'] = "the beginning";
$lang['Interface theme'] = "Interface theme";
$lang['Thumbnails'] = "Thumbnails";
$lang['Menu'] = "Menu";
$lang['A comment on your site'] = "A comment on your site";
$lang['today'] = "today";
$lang['Update your rating'] = "Update your rating";
$lang['wrong filename'] = "wrong filename";
$lang['the filesize of the picture must not exceed :'] = "the filesize of the picture must not exceed :";
$lang['the picture must be to the fileformat jpg, gif or png'] = "the picture must be to the fileformat jpg, gif or png";
$lang['the height of the picture must not exceed :'] = "the height of the picture must not exceed :";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Optional, but recommended : choose a thumbnail to associate to";
$lang['the width of the picture must not exceed :'] = "the width of the picture must not exceed :";
$lang['Author'] = "Author";
$lang['can\'t upload the picture on the server'] = "can't upload the picture on the server";
$lang['the username must be given'] = "the username must be given";
$lang['A picture\'s name already used'] = "A picture's name already used";
$lang['You must choose a picture fileformat for the image'] = "You must choose a picture fileformat for the image";
$lang['You can\'t upload pictures in this category'] = "You can't upload pictures in this category";
$lang['Name of the picture'] = "Name of the picture";
$lang['Upload a picture'] = "Upload a picture";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Picture uploaded with success, an administrator will validate it as soon as possible";
$lang['Upload a picture'] = "Upload a picture";
$lang['useful when password forgotten'] = "useful when password forgotten";
$lang['Quick search'] = "Quick search";
$lang['Connected user: %s'] = "Connected user: %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Browser: %s";
$lang['Author: %s'] = "Author: %s";
$lang['Comment: %s'] = "Comment: %s";
$lang['Delete: %s'] = "Delete: %s";
$lang['Validate: %s'] = "Validate: %s";
$lang['Comment by %s'] = "Comment by %s";
$lang['User: %s'] = "User: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Admin: %s";
$lang['Registration of %s'] = "Registration of %s";
$lang['Category: %s'] = "Category: %s";
$lang['Picture name: %s'] = "Picture name: %s";
$lang['Creation date: %s'] = "Creation date: %s";
$lang['Waiting page: %s'] = "Waiting page: %s";
$lang['Picture uploaded by %s'] = "Picture uploaded by %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Bad status for user \"guest\", using default status. Please notify the webmaster.";
$lang['Administrator, webmaster and special user cannot use this method'] = "Administrator, webmaster and special user cannot use this method";
$lang['a user use already this mail address'] = "a user use already this mail address";
$lang['Category results for'] = "Category results for";
$lang['Tag results for'] = "Tag results for";
$lang['from %s to %s'] = "from %s to %s";
$lang['Play of slideshow'] = "Play of slideshow";
$lang['Pause of slideshow'] = "Pause of slideshow";
$lang['Repeat the slideshow'] = "Repeat the slideshow";
$lang['Not repeat the slideshow'] = "Not repeat the slideshow";
$lang['Reduce diaporama speed'] = "Reduce diaporama speed";
$lang['Accelerate diaporama speed'] = "Accelerate diaporama speed";
$lang['Submit'] = "Submit";
$lang['Yes'] = "Yes";
$lang['No'] = "No";
$lang['%d image'] = "%d image";
$lang['%d images'] = "%d images";
$lang['%d image is also linked to current tags'] = "%d image is also linked to current tags";
$lang['%d images are also linked to current tags'] = "%d images are also linked to current tags";
$lang['See images linked to this tag only'] = "See images linked to this tag only";
$lang['images posted during the last %d days'] = "images posted during the last %d days";
$lang['Choose an image'] = "Choose an image";
$lang['Piwigo Help'] = "Piwigo Help";
$lang['Rank'] = "Rank";
$lang['group by letters'] = "group by letters";
$lang['letters'] = "letters";
$lang['show tag cloud'] = "show tag cloud";
$lang['cloud'] = "cloud";
$lang['Reset to default values'] = "Reset to default values";
$lang['delete all images from your favorites'] = "delete all images from your favorites";
$lang['Sent by'] = "Sent by";
$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.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,58 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installation';
$lang['Initial_config'] = 'Basic configuration';
$lang['Default_lang'] = 'Default gallery language';
$lang['step1_title'] = 'Database configuration';
$lang['step2_title'] = 'Admin configuration';
$lang['Start_Install'] = 'Start Install';
$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
$lang['install_webmaster'] = 'Webmaster login';
$lang['install_webmaster_info'] = 'It will be shown to the visitors. It is necessary for website administration';
$lang['step1_confirmation'] = 'Parameters are correct';
$lang['step1_err_db'] = 'Connection to server succeed, but it was impossible to connect to database';
$lang['step1_err_server'] = 'Can\'t connect to server';
$lang['step1_err_copy_2'] = 'The next step of the installation is now possible';
$lang['step1_err_copy_next'] = 'next step';
$lang['step1_err_copy'] = '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)';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'User';
$lang['step1_user_info'] = 'user login given by your host provider';
$lang['step1_pass'] = 'Password';
$lang['step1_pass_info'] = 'user password given by your host provider';
$lang['step1_database'] = 'Database name';
$lang['step1_database_info'] = 'also given by your host provider';
$lang['step1_prefix'] = 'Database table prefix';
$lang['step1_prefix_info'] = 'database tables names will be prefixed with it (enables you to manage better your tables)';
$lang['step2_err_login1'] = 'enter a login for webmaster';
$lang['step2_err_login3'] = 'webmaster login can\'t contain characters \' or "';
$lang['step2_err_pass'] = 'please enter your password again';
$lang['install_end_title'] = 'Installation finished';
$lang['step2_pwd'] = 'Webmaster password';
$lang['step2_pwd_info'] = 'Keep it confidential, it enables you to access administration panel';
$lang['step2_pwd_conf'] = 'Password [confirm]';
$lang['step2_pwd_conf_info'] = 'verification';
$lang['install_help'] = 'Need help ? Ask your question on <a href="%s">Piwigo message board</a>.';
$lang['install_end_message'] = 'The configuration of Piwigo is finished, here is the next step<br><br>
$lang['Installation'] = "Installation";
$lang['Basic configuration'] = "Basic configuration";
$lang['Default gallery language'] = "Default gallery language";
$lang['Database configuration'] = "Database configuration";
$lang['Admin configuration'] = "Admin configuration";
$lang['Start Install'] = "Start Install";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "mail address must be like xxx@yyy.eee (example : jack@altern.org)";
$lang['Webmaster login'] = "Webmaster login";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "It will be shown to the visitors. It is necessary for website administration";
$lang['Parameters are correct'] = "Parameters are correct";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "Connection to server succeed, but it was impossible to connect to database";
$lang['Can\'t connect to server'] = "Can't connect to server";
$lang['The next step of the installation is now possible'] = "The next step of the installation is now possible";
$lang['next step'] = "next step";
$lang['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)'] = "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)";
$lang['Database type'] = "Database type";
$lang['The type of database your piwigo data will be store in'] = "The type of database your piwigo data will be store in";
$lang['Host'] = "Host";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "User";
$lang['user login given by your host provider'] = "user login given by your host provider";
$lang['Password'] = "Password";
$lang['user password given by your host provider'] = "user password given by your host provider";
$lang['Database name'] = "Database name";
$lang['also given by your host provider'] = "also given by your host provider";
$lang['Database table prefix'] = "Database table prefix";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "database tables names will be prefixed with it (enables you to manage better your tables)";
$lang['enter a login for webmaster'] = "enter a login for webmaster";
$lang['webmaster login can\'t contain characters \' or "'] = "webmaster login can't contain characters ' or \"";
$lang['please enter your password again'] = "please enter your password again";
$lang['Installation finished'] = "Installation finished";
$lang['Webmaster password'] = "Webmaster password";
$lang['Keep it confidential, it enables you to access administration panel'] = "Keep it confidential, it enables you to access administration panel";
$lang['Password [confirm]'] = "Password [confirm]";
$lang['verification'] = "verification";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Need help ? Ask your question on <a href=\"%s\">Piwigo message board</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories';
$lang['conf_mail_webmaster'] = 'Webmaster mail address';
$lang['conf_mail_webmaster_info'] = 'Visitors will be able to contact site administrator with this mail';
$lang['PHP 5 is required'] = 'PHP 5 is required';
$lang['It appears your webhost is currently running PHP %s.'] = 'It appears your webhost is currently running PHP %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Note you can change your configuration by yourself and restart Piwigo after that.';
$lang['Try to configure PHP 5'] = 'Try to configure PHP 5';
$lang['Sorry!'] = 'Sorry!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo was not able to configure PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
$lang['Hope to see you back soon.'] = 'Hope to see you back soon.';
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories";
$lang['Webmaster mail address'] = "Webmaster mail address";
$lang['Visitors will be able to contact site administrator with this mail'] = "Visitors will be able to contact site administrator with this mail";
$lang['PHP 5 is required'] = "PHP 5 is required";
$lang['It appears your webhost is currently running PHP %s.'] = "It appears your webhost is currently running PHP %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Note you can change your configuration by yourself and restart Piwigo after that.";
$lang['Try to configure PHP 5'] = "Try to configure PHP 5";
$lang['Sorry!'] = "Sorry!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo was not able to configure PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
$lang['Hope to see you back soon.'] = "Hope to see you back soon.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,24 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Upgrade';
$lang['introduction message'] = 'This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).';
$lang['Upgrade from %s to %s'] = 'Upgrade from version %s to %s';
$lang['Statistics'] = 'Statistics';
$lang['total upgrade time'] = 'total upgrade time';
$lang['total SQL time'] = 'total SQL time';
$lang['SQL queries'] = 'SQL queries';
$lang['Upgrade informations'] = 'Upgrade informations';
$lang['perform a maintenance check'] = 'Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.';
$lang['deactivated plugins'] = 'As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:';
$lang['upgrade login message'] = 'Only administrator can run upgrade: please sign in below.';
$lang['You do not have access rights to run upgrade'] = 'You do not have access rights to run upgrade';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'All sub-categories of private categories become private';
$lang['user permissions and group permissions have been erased'] = 'User permissions and group permissions have been erased';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Only thumbnails prefix and webmaster mail address have been saved from previous configuration';
$lang['Upgrade'] = "Upgrade";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).";
$lang['Upgrade from version %s to %s'] = "Upgrade from version %s to %s";
$lang['Statistics'] = "Statistics";
$lang['total upgrade time'] = "total upgrade time";
$lang['total SQL time'] = "total SQL time";
$lang['SQL queries'] = "SQL queries";
$lang['Upgrade informations'] = "Upgrade informations";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Only administrator can run upgrade: please sign in below.";
$lang['You do not have access rights to run upgrade'] = "You do not have access rights to run upgrade";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:";
$lang['All sub-categories of private categories become private'] = "All sub-categories of private categories become private";
$lang['User permissions and group permissions have been erased'] = "User permissions and group permissions have been erased";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Only thumbnails prefix and webmaster mail address have been saved from previous configuration";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,353 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'Español';
$lang_info['country'] = 'España';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'es';
$lang_info['zero_plural'] = false;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (noté %d fois, écart type = %.2f)';
$lang['%d Kb'] = '%d Ko';
$lang['%d category updated'] = '%d Categoría actualizada';
$lang['%d categories updated'] = '%d Actualización categorías';
$lang['%d comment to validate'] = '%d Comentario usuario que hay que validar';
$lang['%d comments to validate'] = '%d comentarios de usuario que hay que validar';
$lang['%d new comment'] = '%d Nuevo comentario usuario';
$lang['%d new comments'] = '%d nuevos comentarios del usuario';
$lang['%d comment'] = '%d Comentario';
$lang['%d comments'] = '%d Comentarios';
$lang['%d hit'] = '%d imágenes';
$lang['%d hits'] = '%d vez';
$lang['%d new element'] = '%d nuevo elemento';
$lang['%d new elements'] = '%d nuevos Elementos';
$lang['%d new user'] = '%d nuevo usuario';
$lang['%d new users'] = '%d nuevos usuarios';
$lang['%d waiting element'] = '%d elemento en espera';
$lang['%d waiting elements'] = '%d elementos en espera';
$lang['About'] = 'Acerca de';
$lang['All tags must match'] = 'Todos las etiquetas deben coincidir';
$lang['All tags'] = 'Todas las etiquetas';
$lang['Any tag'] = 'Cualquier etiqueta';
$lang['At least one listed rule must be satisfied.'] = 'Debe elegir al menos una de las reglas que se listan.';
$lang['At least one tag must match'] = 'Debe coincidir al menos una de las etiquetas';
$lang['Author'] = 'Autor';
$lang['Average rate'] = 'Valoración promedio';
$lang['Categories'] = 'Categorías';
$lang['Category'] = 'Categoría';
$lang['Close this window'] = 'Cerrar la ventana';
$lang['Complete RSS feed'] = 'Flujo RSS completo (imágenes, comentarios)';
$lang['Confirm Password'] = 'Confirmar la contraseña';
$lang['Connection settings'] = 'Datos de conexión';
$lang['Connection'] = 'Identificarse';
$lang['Contact webmaster'] = 'Contactar el webmastre';
$lang['Create a new account'] = 'Crear una nueva cuenta';
$lang['Created on'] = 'Creada el';
$lang['Creation date'] = 'Fecha de creación';
$lang['Current password is wrong'] = 'La contraseña actual es incorrecta';
$lang['Dimensions'] = 'Dimensiones';
$lang['Display'] = 'Monstrar';
$lang['Each listed rule must be satisfied.'] = 'Debe cumplimentar cada una de las reglas';
$lang['Email address is missing'] = 'Falta su dirección electrónica';
$lang['Email address'] = 'Dirección electrónica';
$lang['Enter your personnal informations'] = 'Cumplimente sus datos personales';
$lang['Error sending email'] = 'Error de envío';
$lang['File name'] = 'Nombre del fichero';
$lang['File'] = 'Fichero';
$lang['Filesize'] = 'Tamaño';
$lang['Filter and display'] = 'Filtrar y mostrar';
$lang['Filter'] = 'Filtro';
$lang['Forgot your password?'] = '¿Olvidó su contraseña?';
$lang['Go through the gallery as a visitor'] = 'Recorrer la galería como visitante';
$lang['Help'] = 'Ayuda';
$lang['Identification'] = 'Identificación';
$lang['Image only RSS feed'] = 'Contenido RSS: sólo imagen';
$lang['Keyword'] = 'Palabra clave';
$lang['Links'] = 'Enlaces';
$lang['Mail address'] = $lang['Email address'];
$lang['N/A'] = 'no disponible';
$lang['New on %s'] = 'Nuevo el %s';
$lang['New password confirmation does not correspond'] = 'Los valores de la contraseña no coinciden';
$lang['New password sent by email'] = 'Nueva contraseña enviada por correo electrónico';
$lang['No email address'] = 'Ninguna dirección electrónica';
$lang['No user matches this email address'] = 'Falta cumplimentar la direccíon electrónica no corresponde a ningún usuario';
$lang['Notification'] = 'Notificación RSS';
$lang['Number of items'] = 'Número de artículos';
$lang['Original dimensions'] = 'Dimensiones originales';
$lang['Password forgotten'] = 'Contraseña olvidada';
$lang['Password'] = 'Contraseña';
$lang['Post date'] = 'Añadido el día';
$lang['Posted on'] = 'Añadido el';
$lang['Profile'] = 'Perfil';
$lang['Quick connect'] = 'Conexión rápida';
$lang['RSS feed'] = 'flux RSS';
$lang['Rate'] = 'Valoración';
$lang['Register'] = 'Regístrese';
$lang['Registration'] = 'Registro';
$lang['Related tags'] = 'Etiquetas relacionadas';
$lang['Reset'] = 'Anular';
$lang['Retrieve password'] = 'Recuperar la contraseña';
$lang['Search rules'] = 'Criterios de búsqueda';
$lang['Search tags'] = 'Buscar etiquetas';
$lang['Search'] = 'Búsqueda avanzada';
$lang['See available tags'] = 'Ver las etiquetas disponibles';
$lang['Send new password'] = 'Enviar una nueva contraseña';
$lang['Since'] = 'Desde';
$lang['Sort by'] = 'Clasificar según';
$lang['Sort order'] = 'Orden de Clasificación';
$lang['Tag'] = 'Etiqueta';
$lang['Tags'] = 'Etiquetas';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'Mediante RSS puede recibir notificación de los cambios que tienen lugar en la galería: nuevas imágenes, categorías, etc. Para registrarse, haga clic en uno de los siguientes enlaces.';
$lang['Unknown feed identifier'] = 'Identificador de RSS desconocido';
$lang['User comments'] = 'Comentarios del usuario';
$lang['Username'] = 'Nombre del usuario';
$lang['Visits'] = 'Visitas';
$lang['Webmaster'] = 'Webmastre';
$lang['Week %d'] = 'Semana %d';
$lang['about_page_title'] = 'Acerca de Piwigo';
$lang['access_forbiden'] = 'No dispone de autorización para ver la página solicitada';
$lang['add to caddie'] = 'Agregar a la cesta';
$lang['add_favorites_hint'] = 'Agregar a los favoritos';
$lang['admin'] = 'Administración';
$lang['adviser_mode_enabled'] = 'Modo de consejero activo';
$lang['all'] = 'todo';
$lang['ascending'] = 'ascendiente';
$lang['author(s) : %s'] = 'autor(es) : %s';
$lang['auto_expand'] = 'Expandir todas las categorías';
$lang['became available after %s (%s)'] = 'disponible con posterioridad al %s (%s)';
$lang['became available before %s (%s)'] = 'disponible antes del %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'disponible entre él %s (%s) y el %s (%s)';
$lang['became available on %s'] = 'disponible el %s';
$lang['best_rated_cat'] = 'Mejor valoracion';
$lang['best_rated_cat_hint'] = 'mostrar las imagenes mejor valoradas';
$lang['caddie'] = 'Carrito';
$lang['calendar'] = 'Calendario';
$lang['calendar_any'] = 'Todo';
$lang['calendar_hint'] = 'Visualizacíon año por año, mes por mes, día , ';
$lang['calendar_picture_hint'] = 'Mostrar las imágenes añadidas el';
$lang['calendar_view'] = 'Vista';
$lang['chronology_monthly_calendar'] = 'Calendario mensual';
$lang['chronology_monthly_list'] = 'Lista mensual';
$lang['chronology_weekly_list'] = 'Lista semanal';
$lang['click_to_redirect'] = 'Pulse aquí si su navegador no le reenvía a la página solicitada.';
$lang['comment date'] = 'Fecha de comentario';
$lang['comment'] = 'Comentario';
$lang['comment_added'] = 'Su comentario ha sido añadido';
$lang['comment_anti-flood'] = 'Systema anti-abuso : por favor, aguarde unos momentos antes de agregar un nuevo comentario';
$lang['comment_not_added'] = 'Su comentario no ha sido registrado porque no ha superado las reglas de validación';
$lang['comment_to_validate'] = 'El administrador debe validar su comentario antes de que sea visible.';
$lang['comment_user_exists'] = 'Este nombre de usuario ya ha sido registrado con anterioridad, por favor inténtelo con otro';
$lang['comments'] = 'Comentarios';
$lang['comments_add'] = 'Agregar comentario';
$lang['created after %s (%s)'] = 'Creado después del %s (%s)';
$lang['created before %s (%s)'] = 'creado antes del %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'creado entre el %s (%s) y el %s (%s)';
$lang['created on %s'] = 'creado el %s';
$lang['customize'] = 'Personalizar';
$lang['customize_page_title'] = 'Personalización de su pantalla ';
$lang['day'][0] = 'Domingo';
$lang['day'][1] = 'Lunes';
$lang['day'][2] = 'Martes';
$lang['day'][3] = 'Miércoles';
$lang['day'][4] = 'Jueves';
$lang['day'][5] = 'Viernes';
$lang['day'][6] = 'Sábado';
$lang['default_sort'] = 'Por defecto';
$lang['del_favorites_hint'] = 'Eliminar favoritos';
$lang['delete'] = 'Suprimir';
$lang['descending'] = 'descendente';
$lang['download'] = 'descargar';
$lang['download_hint'] = 'descargar este fichero';
$lang['edit'] = 'Editar';
$lang['err_date'] = 'Fecha errónea';
$lang['excluded'] = 'Excluidos';
$lang['favorite_cat'] = 'Mis favoritos';
$lang['favorite_cat_hint'] = 'Mostrar mis imágenes favoritas';
$lang['favorites'] = 'Favoritas';
$lang['first_page'] = 'Primera página';
$lang['gallery_locked_message'] = 'Se están realizando operaciones de mantenimiento, regrese más tarde.';
$lang['generation_time'] = 'Página generada en';
$lang['guest'] = 'Visitante';
$lang['hello'] = 'Hola';
$lang['hint_admin'] = 'disponible sólo para los administradores';
$lang['hint_category'] = 'muestra las imágenes en el directorio raíz de esta categoría';
$lang['hint_comments'] = 'Ver los últimos comentarios de los usuarios';
$lang['hint_customize'] = 'personalizar el aspecto de la galería';
$lang['hint_search'] = 'Buscar';
$lang['home'] = 'Inicio';
$lang['identification'] = 'Identificación';
$lang['images_available_cpl'] = 'en esta categoría';
$lang['images_available_cat'] = 'en %d subcategoría';
$lang['images_available_cats'] = 'en %d subcategorías';
$lang['included'] = 'incluidos';
$lang['invalid_pwd'] = 'Contraseña incorrecta !';
$lang['language'] = 'Idioma';
$lang['last %d days'] = '%d últimos días';
$lang['last_page'] = 'Última página';
$lang['logout'] = 'Desconexión';
$lang['mail_address'] = $lang['Email address'];
$lang['mandatory'] = 'obligatorio';
$lang['maxheight'] = 'Altura máxima de las imágenes';
$lang['maxheight_error'] = 'La altura máxima de las imágenes no debe ser superioror a 50';
$lang['maxwidth'] = 'Anchura máxima de las imágenes';
$lang['maxwidth_error'] = 'El ancho máximo de las imágenes no debe ser superior a 50';
$lang['mode_created_hint'] = 'Mostrar las imágenes en un calendario por fecha de creación';
$lang['mode_flat_hint'] = 'Mostrar todos los elementos de todas las categorías';
$lang['mode_normal_hint'] = 'Volver a la vista normal';
$lang['mode_posted_hint'] = 'Mostrar las imágenes en un calendario por fecha de agregación';
$lang['month'][10] = 'Octubre';
$lang['month'][11] = 'Noviembre';
$lang['month'][12] = 'Diciembre';
$lang['month'][1] = 'Enero';
$lang['month'][2] = 'Febrero';
$lang['month'][3] = 'Marzo';
$lang['month'][4] = 'Abril';
$lang['month'][5] = 'Mayo';
$lang['month'][6] = 'Junio';
$lang['month'][7] = 'Julio';
$lang['month'][8] = 'Agosto';
$lang['month'][9] = 'Septiembre';
$lang['most_visited_cat'] = 'Imágenes más vistas';
$lang['most_visited_cat_hint'] = 'mostrar las imágenes más vistas';
$lang['nb_image_line_error'] = 'El número de imágenes por línea debe ser un número entero no nulo';
$lang['nb_image_per_row'] = 'Número de miniaturas por línea';
$lang['nb_line_page_error'] = 'El número de líneas por página debe ser un numero entero no nulo';
$lang['nb_row_per_page'] = 'Número de líneas por pagina';
$lang['nbm_unknown_identifier'] = 'Identificador desconocido';
$lang['new_password'] = 'Nueva contraseña';
$lang['new_rate'] = 'De una calificación a esta imagen';
$lang['next_page'] = 'Página siguiente';
$lang['no_category'] = 'Inicio';
$lang['no_rate'] = 'no valorada';
$lang['note_filter_day'] = 'Sólo muestra las imágenes incorporadas desde el día %d .';
$lang['note_filter_days'] = 'Sólo muestra las imágenes incorporadas desde los últimos %d dias.';
$lang['password updated'] = 'contraseña actualizada';
$lang['periods_error'] = 'El período debe ser un número entero positivo';
$lang['picture'] = 'imagen';
$lang['picture_high'] = 'Hacer clic sobre la imagen para verla en alta resolución';
$lang['picture_show_metadata'] = 'Mostrar los meta-datos del fichero';
$lang['powered_by'] = 'Distribuido por';
$lang['preferences'] = 'Preferencias';
$lang['previous_page'] = 'Página anterior';
$lang['random_cat'] = 'Selección aleatoria';
$lang['random_cat_hint'] = 'mostrar un grupo aleatorio de imágenes';
$lang['recent_cats_cat'] = 'Últimas categorías';
$lang['recent_cats_cat_hint'] = 'mostrar las categorías recientement actualizadas o creadas';
$lang['recent_period'] = 'Número de imágenes recientes';
$lang['recent_pics_cat'] = 'Últimas imágenes añadidas';
$lang['recent_pics_cat_hint'] = 'Mostrar las imágenes añadidas recientemente';
$lang['redirect_msg'] = 'Redirección...';
$lang['reg_err_login1'] = 'Por favor, indique un nombre de usuario';
$lang['reg_err_login2'] = 'el nombre de usuario no debe terminar por un espacio';
$lang['reg_err_login3'] = 'el nombre de usuario no debe empezar por un espacio';
$lang['reg_err_login5'] = 'Este nombre de usuario ya ha sido escogido con anterioridad';
$lang['reg_err_mail_address'] = 'El formato de la dirección e-mail debe ser xxx@yyy.eee (ejemplo: jack@altern.org)';
$lang['reg_err_pass'] = 'Por favor, escriba de nuevo su contraseña';
$lang['remember_me'] = 'Conexión automática';
$lang['remove this tag'] = 'quitar este tag de la lista';
$lang['representative'] = 'representante';
$lang['return to homepage'] = 'Volver a la página de inicio';
$lang['search_author'] = 'Buscar por autor';
$lang['search_categories'] = 'Buscar por categorías';
$lang['search_date'] = 'Buscar por fecha';
$lang['search_date_from'] = 'Fecha';
$lang['search_date_to'] = 'Hasta la fecha';
$lang['search_date_type'] = 'Tipo de fecha';
$lang['search_keywords'] = 'Buscar por palabra';
$lang['search_mode_and'] = 'Buscar todas las palabras';
$lang['search_mode_or'] = 'Buscar una de las palabras';
$lang['search_one_clause_at_least'] = 'Demanda vacía. Ningún criterio surtido..';
$lang['search_options'] = 'Opciones de búsqueda';
$lang['search_result'] = 'Resultados de la búsqueda';
$lang['search_subcats_included'] = 'Buscar en las subcategorías';
$lang['search_title'] = 'Búsqueda';
$lang['searched words : %s'] = 'Palabras de búsqueda : %s';
$lang['send_mail'] = 'Contactar';
$lang['set as category representative'] = 'elegir para representar esta categoría';
$lang['show_nb_comments'] = 'Mostrar el número de comentarios';
$lang['show_nb_hits'] = 'Mostrar el número de visualizaciones';
$lang['slideshow'] = 'Diaporama';
$lang['slideshow_stop'] = 'Detener el diaporama';
$lang['special_categories'] = 'Herramientas';
$lang['sql_queries_in'] = 'búsquedas SQL en';
$lang['start_filter_hint'] = 'Seleccionar sólo los elementos incorporados recientemente';
$lang['stop_filter_hint'] = 'Volver a mostrar todos los elementos';
$lang['the beginning'] = 'el principio';
$lang['theme'] = 'Tema';
$lang['thumbnails'] = 'Miniaturas';
$lang['title_menu'] = 'Menú';
$lang['title_send_mail'] = 'Una opinión sobre esta pagina';
$lang['today'] = 'hoy';
$lang['update_rate'] = 'Actualizar la valoración';
$lang['update_wrong_dirname'] = 'Nombre de directorio incorrecto';
$lang['upload_advise_filesize'] = 'El tamaño de la imagen no debe sobrepasar los: ';
$lang['upload_advise_filetype'] = 'El tipo de archivo de la imagen debe ser jpg, png o gif';
$lang['upload_advise_height'] = 'La altura de la imagen no debe sobrepasar los: ';
$lang['upload_advise_thumbnail'] = 'Opcional, pero recomendado: escoger una miniatura para asociar ';
$lang['upload_advise_width'] = 'La anchura de la imagen no debe sobrepasar los: ';
$lang['upload_author'] = 'Autor';
$lang['upload_cannot_upload'] = 'Imposible trasladar el fichero sobre el servidor';
$lang['upload_err_username'] = 'Indique el nombre de usuario';
$lang['upload_file_exists'] = 'Ya existe otra imagen con el mismo nombre';
$lang['upload_filenotfound'] = 'Indique el formato de archivo de la imagen';
$lang['upload_forbidden'] = 'No es posible agregar la imagen en esta categoría';
$lang['upload_name'] = 'Nombre de la imagen';
$lang['upload_picture'] = 'Agregar una imagen';
$lang['upload_successful'] = 'Imagen agregada; podrá visualizarse una vez la apruebe el administrador';
$lang['upload_title'] = 'Agregar una imagen';
$lang['useful when password forgotten'] = 'Útil en caso de que olvide la contraseña';
$lang['qsearch'] = 'Búsqueda rápida';
$lang['Connected user: %s'] = 'Usuario conectado: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Navegador: %s';
$lang['Author: %s'] = 'Autor: %s';
$lang['Comment: %s'] = 'Comentario: %s';
$lang['Delete: %s'] = 'Suprimir: %s';
$lang['Validate: %s'] = 'Validar: %s';
$lang['Comment by %s'] = 'Comentario de %s';
$lang['User: %s'] = 'Usuario: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Administración: %s';
$lang['Registration of %s'] = 'Registro de %s';
$lang['Category: %s'] = 'Categoría: %s';
$lang['Picture name: %s'] = 'Nombre de la imagen: %s';
$lang['Creation date: %s'] = 'Fecha de creación: %d';
$lang['Waiting page: %s'] = 'Página de espera: %s';
$lang['Picture uploaded by %s'] = 'Imagen cargada por %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'El estatus del usuario "guest" no es conforme, se utilizará el estatus por defecto. Por favor, informe al administrador del sitio.';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'El Administrador, el administrador del sitio y el usuario especial no pueden utilizar este método';
$lang['reg_err_mail_address_dbl'] = 'Otro usuario ya utiliza esta dirección e-mail';
$lang['Category results for'] = 'Resultados de las categorías para';
$lang['Tag results for'] = 'Resultados de las etiquetas para';
$lang['from %s to %s'] = 'de %s a %s';
$lang['start_play'] = 'Lectura del diaporama';
$lang['stop_play'] = 'Pausa del diaporama';
$lang['start_repeat'] = 'Repetir el diaporama';
$lang['stop_repeat'] = 'No repetir el diaporama ';
$lang['inc_period'] = 'Disminuir la velocidad del diaporama';
$lang['dec_period'] = 'Acelerar la velocidad del diaporama';
$lang['Submit'] = 'Validar';
$lang['Yes'] = 'Si';
$lang['No'] = 'No';
$lang['%d element']='%d imágen';
$lang['%d elements']='%d imágenes';
$lang['%d element are also linked to current tags'] = '%d imagen es también vinculada a los tags corrientes';
$lang['%d elements are also linked to current tags'] = '%d imagenes son igualmente vinculadas a los tags corrientes';
$lang['See elements linked to this tag only'] = 'Ver las imágenes relacionadas únicamente a este tag';
$lang['elements posted during the last %d days'] = 'esta imagen tiene menos de %d dias';
$lang['Choose an image'] = 'Elegir una imagen';
$lang['Piwigo Help'] = 'Ayuda de Piwigo';
$lang['Rank'] = 'Fila';
$lang['group by letters'] = 'Reagrupar por letras';
$lang['letters'] = 'letras';
$lang['show tag cloud'] = 'mostrar la nube de tags';
$lang['cloud'] = 'nube';
$lang['Reset_To_Default'] = 'Restablecer los valores predeterminados';
$lang['Sent by'] = 'Enviado por';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
$lang['del_all_favorites_hint'] = 'Suprimir todas las imágenes de sus favoritos';
/* TODO */ $lang['Sent by'] = 'Sent by';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (noté %d fois, écart type = %.2f)";
$lang['%d Kb'] = "%d Ko";
$lang['%d category updated'] = "%d Categoría actualizada";
$lang['%d categories updated'] = "%d Actualización categorías";
$lang['%d comment to validate'] = "%d Comentario usuario que hay que validar";
$lang['%d comments to validate'] = "%d comentarios de usuario que hay que validar";
$lang['%d new comment'] = "%d Nuevo comentario usuario";
$lang['%d new comments'] = "%d nuevos comentarios del usuario";
$lang['%d comment'] = "%d Comentario";
$lang['%d comments'] = "%d Comentarios";
$lang['%d hit'] = "%d imágenes";
$lang['%d hits'] = "%d vez";
$lang['%d new image'] = "%d nuevo elemento";
$lang['%d new images'] = "%d nuevos Elementos";
$lang['%d new user'] = "%d nuevo usuario";
$lang['%d new users'] = "%d nuevos usuarios";
$lang['%d waiting element'] = "%d elemento en espera";
$lang['%d waiting elements'] = "%d elementos en espera";
$lang['About'] = "Acerca de";
$lang['All tags must match'] = "Todos las etiquetas deben coincidir";
$lang['All tags'] = "Todas las etiquetas";
$lang['Any tag'] = "Cualquier etiqueta";
$lang['At least one listed rule must be satisfied.'] = "Debe elegir al menos una de las reglas que se listan.";
$lang['At least one tag must match'] = "Debe coincidir al menos una de las etiquetas";
$lang['Author'] = "Autor";
$lang['Average rate'] = "Valoración promedio";
$lang['Categories'] = "Categorías";
$lang['Category'] = "Categoría";
$lang['Close this window'] = "Cerrar la ventana";
$lang['Complete RSS feed (images, comments)'] = "Flujo RSS completo (imágenes, comentarios)";
$lang['Confirm Password'] = "Confirmar la contraseña";
$lang['Connection settings'] = "Datos de conexión";
$lang['Login'] = "Identificarse";
$lang['Contact webmaster'] = "Contactar el webmastre";
$lang['Create a new account'] = "Crear una nueva cuenta";
$lang['Created on'] = "Creada el";
$lang['Creation date'] = "Fecha de creación";
$lang['Current password is wrong'] = "La contraseña actual es incorrecta";
$lang['Dimensions'] = "Dimensiones";
$lang['Display'] = "Monstrar";
$lang['Each listed rule must be satisfied.'] = "Debe cumplimentar cada una de las reglas";
$lang['Email address is missing'] = "Falta su dirección electrónica";
$lang['Email address'] = "Dirección electrónica";
$lang['Enter your personnal informations'] = "Cumplimente sus datos personales";
$lang['Error sending email'] = "Error de envío";
$lang['File name'] = "Nombre del fichero";
$lang['File'] = "Fichero";
$lang['Filesize'] = "Tamaño";
$lang['Filter and display'] = "Filtrar y mostrar";
$lang['Filter'] = "Filtro";
$lang['Forgot your password?'] = "¿Olvidó su contraseña?";
$lang['Go through the gallery as a visitor'] = "Recorrer la galería como visitante";
$lang['Help'] = "Ayuda";
$lang['Identification'] = "Identificación";
$lang['Image only RSS feed'] = "Contenido RSS: sólo imagen";
$lang['Keyword'] = "Palabra clave";
$lang['Links'] = "Enlaces";
$lang['Mail address'] = "Dirección electrónica";
$lang['N/A'] = "no disponible";
$lang['New on %s'] = "Nuevo el %s";
$lang['New password confirmation does not correspond'] = "Los valores de la contraseña no coinciden";
$lang['New password sent by email'] = "Nueva contraseña enviada por correo electrónico";
$lang['No email address'] = "Ninguna dirección electrónica";
$lang['No classic user matches this email address'] = "Falta cumplimentar la direccíon electrónica no corresponde a ningún usuario";
$lang['Notification'] = "Notificación RSS";
$lang['Number of items'] = "Número de artículos";
$lang['Original dimensions'] = "Dimensiones originales";
$lang['Password forgotten'] = "Contraseña olvidada";
$lang['Password'] = "Contraseña";
$lang['Post date'] = "Añadido el día";
$lang['Posted on'] = "Añadido el";
$lang['Profile'] = "Perfil";
$lang['Quick connect'] = "Conexión rápida";
$lang['RSS feed'] = "flux RSS";
$lang['Rate'] = "Valoración";
$lang['Register'] = "Regístrese";
$lang['Registration'] = "Registro";
$lang['Related tags'] = "Etiquetas relacionadas";
$lang['Reset'] = "Anular";
$lang['Retrieve password'] = "Recuperar la contraseña";
$lang['Search rules'] = "Criterios de búsqueda";
$lang['Search tags'] = "Buscar etiquetas";
$lang['Search'] = "Búsqueda avanzada";
$lang['See available tags'] = "Ver las etiquetas disponibles";
$lang['Send new password'] = "Enviar una nueva contraseña";
$lang['Since'] = "Desde";
$lang['Sort by'] = "Clasificar según";
$lang['Sort order'] = "Orden de Clasificación";
$lang['Tag'] = "Etiqueta";
$lang['Tags'] = "Etiquetas";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "Mediante RSS puede recibir notificación de los cambios que tienen lugar en la galería: nuevas imágenes, categorías, etc. Para registrarse, haga clic en uno de los siguientes enlaces.";
$lang['Unknown feed identifier'] = "Identificador de RSS desconocido";
$lang['User comments'] = "Comentarios del usuario";
$lang['Username'] = "Nombre del usuario";
$lang['Visits'] = "Visitas";
$lang['Webmaster'] = "Webmastre";
$lang['Week %d'] = "Semana %d";
$lang['About Piwigo'] = "Acerca de Piwigo";
$lang['You are not authorized to access the requested page'] = "No dispone de autorización para ver la página solicitada";
$lang['add to caddie'] = "Agregar a la cesta";
$lang['add this image to your favorites'] = "Agregar a los favoritos";
$lang['Administration'] = "Administración";
$lang['Adviser mode enabled'] = "Modo de consejero activo";
$lang['all'] = "todo";
$lang['ascending'] = "ascendiente";
$lang['author(s) : %s'] = "autor(es) : %s";
$lang['Expand all categories'] = "Expandir todas las categorías";
$lang['posted after %s (%s)'] = "disponible con posterioridad al %s (%s)";
$lang['posted before %s (%s)'] = "disponible antes del %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "disponible entre él %s (%s) y el %s (%s)";
$lang['posted on %s'] = "disponible el %s";
$lang['Best rated'] = "Mejor valoracion";
$lang['display best rated items'] = "mostrar las imagenes mejor valoradas";
$lang['caddie'] = "Carrito";
$lang['Calendar'] = "Calendario";
$lang['All'] = "Todo";
$lang['display each day with pictures, month per month'] = "Visualizacíon año por año, mes por mes, día ,";
$lang['display pictures added on'] = "Mostrar las imágenes añadidas el";
$lang['View'] = "Vista";
$lang['chronology_monthly_calendar'] = "Calendario mensual";
$lang['chronology_monthly_list'] = "Lista mensual";
$lang['chronology_weekly_list'] = "Lista semanal";
$lang['Click here if your browser does not automatically forward you'] = "Pulse aquí si su navegador no le reenvía a la página solicitada.";
$lang['comment date'] = "Fecha de comentario";
$lang['Comment'] = "Comentario";
$lang['Your comment has been registered'] = "Su comentario ha sido añadido";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Systema anti-abuso : por favor, aguarde unos momentos antes de agregar un nuevo comentario";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Su comentario no ha sido registrado porque no ha superado las reglas de validación";
$lang['An administrator must authorize your comment before it is visible.'] = "El administrador debe validar su comentario antes de que sea visible.";
$lang['This login is already used by another user'] = "Este nombre de usuario ya ha sido registrado con anterioridad, por favor inténtelo con otro";
$lang['Comments'] = "Comentarios";
$lang['Add a comment'] = "Agregar comentario";
$lang['created after %s (%s)'] = "Creado después del %s (%s)";
$lang['created before %s (%s)'] = "creado antes del %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "creado entre el %s (%s) y el %s (%s)";
$lang['created on %s'] = "creado el %s";
$lang['Customize'] = "Personalizar";
$lang['Your Gallery Customization'] = "Personalización de su pantalla";
$lang['day'][0] = "Domingo";
$lang['day'][1] = "Lunes";
$lang['day'][2] = "Martes";
$lang['day'][3] = "Miércoles";
$lang['day'][4] = "Jueves";
$lang['day'][5] = "Viernes";
$lang['day'][6] = "Sábado";
$lang['Default'] = "Por defecto";
$lang['delete this image from your favorites'] = "Eliminar favoritos";
$lang['Delete'] = "Suprimir";
$lang['descending'] = "descendente";
$lang['download'] = "descargar";
$lang['download this file'] = "descargar este fichero";
$lang['edit'] = "Editar";
$lang['wrong date'] = "Fecha errónea";
$lang['excluded'] = "Excluidos";
$lang['My favorites'] = "Mis favoritos";
$lang['display my favorites pictures'] = "Mostrar mis imágenes favoritas";
$lang['Favorites'] = "Favoritas";
$lang['First'] = "Primera página";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "Se están realizando operaciones de mantenimiento, regrese más tarde.";
$lang['Page generated in'] = "Página generada en";
$lang['guest'] = "Visitante";
$lang['Hello'] = "Hola";
$lang['available for administrators only'] = "disponible sólo para los administradores";
$lang['shows images at the root of this category'] = "muestra las imágenes en el directorio raíz de esta categoría";
$lang['See last users comments'] = "Ver los últimos comentarios de los usuarios";
$lang['customize the appareance of the gallery'] = "personalizar el aspecto de la galería";
$lang['search'] = "Buscar";
$lang['Home'] = "Inicio";
$lang['Identification'] = "Identificación";
$lang['in this category'] = "en esta categoría";
$lang['in %d sub-category'] = "en %d subcategoría";
$lang['in %d sub-categories'] = "en %d subcategorías";
$lang['included'] = "incluidos";
$lang['Invalid password!'] = "Contraseña incorrecta !";
$lang['Language'] = "Idioma";
$lang['last %d days'] = "%d últimos días";
$lang['Last'] = "Última página";
$lang['Logout'] = "Desconexión";
$lang['E-mail address'] = "Dirección electrónica";
$lang['obligatory'] = "obligatorio";
$lang['Maximum height of the pictures'] = "Altura máxima de las imágenes";
$lang['Maximum height must be a number superior to 50'] = "La altura máxima de las imágenes no debe ser superioror a 50";
$lang['Maximum width of the pictures'] = "Anchura máxima de las imágenes";
$lang['Maximum width must be a number superior to 50'] = "El ancho máximo de las imágenes no debe ser superior a 50";
$lang['display a calendar by creation date'] = "Mostrar las imágenes en un calendario por fecha de creación";
$lang['display all elements in all sub-categories'] = "Mostrar todos los elementos de todas las categorías";
$lang['return to normal view mode'] = "Volver a la vista normal";
$lang['display a calendar by posted date'] = "Mostrar las imágenes en un calendario por fecha de agregación";
$lang['month'][10] = "Octubre";
$lang['month'][11] = "Noviembre";
$lang['month'][12] = "Diciembre";
$lang['month'][1] = "Enero";
$lang['month'][2] = "Febrero";
$lang['month'][3] = "Marzo";
$lang['month'][4] = "Abril";
$lang['month'][5] = "Mayo";
$lang['month'][6] = "Junio";
$lang['month'][7] = "Julio";
$lang['month'][8] = "Agosto";
$lang['month'][9] = "Septiembre";
$lang['Most visited'] = "Imágenes más vistas";
$lang['display most visited pictures'] = "mostrar las imágenes más vistas";
$lang['The number of images per row must be a not null scalar'] = "El número de imágenes por línea debe ser un número entero no nulo";
$lang['Number of images per row'] = "Número de miniaturas por línea";
$lang['The number of rows per page must be a not null scalar'] = "El número de líneas por página debe ser un numero entero no nulo";
$lang['Number of rows per page'] = "Número de líneas por pagina";
$lang['Unknown identifier'] = "Identificador desconocido";
$lang['New password'] = "Nueva contraseña";
$lang['Rate this picture'] = "De una calificación a esta imagen";
$lang['Next'] = "Página siguiente";
$lang['Home'] = "Inicio";
$lang['no rate'] = "no valorada";
$lang['Elements posted within the last %d day.'] = "Sólo muestra las imágenes incorporadas desde el día %d .";
$lang['Elements posted within the last %d days.'] = "Sólo muestra las imágenes incorporadas desde los últimos %d dias.";
$lang['password updated'] = "contraseña actualizada";
$lang['Recent period must be a positive integer value'] = "El período debe ser un número entero positivo";
$lang['picture'] = "imagen";
$lang['Click on the picture to see it in high definition'] = "Hacer clic sobre la imagen para verla en alta resolución";
$lang['Show file metadata'] = "Mostrar los meta-datos del fichero";
$lang['Powered by'] = "Distribuido por";
$lang['Preferences'] = "Preferencias";
$lang['Previous'] = "Página anterior";
$lang['Random pictures'] = "Selección aleatoria";
$lang['display a set of random pictures'] = "mostrar un grupo aleatorio de imágenes";
$lang['Recent categories'] = "Últimas categorías";
$lang['display recently updated categories'] = "mostrar las categorías recientement actualizadas o creadas";
$lang['Recent period'] = "Número de imágenes recientes";
$lang['Recent pictures'] = "Últimas imágenes añadidas";
$lang['display most recent pictures'] = "Mostrar las imágenes añadidas recientemente";
$lang['Redirection...'] = "Redirección...";
$lang['Please, enter a login'] = "Por favor, indique un nombre de usuario";
$lang['login mustn\'t end with a space character'] = "el nombre de usuario no debe terminar por un espacio";
$lang['login mustn\'t start with a space character'] = "el nombre de usuario no debe empezar por un espacio";
$lang['this login is already used'] = "Este nombre de usuario ya ha sido escogido con anterioridad";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "El formato de la dirección e-mail debe ser xxx@yyy.eee (ejemplo: jack@altern.org)";
$lang['please enter your password again'] = "Por favor, escriba de nuevo su contraseña";
$lang['Auto login'] = "Conexión automática";
$lang['remove this tag from the list'] = "quitar este tag de la lista";
$lang['representative'] = "representante";
$lang['return to homepage'] = "Volver a la página de inicio";
$lang['Search for Author'] = "Buscar por autor";
$lang['Search in Categories'] = "Buscar por categorías";
$lang['Search by Date'] = "Buscar por fecha";
$lang['Date'] = "Fecha";
$lang['End-Date'] = "Hasta la fecha";
$lang['Kind of date'] = "Tipo de fecha";
$lang['Search for words'] = "Buscar por palabra";
$lang['Search for all terms'] = "Buscar todas las palabras";
$lang['Search for any terms'] = "Buscar una de las palabras";
$lang['Empty query. No criteria has been entered.'] = "Demanda vacía. Ningún criterio surtido..";
$lang['Search Options'] = "Opciones de búsqueda";
$lang['Search results'] = "Resultados de la búsqueda";
$lang['Search in subcategories'] = "Buscar en las subcategorías";
$lang['Search'] = "Búsqueda";
$lang['searched words : %s'] = "Palabras de búsqueda : %s";
$lang['Contact'] = "Contactar";
$lang['set as category representative'] = "elegir para representar esta categoría";
$lang['Show number of comments'] = "Mostrar el número de comentarios";
$lang['Show number of hits'] = "Mostrar el número de visualizaciones";
$lang['slideshow'] = "Diaporama";
$lang['stop the slideshow'] = "Detener el diaporama";
$lang['Specials'] = "Herramientas";
$lang['SQL queries in'] = "búsquedas SQL en";
$lang['display only recently posted images'] = "Seleccionar sólo los elementos incorporados recientemente";
$lang['return to the display of all images'] = "Volver a mostrar todos los elementos";
$lang['the beginning'] = "el principio";
$lang['Interface theme'] = "Tema";
$lang['Thumbnails'] = "Miniaturas";
$lang['Menu'] = "Menú";
$lang['A comment on your site'] = "Una opinión sobre esta pagina";
$lang['today'] = "hoy";
$lang['Update your rating'] = "Actualizar la valoración";
$lang['wrong filename'] = "Nombre de directorio incorrecto";
$lang['the filesize of the picture must not exceed :'] = "El tamaño de la imagen no debe sobrepasar los:";
$lang['the picture must be to the fileformat jpg, gif or png'] = "El tipo de archivo de la imagen debe ser jpg, png o gif";
$lang['the height of the picture must not exceed :'] = "La altura de la imagen no debe sobrepasar los:";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Opcional, pero recomendado: escoger una miniatura para asociar";
$lang['the width of the picture must not exceed :'] = "La anchura de la imagen no debe sobrepasar los:";
$lang['Author'] = "Autor";
$lang['can\'t upload the picture on the server'] = "Imposible trasladar el fichero sobre el servidor";
$lang['the username must be given'] = "Indique el nombre de usuario";
$lang['A picture\'s name already used'] = "Ya existe otra imagen con el mismo nombre";
$lang['You must choose a picture fileformat for the image'] = "Indique el formato de archivo de la imagen";
$lang['You can\'t upload pictures in this category'] = "No es posible agregar la imagen en esta categoría";
$lang['Name of the picture'] = "Nombre de la imagen";
$lang['Upload a picture'] = "Agregar una imagen";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Imagen agregada; podrá visualizarse una vez la apruebe el administrador";
$lang['Upload a picture'] = "Agregar una imagen";
$lang['useful when password forgotten'] = "Útil en caso de que olvide la contraseña";
$lang['Quick search'] = "Búsqueda rápida";
$lang['Connected user: %s'] = "Usuario conectado: %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Navegador: %s";
$lang['Author: %s'] = "Autor: %s";
$lang['Comment: %s'] = "Comentario: %s";
$lang['Delete: %s'] = "Suprimir: %s";
$lang['Validate: %s'] = "Validar: %s";
$lang['Comment by %s'] = "Comentario de %s";
$lang['User: %s'] = "Usuario: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Administración: %s";
$lang['Registration of %s'] = "Registro de %s";
$lang['Category: %s'] = "Categoría: %s";
$lang['Picture name: %s'] = "Nombre de la imagen: %s";
$lang['Creation date: %s'] = "Fecha de creación: %d";
$lang['Waiting page: %s'] = "Página de espera: %s";
$lang['Picture uploaded by %s'] = "Imagen cargada por %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "El estatus del usuario \"guest\" no es conforme, se utilizará el estatus por defecto. Por favor, informe al administrador del sitio.";
$lang['Administrator, webmaster and special user cannot use this method'] = "El Administrador, el administrador del sitio y el usuario especial no pueden utilizar este método";
$lang['a user use already this mail address'] = "Otro usuario ya utiliza esta dirección e-mail";
$lang['Category results for'] = "Resultados de las categorías para";
$lang['Tag results for'] = "Resultados de las etiquetas para";
$lang['from %s to %s'] = "de %s a %s";
$lang['Play of slideshow'] = "Lectura del diaporama";
$lang['Pause of slideshow'] = "Pausa del diaporama";
$lang['Repeat the slideshow'] = "Repetir el diaporama";
$lang['Not repeat the slideshow'] = "No repetir el diaporama";
$lang['Reduce diaporama speed'] = "Disminuir la velocidad del diaporama";
$lang['Accelerate diaporama speed'] = "Acelerar la velocidad del diaporama";
$lang['Submit'] = "Validar";
$lang['Yes'] = "Si";
$lang['No'] = "No";
$lang['%d image'] = "%d imágen";
$lang['%d images'] = "%d imágenes";
$lang['%d image is also linked to current tags'] = "%d imagen es también vinculada a los tags corrientes";
$lang['%d images are also linked to current tags'] = "%d imagenes son igualmente vinculadas a los tags corrientes";
$lang['See images linked to this tag only'] = "Ver las imágenes relacionadas únicamente a este tag";
$lang['images posted during the last %d days'] = "esta imagen tiene menos de %d dias";
$lang['Choose an image'] = "Elegir una imagen";
$lang['Piwigo Help'] = "Ayuda de Piwigo";
$lang['Rank'] = "Fila";
$lang['group by letters'] = "Reagrupar por letras";
$lang['letters'] = "letras";
$lang['show tag cloud'] = "mostrar la nube de tags";
$lang['cloud'] = "nube";
$lang['Reset to default values'] = "Restablecer los valores predeterminados";
$lang['delete all images from your favorites'] = "Suprimir todas las imágenes de sus favoritos";
$lang['Sent by'] = "Sent by";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,61 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Instalación';
$lang['Initial_config'] = 'Configuración de Base';
$lang['Default_lang'] = 'Idioma por defecto de la galería';
$lang['step1_title'] = 'Configuración de la Base de datos';
$lang['step2_title'] = 'Configuración de la cuenta Administrador';
$lang['Start_Install'] = 'Empezar la instalación';
$lang['reg_err_mail_address'] = 'La dirección mail debe ser de la forma xxx@yyy.eee (ejemplo: jack@altern.org)';
$lang['install_webmaster'] = 'Administrador';
$lang['install_webmaster_info'] = 'Este identificador aparecerá a todos sus visitantes. Le sirvira para administrar el sitio';
$lang['step1_confirmation'] = 'Los parámetros entrados son correctos';
$lang['step1_err_db'] = 'La conexión al servidor es O.K., pero es imposible conectarse a esta base de datos';
$lang['step1_err_server'] = 'Imposible conectarse al servidor';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Huésped MySQL';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'Usuario';
$lang['step1_user_info'] = 'Nombre de usuario para su alojador web';
$lang['step1_pass'] = 'Palabra de paso';
$lang['step1_pass_info'] = 'El proporcionado por su alojador web';
$lang['step1_database'] = 'Nombre de la base';
$lang['step1_database_info'] = 'El proporcionado por su alojador web';
$lang['step1_prefix'] = 'Prefijo nombres de mesa';
$lang['step1_prefix_info'] = 'El nombre de las tablas aparecerá con este prefijo (permite administrar mejor su base de datos)';
$lang['step2_err_login1'] = 'Por favor, escriba un pseudo para el webmaster';
$lang['step2_err_login3'] = 'El pseudo del webmaster no debe contener carácter " y \'';
$lang['step2_err_pass'] = 'Por favor, ponga su contraseña';
$lang['install_end_title'] = 'Instalación finalizada';
$lang['step2_pwd'] = 'Contraseña';
$lang['step2_pwd_info'] = 'Debe quedar confidencial, permite acceder al panel de administración.';
$lang['step2_pwd_conf'] = 'Contraseña [Confirmar]';
$lang['step2_pwd_conf_info'] = 'Comprobación';
$lang['step1_err_copy'] = 'Copie el texto en rosa entre los guillones y pegúelo en el fichero mysql.inc.php que se encuentra en el repertorio " include " a la base del lugar donde usted instaló Piwigo (el fichero mysql.inc.php debe contener SÓLO lo que está en rosa entre las rayas, ninguna vuelta a la línea o espacio es autorizado)';
$lang['install_help'] = '¿ Necesidad de ayuda? Plantee su pregunta sobre él <a href="%s">foro de Piwigo</a>.';
$lang['install_end_message'] = 'La configuración de la aplicación se hizo correctamente , vaya a la etapa sigiente<br /><br />
$lang['Installation'] = "Instalación";
$lang['Basic configuration'] = "Configuración de Base";
$lang['Default gallery language'] = "Idioma por defecto de la galería";
$lang['Database configuration'] = "Configuración de la Base de datos";
$lang['Admin configuration'] = "Configuración de la cuenta Administrador";
$lang['Start Install'] = "Empezar la instalación";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "La dirección mail debe ser de la forma xxx@yyy.eee (ejemplo: jack@altern.org)";
$lang['Webmaster login'] = "Administrador";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "Este identificador aparecerá a todos sus visitantes. Le sirvira para administrar el sitio";
$lang['Parameters are correct'] = "Los parámetros entrados son correctos";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "La conexión al servidor es O.K., pero es imposible conectarse a esta base de datos";
$lang['Can\'t connect to server'] = "Imposible conectarse al servidor";
$lang['The next step of the installation is now possible'] = "Puede seguir con la instalación sigiente";
$lang['next step'] = "Etapa siguiente";
$lang['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)'] = "Copie el texto en rosa entre los guillones y pegúelo en el fichero mysql.inc.php que se encuentra en el repertorio \" include \" a la base del lugar donde usted instaló Piwigo (el fichero mysql.inc.php debe contener SÓLO lo que está en rosa entre las rayas, ninguna vuelta a la línea o espacio es autorizado)";
$lang['Database type'] = "Database type";
$lang['The type of database your piwigo data will be store in'] = "The type of database your piwigo data will be store in";
$lang['Host'] = "Huésped MySQL";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "Usuario";
$lang['user login given by your host provider'] = "Nombre de usuario para su alojador web";
$lang['Password'] = "Palabra de paso";
$lang['user password given by your host provider'] = "El proporcionado por su alojador web";
$lang['Database name'] = "Nombre de la base";
$lang['also given by your host provider'] = "El proporcionado por su alojador web";
$lang['Database table prefix'] = "Prefijo nombres de mesa";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "El nombre de las tablas aparecerá con este prefijo (permite administrar mejor su base de datos)";
$lang['enter a login for webmaster'] = "Por favor, escriba un pseudo para el webmaster";
$lang['webmaster login can\'t contain characters \' or "'] = "El pseudo del webmaster no debe contener carácter \" y '";
$lang['please enter your password again'] = "Por favor, ponga su contraseña";
$lang['Installation finished'] = "Instalación finalizada";
$lang['Webmaster password'] = "Contraseña";
$lang['Keep it confidential, it enables you to access administration panel'] = "Debe quedar confidencial, permite acceder al panel de administración.";
$lang['Password [confirm]'] = "Contraseña [Confirmar]";
$lang['verification'] = "Comprobación";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "¿ Necesidad de ayuda? Plantee su pregunta sobre él <a href=\"%s\">foro de Piwigo</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "La configuración de la aplicación se hizo correctamente , vaya a la etapa sigiente<br /><br />
* Vaya a la página de identificación y conéctese con el pseudo dado para el webmaster<br />
* Éste le permite acceder a la parte administración y a las instrucciones para colocar las imágenes en los repertorios.';
$lang['conf_mail_webmaster'] = 'E-mail del Administrador';
$lang['conf_mail_webmaster_info'] = 'Los visitantes podrán ponerse en contacto con usted por este mail';
$lang['PHP 5 is required'] = 'PHP 5 requerido';
$lang['It appears your webhost is currently running PHP %s.'] = 'Aparentemente, la versión PHP de su alojador web es PHP %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo va a tratar de pasar en PHP 5 creando o modificando el fichero .htaccess.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Note que usted mismo puede cambiar la configuración PHP y volver a lanzar Piwigo después.';
$lang['Try to configure PHP 5'] = 'Trate de configurar PHP 5';
$lang['Sorry!'] = 'Lo siento!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo no pudo configurar PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = 'Usted debe ponerse en contacto con su alojador web con el fin de saber cómo configurar PHP 5';
$lang['Hope to see you back soon.'] = 'Esperando verle muy pronto...';
$lang['step1_err_copy_2'] = 'Puede seguir con la instalación sigiente';
$lang['step1_err_copy_next'] = 'Etapa siguiente';
* Éste le permite acceder a la parte administración y a las instrucciones para colocar las imágenes en los repertorios.";
$lang['Webmaster mail address'] = "E-mail del Administrador";
$lang['Visitors will be able to contact site administrator with this mail'] = "Los visitantes podrán ponerse en contacto con usted por este mail";
$lang['PHP 5 is required'] = "PHP 5 requerido";
$lang['It appears your webhost is currently running PHP %s.'] = "Aparentemente, la versión PHP de su alojador web es PHP %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo va a tratar de pasar en PHP 5 creando o modificando el fichero .htaccess.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Note que usted mismo puede cambiar la configuración PHP y volver a lanzar Piwigo después.";
$lang['Try to configure PHP 5'] = "Trate de configurar PHP 5";
$lang['Sorry!'] = "Lo siento!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo no pudo configurar PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "Usted debe ponerse en contacto con su alojador web con el fin de saber cómo configurar PHP 5";
$lang['Hope to see you back soon.'] = "Esperando verle muy pronto...";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,23 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Actualización';
$lang['introduction message'] = 'Esta página le propone actualizar la base de dato de su antigua versión de piwigo hacia la nueva versión.
El asistente de actualización piensa que la versión actual es la <strong> versión %s </strong> (o equivalente). ';
$lang['Upgrade from %s to %s'] = 'Actualización de la versión %s a %s';
$lang['Statistics'] = 'Estadísticas';
$lang['total upgrade time'] = 'tiempo total de la actualización';
$lang['total SQL time'] = 'tiempo total de la demanda SQL';
$lang['SQL queries'] = 'número de demanda SQL';
$lang['Upgrade informations'] = 'Informaciones sobre la actualización';
$lang['perform a maintenance check'] = 'Por favor, efectúes un mantenimiento en [Administración>Especiales>Mantenimiento] si usted encuentra problemas.';
$lang['deactivated plugins'] = 'Por precaución, el plugins siguiente han sido desactivados. Verifique si existen unas actualización antes de reactivarlos:';
$lang['upgrade login message'] = 'Sólo un administrador puede lanzar la actualización: por favor, identifiqúese más abajo.';
$lang['in include/mysql.inc.php, before ?>, insert:'] = 'En el fichero <i>include/mysql.inc.php</i>, antes <b>?></b>, inserte:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'Todas las subcategorías de categorías privadas se vuelven privadas';
$lang['user permissions and group permissions have been erased'] = 'Las autorizaciones de los usuarios y de los grupos han sido borradas';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Sólo el prefijo de las miniaturas y el email del webmestre han sido salvaguardados por la configuración precedente';
$lang['Upgrade'] = "Actualización";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "Esta página le propone actualizar la base de dato de su antigua versión de piwigo hacia la nueva versión.
El asistente de actualización piensa que la versión actual es la <strong> versión %s </strong> (o equivalente).";
$lang['Upgrade from version %s to %s'] = "Actualización de la versión %s a %s";
$lang['Statistics'] = "Estadísticas";
$lang['total upgrade time'] = "tiempo total de la actualización";
$lang['total SQL time'] = "tiempo total de la demanda SQL";
$lang['SQL queries'] = "número de demanda SQL";
$lang['Upgrade informations'] = "Informaciones sobre la actualización";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Por favor, efectúes un mantenimiento en [Administración>Especiales>Mantenimiento] si usted encuentra problemas.";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "Por precaución, el plugins siguiente han sido desactivados. Verifique si existen unas actualización antes de reactivarlos:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Sólo un administrador puede lanzar la actualización: por favor, identifiqúese más abajo.";
$lang['You do not have access rights to run upgrade'] = "";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "";
$lang['All sub-categories of private categories become private'] = "Todas las subcategorías de categorías privadas se vuelven privadas";
$lang['User permissions and group permissions have been erased'] = "Las autorizaciones de los usuarios y de los grupos han sido borradas";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Sólo el prefijo de las miniaturas y el email del webmestre han sido salvaguardados por la configuración precedente";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,352 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'Français';
$lang_info['country'] = 'France';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'fr';
$lang_info['zero_plural'] = false;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (noté %d fois, écart type = %.2f)';
$lang['%d Kb'] = '%d Ko';
$lang['%d category updated'] = '%d catégorie mise à jour';
$lang['%d categories updated'] = '%d catégories mises à jour';
$lang['%d comment to validate'] = '%d commentaire utilisateur à valider';
$lang['%d comments to validate'] = '%d commentaires utilisateur à valider';
$lang['%d new comment'] = '%d nouveau commentaire utilisateur';
$lang['%d new comments'] = '%d nouveaux commentaires utilisateur';
$lang['%d comment'] = '%d commentaire';
$lang['%d comments'] = '%d commentaires';
$lang['%d hit'] = 'vue %d fois';
$lang['%d hits'] = 'vue %d fois';
$lang['%d new element'] = '%d nouvelle image';
$lang['%d new elements'] = '%d nouvelles images';
$lang['%d new user'] = '%d nouvel utilisateur';
$lang['%d new users'] = '%d nouveaux utilisateurs';
$lang['%d waiting element'] = '%d élément en attente';
$lang['%d waiting elements'] = '%d éléments en attente';
$lang['About'] = 'À propos';
$lang['All tags must match'] = 'Tous les tags doivent correspondre';
$lang['All tags'] = 'Tous les tags';
$lang['Any tag'] = 'N\'importe quel tag';
$lang['At least one listed rule must be satisfied.'] = 'Au moins un des critères doit être satisfait.';
$lang['At least one tag must match'] = 'Au moins un tag doit correspondre';
$lang['Author'] = 'Auteur';
$lang['Average rate'] = 'Note moyenne';
$lang['Categories'] = 'Catégories';
$lang['Category'] = 'Catégorie';
$lang['Close this window'] = 'Fermer cette fenêtre';
$lang['Complete RSS feed'] = 'Flux RSS complet (images, commentaires)';
$lang['Confirm Password'] = 'Confirmer le mot de passe';
$lang['Connection settings'] = 'Paramètres de connexion';
$lang['Connection'] = 'Connexion';
$lang['Contact webmaster'] = 'Contacter le webmestre';
$lang['Create a new account'] = 'Créer un nouveau compte';
$lang['Created on'] = 'Créée le';
$lang['Creation date'] = 'Date de création';
$lang['Current password is wrong'] = 'Erreur sur le mot de passe actuel';
$lang['Dimensions'] = 'Dimensions';
$lang['Display'] = 'Affichage';
$lang['Each listed rule must be satisfied.'] = 'Chaque critère doit être satisfait';
$lang['Email address is missing'] = 'L\'adresse e-mail manque';
$lang['Email address'] = 'Adresse e-mail';
$lang['Enter your personnal informations'] = 'Entrer vos informations personnelles';
$lang['Error sending email'] = 'Erreur à l\'envoi du mail';
$lang['File name'] = 'Nom du fichier';
$lang['File'] = 'Fichier';
$lang['Filesize'] = 'Poids';
$lang['Filter and display'] = 'Filtrer et afficher';
$lang['Filter'] = 'Filtre';
$lang['Forgot your password?'] = 'Mot de passe oublié ?';
$lang['Go through the gallery as a visitor'] = 'Parcourir la galerie en tant que visiteur';
$lang['Help'] = 'Aide';
$lang['Identification'] = 'Identification';
$lang['Image only RSS feed'] = 'Flux RSS des images';
$lang['Keyword'] = 'Mot-clef';
$lang['Links'] = 'Liens';
$lang['Mail address'] = $lang['Email address'];
$lang['N/A'] = 'non disponible';
$lang['New on %s'] = 'Nouveau le %s';
$lang['New password confirmation does not correspond'] = 'Erreur de confirmation de mot de passe';
$lang['New password sent by email'] = 'Nouveau mot de passe envoyé par e-mail';
$lang['No email address'] = 'Pas d\'adresse e-mail';
$lang['No user matches this email address'] = 'Cette adresse e-mail ne correspond à aucun utilisateur classique';
$lang['Notification'] = 'Notification';
$lang['Number of items'] = 'Nombre d\'élément';
$lang['Original dimensions'] = 'Dimensions d\'origine';
$lang['Password forgotten'] = 'Mot de passe oublié';
$lang['Password'] = 'Mot de passe';
$lang['Post date'] = 'Date d\'ajout';
$lang['Posted on'] = 'Ajoutée le';
$lang['Profile'] = 'Profil';
$lang['Quick connect'] = 'Connexion rapide';
$lang['RSS feed'] = 'flux RSS';
$lang['Rate'] = 'Note';
$lang['Register'] = 'S\'enregistrer';
$lang['Registration'] = 'Enregistrement';
$lang['Related tags'] = 'Tags liés';
$lang['Reset'] = 'Annuler';
$lang['Retrieve password'] = 'Récupérer un mot de passe';
$lang['Search rules'] = 'Critères de recherche';
$lang['Search tags'] = 'Rechercher les tags';
$lang['Search'] = 'Rechercher';
$lang['See available tags'] = 'Voir les tags disponibles';
$lang['Send new password'] = 'Envoyer le nouveau mot de passe';
$lang['Since'] = 'Depuis';
$lang['Sort by'] = 'Trier selon';
$lang['Sort order'] = 'Ordre de tri';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'Le flux RSS notifie les événements de la galerie : nouvelles images, catégories mises à jour, nouveaux commentaires utilisateur. À utiliser avec un lecteur de flux RSS.';
$lang['Unknown feed identifier'] = 'Identifiant de flux inconnu';
$lang['User comments'] = 'Commentaires utilisateur';
$lang['Username'] = 'Nom d\'utilisateur';
$lang['Visits'] = 'Visites';
$lang['Webmaster'] = 'Webmestre';
$lang['Week %d'] = 'Semaine %d';
$lang['about_page_title'] = 'À propos de Piwigo';
$lang['access_forbiden'] = 'Vous n\'êtes pas autorisé sur la page demandée';
$lang['add to caddie'] = 'ajouter au panier';
$lang['add_favorites_hint'] = 'ajouter cette image à vos favoris';
$lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Mode conseiller actif';
$lang['all'] = 'tout';
$lang['ascending'] = 'croissant';
$lang['author(s) : %s'] = 'auteur(s) : %s';
$lang['auto_expand'] = 'Développer toutes les catégories';
$lang['became available after %s (%s)'] = 'mis à disposition après le %s (%s)';
$lang['became available before %s (%s)'] = 'mis à disposition avant le %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'mis à disposition entre le %s (%s) et le %s (%s)';
$lang['became available on %s'] = 'mis à disposition le %s';
$lang['best_rated_cat'] = 'Mieux notées';
$lang['best_rated_cat_hint'] = 'afficher les images les mieux notées';
$lang['caddie'] = 'Panier';
$lang['calendar'] = 'Calendrier';
$lang['calendar_any'] = 'Tout';
$lang['calendar_hint'] = 'affichage année par année, mois par mois, jour par jour';
$lang['calendar_picture_hint'] = 'afficher les images du ';
$lang['calendar_view'] = 'Vue';
$lang['chronology_monthly_calendar'] = 'Calendrier mensuel';
$lang['chronology_monthly_list'] = 'Liste mensuelle';
$lang['chronology_weekly_list'] = 'Liste hebdomadaire';
$lang['click_to_redirect'] = 'Cliquez ici si votre navigateur ne vous redirige pas.';
$lang['comment date'] = 'date du commentaire';
$lang['comment'] = 'Commentaire';
$lang['comment_added'] = 'Votre commentaire a été enregistré';
$lang['comment_anti-flood'] = 'Système anti-abus : merci de patienter avant d\'ajouter un nouveau commentaire';
$lang['comment_not_added'] = 'Votre commentaire n\'a pas été enregistré parce qu\'il ne vérifie pas les règles de validation';
$lang['comment_to_validate'] = 'Un administrateur doit valider votre commentaire afin qu\'il soit visible.';
$lang['comment_user_exists'] = 'Ce nom d\'utilisateur est déjà pris';
$lang['comments'] = 'Commentaires';
$lang['comments_add'] = 'Ajouter un commentaire';
$lang['created after %s (%s)'] = 'créée après le %s (%s)';
$lang['created before %s (%s)'] = 'créée avant le %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'créée entre le %s (%s) et le %s (%s)';
$lang['created on %s'] = 'créée le %s';
$lang['customize'] = 'Personnaliser';
$lang['customize_page_title'] = 'Personnalisation de votre affichage ';
$lang['day'][0] = 'Dimanche';
$lang['day'][1] = 'Lundi';
$lang['day'][2] = 'Mardi';
$lang['day'][3] = 'Mercredi';
$lang['day'][4] = 'Jeudi';
$lang['day'][5] = 'Vendredi';
$lang['day'][6] = 'Samedi';
$lang['default_sort'] = 'Par défaut';
$lang['del_favorites_hint'] = 'supprimer cette image de vos favoris';
$lang['delete'] = 'Supprimer';
$lang['descending'] = 'décroissant';
$lang['download'] = 'télécharger';
$lang['download_hint'] = 'télécharger ce fichier';
$lang['edit'] = 'éditer';
$lang['err_date'] = 'date erronée';
$lang['excluded'] = 'exclus';
$lang['favorite_cat'] = 'Mes favorites';
$lang['favorite_cat_hint'] = 'afficher mes images favorites';
$lang['favorites'] = 'Favoris';
$lang['first_page'] = 'Première';
$lang['gallery_locked_message'] = 'La galerie est verrouillée pour cause de maintenance. Revenir plus tard.';
$lang['generation_time'] = 'Page fabriquée en';
$lang['guest'] = 'visiteur';
$lang['hello'] = 'Bonjour';
$lang['hint_admin'] = 'disponible uniquement pour les administrateurs';
$lang['hint_category'] = 'montre les images à la racine de cette catégorie';
$lang['hint_comments'] = 'Voir les derniers commentaires utilisateur';
$lang['hint_customize'] = 'personnaliser l\'apparence de la galerie';
$lang['hint_search'] = 'recherche';
$lang['home'] = 'Accueil';
$lang['identification'] = 'Identification';
$lang['images_available_cpl'] = 'dans cette catégorie';
$lang['images_available_cat'] = 'dans %d sous-catégorie';
$lang['images_available_cats'] = 'dans %d sous-catégories';
$lang['included'] = 'inclus';
$lang['invalid_pwd'] = 'Mot de passe invalide !';
$lang['language'] = 'Langue';
$lang['last %d days'] = '%d derniers jours';
$lang['last_page'] = 'Dernière';
$lang['logout'] = 'Déconnexion';
$lang['mail_address'] = $lang['Email address'];
$lang['mandatory'] = 'obligatoire';
$lang['maxheight'] = 'Hauteur maximum des images';
$lang['maxheight_error'] = 'La hauteur maximum des images doit être supérieure à 50';
$lang['maxwidth'] = 'Largeur maximum des images';
$lang['maxwidth_error'] = 'La largeur des images doit être supérieure à 50';
$lang['mode_created_hint'] = 'afficher un calendrier par date de création';
$lang['mode_flat_hint'] = 'afficher à plat les éléments des catégories et des sous-catégories';
$lang['mode_normal_hint'] = 'retourner à la vue normale';
$lang['mode_posted_hint'] = 'afficher un calendrier par date d\'ajout';
$lang['month'][10] = 'Octobre';
$lang['month'][11] = 'Novembre';
$lang['month'][12] = 'Décembre';
$lang['month'][1] = 'Janvier';
$lang['month'][2] = 'Février';
$lang['month'][3] = 'Mars';
$lang['month'][4] = 'Avril';
$lang['month'][5] = 'Mai';
$lang['month'][6] = 'Juin';
$lang['month'][7] = 'Juillet';
$lang['month'][8] = 'Août';
$lang['month'][9] = 'Septembre';
$lang['most_visited_cat'] = 'Plus vues';
$lang['most_visited_cat_hint'] = 'afficher les images les plus vues';
$lang['nb_image_line_error'] = 'Le nombre d\'images par ligne doit être un entier non nul';
$lang['nb_image_per_row'] = 'Nombre de miniatures par ligne';
$lang['nb_line_page_error'] = 'Le nombre de lignes par page doit être un entier non nul';
$lang['nb_row_per_page'] = 'Nombre de lignes par page';
$lang['nbm_unknown_identifier'] = 'Identifiants inconnus';
$lang['new_password'] = 'Nouveau mot de passe';
$lang['new_rate'] = 'Votez pour cette image';
$lang['next_page'] = 'Suivante';
$lang['no_category'] = 'Accueil';
$lang['no_rate'] = 'pas de note';
$lang['note_filter_day'] = 'L\'ensemble des éléments est filtré pour n\'afficher que les éléments récents de moins de %d jour.';
$lang['note_filter_days'] = 'L\'ensemble des éléments est filtré pour n\'afficher que les éléments récents de moins de %d jours.';
$lang['password updated'] = 'mot de passe mis à jour';
$lang['periods_error'] = 'La période de nouveauté doit être un entier positif';
$lang['picture'] = 'image';
$lang['picture_high'] = 'Cliquer sur l\'image pour la visualiser en haute définition';
$lang['picture_show_metadata'] = 'Montrer les méta-données du fichier';
$lang['powered_by'] = 'Propulsé par';
$lang['preferences'] = 'Préférences';
$lang['previous_page'] = 'Précédente';
$lang['random_cat'] = 'Images au hasard';
$lang['random_cat_hint'] = 'afficher un ensemble aléatoire d\'images';
$lang['recent_cats_cat'] = 'Catégories récentes';
$lang['recent_cats_cat_hint'] = 'afficher les catégories récemment mises à jour ou créées';
$lang['recent_period'] = 'Période récente';
$lang['recent_pics_cat'] = 'Images récentes';
$lang['recent_pics_cat_hint'] = 'afficher les images les plus récentes';
$lang['redirect_msg'] = 'Redirection...';
$lang['reg_err_login1'] = 'S\'il vous plaît, entrez un nom utilisateur';
$lang['reg_err_login2'] = 'le nom utilisateur ne doit pas se terminer par un espace';
$lang['reg_err_login3'] = 'le nom utilisateur ne doit pas commencer par un espace';
$lang['reg_err_login5'] = 'ce nom utilisateur est déjà pris';
$lang['reg_err_mail_address'] = 'l\'adresse e-mail doit être de la forme xxx@yyy.eee (exemple : jack@altern.org)';
$lang['reg_err_pass'] = 'S\'il vous plaît, entrez à nouveau votre mot de passe';
$lang['remember_me'] = 'Connexion auto';
$lang['remove this tag'] = 'enlever ce tag de la liste';
$lang['representative'] = 'Représentante';
$lang['return to homepage'] = 'retour à la page d\'accueil';
$lang['search_author'] = 'Rechercher un auteur';
$lang['search_categories'] = 'Rechercher dans les catégories';
$lang['search_date'] = 'Recherche par date';
$lang['search_date_from'] = 'Date';
$lang['search_date_to'] = 'Date de fin';
$lang['search_date_type'] = 'Type de date';
$lang['search_keywords'] = 'Recherche de mot';
$lang['search_mode_and'] = 'Rechercher tous les mots';
$lang['search_mode_or'] = 'Rechercher un des mots';
$lang['search_one_clause_at_least'] = 'Requête vide. Aucun critère fourni.';
$lang['search_options'] = 'Options de recherche';
$lang['search_result'] = 'Résultats de recherche';
$lang['search_subcats_included'] = 'Rechercher dans les sous-catégories';
$lang['search_title'] = 'Recherche';
$lang['searched words : %s'] = 'mots recherchés : %s';
$lang['send_mail'] = 'Contacter';
$lang['set as category representative'] = 'Choisir comme représentante de cette catégorie';
$lang['show_nb_comments'] = 'Montrer le nombre de commentaires';
$lang['show_nb_hits'] = 'Montrer le nombre de visualisations';
$lang['slideshow'] = 'Diaporama';
$lang['slideshow_stop'] = 'arrêter le diaporama';
$lang['special_categories'] = 'Spéciales';
$lang['sql_queries_in'] = 'requêtes SQL en';
$lang['start_filter_hint'] = 'n\'afficher que les éléments récents';
$lang['stop_filter_hint'] = 'retourner à l\'affichage de tous les éléments';
$lang['the beginning'] = 'le début';
$lang['theme'] = 'Thème de l\'interface';
$lang['thumbnails'] = 'Miniatures';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'Un commentaire sur le site';
$lang['today'] = 'aujourd\'hui';
$lang['update_rate'] = 'Mettre à jour votre note';
$lang['update_wrong_dirname'] = 'mauvais nom de répertoire';
$lang['upload_advise_filesize'] = 'le poids de l\'image ne doit dépasser : ';
$lang['upload_advise_filetype'] = 'le format de l\'image doit être jpg, png ou gif';
$lang['upload_advise_height'] = 'la hauteur de l\'image ne doit pas dépasser : ';
$lang['upload_advise_thumbnail'] = 'Optionnel, mais recommandé : choisir une miniature à associer ';
$lang['upload_advise_width'] = 'la largeur de l\'image ne doit pas dépasser : ';
$lang['upload_author'] = 'Auteur';
$lang['upload_cannot_upload'] = 'impossible de transférer le fichier sur le serveur';
$lang['upload_err_username'] = 'nom d\'utilisateur manquant';
$lang['upload_file_exists'] = 'ce fichier existe déjà';
$lang['upload_filenotfound'] = 'le format du fichier n\'est pas un format d\'image';
$lang['upload_forbidden'] = 'impossible d\'ajouter une image dans cette catégorie';
$lang['upload_name'] = 'Nom de l\'image';
$lang['upload_picture'] = 'Ajouter une image';
$lang['upload_successful'] = 'Image ajoutée avec succès, un administrateur doit valider l\'ajout pour le rendre visible';
$lang['upload_title'] = 'Ajouter une image';
$lang['useful when password forgotten'] = 'utile en cas d\'oubli de mot de passe';
$lang['qsearch'] = 'Recherche rapide';
$lang['Connected user: %s'] = 'Utilisateur connecté: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Navigateur: %s';
$lang['Author: %s'] = 'Auteur: %s';
$lang['Comment: %s'] = 'Commentaire: %s';
$lang['Delete: %s'] = 'Suppression: %s';
$lang['Validate: %s'] = 'Validation: %s';
$lang['Comment by %s'] = 'Commentaire par %s';
$lang['User: %s'] = 'Utilisateur: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Administration: %s';
$lang['Registration of %s'] = 'Enregistrement de %s';
$lang['Category: %s'] = 'Catégorie: %s';
$lang['Picture name: %s'] = 'Nom de l\'image: %s';
$lang['Creation date: %s'] = 'Date de création: %d';
$lang['Waiting page: %s'] = 'Page en attente: %s';
$lang['Picture uploaded by %s'] = 'Image téléchargée par %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Statut de l\'utilisateur "guest" non conforme, utilisation du statut par défaut. Veuillez prévenir le webmestre.';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrateur, webmestre et utilisateur spécial ne peuvent pas utiliser cette méthode';
$lang['reg_err_mail_address_dbl'] = 'un utilisateur utilise déjà cette adresse e-mail';
$lang['Category results for'] = 'Résultats des catégories pour';
$lang['Tag results for'] = 'Résultats des tags pour';
$lang['from %s to %s'] = 'du %s au %s';
$lang['start_play'] = 'Lecture du diaporama';
$lang['stop_play'] = 'Pause du diaporama';
$lang['start_repeat'] = 'Répeter le diaporama';
$lang['stop_repeat'] = 'Ne pas répeter le diaporama';
$lang['inc_period'] = 'Ralentir la vitesse du diaporama';
$lang['dec_period'] = 'Accélerer la vitesse du diaporama';
$lang['Submit'] = 'Valider';
$lang['Yes'] = 'Oui';
$lang['No'] = 'Non';
$lang['%d element']='%d image';
$lang['%d elements']='%d images';
$lang['%d element are also linked to current tags'] = '%d image est également liée aux tags courants';
$lang['%d elements are also linked to current tags'] = '%d images sont également liées aux tags courants';
$lang['See elements linked to this tag only'] = 'Voir les images liées uniquement à ce tag';
$lang['elements posted during the last %d days'] = 'images ajoutées au cours de %d derniers jours';
$lang['Choose an image'] = 'Choisir une image à ajouter';
$lang['Piwigo Help'] = 'Aide de Piwigo';
$lang['Rank'] = 'Rang';
$lang['group by letters'] = 'regrouper par lettres';
$lang['letters'] = 'lettres';
$lang['show tag cloud'] = 'montrer le nuage de tags';
$lang['cloud'] = 'nuage';
$lang['Reset_To_Default'] = 'Rétablir les valeurs par défaut';
$lang['del_all_favorites_hint'] = 'supprimer toutes les images de vos favoris';
$lang['Sent by'] = 'Envoyé par';
$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.';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (noté %d fois, écart type = %.2f)";
$lang['%d Kb'] = "%d Ko";
$lang['%d category updated'] = "%d catégorie mise à jour";
$lang['%d categories updated'] = "%d catégories mises à jour";
$lang['%d comment to validate'] = "%d commentaire utilisateur à valider";
$lang['%d comments to validate'] = "%d commentaires utilisateur à valider";
$lang['%d new comment'] = "%d nouveau commentaire utilisateur";
$lang['%d new comments'] = "%d nouveaux commentaires utilisateur";
$lang['%d comment'] = "%d commentaire";
$lang['%d comments'] = "%d commentaires";
$lang['%d hit'] = "vue %d fois";
$lang['%d hits'] = "vue %d fois";
$lang['%d new image'] = "%d nouvelle image";
$lang['%d new images'] = "%d nouvelles images";
$lang['%d new user'] = "%d nouvel utilisateur";
$lang['%d new users'] = "%d nouveaux utilisateurs";
$lang['%d waiting element'] = "%d élément en attente";
$lang['%d waiting elements'] = "%d éléments en attente";
$lang['About'] = "À propos";
$lang['All tags must match'] = "Tous les tags doivent correspondre";
$lang['All tags'] = "Tous les tags";
$lang['Any tag'] = "N'importe quel tag";
$lang['At least one listed rule must be satisfied.'] = "Au moins un des critères doit être satisfait.";
$lang['At least one tag must match'] = "Au moins un tag doit correspondre";
$lang['Author'] = "Auteur";
$lang['Average rate'] = "Note moyenne";
$lang['Categories'] = "Catégories";
$lang['Category'] = "Catégorie";
$lang['Close this window'] = "Fermer cette fenêtre";
$lang['Complete RSS feed (images, comments)'] = "Flux RSS complet (images, commentaires)";
$lang['Confirm Password'] = "Confirmer le mot de passe";
$lang['Connection settings'] = "Paramètres de connexion";
$lang['Login'] = "Connexion";
$lang['Contact webmaster'] = "Contacter le webmestre";
$lang['Create a new account'] = "Créer un nouveau compte";
$lang['Created on'] = "Créée le";
$lang['Creation date'] = "Date de création";
$lang['Current password is wrong'] = "Erreur sur le mot de passe actuel";
$lang['Dimensions'] = "Dimensions";
$lang['Display'] = "Affichage";
$lang['Each listed rule must be satisfied.'] = "Chaque critère doit être satisfait";
$lang['Email address is missing'] = "L'adresse e-mail manque";
$lang['Email address'] = "Adresse e-mail";
$lang['Enter your personnal informations'] = "Entrer vos informations personnelles";
$lang['Error sending email'] = "Erreur à l'envoi du mail";
$lang['File name'] = "Nom du fichier";
$lang['File'] = "Fichier";
$lang['Filesize'] = "Poids";
$lang['Filter and display'] = "Filtrer et afficher";
$lang['Filter'] = "Filtre";
$lang['Forgot your password?'] = "Mot de passe oublié ?";
$lang['Go through the gallery as a visitor'] = "Parcourir la galerie en tant que visiteur";
$lang['Help'] = "Aide";
$lang['Identification'] = "Identification";
$lang['Image only RSS feed'] = "Flux RSS des images";
$lang['Keyword'] = "Mot-clef";
$lang['Links'] = "Liens";
$lang['Mail address'] = "Adresse e-mail";
$lang['N/A'] = "non disponible";
$lang['New on %s'] = "Nouveau le %s";
$lang['New password confirmation does not correspond'] = "Erreur de confirmation de mot de passe";
$lang['New password sent by email'] = "Nouveau mot de passe envoyé par e-mail";
$lang['No email address'] = "Pas d'adresse e-mail";
$lang['No classic user matches this email address'] = "Cette adresse e-mail ne correspond à aucun utilisateur classique";
$lang['Notification'] = "Notification";
$lang['Number of items'] = "Nombre d'élément";
$lang['Original dimensions'] = "Dimensions d'origine";
$lang['Password forgotten'] = "Mot de passe oublié";
$lang['Password'] = "Mot de passe";
$lang['Post date'] = "Date d'ajout";
$lang['Posted on'] = "Ajoutée le";
$lang['Profile'] = "Profil";
$lang['Quick connect'] = "Connexion rapide";
$lang['RSS feed'] = "flux RSS";
$lang['Rate'] = "Note";
$lang['Register'] = "S'enregistrer";
$lang['Registration'] = "Enregistrement";
$lang['Related tags'] = "Tags liés";
$lang['Reset'] = "Annuler";
$lang['Retrieve password'] = "Récupérer un mot de passe";
$lang['Search rules'] = "Critères de recherche";
$lang['Search tags'] = "Rechercher les tags";
$lang['Search'] = "Rechercher";
$lang['See available tags'] = "Voir les tags disponibles";
$lang['Send new password'] = "Envoyer le nouveau mot de passe";
$lang['Since'] = "Depuis";
$lang['Sort by'] = "Trier selon";
$lang['Sort order'] = "Ordre de tri";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "Le flux RSS notifie les événements de la galerie : nouvelles images, catégories mises à jour, nouveaux commentaires utilisateur. À utiliser avec un lecteur de flux RSS.";
$lang['Unknown feed identifier'] = "Identifiant de flux inconnu";
$lang['User comments'] = "Commentaires utilisateur";
$lang['Username'] = "Nom d'utilisateur";
$lang['Visits'] = "Visites";
$lang['Webmaster'] = "Webmestre";
$lang['Week %d'] = "Semaine %d";
$lang['About Piwigo'] = "À propos de Piwigo";
$lang['You are not authorized to access the requested page'] = "Vous n'êtes pas autorisé sur la page demandée";
$lang['add to caddie'] = "ajouter au panier";
$lang['add this image to your favorites'] = "ajouter cette image à vos favoris";
$lang['Administration'] = "Administration";
$lang['Adviser mode enabled'] = "Mode conseiller actif";
$lang['all'] = "tout";
$lang['ascending'] = "croissant";
$lang['author(s) : %s'] = "auteur(s) : %s";
$lang['Expand all categories'] = "Développer toutes les catégories";
$lang['posted after %s (%s)'] = "mis à disposition après le %s (%s)";
$lang['posted before %s (%s)'] = "mis à disposition avant le %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "mis à disposition entre le %s (%s) et le %s (%s)";
$lang['posted on %s'] = "mis à disposition le %s";
$lang['Best rated'] = "Mieux notées";
$lang['display best rated items'] = "afficher les images les mieux notées";
$lang['caddie'] = "Panier";
$lang['Calendar'] = "Calendrier";
$lang['All'] = "Tout";
$lang['display each day with pictures, month per month'] = "affichage année par année, mois par mois, jour par jour";
$lang['display pictures added on'] = "afficher les images du";
$lang['View'] = "Vue";
$lang['chronology_monthly_calendar'] = "Calendrier mensuel";
$lang['chronology_monthly_list'] = "Liste mensuelle";
$lang['chronology_weekly_list'] = "Liste hebdomadaire";
$lang['Click here if your browser does not automatically forward you'] = "Cliquez ici si votre navigateur ne vous redirige pas.";
$lang['comment date'] = "date du commentaire";
$lang['Comment'] = "Commentaire";
$lang['Your comment has been registered'] = "Votre commentaire a été enregistré";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Système anti-abus : merci de patienter avant d'ajouter un nouveau commentaire";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Votre commentaire n'a pas été enregistré parce qu'il ne vérifie pas les règles de validation";
$lang['An administrator must authorize your comment before it is visible.'] = "Un administrateur doit valider votre commentaire afin qu'il soit visible.";
$lang['This login is already used by another user'] = "Ce nom d'utilisateur est déjà pris";
$lang['Comments'] = "Commentaires";
$lang['Add a comment'] = "Ajouter un commentaire";
$lang['created after %s (%s)'] = "créée après le %s (%s)";
$lang['created before %s (%s)'] = "créée avant le %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "créée entre le %s (%s) et le %s (%s)";
$lang['created on %s'] = "créée le %s";
$lang['Customize'] = "Personnaliser";
$lang['Your Gallery Customization'] = "Personnalisation de votre affichage";
$lang['day'][0] = "Dimanche";
$lang['day'][1] = "Lundi";
$lang['day'][2] = "Mardi";
$lang['day'][3] = "Mercredi";
$lang['day'][4] = "Jeudi";
$lang['day'][5] = "Vendredi";
$lang['day'][6] = "Samedi";
$lang['Default'] = "Par défaut";
$lang['delete this image from your favorites'] = "supprimer cette image de vos favoris";
$lang['Delete'] = "Supprimer";
$lang['descending'] = "décroissant";
$lang['download'] = "télécharger";
$lang['download this file'] = "télécharger ce fichier";
$lang['edit'] = "éditer";
$lang['wrong date'] = "date erronée";
$lang['excluded'] = "exclus";
$lang['My favorites'] = "Mes favorites";
$lang['display my favorites pictures'] = "afficher mes images favorites";
$lang['Favorites'] = "Favoris";
$lang['First'] = "Première";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "La galerie est verrouillée pour cause de maintenance. Revenir plus tard.";
$lang['Page generated in'] = "Page fabriquée en";
$lang['guest'] = "visiteur";
$lang['Hello'] = "Bonjour";
$lang['available for administrators only'] = "disponible uniquement pour les administrateurs";
$lang['shows images at the root of this category'] = "montre les images à la racine de cette catégorie";
$lang['See last users comments'] = "Voir les derniers commentaires utilisateur";
$lang['customize the appareance of the gallery'] = "personnaliser l'apparence de la galerie";
$lang['search'] = "recherche";
$lang['Home'] = "Accueil";
$lang['Identification'] = "Identification";
$lang['in this category'] = "dans cette catégorie";
$lang['in %d sub-category'] = "dans %d sous-catégorie";
$lang['in %d sub-categories'] = "dans %d sous-catégories";
$lang['included'] = "inclus";
$lang['Invalid password!'] = "Mot de passe invalide !";
$lang['Language'] = "Langue";
$lang['last %d days'] = "%d derniers jours";
$lang['Last'] = "Dernière";
$lang['Logout'] = "Déconnexion";
$lang['E-mail address'] = "Adresse e-mail";
$lang['obligatory'] = "obligatoire";
$lang['Maximum height of the pictures'] = "Hauteur maximum des images";
$lang['Maximum height must be a number superior to 50'] = "La hauteur maximum des images doit être supérieure à 50";
$lang['Maximum width of the pictures'] = "Largeur maximum des images";
$lang['Maximum width must be a number superior to 50'] = "La largeur des images doit être supérieure à 50";
$lang['display a calendar by creation date'] = "afficher un calendrier par date de création";
$lang['display all elements in all sub-categories'] = "afficher à plat les éléments des catégories et des sous-catégories";
$lang['return to normal view mode'] = "retourner à la vue normale";
$lang['display a calendar by posted date'] = "afficher un calendrier par date d'ajout";
$lang['month'][10] = "Octobre";
$lang['month'][11] = "Novembre";
$lang['month'][12] = "Décembre";
$lang['month'][1] = "Janvier";
$lang['month'][2] = "Février";
$lang['month'][3] = "Mars";
$lang['month'][4] = "Avril";
$lang['month'][5] = "Mai";
$lang['month'][6] = "Juin";
$lang['month'][7] = "Juillet";
$lang['month'][8] = "Août";
$lang['month'][9] = "Septembre";
$lang['Most visited'] = "Plus vues";
$lang['display most visited pictures'] = "afficher les images les plus vues";
$lang['The number of images per row must be a not null scalar'] = "Le nombre d'images par ligne doit être un entier non nul";
$lang['Number of images per row'] = "Nombre de miniatures par ligne";
$lang['The number of rows per page must be a not null scalar'] = "Le nombre de lignes par page doit être un entier non nul";
$lang['Number of rows per page'] = "Nombre de lignes par page";
$lang['Unknown identifier'] = "Identifiants inconnus";
$lang['New password'] = "Nouveau mot de passe";
$lang['Rate this picture'] = "Votez pour cette image";
$lang['Next'] = "Suivante";
$lang['Home'] = "Accueil";
$lang['no rate'] = "pas de note";
$lang['Elements posted within the last %d day.'] = "L'ensemble des éléments est filtré pour n'afficher que les éléments récents de moins de %d jour.";
$lang['Elements posted within the last %d days.'] = "L'ensemble des éléments est filtré pour n'afficher que les éléments récents de moins de %d jours.";
$lang['password updated'] = "mot de passe mis à jour";
$lang['Recent period must be a positive integer value'] = "La période de nouveauté doit être un entier positif";
$lang['picture'] = "image";
$lang['Click on the picture to see it in high definition'] = "Cliquer sur l'image pour la visualiser en haute définition";
$lang['Show file metadata'] = "Montrer les méta-données du fichier";
$lang['Powered by'] = "Propulsé par";
$lang['Preferences'] = "Préférences";
$lang['Previous'] = "Précédente";
$lang['Random pictures'] = "Images au hasard";
$lang['display a set of random pictures'] = "afficher un ensemble aléatoire d'images";
$lang['Recent categories'] = "Catégories récentes";
$lang['display recently updated categories'] = "afficher les catégories récemment mises à jour ou créées";
$lang['Recent period'] = "Période récente";
$lang['Recent pictures'] = "Images récentes";
$lang['display most recent pictures'] = "afficher les images les plus récentes";
$lang['Redirection...'] = "Redirection...";
$lang['Please, enter a login'] = "S'il vous plaît, entrez un nom utilisateur";
$lang['login mustn\'t end with a space character'] = "le nom utilisateur ne doit pas se terminer par un espace";
$lang['login mustn\'t start with a space character'] = "le nom utilisateur ne doit pas commencer par un espace";
$lang['this login is already used'] = "ce nom utilisateur est déjà pris";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "l'adresse e-mail doit être de la forme xxx@yyy.eee (exemple : jack@altern.org)";
$lang['please enter your password again'] = "S'il vous plaît, entrez à nouveau votre mot de passe";
$lang['Auto login'] = "Connexion auto";
$lang['remove this tag from the list'] = "enlever ce tag de la liste";
$lang['representative'] = "Représentante";
$lang['return to homepage'] = "retour à la page d'accueil";
$lang['Search for Author'] = "Rechercher un auteur";
$lang['Search in Categories'] = "Rechercher dans les catégories";
$lang['Search by Date'] = "Recherche par date";
$lang['Date'] = "Date";
$lang['End-Date'] = "Date de fin";
$lang['Kind of date'] = "Type de date";
$lang['Search for words'] = "Recherche de mot";
$lang['Search for all terms'] = "Rechercher tous les mots";
$lang['Search for any terms'] = "Rechercher un des mots";
$lang['Empty query. No criteria has been entered.'] = "Requête vide. Aucun critère fourni.";
$lang['Search Options'] = "Options de recherche";
$lang['Search results'] = "Résultats de recherche";
$lang['Search in subcategories'] = "Rechercher dans les sous-catégories";
$lang['Search'] = "Recherche";
$lang['searched words : %s'] = "mots recherchés : %s";
$lang['Contact'] = "Contacter";
$lang['set as category representative'] = "Choisir comme représentante de cette catégorie";
$lang['Show number of comments'] = "Montrer le nombre de commentaires";
$lang['Show number of hits'] = "Montrer le nombre de visualisations";
$lang['slideshow'] = "Diaporama";
$lang['stop the slideshow'] = "arrêter le diaporama";
$lang['Specials'] = "Spéciales";
$lang['SQL queries in'] = "requêtes SQL en";
$lang['display only recently posted images'] = "n'afficher que les éléments récents";
$lang['return to the display of all images'] = "retourner à l'affichage de tous les éléments";
$lang['the beginning'] = "le début";
$lang['Interface theme'] = "Thème de l'interface";
$lang['Thumbnails'] = "Miniatures";
$lang['Menu'] = "Menu";
$lang['A comment on your site'] = "Un commentaire sur le site";
$lang['today'] = "aujourd'hui";
$lang['Update your rating'] = "Mettre à jour votre note";
$lang['wrong filename'] = "mauvais nom de répertoire";
$lang['the filesize of the picture must not exceed :'] = "le poids de l'image ne doit dépasser :";
$lang['the picture must be to the fileformat jpg, gif or png'] = "le format de l'image doit être jpg, png ou gif";
$lang['the height of the picture must not exceed :'] = "la hauteur de l'image ne doit pas dépasser :";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Optionnel, mais recommandé : choisir une miniature à associer";
$lang['the width of the picture must not exceed :'] = "la largeur de l'image ne doit pas dépasser :";
$lang['Author'] = "Auteur";
$lang['can\'t upload the picture on the server'] = "impossible de transférer le fichier sur le serveur";
$lang['the username must be given'] = "nom d'utilisateur manquant";
$lang['A picture\'s name already used'] = "ce fichier existe déjà";
$lang['You must choose a picture fileformat for the image'] = "le format du fichier n'est pas un format d'image";
$lang['You can\'t upload pictures in this category'] = "impossible d'ajouter une image dans cette catégorie";
$lang['Name of the picture'] = "Nom de l'image";
$lang['Upload a picture'] = "Ajouter une image";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Image ajoutée avec succès, un administrateur doit valider l'ajout pour le rendre visible";
$lang['Upload a picture'] = "Ajouter une image";
$lang['useful when password forgotten'] = "utile en cas d'oubli de mot de passe";
$lang['Quick search'] = "Recherche rapide";
$lang['Connected user: %s'] = "Utilisateur connecté: %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Navigateur: %s";
$lang['Author: %s'] = "Auteur: %s";
$lang['Comment: %s'] = "Commentaire: %s";
$lang['Delete: %s'] = "Suppression: %s";
$lang['Validate: %s'] = "Validation: %s";
$lang['Comment by %s'] = "Commentaire par %s";
$lang['User: %s'] = "Utilisateur: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Administration: %s";
$lang['Registration of %s'] = "Enregistrement de %s";
$lang['Category: %s'] = "Catégorie: %s";
$lang['Picture name: %s'] = "Nom de l'image: %s";
$lang['Creation date: %s'] = "Date de création: %d";
$lang['Waiting page: %s'] = "Page en attente: %s";
$lang['Picture uploaded by %s'] = "Image téléchargée par %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Statut de l'utilisateur \"guest\" non conforme, utilisation du statut par défaut. Veuillez prévenir le webmestre.";
$lang['Administrator, webmaster and special user cannot use this method'] = "Administrateur, webmestre et utilisateur spécial ne peuvent pas utiliser cette méthode";
$lang['a user use already this mail address'] = "un utilisateur utilise déjà cette adresse e-mail";
$lang['Category results for'] = "Résultats des catégories pour";
$lang['Tag results for'] = "Résultats des tags pour";
$lang['from %s to %s'] = "du %s au %s";
$lang['Play of slideshow'] = "Lecture du diaporama";
$lang['Pause of slideshow'] = "Pause du diaporama";
$lang['Repeat the slideshow'] = "Répeter le diaporama";
$lang['Not repeat the slideshow'] = "Ne pas répeter le diaporama";
$lang['Reduce diaporama speed'] = "Ralentir la vitesse du diaporama";
$lang['Accelerate diaporama speed'] = "Accélerer la vitesse du diaporama";
$lang['Submit'] = "Valider";
$lang['Yes'] = "Oui";
$lang['No'] = "Non";
$lang['%d image'] = "%d image";
$lang['%d images'] = "%d images";
$lang['%d image is also linked to current tags'] = "%d image est également liée aux tags courants";
$lang['%d images are also linked to current tags'] = "%d images sont également liées aux tags courants";
$lang['See images linked to this tag only'] = "Voir les images liées uniquement à ce tag";
$lang['images posted during the last %d days'] = "images ajoutées au cours de %d derniers jours";
$lang['Choose an image'] = "Choisir une image à ajouter";
$lang['Piwigo Help'] = "Aide de Piwigo";
$lang['Rank'] = "Rang";
$lang['group by letters'] = "regrouper par lettres";
$lang['letters'] = "lettres";
$lang['show tag cloud'] = "montrer le nuage de tags";
$lang['cloud'] = "nuage";
$lang['Reset to default values'] = "Rétablir les valeurs par défaut";
$lang['delete all images from your favorites'] = "supprimer toutes les images de vos favoris";
$lang['Sent by'] = "Envoyé par";
$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.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,60 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installation';
$lang['Initial_config'] = 'Configuration de Base';
$lang['Default_lang'] = 'Langue par défaut de la galerie';
$lang['step1_title'] = 'Configuration de la Base de données';
$lang['step2_title'] = 'Configuration du compte Administrateur';
$lang['Start_Install'] = 'Démarrer l\'installation';
$lang['reg_err_mail_address'] = 'L\'adresse mail doit être de la forme xxx@yyy.eee (exemple : jack@altern.org)';
$lang['install_webmaster'] = 'Administrateur';
$lang['install_webmaster_info'] = 'Cet identifiant apparaîtra à tous vos visiteurs. Il vous sert pour administrer le site';
$lang['step1_confirmation'] = 'Les paramètres rentrés sont corrects';
$lang['step1_err_db'] = 'La connexion au serveur est OK, mais impossible de se connecter à cette base de données';
$lang['step1_err_server'] = 'Impossible de se connecter au serveur';
$lang['step1_dbengine'] = 'Type de base de données';
$lang['step1_dbengine_info'] = 'La base de données à utiliser pour installer piwigo';
$lang['step1_host'] = 'Hôte';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'Utilisateur';
$lang['step1_user_info'] = 'nom d\'utilisateur pour votre hébergeur';
$lang['step1_pass'] = 'Mot de passe';
$lang['step1_pass_info'] = 'celui fourni par votre hébergeur';
$lang['step1_database'] = 'Nom de la base';
$lang['step1_database_info'] = 'celui fourni par votre hébergeur';
$lang['step1_prefix'] = 'Préfixe des noms de table';
$lang['step1_prefix_info'] = 'le nom des tables apparaîtra avec ce préfixe (permet de mieux gérer sa base de données)';
$lang['step2_err_login1'] = 'veuillez rentrer un pseudo pour le webmaster';
$lang['step2_err_login3'] = 'le pseudo du webmaster ne doit pas comporter les caractère " et \'';
$lang['step2_err_pass'] = 'veuillez retaper votre mot de passe';
$lang['install_end_title'] = 'Installation terminée';
$lang['step2_pwd'] = 'Mot de passe';
$lang['step2_pwd_info'] = 'Il doit rester confidentiel, il permet d\'accéder au panneau d\'administration.';
$lang['step2_pwd_conf'] = 'Mot de passe [ Confirmer ]';
$lang['step2_pwd_conf_info'] = 'Vérification';
$lang['step1_err_copy'] = 'Copiez le texte en rose entre les tirets et collez-le dans le fichier config_database.inc.php qui se trouve dans le répertoire "include" à la base de l\'endroit où vous avez installé Piwigo (le fichier config_database.inc.php ne doit comporter QUE ce qui est en rose entre les tirets, aucun retour à la ligne ou espace n\'est autorisé)';
$lang['install_help'] = 'Besoin d\'aide ? Posez votre question sur le <a href="%s">forum de Piwigo</a>.';
$lang['install_end_message'] = 'La configuration de l\'application s\'est correctement déroulée, place à la prochaine étape<br><br>
* allez sur la page d\'identification et connectez-vous avec le pseudo donné pour le webmaster<br>
* celui-ci vous permet d\'accéder à la partie administration et aux instructions pour placer les images dans les répertoires.';
$lang['conf_mail_webmaster'] = 'Adresse e-mail de l\'Administrateur';
$lang['conf_mail_webmaster_info'] = 'Les visiteurs pourront vous contacter par ce mail';
$lang['PHP 5 is required'] = 'PHP 5 est requis';
$lang['It appears your webhost is currently running PHP %s.'] = 'Apparemment, la version PHP de votre hébergeur est PHP %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo va essayer de passer en PHP 5 en créant ou en modifiant le fichier .htaccess.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Notez que vous pouvez changer vous-même la configuration PHP et re-lancer Piwigo après.';
$lang['Try to configure PHP 5'] = 'Essayer de configurer PHP 5';
$lang['Sorry!'] = 'Désolé!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo n\'a pas pu configurer PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = 'Vous devez contacter votre hébergeur afin de savoir comment configurer PHP 5.';
$lang['Hope to see you back soon.'] = 'En espérant vous revoir très prochainement...';
$lang['step1_err_copy_2'] = 'La prochaine étape d\'installation est désormais possible';
$lang['step1_err_copy_next'] = 'étape suivante';
$lang['Installation'] = "Installation";
$lang['Basic configuration'] = "Configuration de Base";
$lang['Default gallery language'] = "Langue par défaut de la galerie";
$lang['Database configuration'] = "Configuration de la Base de données";
$lang['Admin configuration'] = "Configuration du compte Administrateur";
$lang['Start Install'] = "Démarrer l'installation";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "L'adresse mail doit être de la forme xxx@yyy.eee (exemple : jack@altern.org)";
$lang['Webmaster login'] = "Administrateur";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "Cet identifiant apparaîtra à tous vos visiteurs. Il vous sert pour administrer le site";
$lang['Parameters are correct'] = "Les paramètres rentrés sont corrects";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "La connexion au serveur est OK, mais impossible de se connecter à cette base de données";
$lang['Can\'t connect to server'] = "Impossible de se connecter au serveur";
$lang['The next step of the installation is now possible'] = "La prochaine étape d'installation est désormais possible";
$lang['next step'] = "étape suivante";
$lang['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)'] = "Copiez le texte en rose entre les tirets et collez-le dans le fichier config_database.inc.php qui se trouve dans le répertoire \"include\" à la base de l'endroit où vous avez installé Piwigo (le fichier config_database.inc.php ne doit comporter QUE ce qui est en rose entre les tirets, aucun retour à la ligne ou espace n'est autorisé)";
$lang['Database type'] = "Type de base de données";
$lang['The type of database your piwigo data will be store in'] = "La base de données à utiliser pour installer piwigo";
$lang['Host'] = "Hôte";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "Utilisateur";
$lang['user login given by your host provider'] = "nom d'utilisateur pour votre hébergeur";
$lang['Password'] = "Mot de passe";
$lang['user password given by your host provider'] = "celui fourni par votre hébergeur";
$lang['Database name'] = "Nom de la base";
$lang['also given by your host provider'] = "celui fourni par votre hébergeur";
$lang['Database table prefix'] = "Préfixe des noms de table";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "le nom des tables apparaîtra avec ce préfixe (permet de mieux gérer sa base de données)";
$lang['enter a login for webmaster'] = "veuillez rentrer un pseudo pour le webmaster";
$lang['webmaster login can\'t contain characters \' or "'] = "le pseudo du webmaster ne doit pas comporter les caractère \" et '";
$lang['please enter your password again'] = "veuillez retaper votre mot de passe";
$lang['Installation finished'] = "Installation terminée";
$lang['Webmaster password'] = "Mot de passe";
$lang['Keep it confidential, it enables you to access administration panel'] = "Il doit rester confidentiel, il permet d'accéder au panneau d'administration.";
$lang['Password [confirm]'] = "Mot de passe [ Confirmer ]";
$lang['verification'] = "Vérification";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Besoin d'aide ? Posez votre question sur le <a href=\"%s\">forum de Piwigo</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "La configuration de l'application s'est correctement déroulée, place à la prochaine étape<br><br>
* allez sur la page d'identification et connectez-vous avec le pseudo donné pour le webmaster<br>
* celui-ci vous permet d'accéder à la partie administration et aux instructions pour placer les images dans les répertoires.";
$lang['Webmaster mail address'] = "Adresse e-mail de l'Administrateur";
$lang['Visitors will be able to contact site administrator with this mail'] = "Les visiteurs pourront vous contacter par ce mail";
$lang['PHP 5 is required'] = "PHP 5 est requis";
$lang['It appears your webhost is currently running PHP %s.'] = "Apparemment, la version PHP de votre hébergeur est PHP %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo va essayer de passer en PHP 5 en créant ou en modifiant le fichier .htaccess.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Notez que vous pouvez changer vous-même la configuration PHP et re-lancer Piwigo après.";
$lang['Try to configure PHP 5'] = "Essayer de configurer PHP 5";
$lang['Sorry!'] = "Désolé!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo n'a pas pu configurer PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "Vous devez contacter votre hébergeur afin de savoir comment configurer PHP 5.";
$lang['Hope to see you back soon.'] = "En espérant vous revoir très prochainement...";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,24 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Mise à jour';
$lang['introduction message'] = 'Cette page vous propose de mettre à jour la base de donnée correspondante à votre ancienne version de piwigo vers la nouvelle version.
L\'assistant de mise à jour pense que la version actuelle est une <strong>version %s</strong> (ou équivalente).';
$lang['Upgrade from %s to %s'] = 'Mise à jour de la version %s à %s';
$lang['Statistics'] = 'Statistiques';
$lang['total upgrade time'] = 'temps total de la mise à jour';
$lang['total SQL time'] = 'temps total des requêtes SQL';
$lang['SQL queries'] = 'nombre de requêtes SQL';
$lang['Upgrade informations'] = 'Informations sur la mise à jour';
$lang['perform a maintenance check'] = 'Veuillez effectuer une maintenance dans [Administration>Spéciales>Maintenance] si vous rencontrez des problèmes.';
$lang['deactivated plugins'] = 'Par précaution, les plugins suivants ont été désactivés. Vérifiez s\'il existe des mises à jour avant de les réactiver:';
$lang['upgrade login message'] = 'Seul un administrateur peut lancer la mise à jour: veuillez vous identifier ci-dessous.';
$lang['You do not have access rights to run upgrade'] = 'Vous n\'avez pas les droits necessaires pour lancer la mise à jour.';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'Dans le fichier <i>include/config_database.inc.php</i>, avant <b>?></b>, insérez:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'Toutes les sous-catégories de catégories privées deviennent privées';
$lang['user permissions and group permissions have been erased'] = 'Les permissions des utilisateurs et des groupes ont été effacées';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Seuls le préfixe des miniatures et l\'adresse email du webmestre ont étés sauvegardés de la configuration précédente';
$lang['Upgrade'] = "Mise à jour";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "Cette page vous propose de mettre à jour la base de donnée correspondante à votre ancienne version de piwigo vers la nouvelle version.
L'assistant de mise à jour pense que la version actuelle est une <strong>version %s</strong> (ou équivalente).";
$lang['Upgrade from version %s to %s'] = "Mise à jour de la version %s à %s";
$lang['Statistics'] = "Statistiques";
$lang['total upgrade time'] = "temps total de la mise à jour";
$lang['total SQL time'] = "temps total des requêtes SQL";
$lang['SQL queries'] = "nombre de requêtes SQL";
$lang['Upgrade informations'] = "Informations sur la mise à jour";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Veuillez effectuer une maintenance dans [Administration>Spéciales>Maintenance] si vous rencontrez des problèmes.";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "Par précaution, les plugins suivants ont été désactivés. Vérifiez s'il existe des mises à jour avant de les réactiver:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Seul un administrateur peut lancer la mise à jour: veuillez vous identifier ci-dessous.";
$lang['You do not have access rights to run upgrade'] = "Vous n'avez pas les droits necessaires pour lancer la mise à jour.";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "Dans le fichier <i>include/config_database.inc.php</i>, avant <b>?></b>, insérez:";
$lang['All sub-categories of private categories become private'] = "Toutes les sous-catégories de catégories privées deviennent privées";
$lang['User permissions and group permissions have been erased'] = "Les permissions des utilisateurs et des groupes ont été effacées";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Seuls le préfixe des miniatures et l'adresse email du webmestre ont étés sauvegardés de la configuration précédente";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,352 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'Italiano';
$lang_info['country'] = 'Italia';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'it';
$lang_info['zero_plural'] = false;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (votata %d volte, media = %.2f)';
$lang['%d Kb'] = '%d Ko';
$lang['%d category updated'] = '%d categoria aggiornata';
$lang['%d categories updated'] = '%d categorie aggiornate';
$lang['%d comment to validate'] = '%d commento utente da approvare';
$lang['%d comments to validate'] = '%d commenti utente da approvare';
$lang['%d new comment'] = '%d nuovo commento utente';
$lang['%d new comments'] = '%d nuovi commenti utente';
$lang['%d comment'] = '%d commento';
$lang['%d comments'] = '%d commenti';
$lang['%d hit'] = 'vista %d volte';
$lang['%d hits'] = 'viste %d volte';
$lang['%d new element'] = '%d nuovo elemento';
$lang['%d new elements'] = '%d nuovi elementi';
$lang['%d new user'] = '%d nuovo utente';
$lang['%d new users'] = '%d nuovi utenti';
$lang['%d waiting element'] = '%d elemento in attesa';
$lang['%d waiting elements'] = '%d elementi in attesa';
$lang['About'] = 'Informazioni su...';
$lang['All tags must match'] = 'Tutti i tags devono corrispondere';
$lang['All tags'] = 'Tutti i tags';
$lang['Any tag'] = 'Qualsiasi tag';
$lang['At least one listed rule must be satisfied.'] = 'Almeno una delle regole elencate deve essere soddisfatta.';
$lang['At least one tag must match'] = 'Almeno un tag deve corrispondere';
$lang['Author'] = 'Autore';
$lang['Average rate'] = 'Voto medio';
$lang['Categories'] = 'Categorie';
$lang['Category'] = 'Categoria';
$lang['Close this window'] = 'Chiudi questa finestra';
$lang['Complete RSS feed'] = 'Flussi RSS completo (immagini, commenti)';
$lang['Confirm Password'] = 'Conferma la Password';
$lang['Connection settings'] = 'Parametri di connessione';
$lang['Connection'] = 'Connessione';
$lang['Contact webmaster'] = 'Contattare il webmaster';
$lang['Create a new account'] = 'Sei un nuovo utente?';
$lang['Created on'] = 'Creato il';
$lang['Creation date'] = 'Data di creazione';
$lang['Current password is wrong'] = 'La password non è esatta';
$lang['Dimensions'] = 'Dimensioni';
$lang['Display'] = 'Visualizzazione';
$lang['Each listed rule must be satisfied.'] = 'Tutti i criteri devono essere soddisfatti';
$lang['Email address is missing'] = 'Manca l\'indirizzo email';
$lang['Email address'] = 'Indirizzo email';
$lang['Enter your personnal informations'] = 'Inserire le informazioni personali';
$lang['Error sending email'] = 'Errore durante l\'invio dell\'email';
$lang['File name'] = 'Nome file';
$lang['File'] = 'File';
$lang['Filesize'] = 'Dimensione';
$lang['Filter and display'] = 'Filtra e visualizza';
$lang['Filter'] = 'Filtro';
$lang['Forgot your password?'] = 'Password dimenticata ?';
$lang['Go through the gallery as a visitor'] = 'Visita la galleria come ospite';
$lang['Help'] = 'Aiuto';
$lang['Identification'] = 'Identificazione';
$lang['Image only RSS feed'] = 'Flussi RSS delle immagini';
$lang['Keyword'] = 'Parola chiave';
$lang['Links'] = 'Links';
$lang['Mail address'] = $lang['Email address'];
$lang['N/A'] = 'N/A';
$lang['New on %s'] = 'Nuovo il %s';
$lang['New password confirmation does not correspond'] = 'La conferma della nuova password non corrisponde';
$lang['New password sent by email'] = 'La nuova password ti è stata inviata via email';
$lang['No email address'] = 'Nessun indirizzo email';
$lang['No user matches this email address'] = 'Non esiste nessun utente con questo indirizzo email';
$lang['Notification'] = 'Notifica';
$lang['Number of items'] = 'Numero di elementi';
$lang['Original dimensions'] = 'Dimensioni originali';
$lang['Password forgotten'] = 'Password dimenticata';
$lang['Password'] = 'Password';
$lang['Post date'] = 'Data d\'invio';
$lang['Posted on'] = 'Inviato il';
$lang['Profile'] = 'Profilo';
$lang['Quick connect'] = 'Connessione veloce';
$lang['RSS feed'] = 'flussi RSS';
$lang['Rate'] = 'Voto';
$lang['Register'] = 'Registrati';
$lang['Registration'] = 'Registrazione';
$lang['Related tags'] = 'Tags correlati';
$lang['Reset'] = 'Cancellare';
$lang['Retrieve password'] = 'Recuperare la password';
$lang['Search rules'] = 'Criteri di ricerca';
$lang['Search tags'] = 'Ricercare i tags';
$lang['Search'] = 'Cerca';
$lang['See available tags'] = 'Mostra i tags disponibili';
$lang['Send new password'] = 'Inviare una nuova password';
$lang['Since'] = 'Dal';
$lang['Sort by'] = 'Ordina per';
$lang['Sort order'] = 'Tipo di ordinamento';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'I flussi RSS informno sulle novità della galleria: nuove immagini, aggiornamento delle categorie, nuovi commenti. Da usarsi con un lettore di flussi RSS.';
$lang['Unknown feed identifier'] = 'Identificatore di flusso sconosciuto';
$lang['User comments'] = 'Commenti utenti';
$lang['Username'] = 'Nome utente';
$lang['Visits'] = 'Visite';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Settimana %d';
$lang['about_page_title'] = 'Mostra le informazioni su Piwigo';
$lang['access_forbiden'] = 'Non sei autorizzato a visualizzare la pagina richiesta';
$lang['add to caddie'] = 'Aggiungi al cestino';
$lang['add_favorites_hint'] = 'Aggiungi la pagina ai tuoi preferiti';
$lang['admin'] = 'Amministrazione';
$lang['adviser_mode_enabled'] = 'Modo consigliere attivo';
$lang['all'] = 'tutto';
$lang['ascending'] = 'ascendente';
$lang['author(s) : %s'] = 'autore(i) : %s';
$lang['auto_expand'] = 'Espandi tutte le categorie';
$lang['became available after %s (%s)'] = 'disponibile dopo il %s (%s)';
$lang['became available before %s (%s)'] = 'disponibile prima del %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'disponibile tra %s (%s) e il %s (%s)';
$lang['became available on %s'] = 'disponibile il %s';
$lang['best_rated_cat'] = 'Le più votate';
$lang['best_rated_cat_hint'] = 'Mostra gli elementi i più votati';
$lang['caddie'] = 'Cestino';
$lang['calendar'] = 'Calendario';
$lang['calendar_any'] = 'Tutto';
$lang['calendar_hint'] = 'Mostra anno per anno, mese per mese, giorno per giorno';
$lang['calendar_picture_hint'] = 'Mostra le immagini del ';
$lang['calendar_view'] = 'Vista';
$lang['chronology_monthly_calendar'] = 'Calendario mensile';
$lang['chronology_monthly_list'] = 'Lista mensile';
$lang['chronology_weekly_list'] = 'Lista settimanale';
$lang['click_to_redirect'] = 'Cliccare qui se non siete reindirizzati automaticamente.';
$lang['comment date'] = 'data del commento';
$lang['comment'] = 'Commento';
$lang['comment_added'] = 'Il vostro commento è stato registrato';
$lang['comment_anti-flood'] = 'Sistema di sicurezza: attendere prima di aggiungere un nuovo commento';
$lang['comment_not_added'] = 'Il vostro commento non è stato registrato perchè non rispetta le regole di convalidazione';
$lang['comment_to_validate'] = 'Un amministratore deve autorizzare il tuo commento affinchè sia visibile.';
$lang['comment_user_exists'] = 'Questo nome utente esiste già';
$lang['comments'] = 'Commenti';
$lang['comments_add'] = 'Aggiunti un commento';
$lang['created after %s (%s)'] = 'creata dopo il %s (%s)';
$lang['created before %s (%s)'] = 'creata prima del %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'creata tra il %s (%s) e il %s (%s)';
$lang['created on %s'] = 'creata il %s';
$lang['customize'] = 'Personalizza';
$lang['customize_page_title'] = 'Personalizzare visualizzazione ';
$lang['day'][0] = 'Domenica';
$lang['day'][1] = 'Lunedì';
$lang['day'][2] = 'Martedì';
$lang['day'][3] = 'Mercoledì';
$lang['day'][4] = 'Giovedì';
$lang['day'][5] = 'Venerdì';
$lang['day'][6] = 'Sabato';
$lang['default_sort'] = 'Di default';
$lang['del_favorites_hint'] = 'Cancellare questa immagine dalle vostre preferite';
$lang['delete'] = 'Cancellare';
$lang['descending'] = 'discendente';
$lang['download'] = 'Scaricare';
$lang['download_hint'] = 'Scaricare questo file';
$lang['edit'] = 'modificare';
$lang['err_date'] = 'data errata';
$lang['excluded'] = 'Escluso';
$lang['favorite_cat'] = 'Le mie preferite';
$lang['favorite_cat_hint'] = 'Mostra le mie foto preferite';
$lang['favorites'] = 'Preferite';
$lang['first_page'] = 'Primo';
$lang['gallery_locked_message'] = 'La galleria è chiusa per manutenzione. Tornare più tardi.';
$lang['generation_time'] = 'Pagina generata in';
$lang['guest'] = 'ospite';
$lang['hello'] = 'Ciao';
$lang['hint_admin'] = 'Disponibile sono per gli amministratori';
$lang['hint_category'] = 'Mostra le foto alla base di questa categoria';
$lang['hint_comments'] = 'Mostra gli ultimi commenti degli utenti';
$lang['hint_customize'] = 'Personalizza l\'aspetto della galleria';
$lang['hint_search'] = 'Cerca nella galleria';
$lang['home'] = 'Home';
$lang['identification'] = 'Identificazione';
$lang['images_available_cpl'] = 'in questa categoria';
$lang['images_available_cat'] = 'in %d sottocategoria';
$lang['images_available_cats'] = 'in %d sottocategorie';
$lang['included'] = 'incluso';
$lang['invalid_pwd'] = 'Password non valida !';
$lang['language'] = 'Lingua';
$lang['last %d days'] = 'Ultimi %d giorni';
$lang['last_page'] = 'Ultima';
$lang['logout'] = 'Logout';
$lang['mail_address'] = $lang['Email address'];
$lang['mandatory'] = 'obbligatorio';
$lang['maxheight'] = 'Altezza massima delle immagini';
$lang['maxheight_error'] = 'L\'altezza massima deve essere un numero superiore a 50';
$lang['maxwidth'] = 'Larghezza massima delle immagini';
$lang['maxwidth_error'] = 'La larghezza massima deve essere un numero superiore a 50';
$lang['mode_created_hint'] = 'Mostra il calendario per data di creazione';
$lang['mode_flat_hint'] = 'Mostra gli elementi delle categorie e sottocategorie in modalità flat';
$lang['mode_normal_hint'] = 'Ritorna alla visualizzazione normale';
$lang['mode_posted_hint'] = 'Mostra il calendario per data d\'inserimento nella galleria';
$lang['month'][10] = 'Ottobre';
$lang['month'][11] = 'Novembre';
$lang['month'][12] = 'Dicembre';
$lang['month'][1] = 'Gennaio';
$lang['month'][2] = 'Febbraio';
$lang['month'][3] = 'Marzo';
$lang['month'][4] = 'Aprile';
$lang['month'][5] = 'Maggio';
$lang['month'][6] = 'Giugno';
$lang['month'][7] = 'Luglio';
$lang['month'][8] = 'Agosto';
$lang['month'][9] = 'Settembre';
$lang['most_visited_cat'] = 'Le più viste';
$lang['most_visited_cat_hint'] = 'Mostra le foto le più viste';
$lang['nb_image_line_error'] = 'Il numero d\'immagini per riga deve essere un intero non nullo';
$lang['nb_image_per_row'] = 'Numero d\'immagini per riga';
$lang['nb_line_page_error'] = 'Il numero di righe per pagina deve essere un intero non nullo';
$lang['nb_row_per_page'] = 'Numero di righe per pagina';
$lang['nbm_unknown_identifier'] = 'Identificante sconosciuto';
$lang['new_password'] = 'Nuova password';
$lang['new_rate'] = 'Vota questa foto';
$lang['next_page'] = 'Prossima';
$lang['no_category'] = 'Home';
$lang['no_rate'] = 'nessun voto';
$lang['note_filter_day'] = 'L\'insieme degli elementi sono filtrati per visualizzare solo gli elementi recenti di meno di %d giorno.';
$lang['note_filter_days'] = 'L\'insieme degli elementi sono filtrati per visualizzare solo gli elementi recenti di meno di %d giorni.';
$lang['password updated'] = 'password aggiornata';
$lang['periods_error'] = 'Il periodo deve essere un valore intero positivo';
$lang['picture'] = 'immagini';
$lang['picture_high'] = 'Cliccare sull\'immagine per vederla in alta definizione';
$lang['picture_show_metadata'] = 'Mostrare i metadati del file';
$lang['powered_by'] = 'Sito realizzato grazie a';
$lang['preferences'] = 'Preferenze';
$lang['previous_page'] = 'Precendente';
$lang['random_cat'] = 'Immagini a caso';
$lang['random_cat_hint'] = 'Mostra un insieme d\'immagini in modo casuale';
$lang['recent_cats_cat'] = 'Ultime categorie';
$lang['recent_cats_cat_hint'] = 'Mostra le categorie recentemente create o aggiornate';
$lang['recent_period'] = 'Periodo recente';
$lang['recent_pics_cat'] = 'Ultime immagini';
$lang['recent_pics_cat_hint'] = 'Mostra le immagini le più recenti';
$lang['redirect_msg'] = 'Reindirizzamento in corso...';
$lang['reg_err_login1'] = 'Inserire nome utente, grazie';
$lang['reg_err_login2'] = 'Il nome utente non deve finire con uno spazio';
$lang['reg_err_login3'] = 'Il nome utente non deve iniziare con uno spazio';
$lang['reg_err_login5'] = 'Nome utente già esistente';
$lang['reg_err_mail_address'] = 'l\'indirizzo email deve essere del tipo xxx@yyy.eee (ad esempio: cippalippa@libero.rio)';
$lang['reg_err_pass'] = 'Reinserire la password, grazie.';
$lang['remember_me'] = 'Conessione automatica';
$lang['remove this tag'] = 'Eliminare tag dalla lista';
$lang['representative'] = 'rappresentative';
$lang['return to homepage'] = 'Torna alla homepage';
$lang['search_author'] = 'Cercare un Autore';
$lang['search_categories'] = 'Cercare nelle categorie';
$lang['search_date'] = 'Cercare per data';
$lang['search_date_from'] = 'data';
$lang['search_date_to'] = 'Data di fine';
$lang['search_date_type'] = 'Tipo data';
$lang['search_keywords'] = 'Cercare le parole';
$lang['search_mode_and'] = 'Cercare tutte le parole';
$lang['search_mode_or'] = 'Cercare una delle parole';
$lang['search_one_clause_at_least'] = 'Selezione vuota. Nessun criterio di ricerca inserito.';
$lang['search_options'] = 'Opzioni di ricerca';
$lang['search_result'] = 'Risultato della ricerca';
$lang['search_subcats_included'] = 'Cercare nelle sottocategorie';
$lang['search_title'] = 'Cercare';
$lang['searched words : %s'] = 'parole cercate : %s';
$lang['send_mail'] = 'Contattare';
$lang['set as category representative'] = 'Usare immagine come rappresentativa della categoria';
$lang['show_nb_comments'] = 'Mostrare il numero dei commenti';
$lang['show_nb_hits'] = 'Mostrare il numero di visualizzazioni';
$lang['slideshow'] = 'diaporama';
$lang['slideshow_stop'] = 'fermare il diaporama';
$lang['special_categories'] = 'Speciale';
$lang['sql_queries_in'] = 'selezioni SQL in';
$lang['start_filter_hint'] = 'Mostra solo gli elementi recenti';
$lang['stop_filter_hint'] = 'ritornare alla visualizzazione di tutti gli elementi';
$lang['the beginning'] = 'L\'inizio';
$lang['theme'] = 'Tema dell\'interfaccia';
$lang['thumbnails'] = 'Miniature';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'Un commento sul sito';
$lang['today'] = 'Oggi';
$lang['update_rate'] = 'Aggiorna il tuo voto';
$lang['update_wrong_dirname'] = 'nome della directory errata';
$lang['upload_advise_filesize'] = 'La dimensione del file immagine non deve eccedere: ';
$lang['upload_advise_filetype'] = 'L\'immagine deve essere in formato jpg, png o gif';
$lang['upload_advise_height'] = 'L\'altezza dell\'immagine non deve eccedere: ';
$lang['upload_advise_thumbnail'] = 'Opzionale ma raccomandato: scegliere una miniatura da associare a ';
$lang['upload_advise_width'] = 'La larghezza dell\'immagine non deve eccedere: ';
$lang['upload_author'] = 'Autore';
$lang['upload_cannot_upload'] = 'non è stato possibile caricare il file sul server';
$lang['upload_err_username'] = 'nome utente obbligatorio';
$lang['upload_file_exists'] = 'file già esistente';
$lang['upload_filenotfound'] = 'il formato del file non è un formato immagine';
$lang['upload_forbidden'] = 'Non è possibile caricare una foto in questa categoria';
$lang['upload_name'] = 'Nome dell\'immagine';
$lang['upload_picture'] = 'Caricare un\'immagine';
$lang['upload_successful'] = 'Immagine caricata con successo. Un amministratore convaliderà l\'operazione il più presto possibile';
$lang['upload_title'] = 'Caricare un\'immagine';
$lang['useful when password forgotten'] = 'utile se si dimentica la password';
$lang['qsearch'] = 'Ricerca rapida';
$lang['Connected user: %s'] = 'Utente(i) connesso(i): %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Navigatore: %s';
$lang['Author: %s'] = 'Autore: %s';
$lang['Comment: %s'] = 'Commento: %s';
$lang['Delete: %s'] = 'Sopressione: %s';
$lang['Validate: %s'] = 'Convalida: %s';
$lang['Comment by %s'] = 'Commento per %s';
$lang['User: %s'] = 'Utente: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Amministrazione: %s';
$lang['Registration of %s'] = 'Registrazione di %s';
$lang['Category: %s'] = 'Categoria: %s';
$lang['Picture name: %s'] = 'Nome dell\'immagine: %s';
$lang['Creation date: %s'] = 'Data di creazione: %d';
$lang['Waiting page: %s'] = 'Pagina in attesa: %s';
$lang['Picture uploaded by %s'] = 'Immagine caricata da %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Lo status del\'utente "guest" non è conforme, viene usato lo status di default. Vogliate avvertire il webmaster.';
// --------- Starting below: New or revised $lang ---- from Butterfly (1.8)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Amministratore, webmaster et utente speciale non possono utilizzare questo metodo';
$lang['reg_err_mail_address_dbl'] = 'un utente usa già questo indirizzo mail';
$lang['Category results for'] = 'Risultato delle categorie per';
$lang['Tag results for'] = 'Risultato dei tag per';
$lang['from %s to %s'] = 'da %s a %s';
$lang['start_play'] = 'Lettura del diaporama';
$lang['stop_play'] = 'Pausa del diaporama';
$lang['start_repeat'] = 'Ricominciare il diaporama';
$lang['stop_repeat'] = 'Non ricominciare il diaporama';
$lang['inc_period'] = 'Ralentare la velocità del diaporama';
$lang['dec_period'] = 'Accelerare la velocità del diaporama';
$lang['Submit'] = 'Confermare';
$lang['Yes'] = 'Si';
$lang['No'] = 'No';
$lang['%d element']='%d immagine';
$lang['%d elements']='%d immagini';
$lang['%d element are also linked to current tags'] = '%d immagine è anche connessa ai tag correnti';
$lang['%d elements are also linked to current tags'] = '%d immagini sono anche connesse ai tag correnti';
$lang['See elements linked to this tag only'] = 'Mostrare le immagini connesse solo a questo tag';
$lang['elements posted during the last %d days'] = 'immagini aggiunte durante gli ultimi %d giorni';
$lang['Choose an image'] = 'Scegliere un immagine da aggiungere';
$lang['Piwigo Help'] = 'Help di Piwigo';
$lang['Rank'] = 'Rang';
$lang['group by letters'] = 'ragruppare per lettera';
$lang['letters'] = 'lettere';
$lang['show tag cloud'] = 'fare salire la nuvola di tags';
$lang['cloud'] = 'nuvola';
$lang['Reset_To_Default'] = 'Ripristinare le impostazioni predefinite';
$lang['del_all_favorites_hint'] = 'supprimer toutes les images de vos favoris';
$lang['Sent by'] = 'Envoyé par';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'I cookies sono bloccati o non sopportati dal vostro browser. Dovete attivare i cookie per connettervi.';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (votata %d volte, media = %.2f)";
$lang['%d Kb'] = "%d Ko";
$lang['%d category updated'] = "%d categoria aggiornata";
$lang['%d categories updated'] = "%d categorie aggiornate";
$lang['%d comment to validate'] = "%d commento utente da approvare";
$lang['%d comments to validate'] = "%d commenti utente da approvare";
$lang['%d new comment'] = "%d nuovo commento utente";
$lang['%d new comments'] = "%d nuovi commenti utente";
$lang['%d comment'] = "%d commento";
$lang['%d comments'] = "%d commenti";
$lang['%d hit'] = "vista %d volte";
$lang['%d hits'] = "viste %d volte";
$lang['%d new image'] = "%d nuovo elemento";
$lang['%d new images'] = "%d nuovi elementi";
$lang['%d new user'] = "%d nuovo utente";
$lang['%d new users'] = "%d nuovi utenti";
$lang['%d waiting element'] = "%d elemento in attesa";
$lang['%d waiting elements'] = "%d elementi in attesa";
$lang['About'] = "Informazioni su...";
$lang['All tags must match'] = "Tutti i tags devono corrispondere";
$lang['All tags'] = "Tutti i tags";
$lang['Any tag'] = "Qualsiasi tag";
$lang['At least one listed rule must be satisfied.'] = "Almeno una delle regole elencate deve essere soddisfatta.";
$lang['At least one tag must match'] = "Almeno un tag deve corrispondere";
$lang['Author'] = "Autore";
$lang['Average rate'] = "Voto medio";
$lang['Categories'] = "Categorie";
$lang['Category'] = "Categoria";
$lang['Close this window'] = "Chiudi questa finestra";
$lang['Complete RSS feed (images, comments)'] = "Flussi RSS completo (immagini, commenti)";
$lang['Confirm Password'] = "Conferma la Password";
$lang['Connection settings'] = "Parametri di connessione";
$lang['Login'] = "Connessione";
$lang['Contact webmaster'] = "Contattare il webmaster";
$lang['Create a new account'] = "Sei un nuovo utente?";
$lang['Created on'] = "Creato il";
$lang['Creation date'] = "Data di creazione";
$lang['Current password is wrong'] = "La password non è esatta";
$lang['Dimensions'] = "Dimensioni";
$lang['Display'] = "Visualizzazione";
$lang['Each listed rule must be satisfied.'] = "Tutti i criteri devono essere soddisfatti";
$lang['Email address is missing'] = "Manca l'indirizzo email";
$lang['Email address'] = "Indirizzo email";
$lang['Enter your personnal informations'] = "Inserire le informazioni personali";
$lang['Error sending email'] = "Errore durante l'invio dell'email";
$lang['File name'] = "Nome file";
$lang['File'] = "File";
$lang['Filesize'] = "Dimensione";
$lang['Filter and display'] = "Filtra e visualizza";
$lang['Filter'] = "Filtro";
$lang['Forgot your password?'] = "Password dimenticata ?";
$lang['Go through the gallery as a visitor'] = "Visita la galleria come ospite";
$lang['Help'] = "Aiuto";
$lang['Identification'] = "Identificazione";
$lang['Image only RSS feed'] = "Flussi RSS delle immagini";
$lang['Keyword'] = "Parola chiave";
$lang['Links'] = "Links";
$lang['Mail address'] = "Indirizzo email";
$lang['N/A'] = "N/A";
$lang['New on %s'] = "Nuovo il %s";
$lang['New password confirmation does not correspond'] = "La conferma della nuova password non corrisponde";
$lang['New password sent by email'] = "La nuova password ti è stata inviata via email";
$lang['No email address'] = "Nessun indirizzo email";
$lang['No classic user matches this email address'] = "Non esiste nessun utente con questo indirizzo email";
$lang['Notification'] = "Notifica";
$lang['Number of items'] = "Numero di elementi";
$lang['Original dimensions'] = "Dimensioni originali";
$lang['Password forgotten'] = "Password dimenticata";
$lang['Password'] = "Password";
$lang['Post date'] = "Data d'invio";
$lang['Posted on'] = "Inviato il";
$lang['Profile'] = "Profilo";
$lang['Quick connect'] = "Connessione veloce";
$lang['RSS feed'] = "flussi RSS";
$lang['Rate'] = "Voto";
$lang['Register'] = "Registrati";
$lang['Registration'] = "Registrazione";
$lang['Related tags'] = "Tags correlati";
$lang['Reset'] = "Cancellare";
$lang['Retrieve password'] = "Recuperare la password";
$lang['Search rules'] = "Criteri di ricerca";
$lang['Search tags'] = "Ricercare i tags";
$lang['Search'] = "Cerca";
$lang['See available tags'] = "Mostra i tags disponibili";
$lang['Send new password'] = "Inviare una nuova password";
$lang['Since'] = "Dal";
$lang['Sort by'] = "Ordina per";
$lang['Sort order'] = "Tipo di ordinamento";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "I flussi RSS informno sulle novità della galleria: nuove immagini, aggiornamento delle categorie, nuovi commenti. Da usarsi con un lettore di flussi RSS.";
$lang['Unknown feed identifier'] = "Identificatore di flusso sconosciuto";
$lang['User comments'] = "Commenti utenti";
$lang['Username'] = "Nome utente";
$lang['Visits'] = "Visite";
$lang['Webmaster'] = "Webmaster";
$lang['Week %d'] = "Settimana %d";
$lang['About Piwigo'] = "Mostra le informazioni su Piwigo";
$lang['You are not authorized to access the requested page'] = "Non sei autorizzato a visualizzare la pagina richiesta";
$lang['add to caddie'] = "Aggiungi al cestino";
$lang['add this image to your favorites'] = "Aggiungi la pagina ai tuoi preferiti";
$lang['Administration'] = "Amministrazione";
$lang['Adviser mode enabled'] = "Modo consigliere attivo";
$lang['all'] = "tutto";
$lang['ascending'] = "ascendente";
$lang['author(s) : %s'] = "autore(i) : %s";
$lang['Expand all categories'] = "Espandi tutte le categorie";
$lang['posted after %s (%s)'] = "disponibile dopo il %s (%s)";
$lang['posted before %s (%s)'] = "disponibile prima del %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "disponibile tra %s (%s) e il %s (%s)";
$lang['posted on %s'] = "disponibile il %s";
$lang['Best rated'] = "Le più votate";
$lang['display best rated items'] = "Mostra gli elementi i più votati";
$lang['caddie'] = "Cestino";
$lang['Calendar'] = "Calendario";
$lang['All'] = "Tutto";
$lang['display each day with pictures, month per month'] = "Mostra anno per anno, mese per mese, giorno per giorno";
$lang['display pictures added on'] = "Mostra le immagini del";
$lang['View'] = "Vista";
$lang['chronology_monthly_calendar'] = "Calendario mensile";
$lang['chronology_monthly_list'] = "Lista mensile";
$lang['chronology_weekly_list'] = "Lista settimanale";
$lang['Click here if your browser does not automatically forward you'] = "Cliccare qui se non siete reindirizzati automaticamente.";
$lang['comment date'] = "data del commento";
$lang['Comment'] = "Commento";
$lang['Your comment has been registered'] = "Il vostro commento è stato registrato";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Sistema di sicurezza: attendere prima di aggiungere un nuovo commento";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Il vostro commento non è stato registrato perchè non rispetta le regole di convalidazione";
$lang['An administrator must authorize your comment before it is visible.'] = "Un amministratore deve autorizzare il tuo commento affinchè sia visibile.";
$lang['This login is already used by another user'] = "Questo nome utente esiste già";
$lang['Comments'] = "Commenti";
$lang['Add a comment'] = "Aggiunti un commento";
$lang['created after %s (%s)'] = "creata dopo il %s (%s)";
$lang['created before %s (%s)'] = "creata prima del %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "creata tra il %s (%s) e il %s (%s)";
$lang['created on %s'] = "creata il %s";
$lang['Customize'] = "Personalizza";
$lang['Your Gallery Customization'] = "Personalizzare visualizzazione";
$lang['day'][0] = "Domenica";
$lang['day'][1] = "Lunedì";
$lang['day'][2] = "Martedì";
$lang['day'][3] = "Mercoledì";
$lang['day'][4] = "Giovedì";
$lang['day'][5] = "Venerdì";
$lang['day'][6] = "Sabato";
$lang['Default'] = "Di default";
$lang['delete this image from your favorites'] = "Cancellare questa immagine dalle vostre preferite";
$lang['Delete'] = "Cancellare";
$lang['descending'] = "discendente";
$lang['download'] = "Scaricare";
$lang['download this file'] = "Scaricare questo file";
$lang['edit'] = "modificare";
$lang['wrong date'] = "data errata";
$lang['excluded'] = "Escluso";
$lang['My favorites'] = "Le mie preferite";
$lang['display my favorites pictures'] = "Mostra le mie foto preferite";
$lang['Favorites'] = "Preferite";
$lang['First'] = "Primo";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "La galleria è chiusa per manutenzione. Tornare più tardi.";
$lang['Page generated in'] = "Pagina generata in";
$lang['guest'] = "ospite";
$lang['Hello'] = "Ciao";
$lang['available for administrators only'] = "Disponibile sono per gli amministratori";
$lang['shows images at the root of this category'] = "Mostra le foto alla base di questa categoria";
$lang['See last users comments'] = "Mostra gli ultimi commenti degli utenti";
$lang['customize the appareance of the gallery'] = "Personalizza l'aspetto della galleria";
$lang['search'] = "Cerca nella galleria";
$lang['Home'] = "Home";
$lang['Identification'] = "Identificazione";
$lang['in this category'] = "in questa categoria";
$lang['in %d sub-category'] = "in %d sottocategoria";
$lang['in %d sub-categories'] = "in %d sottocategorie";
$lang['included'] = "incluso";
$lang['Invalid password!'] = "Password non valida !";
$lang['Language'] = "Lingua";
$lang['last %d days'] = "Ultimi %d giorni";
$lang['Last'] = "Ultima";
$lang['Logout'] = "Logout";
$lang['E-mail address'] = "Indirizzo email";
$lang['obligatory'] = "obbligatorio";
$lang['Maximum height of the pictures'] = "Altezza massima delle immagini";
$lang['Maximum height must be a number superior to 50'] = "L'altezza massima deve essere un numero superiore a 50";
$lang['Maximum width of the pictures'] = "Larghezza massima delle immagini";
$lang['Maximum width must be a number superior to 50'] = "La larghezza massima deve essere un numero superiore a 50";
$lang['display a calendar by creation date'] = "Mostra il calendario per data di creazione";
$lang['display all elements in all sub-categories'] = "Mostra gli elementi delle categorie e sottocategorie in modalità flat";
$lang['return to normal view mode'] = "Ritorna alla visualizzazione normale";
$lang['display a calendar by posted date'] = "Mostra il calendario per data d'inserimento nella galleria";
$lang['month'][10] = "Ottobre";
$lang['month'][11] = "Novembre";
$lang['month'][12] = "Dicembre";
$lang['month'][1] = "Gennaio";
$lang['month'][2] = "Febbraio";
$lang['month'][3] = "Marzo";
$lang['month'][4] = "Aprile";
$lang['month'][5] = "Maggio";
$lang['month'][6] = "Giugno";
$lang['month'][7] = "Luglio";
$lang['month'][8] = "Agosto";
$lang['month'][9] = "Settembre";
$lang['Most visited'] = "Le più viste";
$lang['display most visited pictures'] = "Mostra le foto le più viste";
$lang['The number of images per row must be a not null scalar'] = "Il numero d'immagini per riga deve essere un intero non nullo";
$lang['Number of images per row'] = "Numero d'immagini per riga";
$lang['The number of rows per page must be a not null scalar'] = "Il numero di righe per pagina deve essere un intero non nullo";
$lang['Number of rows per page'] = "Numero di righe per pagina";
$lang['Unknown identifier'] = "Identificante sconosciuto";
$lang['New password'] = "Nuova password";
$lang['Rate this picture'] = "Vota questa foto";
$lang['Next'] = "Prossima";
$lang['Home'] = "Home";
$lang['no rate'] = "nessun voto";
$lang['Elements posted within the last %d day.'] = "L'insieme degli elementi sono filtrati per visualizzare solo gli elementi recenti di meno di %d giorno.";
$lang['Elements posted within the last %d days.'] = "L'insieme degli elementi sono filtrati per visualizzare solo gli elementi recenti di meno di %d giorni.";
$lang['password updated'] = "password aggiornata";
$lang['Recent period must be a positive integer value'] = "Il periodo deve essere un valore intero positivo";
$lang['picture'] = "immagini";
$lang['Click on the picture to see it in high definition'] = "Cliccare sull'immagine per vederla in alta definizione";
$lang['Show file metadata'] = "Mostrare i metadati del file";
$lang['Powered by'] = "Sito realizzato grazie a";
$lang['Preferences'] = "Preferenze";
$lang['Previous'] = "Precendente";
$lang['Random pictures'] = "Immagini a caso";
$lang['display a set of random pictures'] = "Mostra un insieme d'immagini in modo casuale";
$lang['Recent categories'] = "Ultime categorie";
$lang['display recently updated categories'] = "Mostra le categorie recentemente create o aggiornate";
$lang['Recent period'] = "Periodo recente";
$lang['Recent pictures'] = "Ultime immagini";
$lang['display most recent pictures'] = "Mostra le immagini le più recenti";
$lang['Redirection...'] = "Reindirizzamento in corso...";
$lang['Please, enter a login'] = "Inserire nome utente, grazie";
$lang['login mustn\'t end with a space character'] = "Il nome utente non deve finire con uno spazio";
$lang['login mustn\'t start with a space character'] = "Il nome utente non deve iniziare con uno spazio";
$lang['this login is already used'] = "Nome utente già esistente";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "l'indirizzo email deve essere del tipo xxx@yyy.eee (ad esempio: cippalippa@libero.rio)";
$lang['please enter your password again'] = "Reinserire la password, grazie.";
$lang['Auto login'] = "Conessione automatica";
$lang['remove this tag from the list'] = "Eliminare tag dalla lista";
$lang['representative'] = "rappresentative";
$lang['return to homepage'] = "Torna alla homepage";
$lang['Search for Author'] = "Cercare un Autore";
$lang['Search in Categories'] = "Cercare nelle categorie";
$lang['Search by Date'] = "Cercare per data";
$lang['Date'] = "data";
$lang['End-Date'] = "Data di fine";
$lang['Kind of date'] = "Tipo data";
$lang['Search for words'] = "Cercare le parole";
$lang['Search for all terms'] = "Cercare tutte le parole";
$lang['Search for any terms'] = "Cercare una delle parole";
$lang['Empty query. No criteria has been entered.'] = "Selezione vuota. Nessun criterio di ricerca inserito.";
$lang['Search Options'] = "Opzioni di ricerca";
$lang['Search results'] = "Risultato della ricerca";
$lang['Search in subcategories'] = "Cercare nelle sottocategorie";
$lang['Search'] = "Cercare";
$lang['searched words : %s'] = "parole cercate : %s";
$lang['Contact'] = "Contattare";
$lang['set as category representative'] = "Usare immagine come rappresentativa della categoria";
$lang['Show number of comments'] = "Mostrare il numero dei commenti";
$lang['Show number of hits'] = "Mostrare il numero di visualizzazioni";
$lang['slideshow'] = "diaporama";
$lang['stop the slideshow'] = "fermare il diaporama";
$lang['Specials'] = "Speciale";
$lang['SQL queries in'] = "selezioni SQL in";
$lang['display only recently posted images'] = "Mostra solo gli elementi recenti";
$lang['return to the display of all images'] = "ritornare alla visualizzazione di tutti gli elementi";
$lang['the beginning'] = "L'inizio";
$lang['Interface theme'] = "Tema dell'interfaccia";
$lang['Thumbnails'] = "Miniature";
$lang['Menu'] = "Menu";
$lang['A comment on your site'] = "Un commento sul sito";
$lang['today'] = "Oggi";
$lang['Update your rating'] = "Aggiorna il tuo voto";
$lang['wrong filename'] = "nome della directory errata";
$lang['the filesize of the picture must not exceed :'] = "La dimensione del file immagine non deve eccedere:";
$lang['the picture must be to the fileformat jpg, gif or png'] = "L'immagine deve essere in formato jpg, png o gif";
$lang['the height of the picture must not exceed :'] = "L'altezza dell'immagine non deve eccedere:";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Opzionale ma raccomandato: scegliere una miniatura da associare a";
$lang['the width of the picture must not exceed :'] = "La larghezza dell'immagine non deve eccedere:";
$lang['Author'] = "Autore";
$lang['can\'t upload the picture on the server'] = "non è stato possibile caricare il file sul server";
$lang['the username must be given'] = "nome utente obbligatorio";
$lang['A picture\'s name already used'] = "file già esistente";
$lang['You must choose a picture fileformat for the image'] = "il formato del file non è un formato immagine";
$lang['You can\'t upload pictures in this category'] = "Non è possibile caricare una foto in questa categoria";
$lang['Name of the picture'] = "Nome dell'immagine";
$lang['Upload a picture'] = "Caricare un'immagine";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Immagine caricata con successo. Un amministratore convaliderà l'operazione il più presto possibile";
$lang['Upload a picture'] = "Caricare un'immagine";
$lang['useful when password forgotten'] = "utile se si dimentica la password";
$lang['Quick search'] = "Ricerca rapida";
$lang['Connected user: %s'] = "Utente(i) connesso(i): %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Navigatore: %s";
$lang['Author: %s'] = "Autore: %s";
$lang['Comment: %s'] = "Commento: %s";
$lang['Delete: %s'] = "Sopressione: %s";
$lang['Validate: %s'] = "Convalida: %s";
$lang['Comment by %s'] = "Commento per %s";
$lang['User: %s'] = "Utente: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Amministrazione: %s";
$lang['Registration of %s'] = "Registrazione di %s";
$lang['Category: %s'] = "Categoria: %s";
$lang['Picture name: %s'] = "Nome dell'immagine: %s";
$lang['Creation date: %s'] = "Data di creazione: %d";
$lang['Waiting page: %s'] = "Pagina in attesa: %s";
$lang['Picture uploaded by %s'] = "Immagine caricata da %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Lo status del'utente \"guest\" non è conforme, viene usato lo status di default. Vogliate avvertire il webmaster.";
$lang['Administrator, webmaster and special user cannot use this method'] = "Amministratore, webmaster et utente speciale non possono utilizzare questo metodo";
$lang['a user use already this mail address'] = "un utente usa già questo indirizzo mail";
$lang['Category results for'] = "Risultato delle categorie per";
$lang['Tag results for'] = "Risultato dei tag per";
$lang['from %s to %s'] = "da %s a %s";
$lang['Play of slideshow'] = "Lettura del diaporama";
$lang['Pause of slideshow'] = "Pausa del diaporama";
$lang['Repeat the slideshow'] = "Ricominciare il diaporama";
$lang['Not repeat the slideshow'] = "Non ricominciare il diaporama";
$lang['Reduce diaporama speed'] = "Ralentare la velocità del diaporama";
$lang['Accelerate diaporama speed'] = "Accelerare la velocità del diaporama";
$lang['Submit'] = "Confermare";
$lang['Yes'] = "Si";
$lang['No'] = "No";
$lang['%d image'] = "%d immagine";
$lang['%d images'] = "%d immagini";
$lang['%d image is also linked to current tags'] = "%d immagine è anche connessa ai tag correnti";
$lang['%d images are also linked to current tags'] = "%d immagini sono anche connesse ai tag correnti";
$lang['See images linked to this tag only'] = "Mostrare le immagini connesse solo a questo tag";
$lang['images posted during the last %d days'] = "immagini aggiunte durante gli ultimi %d giorni";
$lang['Choose an image'] = "Scegliere un immagine da aggiungere";
$lang['Piwigo Help'] = "Help di Piwigo";
$lang['Rank'] = "Rang";
$lang['group by letters'] = "ragruppare per lettera";
$lang['letters'] = "lettere";
$lang['show tag cloud'] = "fare salire la nuvola di tags";
$lang['cloud'] = "nuvola";
$lang['Reset to default values'] = "Ripristinare le impostazioni predefinite";
$lang['delete all images from your favorites'] = "supprimer toutes les images de vos favoris";
$lang['Sent by'] = "Envoyé par";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "I cookies sono bloccati o non sopportati dal vostro browser. Dovete attivare i cookie per connettervi.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,60 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installazione';
$lang['Initial_config'] = 'Configurazione di base';
$lang['Default_lang'] = 'Linguaggio di default della galleria';
$lang['step1_title'] = 'Configurazione della base dati';
$lang['step2_title'] = 'Configurazione del utente "Amministratore"';
$lang['Start_Install'] = 'Inizia l\'installazione';
$lang['reg_err_mail_address'] = 'L\'indirizzo email deve essere del tipo xxx@yyy.eee (ad esempio: cippalippa@libero.rio)';
$lang['install_webmaster'] = 'Amministratore';
$lang['install_webmaster_info'] = 'verrà mostrato ai visitatori. È necessario per l\'amministrazione del sito';
$lang['step1_confirmation'] = 'I parametri sono corretti';
$lang['step1_err_db'] = 'Connessione al server riuscita. Non è stato però possibile connettersi alla base dati';
$lang['step1_err_server'] = 'Non è stato possibile connettersi al server';
$lang['step1_dbengine'] = 'Tipo di Database';
$lang['step1_dbengine_info'] = 'La base dati da utilizzare per installare Piwigo';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, pluto.libero.it';
$lang['step1_user'] = 'Utente';
$lang['step1_user_info'] = 'nome utente di login alla base dati fornito dal tuo provider';
$lang['step1_pass'] = 'Password';
$lang['step1_pass_info'] = 'La password d\'accesso alla base dati fornita dal tuo provider';
$lang['step1_database'] = 'Nome della base dati';
$lang['step1_database_info'] = 'fornitovi dal provider';
$lang['step1_prefix'] = 'Prefisso delle tabelle della base dati';
$lang['step1_prefix_info'] = 'Le tabelle della base dati lo avranno come prefisso (permette di gestire meglio le tabelle)';
$lang['step2_err_login1'] = 'Inserire un nome utente per il webmaster';
$lang['step2_err_login3'] = 'Il nome utente del webmaster non può contenere caratteri come \' o "';
$lang['step2_err_pass'] = 'Reinserire la password';
$lang['install_end_title'] = 'Installazione completata';
$lang['step2_pwd'] = 'Password';
$lang['step2_pwd_info'] = 'da conservare con cura. Permette l\'accesso al pannello di amministrazione';
$lang['step2_pwd_conf'] = 'Password [confermare]';
$lang['step2_pwd_conf_info'] = 'verifica';
$lang['step1_err_copy'] = 'Copiate il testo in rosa trà i trattini e mettetelo nel file config_database.inc.php che si trova nella directory "include" alla base del vostro sito dove aveto installato Piwigo (il file config_database.inc.php non deve contenere altro che ciò che è in rosa tra i trattini, nessun ritorno a capo o spazio è autorizzato)';
$lang['install_help'] = 'Bisogno di un aiuto? Visitate il <a href="%s">forum di Piwigo</a>.';
$lang['install_end_message'] = 'La configurazione di Piwigo è conclusa. Procedete al prossimo step<br><br>
* collegatevi alla pagina d\'accesso e usare come nome d\'utente e password quello del Webmaster<br>
* a questo punto sarete abilitati all\'accesso al pannello di amministrazione in cui troverete le istruzioni per l\'inserimento delle immagini nelle vostre directory';
$lang['conf_mail_webmaster'] = 'Indirizzo email del Amministratore';
$lang['conf_mail_webmaster_info'] = 'i visitatori potranno contattarvi utilizzando questo indirizzo email';
$lang['PHP 5 is required'] = 'È necessario PHP 5';
$lang['It appears your webhost is currently running PHP %s.'] = 'Sembrerebbe che la versione del vostro server è PHP %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo cerchrà di passare in PHP 5 creando o modificando il file .htaccess.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Notate che potete cambiare manualmente la configurazione e rilanciare Piwigo.';
$lang['Try to configure PHP 5'] = 'Provate a configuratre PHP 5';
$lang['Sorry!'] = 'Spiacente!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo non a potuto configurare PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = 'Dovete contattare il votro provider per chiedere come configurare PHP 5.';
$lang['Hope to see you back soon.'] = 'Sperando rivedervi prossimamente ...';
$lang['step1_err_copy_2'] = 'Il prossimo step d\'installazione è oramail possibile';
$lang['step1_err_copy_next'] = 'step successivo';
$lang['Installation'] = "Installazione";
$lang['Basic configuration'] = "Configurazione di base";
$lang['Default gallery language'] = "Linguaggio di default della galleria";
$lang['Database configuration'] = "Configurazione della base dati";
$lang['Admin configuration'] = "Configurazione del utente \"Amministratore\"";
$lang['Start Install'] = "Inizia l'installazione";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "L'indirizzo email deve essere del tipo xxx@yyy.eee (ad esempio: cippalippa@libero.rio)";
$lang['Webmaster login'] = "Amministratore";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "verrà mostrato ai visitatori. È necessario per l'amministrazione del sito";
$lang['Parameters are correct'] = "I parametri sono corretti";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "Connessione al server riuscita. Non è stato però possibile connettersi alla base dati";
$lang['Can\'t connect to server'] = "Non è stato possibile connettersi al server";
$lang['The next step of the installation is now possible'] = "Il prossimo step d'installazione è oramail possibile";
$lang['next step'] = "step successivo";
$lang['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)'] = "Copiate il testo in rosa trà i trattini e mettetelo nel file config_database.inc.php che si trova nella directory \"include\" alla base del vostro sito dove aveto installato Piwigo (il file config_database.inc.php non deve contenere altro che ciò che è in rosa tra i trattini, nessun ritorno a capo o spazio è autorizzato)";
$lang['Database type'] = "Tipo di Database";
$lang['The type of database your piwigo data will be store in'] = "La base dati da utilizzare per installare Piwigo";
$lang['Host'] = "Host";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, pluto.libero.it";
$lang['User'] = "Utente";
$lang['user login given by your host provider'] = "nome utente di login alla base dati fornito dal tuo provider";
$lang['Password'] = "Password";
$lang['user password given by your host provider'] = "La password d'accesso alla base dati fornita dal tuo provider";
$lang['Database name'] = "Nome della base dati";
$lang['also given by your host provider'] = "fornitovi dal provider";
$lang['Database table prefix'] = "Prefisso delle tabelle della base dati";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "Le tabelle della base dati lo avranno come prefisso (permette di gestire meglio le tabelle)";
$lang['enter a login for webmaster'] = "Inserire un nome utente per il webmaster";
$lang['webmaster login can\'t contain characters \' or "'] = "Il nome utente del webmaster non può contenere caratteri come ' o \"";
$lang['please enter your password again'] = "Reinserire la password";
$lang['Installation finished'] = "Installazione completata";
$lang['Webmaster password'] = "Password";
$lang['Keep it confidential, it enables you to access administration panel'] = "da conservare con cura. Permette l'accesso al pannello di amministrazione";
$lang['Password [confirm]'] = "Password [confermare]";
$lang['verification'] = "verifica";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Bisogno di un aiuto? Visitate il <a href=\"%s\">forum di Piwigo</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "La configurazione di Piwigo è conclusa. Procedete al prossimo step<br><br>
* collegatevi alla pagina d'accesso e usare come nome d'utente e password quello del Webmaster<br>
* a questo punto sarete abilitati all'accesso al pannello di amministrazione in cui troverete le istruzioni per l'inserimento delle immagini nelle vostre directory";
$lang['Webmaster mail address'] = "Indirizzo email del Amministratore";
$lang['Visitors will be able to contact site administrator with this mail'] = "i visitatori potranno contattarvi utilizzando questo indirizzo email";
$lang['PHP 5 is required'] = "È necessario PHP 5";
$lang['It appears your webhost is currently running PHP %s.'] = "Sembrerebbe che la versione del vostro server è PHP %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo cerchrà di passare in PHP 5 creando o modificando il file .htaccess.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Notate che potete cambiare manualmente la configurazione e rilanciare Piwigo.";
$lang['Try to configure PHP 5'] = "Provate a configuratre PHP 5";
$lang['Sorry!'] = "Spiacente!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo non a potuto configurare PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "Dovete contattare il votro provider per chiedere come configurare PHP 5.";
$lang['Hope to see you back soon.'] = "Sperando rivedervi prossimamente ...";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,24 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Aggiornamento';
$lang['introduction message'] = 'Questa pagina vi propone di aggiornare la vostra base dati corrispondente alla vecchia versione verso la nuova versione.
L\'assistente all\'aggiornamento ha identificato il vostro prodotto come essendo una <strong>versione %s</strong> (o equivalente).';
$lang['Upgrade from %s to %s'] = 'Aggiornamento dalla versione %s alla %s';
$lang['Statistics'] = 'Statistiche';
$lang['total upgrade time'] = 'tempo totale per aggiornamento';
$lang['total SQL time'] = 'tempo totale delle esecuzioni SQL';
$lang['SQL queries'] = 'numero delle esecuzioni SQL';
$lang['Upgrade informations'] = 'Informazioni sul\'aggiornamento';
$lang['perform a maintenance check'] = 'Se riscontrate dei problemi, effettuare una manutezione in [Amministrazione>Speciale>Manutenzione].';
$lang['deactivated plugins'] = 'Per precauzione, i plugins sono stati disattivati. Verificate se non esistono degli aggiornamenti prima di riattivarli:';
$lang['upgrade login message'] = 'Solo un\'amministratore può eseguire l\'aggiornamento: identificatevi.';
$lang['You do not have access rights to run upgrade'] = 'Non avete le autorizzazioni necessarie per effettuare l\'aggiornamento';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'Nel file <i>include/config_database.inc.php</i>, prima di <b>?></b>, inserire:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'Tutte le sottocategorie delle categorie private diventono private';
$lang['user permissions and group permissions have been erased'] = 'I permessi degli utenti e dei gruppi sono stati cancellati';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Solo il prefisso delle miniature e l\'email del webmaster sono stati recuperati dalla precedente configurazione';
$lang['Upgrade'] = "Aggiornamento";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "Questa pagina vi propone di aggiornare la vostra base dati corrispondente alla vecchia versione verso la nuova versione.
L'assistente all'aggiornamento ha identificato il vostro prodotto come essendo una <strong>versione %s</strong> (o equivalente).";
$lang['Upgrade from version %s to %s'] = "Aggiornamento dalla versione %s alla %s";
$lang['Statistics'] = "Statistiche";
$lang['total upgrade time'] = "tempo totale per aggiornamento";
$lang['total SQL time'] = "tempo totale delle esecuzioni SQL";
$lang['SQL queries'] = "numero delle esecuzioni SQL";
$lang['Upgrade informations'] = "Informazioni sul'aggiornamento";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Se riscontrate dei problemi, effettuare una manutezione in [Amministrazione>Speciale>Manutenzione].";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "Per precauzione, i plugins sono stati disattivati. Verificate se non esistono degli aggiornamenti prima di riattivarli:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Solo un'amministratore può eseguire l'aggiornamento: identificatevi.";
$lang['You do not have access rights to run upgrade'] = "Non avete le autorizzazioni necessarie per effettuare l'aggiornamento";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "Nel file <i>include/config_database.inc.php</i>, prima di <b>?></b>, inserire:";
$lang['All sub-categories of private categories become private'] = "Tutte le sottocategorie delle categorie private diventono private";
$lang['User permissions and group permissions have been erased'] = "I permessi degli utenti e dei gruppi sono stati cancellati";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Solo il prefisso delle miniature e l'email del webmaster sono stati recuperati dalla precedente configurazione";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,346 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'Dutch';
$lang_info['country'] = 'Nederland';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'nl';
$lang_info['zero_plural'] = true;
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (beoordeling %d aantal x, standaard deviation = %.2f)';
$lang['%d Kb'] = '%d Kb';
$lang['%d category updated'] = '%d categorie bijgewerkt';
$lang['%d categories updated'] = '%d categorieën bijgewerkt';
$lang['%d comment to validate'] = '%d commentaar voor validatie';
$lang['%d comments to validate'] = '%d commentaren voor validatie';
$lang['%d new comment'] = '%d nieuw commentaar';
$lang['%d new comments'] = '%d nieuw commentaar';
$lang['%d comment'] = '%d commentaar';
$lang['%d comments'] = '%d commentaren';
$lang['%d hit'] = '%d bezoeker';
$lang['%d hits'] = '%d bezoekers';
$lang['%d new element'] = '%d nieuw element';
$lang['%d new elements'] = '%d nieuwe elementen';
$lang['%d new user'] = '%d nieuwe gebruiker';
$lang['%d new users'] = '%d nieuwe gebruikers';
$lang['%d waiting element'] = '%d wachtende element';
$lang['%d waiting elements'] = '%d wachtende elementen';
$lang['About'] = 'Over';
$lang['All tags must match'] = 'Alle tags moeten kloppen';
$lang['All tags'] = 'Alle tags';
$lang['Any tag'] = 'Elke tag';
$lang['At least one listed rule must be satisfied.'] = 'Op zijn minst moet aan één regel worden voldaan.';
$lang['At least one tag must match'] = 'Op zijn minst moet een tag kloppen';
$lang['Author'] = 'Auteur';
$lang['Average rate'] = 'Gemiddeld oordeel';
$lang['Categories'] = 'Categorieën';
$lang['Category'] = 'Categorie';
$lang['Close this window'] = 'Sluit dit venster';
$lang['Complete RSS feed'] = 'Complete RSS feed (afbeeldingen, commentaar)';
$lang['Confirm Password'] = 'Bevestig wachtwoord';
$lang['Connection settings'] = 'Verbindingsinstellingen';
$lang['Connection'] = 'Verbinding';
$lang['Contact webmaster'] = 'Contact de webmaster';
$lang['Create a new account'] = 'Maak een nieuwe account';
$lang['Created on'] = 'Gemaakt op';
$lang['Creation date'] = 'Aanmaak datum';
$lang['Current password is wrong'] = 'Huidige wachtwoord is niet juist';
$lang['Dimensions'] = 'Dimenties';
$lang['Display'] = 'Weergeven';
$lang['Each listed rule must be satisfied.'] = 'Aan elke regel moet worden voldaan.';
$lang['Email address is missing'] = 'Email adres is niet ingevuld';
$lang['Email address'] = 'Email adres';
$lang['Enter your personnal informations'] = 'Vul uw persoonlijke informatie in';
$lang['Error sending email'] = 'Fout bij het versturen van email';
$lang['File name'] = 'Bestandsnaam';
$lang['File'] = 'Bestand';
$lang['Filesize'] = 'Bestands grote';
$lang['Filter and display'] = 'Filteren en tonen';
$lang['Filter'] = 'Filter';
$lang['Forgot your password?'] = 'Wachtwoord vergeten?';
$lang['Go through the gallery as a visitor'] = 'Ga naar de gallerie als gast';
$lang['Help'] = 'Help';
$lang['Identification'] = 'Identificatie';
$lang['Image only RSS feed'] = 'Image only RSS feed';
$lang['Keyword'] = 'Keyword';
$lang['Links'] = 'Links';
$lang['Mail address'] = 'Mail adres';
$lang['N/A'] = 'Niet bekend';
$lang['New on %s'] = 'Nieuw op %s';
$lang['New password confirmation does not correspond'] = 'Nieuw wachtwoord bevestiging komt niet overeen';
$lang['New password sent by email'] = 'Nieuw wachtwoord is verzonden per email';
$lang['No email address'] = 'Geen email adres';
$lang['No user matches this email address'] = 'Geen gebruiker gevonden met dit email adres';
$lang['Notification'] = 'Melding';
$lang['Number of items'] = 'Aantal items';
$lang['Original dimensions'] = 'Originele dimenties';
$lang['Password forgotten'] = 'Wachtwoord vergeten';
$lang['Password'] = 'Wachtwoord';
$lang['Post date'] = 'Plaatsings datum';
$lang['Posted on'] = 'Geplaatst op';
$lang['Profile'] = 'Profiel';
$lang['Quick connect'] = 'Snel inloggen';
$lang['RSS feed'] = 'RSS feed';
$lang['Rate'] = 'Beoordeling';
$lang['Register'] = 'Registreren';
$lang['Registration'] = 'Registratie';
$lang['Related tags'] = 'Aanverwante tags';
$lang['Reset'] = 'Reset';
$lang['Retrieve password'] = 'Ontvang wachtwoord';
$lang['Search rules'] = 'Zoek opties';
$lang['Search tags'] = 'Zoek tags';
$lang['Search'] = 'Zoeken';
$lang['See available tags'] = 'Toon beschikbare tags';
$lang['Send new password'] = 'Stuur nieuw wachtwoord';
$lang['Since'] = 'Sinds';
$lang['Sort by'] = 'Sorteren op';
$lang['Sort order'] = 'Sorteer volgorde';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'De RSS feed geeft meldingen als er nieuws is op deze website: nieuwe afbeeldingen, bijgewerkte categorieën, nieuw commentaar. Gebruik hiervoor een rss lezer.';
$lang['Unknown feed identifier'] = 'Onbekende feed identifier';
$lang['User comments'] = 'Gebruikers commentaar';
$lang['Username'] = 'Gebruikersnaam';
$lang['Visits'] = 'Bezoeken';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Week %d';
$lang['about_page_title'] = 'Over Piwigo';
$lang['access_forbiden'] = 'Je hebt geen rechten tot de opgevraagde pagina';
$lang['add to caddie'] = 'Toevoegen aan caddie';
$lang['add_favorites_hint'] = 'voeg deze afbeelding toe aan jou favorieten';
$lang['admin'] = 'Beheer';
$lang['adviser_mode_enabled'] = 'Advies mode geactiveerd';
$lang['all'] = 'alle';
$lang['ascending'] = 'ascending';
$lang['author(s) : %s'] = 'auteur(s) : %s';
$lang['auto_expand'] = 'Toon alle categorieën';
$lang['became available after %s (%s)'] = 'geplaatst na %s (%s)';
$lang['became available before %s (%s)'] = 'geplaats voor %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'geplaatst tussen %s (%s) en %s (%s)';
$lang['became available on %s'] = 'geplaatst op %s';
$lang['best_rated_cat'] = 'Best beoordeeld';
$lang['best_rated_cat_hint'] = 'weergeven van de hoogste beoordeling';
$lang['caddie'] = 'caddie';
$lang['calendar'] = 'kalender';
$lang['calendar_any'] = 'Alle';
$lang['calendar_hint'] = 'weergeven elke dag met afbeelding, maand per maand';
$lang['calendar_picture_hint'] = 'toon alle afbeelding toegevoegt op ';
$lang['calendar_view'] = 'Bekijk';
$lang['chronology_monthly_calendar'] = 'Maand kalender';
$lang['chronology_monthly_list'] = 'Maand lijst';
$lang['chronology_weekly_list'] = 'Week lijst';
$lang['click_to_redirect'] = 'Klik hier als je browser je niet doorstuurt';
$lang['comment date'] = 'commentaar datum';
$lang['comment'] = 'Commentaar';
$lang['comment_added'] = 'Je commentaar is geregistreerd';
$lang['comment_anti-flood'] = 'Anti-flood systeem : je moet even wachten voordat je weer nieuw commentaar kunt plaatsen';
$lang['comment_not_added'] = 'Je commentaar is NIET geregistreerd omdat de validatie regels de plaatsing voorkwam';
$lang['comment_to_validate'] = 'Een beheerder moet je commentaar goedkeuren voordat het zichtbaar word.';
$lang['comment_user_exists'] = 'Deze gebruikersnaam is al in gebruik';
$lang['comments'] = 'Commentaar';
$lang['comments_add'] = 'voeg commentaar toe';
$lang['created after %s (%s)'] = 'Gemaakt na %s (%s)';
$lang['created before %s (%s)'] = 'Gemaakt voor %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'Gemaakt tussen %s (%s) en %s (%s)';
$lang['created on %s'] = 'gemaakt op %s';
$lang['customize'] = 'Aanpassen';
$lang['customize_page_title'] = 'Je gallerie aanpassen ';
$lang['day'][0] = 'Zondag';
$lang['day'][1] = 'Maandag';
$lang['day'][2] = 'Dinsdag';
$lang['day'][3] = 'Woensdag';
$lang['day'][4] = 'Donderdag';
$lang['day'][5] = 'Vrijdag';
$lang['day'][6] = 'Zaterdag';
$lang['default_sort'] = 'Standaard';
$lang['del_favorites_hint'] = 'verwijder deze foto van je favorieten';
$lang['delete'] = 'Verwijderen';
$lang['descending'] = 'descending';
$lang['download'] = 'download';
$lang['download_hint'] = 'download dit bestand';
$lang['edit'] = 'bewerk(en)';
$lang['err_date'] = 'verkeerde datum';
$lang['excluded'] = 'uitsluiten';
$lang['favorite_cat'] = 'Mijn favorieten';
$lang['favorite_cat_hint'] = 'toon mijn favoriete foto\'s';
$lang['favorites'] = 'Favorieten';
$lang['first_page'] = 'Eerste';
$lang['gallery_locked_message'] = 'De gallerie is in onderhoud. Probeer het later nog eens.';
$lang['generation_time'] = 'Pagina gegenereerd in';
$lang['guest'] = 'gast';
$lang['hello'] = 'Hallo';
$lang['hint_admin'] = 'Alleen voor beheerders';
$lang['hint_category'] = 'Toon afbeelding van het begin van de categorie';
$lang['hint_comments'] = 'Bekijk de laatste gebruikerscommentaar';
$lang['hint_customize'] = 'Verschijning van de gallerie aanpassen';
$lang['hint_search'] = 'zoeken';
$lang['home'] = 'Home';
$lang['identification'] = 'Identificatie';
$lang['images_available_cpl'] = 'in deze categorie';
$lang['images_available_cat'] = 'in %d sub-categorie';
$lang['images_available_cats'] = 'in %d sub-categorieën';
$lang['included'] = 'inclusief';
$lang['invalid_pwd'] = 'Verkeerd wachtwoord!';
$lang['language']='Taal';
$lang['last %d days'] = 'laaste %d dagen';
$lang['last_page'] = 'Laatste';
$lang['logout'] = 'Loguit';
$lang['mail_address'] = 'E-mail adres';
$lang['mandatory'] = 'verplicht';
$lang['maxheight'] = 'Maximale hoogte van de afbeelding';
$lang['maxheight_error'] = 'Maximale hoogte moet een veelvoud zijn van 50';
$lang['maxwidth'] = 'Maximale breedte van het afbeelding';
$lang['maxwidth_error'] = 'Maximale breedte moet een veelvoud zijn van 50';
$lang['mode_created_hint'] = 'toon een kalender per aanmaak datum';
$lang['mode_flat_hint'] = 'toont alle elementen in alle sub-categorieën';
$lang['mode_normal_hint'] = 'terug naar normaal kijken';
$lang['mode_posted_hint'] = 'toon een kalender met datums van plaatsen';
$lang['month'][10] = 'Oktober';
$lang['month'][11] = 'November';
$lang['month'][12] = 'December';
$lang['month'][1] = 'Januari';
$lang['month'][2] = 'Februari';
$lang['month'][3] = 'Maart';
$lang['month'][4] = 'April';
$lang['month'][5] = 'Mei';
$lang['month'][6] = 'Juni';
$lang['month'][7] = 'Juli';
$lang['month'][8] = 'Augustus';
$lang['month'][9] = 'September';
$lang['most_visited_cat'] = 'Meest bekeken';
$lang['most_visited_cat_hint'] = 'Toon de meest bekenen afbeelding';
$lang['nb_image_line_error'] = 'Het aantal beelden per rij moet niet ongeldige deler zijn';
$lang['nb_image_per_row'] = 'Aantal afbeeldingen per rij';
$lang['nb_line_page_error'] = 'Het aantal rijen per pagina mag geen ongeldige deling zijn';
$lang['nb_row_per_page'] = 'Aantal rijen per pagina';
$lang['nbm_unknown_identifier'] = 'Onbekend herkenningsteken';
$lang['new_password'] = 'Nieuw wachtwoord';
$lang['new_rate'] = 'Beoordeel deze afbeelding';
$lang['next_page'] = 'Volgende';
$lang['no_category'] = 'Home';
$lang['no_rate'] = 'geen beoordeling';
$lang['note_filter_day'] = 'Toont alleen elementen geplaatst in de laatste %s dag.';
$lang['note_filter_days'] = 'Toont alleen elementen geplaatst in de laatste %s dagen.';
$lang['password updated'] = 'wachtwoord bijgewerkt';
$lang['periods_error'] = 'Recente periode moet een positieve waarde zijn';
$lang['picture'] = 'afbeelding';
$lang['picture_high'] = 'Klik op de afbeelding om het te bekijken in een groter formaat';
$lang['picture_show_metadata'] = 'Toon bestands metadata';
$lang['powered_by'] = 'Powered by';
$lang['preferences'] = 'Voorkeuren';
$lang['previous_page'] = 'Vorige';
$lang['random_cat'] = 'Random afbeelding';
$lang['random_cat_hint'] = 'toon een set van willekeurige afbeelding';
$lang['recent_cats_cat'] = 'Recente categorieën';
$lang['recent_cats_cat_hint'] = 'toon recentelijk bijgewerkte categorieën';
$lang['recent_period'] = 'Recente periode';
$lang['recent_pics_cat'] = 'Recente afbeelding';
$lang['recent_pics_cat_hint'] = 'toon meest recente afbeelding';
$lang['redirect_msg'] = 'doorsturen...';
$lang['reg_err_login1'] = 'Vul uw gebruikersnaam in AUB.';
$lang['reg_err_login2'] = 'gebruikersnaam mag niet eindigen met een spatie';
$lang['reg_err_login3'] = 'gebruikersnaam mag niet beginnen met een spatie';
$lang['reg_err_login5'] = 'deze gebruikersnaam is al in gebruik';
$lang['reg_err_mail_address'] = 'mail adres moet zijn xxx@yyy.eee (voorbeeld : jack@altern.org)';
$lang['reg_err_pass'] = 'vul uw wachtwoord nogmaals in';
$lang['remember_me'] = 'Auto login';
$lang['remove this tag'] = 'verwijder de tag van de lijst';
$lang['representative'] = 'representatief';
$lang['return to homepage'] = 'terug naar de homepage';
$lang['search_author'] = 'Zoek naar auteur';
$lang['search_categories'] = 'Zoeken in Categorieën';
$lang['search_date'] = 'Zoeken op Datum';
$lang['search_date_from'] = 'Datum';
$lang['search_date_to'] = 'Eind-Datum';
$lang['search_date_type'] = 'Datum type';
$lang['search_keywords'] = 'Zoek naar hele woorden';
$lang['search_mode_and'] = 'Zoeken naar alle woorden';
$lang['search_mode_or'] = 'Zoeken naar een woord';
$lang['search_one_clause_at_least'] = 'Lege zoekopdracht. Er is niets ingevuld.';
$lang['search_options'] = 'Zoek Opties';
$lang['search_result'] = 'Zoekresultaten';
$lang['search_subcats_included'] = 'Zoeken in subcategorieën';
$lang['search_title'] = 'Zoeken';
$lang['searched words : %s'] = 'zoekwoorden : %s';
$lang['send_mail'] = 'Contact';
$lang['set as category representative'] = 'Stel in als standaard categorie';
$lang['show_nb_comments'] = 'Toon aantal commentaren';
$lang['show_nb_hits'] = 'Toon aantal bezoekers';
$lang['slideshow'] = 'slideshow';
$lang['slideshow_stop'] = 'stop de slideshow';
$lang['special_categories'] = 'Speciaal';
$lang['sql_queries_in'] = 'SQL queries in';
$lang['start_filter_hint'] = 'toon alleen de recent geplaatste elementen';
$lang['stop_filter_hint'] = 'terug naar het tonen van alles';
$lang['the beginning'] = 'het begin';
$lang['theme'] = 'thema';
$lang['thumbnails'] = 'Thumbnails';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'commentaar op je site';
$lang['today'] = 'vandaag';
$lang['update_rate'] = 'Werk je beoordeling bij';
$lang['update_wrong_dirname'] = 'verkeerde bestandsnaam';
$lang['upload_advise_filesize'] = 'het bestandsformaat mag niet te groot zijn : ';
$lang['upload_advise_filetype'] = 'de afbeelding moet een extensie hebbben die eindigt op jpg, gif of png';
$lang['upload_advise_height'] = 'de hoogte van de afbeelding mag niet te groot zijn : ';
$lang['upload_advise_thumbnail'] = 'Optioneel, maar aanbevolen : kies een thumbnail voor associatie';
$lang['upload_advise_width'] = 'de breedte van de afbeelding mag niet te groot zijn : ';
$lang['upload_author'] = 'Auteur';
$lang['upload_cannot_upload'] = 'kan de afbeelding niet op de server plaatsen';
$lang['upload_err_username'] = 'de gebruikersnaam moet ingevuld zijn';
$lang['upload_file_exists'] = 'De naam is al in gebruik';
$lang['upload_filenotfound'] = 'Je moet een afbeeldingsformaat opgeven voor de afbeelding';
$lang['upload_forbidden'] = 'Je kan geen afbeelding plaatsen in deze categorie';
$lang['upload_name'] = 'Naam van de afbeelding';
$lang['upload_picture'] = 'Uploaden van een afbeelding';
$lang['upload_successful'] = 'Afbeelding met succes ge-upload, een beheerder moet de afbeelding valideren, dit gebeurd zsm.';
$lang['upload_title'] = 'Upload een afbeelding';
$lang['useful when password forgotten'] = 'handig bij het vergeten van je wachtwoord';
$lang['qsearch'] = 'Snel zoeken';
$lang['Connected user: %s'] = 'Aangemeld als gebruiker: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Browser: %s';
$lang['Author: %s'] = 'Auteur: %s';
$lang['Comment: %s'] = 'Commentaar: %s';
$lang['Delete: %s'] = 'Verwijderen: %s';
$lang['Validate: %s'] = 'Valideren: %s';
$lang['Comment by %s'] = 'Commentaar van %s';
$lang['User: %s'] = 'Gebruiker: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Beheerder: %s';
$lang['Registration of %s'] = 'Registratie van %s';
$lang['Category: %s'] = 'Categorie: %s';
$lang['Picture name: %s'] = 'Afbeeldings naam: %s';
$lang['Creation date: %s'] = 'Aanmaak datum: %s';
$lang['Waiting page: %s'] = 'Wacht pagina: %s';
$lang['Picture uploaded by %s'] = 'Afbeelding ge-uploaded door %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Foutieve status voor gebruiker "guest", gebruik standaard status. Waarschuw de webmaster.';
// --------- Starting below: New or revised $lang ---- from Butterfly (1.8)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrator, webmaster en speciale gebruiker kunnen deze methode niet gebruiken';
$lang['reg_err_mail_address_dbl'] = 'Een andere gebruiker maakt al gebruik van dit email adres';
$lang['Category results for'] = 'Categorie resultaten voor';
$lang['Tag results for'] = 'Tag resultaten voor';
$lang['from %s to %s'] = 'van %s tot %s';
$lang['start_play'] = 'Play of slideshow';
$lang['stop_play'] = 'Pause of slideshow';
$lang['start_repeat'] = 'Repeat the slideshow';
$lang['stop_repeat'] = 'Not repeat the slideshow';
$lang['inc_period'] = 'Reduce diaporama speed';
$lang['dec_period'] = 'Accelerate diaporama speed';
$lang['Submit'] = 'Bevestig';
$lang['Yes'] = 'Ja';
$lang['No'] = 'Nee';
$lang['%d element']='%d afbeelding';
$lang['%d elements']='%d afbeeldingen';
$lang['%d element are also linked to current tags'] = '%d image are also linked to current tags';
$lang['%d elements are also linked to current tags'] = '%d images are also linked to current tags';
$lang['See elements linked to this tag only'] = 'Toon afbeelding gelinkt met deze tag';
$lang['elements posted during the last %d days'] = 'afbeelding binnen de %d dagen';
$lang['Choose an image'] = 'Kies een afbeelding om';
$lang['Piwigo Help'] = 'Piwigo Help';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
$lang['del_all_favorites_hint'] = 'Alle geselecteerde favoriete foto\'s deselecteren';
$lang['Sent by'] = 'Verstuurd door';
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (beoordeling %d aantal x, standaard deviation = %.2f)";
$lang['%d Kb'] = "%d Kb";
$lang['%d category updated'] = "%d categorie bijgewerkt";
$lang['%d categories updated'] = "%d categorieën bijgewerkt";
$lang['%d comment to validate'] = "%d commentaar voor validatie";
$lang['%d comments to validate'] = "%d commentaren voor validatie";
$lang['%d new comment'] = "%d nieuw commentaar";
$lang['%d new comments'] = "%d nieuw commentaar";
$lang['%d comment'] = "%d commentaar";
$lang['%d comments'] = "%d commentaren";
$lang['%d hit'] = "%d bezoeker";
$lang['%d hits'] = "%d bezoekers";
$lang['%d new image'] = "%d nieuw element";
$lang['%d new images'] = "%d nieuwe elementen";
$lang['%d new user'] = "%d nieuwe gebruiker";
$lang['%d new users'] = "%d nieuwe gebruikers";
$lang['%d waiting element'] = "%d wachtende element";
$lang['%d waiting elements'] = "%d wachtende elementen";
$lang['About'] = "Over";
$lang['All tags must match'] = "Alle tags moeten kloppen";
$lang['All tags'] = "Alle tags";
$lang['Any tag'] = "Elke tag";
$lang['At least one listed rule must be satisfied.'] = "Op zijn minst moet aan één regel worden voldaan.";
$lang['At least one tag must match'] = "Op zijn minst moet een tag kloppen";
$lang['Author'] = "Auteur";
$lang['Average rate'] = "Gemiddeld oordeel";
$lang['Categories'] = "Categorieën";
$lang['Category'] = "Categorie";
$lang['Close this window'] = "Sluit dit venster";
$lang['Complete RSS feed (images, comments)'] = "Complete RSS feed (afbeeldingen, commentaar)";
$lang['Confirm Password'] = "Bevestig wachtwoord";
$lang['Connection settings'] = "Verbindingsinstellingen";
$lang['Login'] = "Verbinding";
$lang['Contact webmaster'] = "Contact de webmaster";
$lang['Create a new account'] = "Maak een nieuwe account";
$lang['Created on'] = "Gemaakt op";
$lang['Creation date'] = "Aanmaak datum";
$lang['Current password is wrong'] = "Huidige wachtwoord is niet juist";
$lang['Dimensions'] = "Dimenties";
$lang['Display'] = "Weergeven";
$lang['Each listed rule must be satisfied.'] = "Aan elke regel moet worden voldaan.";
$lang['Email address is missing'] = "Email adres is niet ingevuld";
$lang['Email address'] = "Email adres";
$lang['Enter your personnal informations'] = "Vul uw persoonlijke informatie in";
$lang['Error sending email'] = "Fout bij het versturen van email";
$lang['File name'] = "Bestandsnaam";
$lang['File'] = "Bestand";
$lang['Filesize'] = "Bestands grote";
$lang['Filter and display'] = "Filteren en tonen";
$lang['Filter'] = "Filter";
$lang['Forgot your password?'] = "Wachtwoord vergeten?";
$lang['Go through the gallery as a visitor'] = "Ga naar de gallerie als gast";
$lang['Help'] = "Help";
$lang['Identification'] = "Identificatie";
$lang['Image only RSS feed'] = "Image only RSS feed";
$lang['Keyword'] = "Keyword";
$lang['Links'] = "Links";
$lang['Mail address'] = "Mail adres";
$lang['N/A'] = "Niet bekend";
$lang['New on %s'] = "Nieuw op %s";
$lang['New password confirmation does not correspond'] = "Nieuw wachtwoord bevestiging komt niet overeen";
$lang['New password sent by email'] = "Nieuw wachtwoord is verzonden per email";
$lang['No email address'] = "Geen email adres";
$lang['No classic user matches this email address'] = "Geen gebruiker gevonden met dit email adres";
$lang['Notification'] = "Melding";
$lang['Number of items'] = "Aantal items";
$lang['Original dimensions'] = "Originele dimenties";
$lang['Password forgotten'] = "Wachtwoord vergeten";
$lang['Password'] = "Wachtwoord";
$lang['Post date'] = "Plaatsings datum";
$lang['Posted on'] = "Geplaatst op";
$lang['Profile'] = "Profiel";
$lang['Quick connect'] = "Snel inloggen";
$lang['RSS feed'] = "RSS feed";
$lang['Rate'] = "Beoordeling";
$lang['Register'] = "Registreren";
$lang['Registration'] = "Registratie";
$lang['Related tags'] = "Aanverwante tags";
$lang['Reset'] = "Reset";
$lang['Retrieve password'] = "Ontvang wachtwoord";
$lang['Search rules'] = "Zoek opties";
$lang['Search tags'] = "Zoek tags";
$lang['Search'] = "Zoeken";
$lang['See available tags'] = "Toon beschikbare tags";
$lang['Send new password'] = "Stuur nieuw wachtwoord";
$lang['Since'] = "Sinds";
$lang['Sort by'] = "Sorteren op";
$lang['Sort order'] = "Sorteer volgorde";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "De RSS feed geeft meldingen als er nieuws is op deze website: nieuwe afbeeldingen, bijgewerkte categorieën, nieuw commentaar. Gebruik hiervoor een rss lezer.";
$lang['Unknown feed identifier'] = "Onbekende feed identifier";
$lang['User comments'] = "Gebruikers commentaar";
$lang['Username'] = "Gebruikersnaam";
$lang['Visits'] = "Bezoeken";
$lang['Webmaster'] = "Webmaster";
$lang['Week %d'] = "Week %d";
$lang['About Piwigo'] = "Over Piwigo";
$lang['You are not authorized to access the requested page'] = "Je hebt geen rechten tot de opgevraagde pagina";
$lang['add to caddie'] = "Toevoegen aan caddie";
$lang['add this image to your favorites'] = "voeg deze afbeelding toe aan jou favorieten";
$lang['Administration'] = "Beheer";
$lang['Adviser mode enabled'] = "Advies mode geactiveerd";
$lang['all'] = "alle";
$lang['ascending'] = "ascending";
$lang['author(s) : %s'] = "auteur(s) : %s";
$lang['Expand all categories'] = "Toon alle categorieën";
$lang['posted after %s (%s)'] = "geplaatst na %s (%s)";
$lang['posted before %s (%s)'] = "geplaats voor %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "geplaatst tussen %s (%s) en %s (%s)";
$lang['posted on %s'] = "geplaatst op %s";
$lang['Best rated'] = "Best beoordeeld";
$lang['display best rated items'] = "weergeven van de hoogste beoordeling";
$lang['caddie'] = "caddie";
$lang['Calendar'] = "kalender";
$lang['All'] = "Alle";
$lang['display each day with pictures, month per month'] = "weergeven elke dag met afbeelding, maand per maand";
$lang['display pictures added on'] = "toon alle afbeelding toegevoegt op";
$lang['View'] = "Bekijk";
$lang['chronology_monthly_calendar'] = "Maand kalender";
$lang['chronology_monthly_list'] = "Maand lijst";
$lang['chronology_weekly_list'] = "Week lijst";
$lang['Click here if your browser does not automatically forward you'] = "Klik hier als je browser je niet doorstuurt";
$lang['comment date'] = "commentaar datum";
$lang['Comment'] = "Commentaar";
$lang['Your comment has been registered'] = "Je commentaar is geregistreerd";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Anti-flood systeem : je moet even wachten voordat je weer nieuw commentaar kunt plaatsen";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Je commentaar is NIET geregistreerd omdat de validatie regels de plaatsing voorkwam";
$lang['An administrator must authorize your comment before it is visible.'] = "Een beheerder moet je commentaar goedkeuren voordat het zichtbaar word.";
$lang['This login is already used by another user'] = "Deze gebruikersnaam is al in gebruik";
$lang['Comments'] = "Commentaar";
$lang['Add a comment'] = "voeg commentaar toe";
$lang['created after %s (%s)'] = "Gemaakt na %s (%s)";
$lang['created before %s (%s)'] = "Gemaakt voor %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "Gemaakt tussen %s (%s) en %s (%s)";
$lang['created on %s'] = "gemaakt op %s";
$lang['Customize'] = "Aanpassen";
$lang['Your Gallery Customization'] = "Je gallerie aanpassen";
$lang['day'][0] = "Zondag";
$lang['day'][1] = "Maandag";
$lang['day'][2] = "Dinsdag";
$lang['day'][3] = "Woensdag";
$lang['day'][4] = "Donderdag";
$lang['day'][5] = "Vrijdag";
$lang['day'][6] = "Zaterdag";
$lang['Default'] = "Standaard";
$lang['delete this image from your favorites'] = "verwijder deze foto van je favorieten";
$lang['Delete'] = "Verwijderen";
$lang['descending'] = "descending";
$lang['download'] = "download";
$lang['download this file'] = "download dit bestand";
$lang['edit'] = "bewerk(en)";
$lang['wrong date'] = "verkeerde datum";
$lang['excluded'] = "uitsluiten";
$lang['My favorites'] = "Mijn favorieten";
$lang['display my favorites pictures'] = "toon mijn favoriete foto's";
$lang['Favorites'] = "Favorieten";
$lang['First'] = "Eerste";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "De gallerie is in onderhoud. Probeer het later nog eens.";
$lang['Page generated in'] = "Pagina gegenereerd in";
$lang['guest'] = "gast";
$lang['Hello'] = "Hallo";
$lang['available for administrators only'] = "Alleen voor beheerders";
$lang['shows images at the root of this category'] = "Toon afbeelding van het begin van de categorie";
$lang['See last users comments'] = "Bekijk de laatste gebruikerscommentaar";
$lang['customize the appareance of the gallery'] = "Verschijning van de gallerie aanpassen";
$lang['search'] = "zoeken";
$lang['Home'] = "Home";
$lang['Identification'] = "Identificatie";
$lang['in this category'] = "in deze categorie";
$lang['in %d sub-category'] = "in %d sub-categorie";
$lang['in %d sub-categories'] = "in %d sub-categorieën";
$lang['included'] = "inclusief";
$lang['Invalid password!'] = "Verkeerd wachtwoord!";
$lang['Language'] = "Taal";
$lang['last %d days'] = "laaste %d dagen";
$lang['Last'] = "Laatste";
$lang['Logout'] = "Loguit";
$lang['E-mail address'] = "E-mail adres";
$lang['obligatory'] = "verplicht";
$lang['Maximum height of the pictures'] = "Maximale hoogte van de afbeelding";
$lang['Maximum height must be a number superior to 50'] = "Maximale hoogte moet een veelvoud zijn van 50";
$lang['Maximum width of the pictures'] = "Maximale breedte van het afbeelding";
$lang['Maximum width must be a number superior to 50'] = "Maximale breedte moet een veelvoud zijn van 50";
$lang['display a calendar by creation date'] = "toon een kalender per aanmaak datum";
$lang['display all elements in all sub-categories'] = "toont alle elementen in alle sub-categorieën";
$lang['return to normal view mode'] = "terug naar normaal kijken";
$lang['display a calendar by posted date'] = "toon een kalender met datums van plaatsen";
$lang['month'][10] = "Oktober";
$lang['month'][11] = "November";
$lang['month'][12] = "December";
$lang['month'][1] = "Januari";
$lang['month'][2] = "Februari";
$lang['month'][3] = "Maart";
$lang['month'][4] = "April";
$lang['month'][5] = "Mei";
$lang['month'][6] = "Juni";
$lang['month'][7] = "Juli";
$lang['month'][8] = "Augustus";
$lang['month'][9] = "September";
$lang['Most visited'] = "Meest bekeken";
$lang['display most visited pictures'] = "Toon de meest bekenen afbeelding";
$lang['The number of images per row must be a not null scalar'] = "Het aantal beelden per rij moet niet ongeldige deler zijn";
$lang['Number of images per row'] = "Aantal afbeeldingen per rij";
$lang['The number of rows per page must be a not null scalar'] = "Het aantal rijen per pagina mag geen ongeldige deling zijn";
$lang['Number of rows per page'] = "Aantal rijen per pagina";
$lang['Unknown identifier'] = "Onbekend herkenningsteken";
$lang['New password'] = "Nieuw wachtwoord";
$lang['Rate this picture'] = "Beoordeel deze afbeelding";
$lang['Next'] = "Volgende";
$lang['Home'] = "Home";
$lang['no rate'] = "geen beoordeling";
$lang['Elements posted within the last %d day.'] = "Toont alleen elementen geplaatst in de laatste %s dag.";
$lang['Elements posted within the last %d days.'] = "Toont alleen elementen geplaatst in de laatste %s dagen.";
$lang['password updated'] = "wachtwoord bijgewerkt";
$lang['Recent period must be a positive integer value'] = "Recente periode moet een positieve waarde zijn";
$lang['picture'] = "afbeelding";
$lang['Click on the picture to see it in high definition'] = "Klik op de afbeelding om het te bekijken in een groter formaat";
$lang['Show file metadata'] = "Toon bestands metadata";
$lang['Powered by'] = "Powered by";
$lang['Preferences'] = "Voorkeuren";
$lang['Previous'] = "Vorige";
$lang['Random pictures'] = "Random afbeelding";
$lang['display a set of random pictures'] = "toon een set van willekeurige afbeelding";
$lang['Recent categories'] = "Recente categorieën";
$lang['display recently updated categories'] = "toon recentelijk bijgewerkte categorieën";
$lang['Recent period'] = "Recente periode";
$lang['Recent pictures'] = "Recente afbeelding";
$lang['display most recent pictures'] = "toon meest recente afbeelding";
$lang['Redirection...'] = "doorsturen...";
$lang['Please, enter a login'] = "Vul uw gebruikersnaam in AUB.";
$lang['login mustn\'t end with a space character'] = "gebruikersnaam mag niet eindigen met een spatie";
$lang['login mustn\'t start with a space character'] = "gebruikersnaam mag niet beginnen met een spatie";
$lang['this login is already used'] = "deze gebruikersnaam is al in gebruik";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "mail adres moet zijn xxx@yyy.eee (voorbeeld : jack@altern.org)";
$lang['please enter your password again'] = "vul uw wachtwoord nogmaals in";
$lang['Auto login'] = "Auto login";
$lang['remove this tag from the list'] = "verwijder de tag van de lijst";
$lang['representative'] = "representatief";
$lang['return to homepage'] = "terug naar de homepage";
$lang['Search for Author'] = "Zoek naar auteur";
$lang['Search in Categories'] = "Zoeken in Categorieën";
$lang['Search by Date'] = "Zoeken op Datum";
$lang['Date'] = "Datum";
$lang['End-Date'] = "Eind-Datum";
$lang['Kind of date'] = "Datum type";
$lang['Search for words'] = "Zoek naar hele woorden";
$lang['Search for all terms'] = "Zoeken naar alle woorden";
$lang['Search for any terms'] = "Zoeken naar een woord";
$lang['Empty query. No criteria has been entered.'] = "Lege zoekopdracht. Er is niets ingevuld.";
$lang['Search Options'] = "Zoek Opties";
$lang['Search results'] = "Zoekresultaten";
$lang['Search in subcategories'] = "Zoeken in subcategorieën";
$lang['Search'] = "Zoeken";
$lang['searched words : %s'] = "zoekwoorden : %s";
$lang['Contact'] = "Contact";
$lang['set as category representative'] = "Stel in als standaard categorie";
$lang['Show number of comments'] = "Toon aantal commentaren";
$lang['Show number of hits'] = "Toon aantal bezoekers";
$lang['slideshow'] = "slideshow";
$lang['stop the slideshow'] = "stop de slideshow";
$lang['Specials'] = "Speciaal";
$lang['SQL queries in'] = "SQL queries in";
$lang['display only recently posted images'] = "toon alleen de recent geplaatste elementen";
$lang['return to the display of all images'] = "terug naar het tonen van alles";
$lang['the beginning'] = "het begin";
$lang['Interface theme'] = "thema";
$lang['Thumbnails'] = "Thumbnails";
$lang['Menu'] = "Menu";
$lang['A comment on your site'] = "commentaar op je site";
$lang['today'] = "vandaag";
$lang['Update your rating'] = "Werk je beoordeling bij";
$lang['wrong filename'] = "verkeerde bestandsnaam";
$lang['the filesize of the picture must not exceed :'] = "het bestandsformaat mag niet te groot zijn :";
$lang['the picture must be to the fileformat jpg, gif or png'] = "de afbeelding moet een extensie hebbben die eindigt op jpg, gif of png";
$lang['the height of the picture must not exceed :'] = "de hoogte van de afbeelding mag niet te groot zijn :";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Optioneel, maar aanbevolen : kies een thumbnail voor associatie";
$lang['the width of the picture must not exceed :'] = "de breedte van de afbeelding mag niet te groot zijn :";
$lang['Author'] = "Auteur";
$lang['can\'t upload the picture on the server'] = "kan de afbeelding niet op de server plaatsen";
$lang['the username must be given'] = "de gebruikersnaam moet ingevuld zijn";
$lang['A picture\'s name already used'] = "De naam is al in gebruik";
$lang['You must choose a picture fileformat for the image'] = "Je moet een afbeeldingsformaat opgeven voor de afbeelding";
$lang['You can\'t upload pictures in this category'] = "Je kan geen afbeelding plaatsen in deze categorie";
$lang['Name of the picture'] = "Naam van de afbeelding";
$lang['Upload a picture'] = "Uploaden van een afbeelding";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Afbeelding met succes ge-upload, een beheerder moet de afbeelding valideren, dit gebeurd zsm.";
$lang['Upload a picture'] = "Upload een afbeelding";
$lang['useful when password forgotten'] = "handig bij het vergeten van je wachtwoord";
$lang['Quick search'] = "Snel zoeken";
$lang['Connected user: %s'] = "Aangemeld als gebruiker: %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Browser: %s";
$lang['Author: %s'] = "Auteur: %s";
$lang['Comment: %s'] = "Commentaar: %s";
$lang['Delete: %s'] = "Verwijderen: %s";
$lang['Validate: %s'] = "Valideren: %s";
$lang['Comment by %s'] = "Commentaar van %s";
$lang['User: %s'] = "Gebruiker: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Beheerder: %s";
$lang['Registration of %s'] = "Registratie van %s";
$lang['Category: %s'] = "Categorie: %s";
$lang['Picture name: %s'] = "Afbeeldings naam: %s";
$lang['Creation date: %s'] = "Aanmaak datum: %s";
$lang['Waiting page: %s'] = "Wacht pagina: %s";
$lang['Picture uploaded by %s'] = "Afbeelding ge-uploaded door %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Foutieve status voor gebruiker \"guest\", gebruik standaard status. Waarschuw de webmaster.";
$lang['Administrator, webmaster and special user cannot use this method'] = "Administrator, webmaster en speciale gebruiker kunnen deze methode niet gebruiken";
$lang['a user use already this mail address'] = "Een andere gebruiker maakt al gebruik van dit email adres";
$lang['Category results for'] = "Categorie resultaten voor";
$lang['Tag results for'] = "Tag resultaten voor";
$lang['from %s to %s'] = "van %s tot %s";
$lang['Play of slideshow'] = "Play of slideshow";
$lang['Pause of slideshow'] = "Pause of slideshow";
$lang['Repeat the slideshow'] = "Repeat the slideshow";
$lang['Not repeat the slideshow'] = "Not repeat the slideshow";
$lang['Reduce diaporama speed'] = "Reduce diaporama speed";
$lang['Accelerate diaporama speed'] = "Accelerate diaporama speed";
$lang['Submit'] = "Bevestig";
$lang['Yes'] = "Ja";
$lang['No'] = "Nee";
$lang['%d image'] = "%d afbeelding";
$lang['%d images'] = "%d afbeeldingen";
$lang['%d image is also linked to current tags'] = "%d image are also linked to current tags";
$lang['%d images are also linked to current tags'] = "%d images are also linked to current tags";
$lang['See images linked to this tag only'] = "Toon afbeelding gelinkt met deze tag";
$lang['images posted during the last %d days'] = "afbeelding binnen de %d dagen";
$lang['Choose an image'] = "Kies een afbeelding om";
$lang['Piwigo Help'] = "Piwigo Help";
$lang['Rank'] = "";
$lang['group by letters'] = "";
$lang['letters'] = "";
$lang['show tag cloud'] = "";
$lang['cloud'] = "";
$lang['Reset to default values'] = "";
$lang['delete all images from your favorites'] = "Alle geselecteerde favoriete foto's deselecteren";
$lang['Sent by'] = "Verstuurd door";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,58 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installatie';
$lang['Initial_config'] = 'Basis configuratie';
$lang['Default_lang'] = 'Standaard gallery taal';
$lang['step1_title'] = 'Database configuratie';
$lang['step2_title'] = 'Admin configuratie';
$lang['Start_Install'] = 'Start Installatie';
$lang['reg_err_mail_address'] = 'E-mail adres moet lijken op xxx@yyy.eee (voorbeeld : jack@altern.org)';
$lang['install_webmaster'] = 'Webmaster login';
$lang['install_webmaster_info'] = 'Het word getoond aan de bezoekers. Het is ook noodzakelijk voor de administratie van de website';
$lang['step1_confirmation'] = 'Parameters zijn correct';
$lang['step1_err_db'] = 'De verbinding met de server is geslaagd, maar het is niet mogelijk om verbinding te krijgen met de database';
$lang['step1_err_server'] = 'Geen verbinding met de server';
$lang['step1_err_copy_2'] = 'Het is nu mogelijk om verder te gaan met de volgende stap van de installatie';
$lang['step1_err_copy_next'] = 'volgende stap';
$lang['step1_err_copy'] = 'Kopieer de tekst tussen de lijnen en plak deze in het bestand "include/config_database.inc.php"(Waarschuwing: config_database.inc.php mag alleen het roze gedeelte bevatten, geen return of extra spatie). Dit moet alleen wanneer dit bestand geen schrijfrechten';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'Gebruiker';
$lang['step1_user_info'] = 'De gebruikersnaam welke door uw provider is gegeven';
$lang['step1_pass'] = 'Wachtwoord';
$lang['step1_pass_info'] = 'De gebruikersnaam welke door uw provider is gegeven';
$lang['step1_database'] = 'Database naam';
$lang['step1_database_info'] = 'Ook deze is door uw provider gegeven';
$lang['step1_prefix'] = 'Database tabel voorvoegsel';
$lang['step1_prefix_info'] = 'Tabellen in de database worden voorzien van dit voorvoegsel (dit maakt een beter beheer van de database mogelijk) ook wel prefix genoemd';
$lang['step2_err_login1'] = 'Geef een gebruikersnaam voor de beheerder';
$lang['step2_err_login3'] = 'De gebruikersnaam mag geen \' of " bevatten';
$lang['step2_err_pass'] = 'Vul a.u.b. nogmaals uw wachtwoord in';
$lang['install_end_title'] = 'Installatie voltooid';
$lang['step2_pwd'] = 'Webmaster wachtwoord';
$lang['step2_pwd_info'] = 'Hou dit vertrouwlijk, dit geeft toegang tot de beheermodule';
$lang['step2_pwd_conf'] = 'Wachtwoord [bevestigen]';
$lang['step2_pwd_conf_info'] = 'verificatie';
$lang['install_help'] = 'Hulp nodig ? stel een vraag op het <a href="%s" target="_blank">Piwigo forum</a>.';
$lang['install_end_message'] = 'Het installeren van Piwigo is klaar, de volgende stap is<br><br>
$lang['Installation'] = "Installatie";
$lang['Basic configuration'] = "Basis configuratie";
$lang['Default gallery language'] = "Standaard gallery taal";
$lang['Database configuration'] = "Database configuratie";
$lang['Admin configuration'] = "Admin configuratie";
$lang['Start Install'] = "Start Installatie";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "E-mail adres moet lijken op xxx@yyy.eee (voorbeeld : jack@altern.org)";
$lang['Webmaster login'] = "Webmaster login";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "Het word getoond aan de bezoekers. Het is ook noodzakelijk voor de administratie van de website";
$lang['Parameters are correct'] = "Parameters zijn correct";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "De verbinding met de server is geslaagd, maar het is niet mogelijk om verbinding te krijgen met de database";
$lang['Can\'t connect to server'] = "Geen verbinding met de server";
$lang['The next step of the installation is now possible'] = "Het is nu mogelijk om verder te gaan met de volgende stap van de installatie";
$lang['next step'] = "volgende stap";
$lang['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)'] = "Kopieer de tekst tussen de lijnen en plak deze in het bestand \"include/config_database.inc.php\"(Waarschuwing: config_database.inc.php mag alleen het roze gedeelte bevatten, geen return of extra spatie). Dit moet alleen wanneer dit bestand geen schrijfrechten";
$lang['Database type'] = "Database type";
$lang['The type of database your piwigo data will be store in'] = "The type of database your piwigo data will be store in";
$lang['Host'] = "Host";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "Gebruiker";
$lang['user login given by your host provider'] = "De gebruikersnaam welke door uw provider is gegeven";
$lang['Password'] = "Wachtwoord";
$lang['user password given by your host provider'] = "De gebruikersnaam welke door uw provider is gegeven";
$lang['Database name'] = "Database naam";
$lang['also given by your host provider'] = "Ook deze is door uw provider gegeven";
$lang['Database table prefix'] = "Database tabel voorvoegsel";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "Tabellen in de database worden voorzien van dit voorvoegsel (dit maakt een beter beheer van de database mogelijk) ook wel prefix genoemd";
$lang['enter a login for webmaster'] = "Geef een gebruikersnaam voor de beheerder";
$lang['webmaster login can\'t contain characters \' or "'] = "De gebruikersnaam mag geen ' of \" bevatten";
$lang['please enter your password again'] = "Vul a.u.b. nogmaals uw wachtwoord in";
$lang['Installation finished'] = "Installatie voltooid";
$lang['Webmaster password'] = "Webmaster wachtwoord";
$lang['Keep it confidential, it enables you to access administration panel'] = "Hou dit vertrouwlijk, dit geeft toegang tot de beheermodule";
$lang['Password [confirm]'] = "Wachtwoord [bevestigen]";
$lang['verification'] = "verificatie";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Hulp nodig ? stel een vraag op het <a href=\"%s\" target=\"_blank\">Piwigo forum</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "Het installeren van Piwigo is klaar, de volgende stap is<br><br>
* Ga naar de Indentificatie pagina en gebruik hiervoor het eerder opgegeven gebruikersnaam met wachtwoord<br>
* Deze gebruikersnaam geeft u toegang tot de beheermenu zodat u afbeeldingen op uw website kan plaatsen';
$lang['conf_mail_webmaster'] = 'Webmaster email adres';
$lang['conf_mail_webmaster_info'] = 'Het is mogelijk dat bezoekers contact opnemen met de beheerder middels e-mail';
/* TODO */$lang['PHP 5 is required'] = 'PHP 5 is required';
/* TODO */$lang['It appears your webhost is currently running PHP %s.'] = 'It appears your webhost is currently running PHP %s.';
/* TODO */$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.';
/* TODO */$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Note you can change your configuration by yourself and restart Piwigo after that.';
/* TODO */$lang['Try to configure PHP 5'] = 'Try to configure PHP 5';
/* TODO */$lang['Sorry!'] = 'Sorry!';
/* TODO */$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo was not able to configure PHP 5.';
/* TODO */$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
/* TODO */$lang['Hope to see you back soon.'] = 'Hope to see you back soon.';
* Deze gebruikersnaam geeft u toegang tot de beheermenu zodat u afbeeldingen op uw website kan plaatsen";
$lang['Webmaster mail address'] = "Webmaster email adres";
$lang['Visitors will be able to contact site administrator with this mail'] = "Het is mogelijk dat bezoekers contact opnemen met de beheerder middels e-mail";
$lang['PHP 5 is required'] = "PHP 5 is required";
$lang['It appears your webhost is currently running PHP %s.'] = "It appears your webhost is currently running PHP %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Note you can change your configuration by yourself and restart Piwigo after that.";
$lang['Try to configure PHP 5'] = "Try to configure PHP 5";
$lang['Sorry!'] = "Sorry!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo was not able to configure PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
$lang['Hope to see you back soon.'] = "Hope to see you back soon.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,25 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
/* TODO */
$lang['Upgrade'] = 'Upgrade';
$lang['introduction message'] = 'This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).';
$lang['Upgrade from %s to %s'] = 'Upgrade from version %s to %s';
$lang['Statistics'] = 'Statistics';
$lang['total upgrade time'] = 'total upgrade time';
$lang['total SQL time'] = 'total SQL time';
$lang['SQL queries'] = 'SQL queries';
$lang['Upgrade informations'] = 'Upgrade informations';
$lang['perform a maintenance check'] = 'Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.';
$lang['deactivated plugins'] = 'As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:';
$lang['upgrade login message'] = 'Only administrator can run upgrade: please sign in below.';
$lang['You do not have access rights to run upgrade'] = 'You do not have access rights to run upgrade';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'All sub-categories of private categories become private';
$lang['user permissions and group permissions have been erased'] = 'User permissions and group permissions have been erased';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Only thumbnails prefix and webmaster mail address have been saved from previous configuration';
$lang['Upgrade'] = "Upgrade";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).";
$lang['Upgrade from version %s to %s'] = "Upgrade from version %s to %s";
$lang['Statistics'] = "Statistics";
$lang['total upgrade time'] = "total upgrade time";
$lang['total SQL time'] = "total SQL time";
$lang['SQL queries'] = "SQL queries";
$lang['Upgrade informations'] = "Upgrade informations";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Only administrator can run upgrade: please sign in below.";
$lang['You do not have access rights to run upgrade'] = "You do not have access rights to run upgrade";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:";
$lang['All sub-categories of private categories become private'] = "All sub-categories of private categories become private";
$lang['User permissions and group permissions have been erased'] = "User permissions and group permissions have been erased";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Only thumbnails prefix and webmaster mail address have been saved from previous configuration";
?>

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,351 +21,350 @@
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
//Polish translation by voyteckst (voyteckst@yahoo.com). You can edit them free and post corrections to Piwigo.
$lang_info['language_name'] = 'Polish';
$lang_info['country'] = 'Polska';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'pl';
$lang_info['zero_plural'] = true;
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (oceniane %d razy, standard deviation = %.2f)';
$lang['%d Kb'] = '%d Kb';
$lang['%d category updated'] = '%d kategoria zaktualizowana';
$lang['%d categories updated'] = '%d zaktualizowanych kategorii';
$lang['%d comment to validate'] = '%d komentarz do weryfikacji';
$lang['%d comments to validate'] = '%d komentarzy do weryfikacji';
$lang['%d new comment'] = '%d nowy komentarz';
$lang['%d new comments'] = '%d nowe komentarze';
$lang['%d comment'] = '%d komentarz';
$lang['%d comments'] = '%d komentarzy';
$lang['%d hit'] = '%d hit';
$lang['%d hits'] = '%d hits';
$lang['%d new element'] = '%d nowy element';
$lang['%d new elements'] = '%d nowych elementów';
$lang['%d new user'] = '%d nowy użytkownik';
$lang['%d new users'] = '%d nowi użytkownicy';
$lang['%d waiting element'] = '%d oczekujący element';
$lang['%d waiting elements'] = '%d oczekujących elementów';
$lang['About'] = 'O Piwigo';
$lang['All tags must match'] = 'Wszystkie tagi musza pasować';
$lang['All tags'] = 'Wszystkie tagi';
$lang['Any tag'] = 'Dowolny tag';
$lang['At least one listed rule must be satisfied.'] = 'At least one listed rule must be satisfied.';
$lang['At least one tag must match'] = 'Przynajmniej jedentag musi pasować';
$lang['Author'] = 'Autor';
$lang['Average rate'] = 'Średnia ocena';
$lang['Categories'] = 'Kategorie';
$lang['Category'] = 'Kategoria';
$lang['Close this window'] = 'Zamknij okno';
$lang['Complete RSS feed'] = 'Kompletny RSS feed (zdjęcia, komentarze)';
$lang['Confirm Password'] = 'Potwierdź hasło';
$lang['Connection settings'] = 'Ustawienia połączenia';
$lang['Connection'] = 'Logowanie';
$lang['Contact webmaster'] = 'Kontakt z webmasterem';
$lang['Create a new account'] = 'Utwórz nowe konto';
$lang['Created on'] = 'Utworzone';
$lang['Creation date'] = 'Data utworzenia';
$lang['Current password is wrong'] = 'Złe hasło';
$lang['Dimensions'] = 'Rozmiary';
$lang['Display'] = 'Wyświetlanie';
$lang['Each listed rule must be satisfied.'] = 'Each listed rule must be satisfied.';
$lang['Email address is missing'] = 'Brak adresu email';
$lang['Email address'] = 'Adres email';
$lang['Enter your personnal informations'] = 'Wprowadź informacje';
$lang['Error sending email'] = 'Błąd podczas wysyłania maila';
$lang['File name'] = 'Nazwa pliku';
$lang['File'] = 'Plik';
$lang['Filesize'] = 'Rozmiar pliku';
$lang['Filter and display'] = 'Filtrowanie i wyświetlanie';
$lang['Filter'] = 'Filtr';
$lang['Forgot your password?'] = 'Zapomniane hasło?';
$lang['Go through the gallery as a visitor'] = 'Przejdź do galerii jako gość';
$lang['Help'] = 'Pomoc';
$lang['Identification'] = 'Logowanie';
$lang['Image only RSS feed'] = 'RSS feed tylko dla zdjęć';
$lang['Keyword'] = 'Keyword';
$lang['Links'] = 'Linki';
$lang['Mail address'] = 'Adres email';
$lang['N/A'] = 'N/A';
$lang['New on %s'] = 'Nowe %s';
$lang['New password confirmation does not correspond'] = 'Potwierdzenie podczas potwierdzania nowego hasła';
$lang['New password sent by email'] = 'Nowe hasło wysłane na pocztą email';
$lang['No email address'] = 'Brak adresu email';
$lang['No user matches this email address'] = 'Brak użytkwoników odpowiadających danemu adresowi email';
$lang['Notification'] = 'Powiadamianie';
$lang['Number of items'] = 'Liczba obiektów';
$lang['Original dimensions'] = 'Original dimensions';
$lang['Password forgotten'] = 'Zapomniane hasło';
$lang['Password'] = 'Hasło';
$lang['Post date'] = 'Data umieszczenia';
$lang['Posted on'] = 'Data umieszczenia';
$lang['Profile'] = 'Profil';
$lang['Quick connect'] = 'Logowanie';
$lang['RSS feed'] = 'RSS feed';
$lang['Rate'] = 'Ocena';
$lang['Register'] = 'Zarejestruj';
$lang['Registration'] = 'Rejestracja';
$lang['Related tags'] = 'Powiązane tagi';
$lang['Reset'] = 'Resetuj';
$lang['Retrieve password'] = 'Retrieve password';
$lang['Search rules'] = 'Reguły wyszukiwania';
$lang['Search tags'] = 'Szukaj tagów';
$lang['Search'] = 'Szukaj';
$lang['See available tags'] = 'Zobacz dostępne tagi';
$lang['Send new password'] = 'Prześlij nowe hasło';
$lang['Since'] = 'Od';
$lang['Sort by'] = 'Sortuj po';
$lang['Sort order'] = 'Sortowanie po';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tagi';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.';
$lang['Unknown feed identifier'] = 'Nieznany identyfikator feed';
$lang['User comments'] = 'Komentarze użytkowników';
$lang['Username'] = 'Użytkownik';
$lang['Visits'] = 'Odwiedzin';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Tydzień %d';
$lang['about_page_title'] = 'O Piwigo';
$lang['access_forbiden'] = 'Nie masz uprawnień do oglądania tej strony';
$lang['add to caddie'] = 'Dodaj do koszyka';
$lang['add_favorites_hint'] = 'Dodaj zdjęcie do ulubionych';
$lang['admin'] = 'Administracja';
$lang['adviser_mode_enabled'] = 'Adviser mode enabled';
$lang['all'] = 'wszystkie';
$lang['ascending'] = 'rosnąco';
$lang['author(s) : %s'] = 'Autor(-rzy) : %s';
$lang['auto_expand'] = 'Rozwiń wszystkie kategorie';
$lang['became available after %s (%s)'] = 'umieszczone po %s (%s)';
$lang['became available before %s (%s)'] = 'umieszczone przed %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'umieszczone pomiędzy %s (%s) i %s (%s)';
$lang['became available on %s'] = 'umieszczone %s';
$lang['best_rated_cat'] = 'Najlepiej oceniane';
$lang['best_rated_cat_hint'] = 'wyświetl najlepiej oceniane obiekty';
$lang['caddie'] = 'koszyk';
$lang['calendar'] = 'Kalendarz';
$lang['calendar_any'] = 'Wszystkie';
$lang['calendar_hint'] = 'wyświetl każdy dzień ze zdjęciem, miesiąc po miesiącu';
$lang['calendar_picture_hint'] = 'wyświetl zdjęcia dodane w ';
$lang['calendar_view'] = 'Pokaż';
$lang['chronology_monthly_calendar'] = 'Kalendarz miesięczny';
$lang['chronology_monthly_list'] = 'Lista miesięczna';
$lang['chronology_weekly_list'] = 'Lista tygodniowa';
$lang['click_to_redirect'] = 'Kliknij jeżeli nie zostałeś przekierowany poprawnie';
$lang['comment date'] = 'data komentarza';
$lang['comment'] = 'Komentarz';
$lang['comment_added'] = 'Twój komentarz został zapisany';
$lang['comment_anti-flood'] = 'Anti-flood system : poczekaj chwilę aby wysłać nastepny komentarz';
$lang['comment_not_added'] = 'Twój komentarz nie został zarejestrowany, ponieważ nie jest zgodny z regułami walidacji';
$lang['comment_to_validate'] = 'Administrator musi zatwierdzić Twój komentarz zanim będzie on widoczny.';
$lang['comment_user_exists'] = 'Ten login jest już używany przez innego użytkownika';
$lang['comments'] = 'Komentarze';
$lang['comments_add'] = 'Dodaj komentarz';
$lang['created after %s (%s)'] = 'utworzone po %s (%s)';
$lang['created before %s (%s)'] = 'utworzone przed %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'utworzone pomiędzy %s (%s) i %s (%s)';
$lang['created on %s'] = 'utworzone %s';
$lang['customize'] = 'Dostosuj';
$lang['customize_page_title'] = 'Twoje dostosowanie ';
$lang['day'][0] = 'Niedziela';
$lang['day'][1] = 'Poniedziałek';
$lang['day'][2] = 'Wtorek';
$lang['day'][3] = 'Środa';
$lang['day'][4] = 'Czwartek';
$lang['day'][5] = 'Piątek';
$lang['day'][6] = 'Sobota';
$lang['default_sort'] = 'Domyślnie';
$lang['del_favorites_hint'] = 'Usuń zdjęcie ze swoich ulubionych';
$lang['delete'] = 'Usuń';
$lang['descending'] = 'malejąco';
$lang['download'] = 'Pobierz';
$lang['download_hint'] = 'Pobierz ten plik';
$lang['edit'] = 'edytuj';
$lang['err_date'] = 'zła data';
$lang['excluded'] = 'wykluczone';
$lang['favorite_cat'] = 'Moje ulubione';
$lang['favorite_cat_hint'] = 'pokaż moje ulubione zdjęcia';
$lang['favorites'] = 'Ulubione';
$lang['first_page'] = 'Pierwsza';
$lang['gallery_locked_message'] = 'Galeria zablokowana w celach konserwacji. Wróć później.';
$lang['generation_time'] = 'Strona wygenerowana w';
$lang['guest'] = 'gość';
$lang['hello'] = 'Witaj';
$lang['hint_admin'] = 'dostępne tylko dla administratorów';
$lang['hint_category'] = 'pokaż zdjęcia tylko dla głównej kategorii';
$lang['hint_comments'] = 'Zobacz ostatnie komentarze';
$lang['hint_customize'] = 'dostosuj wyglód galerii';
$lang['hint_search'] = 'szukaj';
$lang['home'] = 'Strona Główna';
$lang['identification'] = 'Uprawnienia';
$lang['images_available_cpl'] = 'w tej kategorii';
$lang['images_available_cat'] = 'w %d podkategori';
$lang['images_available_cats'] = 'w %d podkategoriach';
$lang['included'] = 'zawarte';
$lang['invalid_pwd'] = 'Złe hasło!';
$lang['language']='Język';
$lang['last %d days'] = 'ostatnich %d dni';
$lang['last_page'] = 'Ostatnia';
$lang['logout'] = 'Wyloguj';
$lang['mail_address'] = 'Adres email';
$lang['mandatory'] = 'obowiązkowe';
$lang['maxheight'] = 'Maxymalna wysokość zdjęć';
$lang['maxheight_error'] = 'Maxymalna wysokość musi być liczbą do 50';
$lang['maxwidth'] = 'Maxymalna szerokość zdjęć';
$lang['maxwidth_error'] = 'Maxymalna szerokość musi być liczbą do 50';
$lang['mode_created_hint'] = 'wyświetla kalendarz po dacie utworzenia';
$lang['mode_flat_hint'] = 'wyświetla wszystkie elementy we wszystkich podkategoriach';
$lang['mode_normal_hint'] = 'powrót do normalnego widoku';
$lang['mode_posted_hint'] = 'wyświetla kalendarz po dacie umieszczenia';
$lang['month'][10] = 'Październik';
$lang['month'][11] = 'Listopad';
$lang['month'][12] = 'Grudzień';
$lang['month'][1] = 'Styczeń';
$lang['month'][2] = 'Luty';
$lang['month'][3] = 'Marzec';
$lang['month'][4] = 'Kwiecień';
$lang['month'][5] = 'Maj';
$lang['month'][6] = 'Czerwiec';
$lang['month'][7] = 'Lipiec';
$lang['month'][8] = 'Sierpień';
$lang['month'][9] = 'Wrzesień';
$lang['most_visited_cat'] = 'Najczęściej odwiedzane';
$lang['most_visited_cat_hint'] = 'pokaż najczęściej odwiedzane zdjęcia';
$lang['nb_image_line_error'] = 'Liczba zdjęć w wierszu musi być większa od zera';
$lang['nb_image_per_row'] = 'Liczba zdjęć w wierszu';
$lang['nb_line_page_error'] = 'Liczba wierszy na stronie musi być większa od zera';
$lang['nb_row_per_page'] = 'Liczba wierszy na stronie';
$lang['nbm_unknown_identifier'] = 'Nieznany identyfikator';
$lang['new_password'] = 'Nowe hasło';
$lang['new_rate'] = 'Oceń to zdjęcie';
$lang['next_page'] = 'Następne';
$lang['no_category'] = 'Strona główna';
$lang['no_rate'] = 'nie oceniane';
$lang['note_filter_day'] = 'Wyświetl elementy umieszczone w ciągu ostatniego %s dnia.';
$lang['note_filter_days'] = 'Wyświetl elementy umieszczone w ciąu ostatnich %s dni.';
$lang['password updated'] = 'hasło zmienione';
$lang['periods_error'] = 'Okres czasu musi być liczbą dodatnią';
$lang['picture'] = 'zdjęcie';
$lang['picture_high'] = 'Wybierz zdjęcie aby je zobaczyć w większej rozdzielczości';
$lang['picture_show_metadata'] = 'Pokaż metadane (EXIF)';
$lang['powered_by'] = 'Powered by';
$lang['preferences'] = 'Preferencje';
$lang['previous_page'] = 'Poprzednia';
$lang['random_cat'] = 'Losowe zdjęcia';
$lang['random_cat_hint'] = 'wyświetla zbior losowych zdjęć';
$lang['recent_cats_cat'] = 'Aktualne kategorie';
$lang['recent_cats_cat_hint'] = 'wyświetla ostatnio uaktualnione kategorie';
$lang['recent_period'] = 'Najnowszy okres';
$lang['recent_pics_cat'] = 'Najnowsze zdjęcia';
$lang['recent_pics_cat_hint'] = 'wyświetla najnowsze zdjęcia';
$lang['redirect_msg'] = 'Przekierowywanie...';
$lang['reg_err_login1'] = 'Wprowadź login';
$lang['reg_err_login2'] = 'Login nie może posiadać spacji';
$lang['reg_err_login3'] = 'Login nie moż się zaczynać od znaku specjalnego';
$lang['reg_err_login5'] = 'ten login już istnieje';
$lang['reg_err_mail_address'] = 'mail musi być w postaci xxx@yyy.eee (przykład : jack@altern.org)';
$lang['reg_err_pass'] = 'wprowadź hasło jeszcze raz';
$lang['remember_me'] = 'Pamiętaj mnie';
$lang['remove this tag'] = 'usuń ten tag z listy';
$lang['representative'] = 'reprezentant';
$lang['return to homepage'] = 'powrót do strony głównej';
$lang['search_author'] = 'Szukaj Autora';
$lang['search_categories'] = 'Szukaj w Kategoriach';
$lang['search_date'] = 'Szukaj po Dacie';
$lang['search_date_from'] = 'Data od';
$lang['search_date_to'] = 'Data do';
$lang['search_date_type'] = 'Rodzaj daty';
$lang['search_keywords'] = 'Szukaj słów';
$lang['search_mode_and'] = 'Szukaj po wszystkim ';
$lang['search_mode_or'] = 'Szukaj po wszystkim';
$lang['search_one_clause_at_least'] = 'Puste zapytanie. Nie zostały wprowadzone żadne kryteria.';
$lang['search_options'] = 'Opcje wyszukiwania';
$lang['search_result'] = 'Wyniki wyszukiwania';
$lang['search_subcats_included'] = 'Szukaj w podkategoriach';
$lang['search_title'] = 'Szukaj';
$lang['searched words : %s'] = 'szukane słowa : %s';
$lang['send_mail'] = 'Kontakt';
$lang['set as category representative'] = 'ustaw jako reprezentanta kategorii';
$lang['show_nb_comments'] = 'Pokaż liczbę komentarzy';
$lang['show_nb_hits'] = 'Pokaż liczbę wyświetleń';
$lang['slideshow'] = 'pokaz zdjęć';
$lang['slideshow_stop'] = 'zatrzymaj pokaz';
$lang['special_categories'] = 'Specjalne';
$lang['sql_queries_in'] = 'Zapytania SQL w';
$lang['start_filter_hint'] = 'wyświetla tylko ostatnio umieszczone';
$lang['stop_filter_hint'] = 'powrót do wyświetlania wszystkich elementów';
$lang['the beginning'] = 'poczatek';
$lang['theme'] = 'Styl interfejsu';
$lang['thumbnails'] = 'Miniatury';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'Komentarz do Twojej strony';
$lang['today'] = 'dzisiaj';
$lang['update_rate'] = 'Aktualizuj Twoją ocenę';
$lang['update_wrong_dirname'] = 'zła nazwa pliku';
$lang['upload_advise_filesize'] = 'rozmiar zdjęcia nie może przekraczać : ';
$lang['upload_advise_filetype'] = 'zdjęcia muszą być w formacie jpg, gif lub png';
$lang['upload_advise_height'] = 'wysokość zdjęcia nie może przekraczać : ';
$lang['upload_advise_thumbnail'] = 'Opcjonalne, ale zalecane : wybierz miniaturę do powiązania z ';
$lang['upload_advise_width'] = 'szerokość zdjęcia nie może przekraczać : ';
$lang['upload_author'] = 'Autor (np. "Pierrick LE GALL")';
$lang['upload_cannot_upload'] = 'nie można wgrać zdjęcia na serwer';
$lang['upload_err_username'] = 'nazwa użytkonika musi być podana';
$lang['upload_file_exists'] = 'Nazwa zdjęcia już wykorzystana';
$lang['upload_filenotfound'] = 'Musisz wybrać format pliku dla zdjęcia';
$lang['upload_forbidden'] = 'Nie moćesz wgrywać zdjęć do tej kategorii';
$lang['upload_name'] = 'Nazwa zdjęcia';
$lang['upload_picture'] = 'Wgraj zdjęcie';
$lang['upload_successful'] = 'Zdjęcie wgrane pomyślnie. Zostanie zaakceptowane przez administratora tak szybko jak to możliwe';
$lang['upload_title'] = 'Wgraj zdjęcie';
$lang['useful when password forgotten'] = 'przydatne gdy zostanie zapomniane hasło';
$lang['qsearch'] = 'Szybkie wyszukiwanie';
$lang['Connected user: %s'] = 'Zalogowany użytkownik: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Przeglądarka: %s';
$lang['Author: %s'] = 'Autor: %s';
$lang['Comment: %s'] = 'Komentarz: %s';
$lang['Delete: %s'] = 'Usuń: %s';
$lang['Validate: %s'] = 'Akceptuj: %s';
$lang['Comment by %s'] = 'Komentarz wystawiony przez %s';
$lang['User: %s'] = 'Użytkownik: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Admin: %s';
$lang['Registration of %s'] = 'Rejestracja %s';
$lang['Category: %s'] = 'Kategoria: %s';
$lang['Picture name: %s'] = 'Nazwa zdjęcia: %s';
$lang['Creation date: %s'] = 'Data utworzenia: %s';
$lang['Waiting page: %s'] = 'Strona oczekująca: %s';
$lang['Picture uploaded by %s'] = 'Zdjęcie wgrane przez %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Zły status dla użytkownika "gość", używam domyślnego';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrator, webmaster i special user nie mogą uzywać tej metody';
$lang['reg_err_mail_address_dbl'] = 'użytkownik już używa tego adresu email';
$lang['Category results for'] = 'Wyniki kategorii dla';
$lang['Tag results for'] = 'Wyniki tagów dla';
$lang['from %s to %s'] = 'od %s do %s';
$lang['start_play'] = 'Odtwórz jako slideshow';
$lang['stop_play'] = 'Pause pokazu';
$lang['start_repeat'] = 'Powtarzaj slideshow';
$lang['stop_repeat'] = 'Nie powtarzaj slideshow';
$lang['inc_period'] = 'Zmniejsz prędkość diaporamy';
$lang['dec_period'] = 'Zwiększ prędkość diaporamy';
$lang['Submit'] = 'Wyślij';
$lang['Yes'] = 'Tak';
$lang['No'] = 'Nie';
$lang['%d element']='%d obraz';
$lang['%d elements']='%d obrazów';
$lang['%d element are also linked to current tags'] = '%d obraz jest także podpięty do aktualnych tagów';
$lang['%d elements are also linked to current tags'] = '%d obrazy są także podpięte do aktualnych tagów';
$lang['See elements linked to this tag only'] = 'Zobacz obrazy podięte tylko do tego tagu';
$lang['elements posted during the last %d days'] = 'obrazy wgrane przez ostatnich %d dni';
$lang['Choose an image'] = 'Wybierz obraz';
$lang['Piwigo Help'] = 'Piwigo Pomoc';
$lang['Rank'] = 'Ranking';
$lang['group by letters'] = 'grupuj literami';
$lang['letters'] = 'litery';
$lang['show tag cloud'] = 'pokazuj tag jako chmurkę';
$lang['cloud'] = 'chmurka';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
$lang['del_all_favorites_hint'] = 'usuń wszystkie obrazy z Twoich ulubionych';
$lang['Sent by'] = 'Przesłane przez';
$lang_info['language_name'] = "English";
$lang_info['country'] = "Great Britain";
$lang_info['direction'] = "ltr";
$lang_info['code'] = "en";
$lang_info['zero_plural'] = "1";
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = "%.2f (oceniane %d razy, standard deviation = %.2f)";
$lang['%d Kb'] = "%d Kb";
$lang['%d category updated'] = "%d kategoria zaktualizowana";
$lang['%d categories updated'] = "%d zaktualizowanych kategorii";
$lang['%d comment to validate'] = "%d komentarz do weryfikacji";
$lang['%d comments to validate'] = "%d komentarzy do weryfikacji";
$lang['%d new comment'] = "%d nowy komentarz";
$lang['%d new comments'] = "%d nowe komentarze";
$lang['%d comment'] = "%d komentarz";
$lang['%d comments'] = "%d komentarzy";
$lang['%d hit'] = "%d hit";
$lang['%d hits'] = "%d hits";
$lang['%d new image'] = "%d nowy element";
$lang['%d new images'] = "%d nowych elementów";
$lang['%d new user'] = "%d nowy użytkownik";
$lang['%d new users'] = "%d nowi użytkownicy";
$lang['%d waiting element'] = "%d oczekujący element";
$lang['%d waiting elements'] = "%d oczekujących elementów";
$lang['About'] = "O Piwigo";
$lang['All tags must match'] = "Wszystkie tagi musza pasować";
$lang['All tags'] = "Wszystkie tagi";
$lang['Any tag'] = "Dowolny tag";
$lang['At least one listed rule must be satisfied.'] = "At least one listed rule must be satisfied.";
$lang['At least one tag must match'] = "Przynajmniej jedentag musi pasować";
$lang['Author'] = "Autor";
$lang['Average rate'] = "Średnia ocena";
$lang['Categories'] = "Kategorie";
$lang['Category'] = "Kategoria";
$lang['Close this window'] = "Zamknij okno";
$lang['Complete RSS feed (images, comments)'] = "Kompletny RSS feed (zdjęcia, komentarze)";
$lang['Confirm Password'] = "Potwierdź hasło";
$lang['Connection settings'] = "Ustawienia połączenia";
$lang['Login'] = "Logowanie";
$lang['Contact webmaster'] = "Kontakt z webmasterem";
$lang['Create a new account'] = "Utwórz nowe konto";
$lang['Created on'] = "Utworzone";
$lang['Creation date'] = "Data utworzenia";
$lang['Current password is wrong'] = "Złe hasło";
$lang['Dimensions'] = "Rozmiary";
$lang['Display'] = "Wyświetlanie";
$lang['Each listed rule must be satisfied.'] = "Each listed rule must be satisfied.";
$lang['Email address is missing'] = "Brak adresu email";
$lang['Email address'] = "Adres email";
$lang['Enter your personnal informations'] = "Wprowadź informacje";
$lang['Error sending email'] = "Błąd podczas wysyłania maila";
$lang['File name'] = "Nazwa pliku";
$lang['File'] = "Plik";
$lang['Filesize'] = "Rozmiar pliku";
$lang['Filter and display'] = "Filtrowanie i wyświetlanie";
$lang['Filter'] = "Filtr";
$lang['Forgot your password?'] = "Zapomniane hasło?";
$lang['Go through the gallery as a visitor'] = "Przejdź do galerii jako gość";
$lang['Help'] = "Pomoc";
$lang['Identification'] = "Logowanie";
$lang['Image only RSS feed'] = "RSS feed tylko dla zdjęć";
$lang['Keyword'] = "Keyword";
$lang['Links'] = "Linki";
$lang['Mail address'] = "Adres email";
$lang['N/A'] = "N/A";
$lang['New on %s'] = "Nowe %s";
$lang['New password confirmation does not correspond'] = "Potwierdzenie podczas potwierdzania nowego hasła";
$lang['New password sent by email'] = "Nowe hasło wysłane na pocztą email";
$lang['No email address'] = "Brak adresu email";
$lang['No classic user matches this email address'] = "Brak użytkwoników odpowiadających danemu adresowi email";
$lang['Notification'] = "Powiadamianie";
$lang['Number of items'] = "Liczba obiektów";
$lang['Original dimensions'] = "Original dimensions";
$lang['Password forgotten'] = "Zapomniane hasło";
$lang['Password'] = "Hasło";
$lang['Post date'] = "Data umieszczenia";
$lang['Posted on'] = "Data umieszczenia";
$lang['Profile'] = "Profil";
$lang['Quick connect'] = "Logowanie";
$lang['RSS feed'] = "RSS feed";
$lang['Rate'] = "Ocena";
$lang['Register'] = "Zarejestruj";
$lang['Registration'] = "Rejestracja";
$lang['Related tags'] = "Powiązane tagi";
$lang['Reset'] = "Resetuj";
$lang['Retrieve password'] = "Retrieve password";
$lang['Search rules'] = "Reguły wyszukiwania";
$lang['Search tags'] = "Szukaj tagów";
$lang['Search'] = "Szukaj";
$lang['See available tags'] = "Zobacz dostępne tagi";
$lang['Send new password'] = "Prześlij nowe hasło";
$lang['Since'] = "Od";
$lang['Sort by'] = "Sortuj po";
$lang['Sort order'] = "Sortowanie po";
$lang['Tag'] = "Tag";
$lang['Tags'] = "Tagi";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = "The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.";
$lang['Unknown feed identifier'] = "Nieznany identyfikator feed";
$lang['User comments'] = "Komentarze użytkowników";
$lang['Username'] = "Użytkownik";
$lang['Visits'] = "Odwiedzin";
$lang['Webmaster'] = "Webmaster";
$lang['Week %d'] = "Tydzień %d";
$lang['About Piwigo'] = "O Piwigo";
$lang['You are not authorized to access the requested page'] = "Nie masz uprawnień do oglądania tej strony";
$lang['add to caddie'] = "Dodaj do koszyka";
$lang['add this image to your favorites'] = "Dodaj zdjęcie do ulubionych";
$lang['Administration'] = "Administracja";
$lang['Adviser mode enabled'] = "Adviser mode enabled";
$lang['all'] = "wszystkie";
$lang['ascending'] = "rosnąco";
$lang['author(s) : %s'] = "Autor(-rzy) : %s";
$lang['Expand all categories'] = "Rozwiń wszystkie kategorie";
$lang['posted after %s (%s)'] = "umieszczone po %s (%s)";
$lang['posted before %s (%s)'] = "umieszczone przed %s (%s)";
$lang['posted between %s (%s) and %s (%s)'] = "umieszczone pomiędzy %s (%s) i %s (%s)";
$lang['posted on %s'] = "umieszczone %s";
$lang['Best rated'] = "Najlepiej oceniane";
$lang['display best rated items'] = "wyświetl najlepiej oceniane obiekty";
$lang['caddie'] = "koszyk";
$lang['Calendar'] = "Kalendarz";
$lang['All'] = "Wszystkie";
$lang['display each day with pictures, month per month'] = "wyświetl każdy dzień ze zdjęciem, miesiąc po miesiącu";
$lang['display pictures added on'] = "wyświetl zdjęcia dodane w";
$lang['View'] = "Pokaż";
$lang['chronology_monthly_calendar'] = "Kalendarz miesięczny";
$lang['chronology_monthly_list'] = "Lista miesięczna";
$lang['chronology_weekly_list'] = "Lista tygodniowa";
$lang['Click here if your browser does not automatically forward you'] = "Kliknij jeżeli nie zostałeś przekierowany poprawnie";
$lang['comment date'] = "data komentarza";
$lang['Comment'] = "Komentarz";
$lang['Your comment has been registered'] = "Twój komentarz został zapisany";
$lang['Anti-flood system : please wait for a moment before trying to post another comment'] = "Anti-flood system : poczekaj chwilę aby wysłać nastepny komentarz";
$lang['Your comment has NOT been registered because it did not pass the validation rules'] = "Twój komentarz nie został zarejestrowany, ponieważ nie jest zgodny z regułami walidacji";
$lang['An administrator must authorize your comment before it is visible.'] = "Administrator musi zatwierdzić Twój komentarz zanim będzie on widoczny.";
$lang['This login is already used by another user'] = "Ten login jest już używany przez innego użytkownika";
$lang['Comments'] = "Komentarze";
$lang['Add a comment'] = "Dodaj komentarz";
$lang['created after %s (%s)'] = "utworzone po %s (%s)";
$lang['created before %s (%s)'] = "utworzone przed %s (%s)";
$lang['created between %s (%s) and %s (%s)'] = "utworzone pomiędzy %s (%s) i %s (%s)";
$lang['created on %s'] = "utworzone %s";
$lang['Customize'] = "Dostosuj";
$lang['Your Gallery Customization'] = "Twoje dostosowanie";
$lang['day'][0] = "Niedziela";
$lang['day'][1] = "Poniedziałek";
$lang['day'][2] = "Wtorek";
$lang['day'][3] = "Środa";
$lang['day'][4] = "Czwartek";
$lang['day'][5] = "Piątek";
$lang['day'][6] = "Sobota";
$lang['Default'] = "Domyślnie";
$lang['delete this image from your favorites'] = "Usuń zdjęcie ze swoich ulubionych";
$lang['Delete'] = "Usuń";
$lang['descending'] = "malejąco";
$lang['download'] = "Pobierz";
$lang['download this file'] = "Pobierz ten plik";
$lang['edit'] = "edytuj";
$lang['wrong date'] = "zła data";
$lang['excluded'] = "wykluczone";
$lang['My favorites'] = "Moje ulubione";
$lang['display my favorites pictures'] = "pokaż moje ulubione zdjęcia";
$lang['Favorites'] = "Ulubione";
$lang['First'] = "Pierwsza";
$lang['The gallery is locked for maintenance. Please, come back later.'] = "Galeria zablokowana w celach konserwacji. Wróć później.";
$lang['Page generated in'] = "Strona wygenerowana w";
$lang['guest'] = "gość";
$lang['Hello'] = "Witaj";
$lang['available for administrators only'] = "dostępne tylko dla administratorów";
$lang['shows images at the root of this category'] = "pokaż zdjęcia tylko dla głównej kategorii";
$lang['See last users comments'] = "Zobacz ostatnie komentarze";
$lang['customize the appareance of the gallery'] = "dostosuj wyglód galerii";
$lang['search'] = "szukaj";
$lang['Home'] = "Strona Główna";
$lang['Identification'] = "Uprawnienia";
$lang['in this category'] = "w tej kategorii";
$lang['in %d sub-category'] = "w %d podkategori";
$lang['in %d sub-categories'] = "w %d podkategoriach";
$lang['included'] = "zawarte";
$lang['Invalid password!'] = "Złe hasło!";
$lang['Language'] = "Język";
$lang['last %d days'] = "ostatnich %d dni";
$lang['Last'] = "Ostatnia";
$lang['Logout'] = "Wyloguj";
$lang['E-mail address'] = "Adres email";
$lang['obligatory'] = "obowiązkowe";
$lang['Maximum height of the pictures'] = "Maxymalna wysokość zdjęć";
$lang['Maximum height must be a number superior to 50'] = "Maxymalna wysokość musi być liczbą do 50";
$lang['Maximum width of the pictures'] = "Maxymalna szerokość zdjęć";
$lang['Maximum width must be a number superior to 50'] = "Maxymalna szerokość musi być liczbą do 50";
$lang['display a calendar by creation date'] = "wyświetla kalendarz po dacie utworzenia";
$lang['display all elements in all sub-categories'] = "wyświetla wszystkie elementy we wszystkich podkategoriach";
$lang['return to normal view mode'] = "powrót do normalnego widoku";
$lang['display a calendar by posted date'] = "wyświetla kalendarz po dacie umieszczenia";
$lang['month'][10] = "Październik";
$lang['month'][11] = "Listopad";
$lang['month'][12] = "Grudzień";
$lang['month'][1] = "Styczeń";
$lang['month'][2] = "Luty";
$lang['month'][3] = "Marzec";
$lang['month'][4] = "Kwiecień";
$lang['month'][5] = "Maj";
$lang['month'][6] = "Czerwiec";
$lang['month'][7] = "Lipiec";
$lang['month'][8] = "Sierpień";
$lang['month'][9] = "Wrzesień";
$lang['Most visited'] = "Najczęściej odwiedzane";
$lang['display most visited pictures'] = "pokaż najczęściej odwiedzane zdjęcia";
$lang['The number of images per row must be a not null scalar'] = "Liczba zdjęć w wierszu musi być większa od zera";
$lang['Number of images per row'] = "Liczba zdjęć w wierszu";
$lang['The number of rows per page must be a not null scalar'] = "Liczba wierszy na stronie musi być większa od zera";
$lang['Number of rows per page'] = "Liczba wierszy na stronie";
$lang['Unknown identifier'] = "Nieznany identyfikator";
$lang['New password'] = "Nowe hasło";
$lang['Rate this picture'] = "Oceń to zdjęcie";
$lang['Next'] = "Następne";
$lang['Home'] = "Strona główna";
$lang['no rate'] = "nie oceniane";
$lang['Elements posted within the last %d day.'] = "Wyświetl elementy umieszczone w ciągu ostatniego %s dnia.";
$lang['Elements posted within the last %d days.'] = "Wyświetl elementy umieszczone w ciąu ostatnich %s dni.";
$lang['password updated'] = "hasło zmienione";
$lang['Recent period must be a positive integer value'] = "Okres czasu musi być liczbą dodatnią";
$lang['picture'] = "zdjęcie";
$lang['Click on the picture to see it in high definition'] = "Wybierz zdjęcie aby je zobaczyć w większej rozdzielczości";
$lang['Show file metadata'] = "Pokaż metadane (EXIF)";
$lang['Powered by'] = "Powered by";
$lang['Preferences'] = "Preferencje";
$lang['Previous'] = "Poprzednia";
$lang['Random pictures'] = "Losowe zdjęcia";
$lang['display a set of random pictures'] = "wyświetla zbior losowych zdjęć";
$lang['Recent categories'] = "Aktualne kategorie";
$lang['display recently updated categories'] = "wyświetla ostatnio uaktualnione kategorie";
$lang['Recent period'] = "Najnowszy okres";
$lang['Recent pictures'] = "Najnowsze zdjęcia";
$lang['display most recent pictures'] = "wyświetla najnowsze zdjęcia";
$lang['Redirection...'] = "Przekierowywanie...";
$lang['Please, enter a login'] = "Wprowadź login";
$lang['login mustn\'t end with a space character'] = "Login nie może posiadać spacji";
$lang['login mustn\'t start with a space character'] = "Login nie moż się zaczynać od znaku specjalnego";
$lang['this login is already used'] = "ten login już istnieje";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "mail musi być w postaci xxx@yyy.eee (przykład : jack@altern.org)";
$lang['please enter your password again'] = "wprowadź hasło jeszcze raz";
$lang['Auto login'] = "Pamiętaj mnie";
$lang['remove this tag from the list'] = "usuń ten tag z listy";
$lang['representative'] = "reprezentant";
$lang['return to homepage'] = "powrót do strony głównej";
$lang['Search for Author'] = "Szukaj Autora";
$lang['Search in Categories'] = "Szukaj w Kategoriach";
$lang['Search by Date'] = "Szukaj po Dacie";
$lang['Date'] = "Data od";
$lang['End-Date'] = "Data do";
$lang['Kind of date'] = "Rodzaj daty";
$lang['Search for words'] = "Szukaj słów";
$lang['Search for all terms'] = "Szukaj po wszystkim";
$lang['Search for any terms'] = "Szukaj po wszystkim";
$lang['Empty query. No criteria has been entered.'] = "Puste zapytanie. Nie zostały wprowadzone żadne kryteria.";
$lang['Search Options'] = "Opcje wyszukiwania";
$lang['Search results'] = "Wyniki wyszukiwania";
$lang['Search in subcategories'] = "Szukaj w podkategoriach";
$lang['Search'] = "Szukaj";
$lang['searched words : %s'] = "szukane słowa : %s";
$lang['Contact'] = "Kontakt";
$lang['set as category representative'] = "ustaw jako reprezentanta kategorii";
$lang['Show number of comments'] = "Pokaż liczbę komentarzy";
$lang['Show number of hits'] = "Pokaż liczbę wyświetleń";
$lang['slideshow'] = "pokaz zdjęć";
$lang['stop the slideshow'] = "zatrzymaj pokaz";
$lang['Specials'] = "Specjalne";
$lang['SQL queries in'] = "Zapytania SQL w";
$lang['display only recently posted images'] = "wyświetla tylko ostatnio umieszczone";
$lang['return to the display of all images'] = "powrót do wyświetlania wszystkich elementów";
$lang['the beginning'] = "poczatek";
$lang['Interface theme'] = "Styl interfejsu";
$lang['Thumbnails'] = "Miniatury";
$lang['Menu'] = "Menu";
$lang['A comment on your site'] = "Komentarz do Twojej strony";
$lang['today'] = "dzisiaj";
$lang['Update your rating'] = "Aktualizuj Twoją ocenę";
$lang['wrong filename'] = "zła nazwa pliku";
$lang['the filesize of the picture must not exceed :'] = "rozmiar zdjęcia nie może przekraczać :";
$lang['the picture must be to the fileformat jpg, gif or png'] = "zdjęcia muszą być w formacie jpg, gif lub png";
$lang['the height of the picture must not exceed :'] = "wysokość zdjęcia nie może przekraczać :";
$lang['Optional, but recommended : choose a thumbnail to associate to'] = "Opcjonalne, ale zalecane : wybierz miniaturę do powiązania z";
$lang['the width of the picture must not exceed :'] = "szerokość zdjęcia nie może przekraczać :";
$lang['Author'] = "Autor (np. \"Pierrick LE GALL\")";
$lang['can\'t upload the picture on the server'] = "nie można wgrać zdjęcia na serwer";
$lang['the username must be given'] = "nazwa użytkonika musi być podana";
$lang['A picture\'s name already used'] = "Nazwa zdjęcia już wykorzystana";
$lang['You must choose a picture fileformat for the image'] = "Musisz wybrać format pliku dla zdjęcia";
$lang['You can\'t upload pictures in this category'] = "Nie moćesz wgrywać zdjęć do tej kategorii";
$lang['Name of the picture'] = "Nazwa zdjęcia";
$lang['Upload a picture'] = "Wgraj zdjęcie";
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = "Zdjęcie wgrane pomyślnie. Zostanie zaakceptowane przez administratora tak szybko jak to możliwe";
$lang['Upload a picture'] = "Wgraj zdjęcie";
$lang['useful when password forgotten'] = "przydatne gdy zostanie zapomniane hasło";
$lang['Quick search'] = "Szybkie wyszukiwanie";
$lang['Connected user: %s'] = "Zalogowany użytkownik: %s";
$lang['IP: %s'] = "IP: %s";
$lang['Browser: %s'] = "Przeglądarka: %s";
$lang['Author: %s'] = "Autor: %s";
$lang['Comment: %s'] = "Komentarz: %s";
$lang['Delete: %s'] = "Usuń: %s";
$lang['Validate: %s'] = "Akceptuj: %s";
$lang['Comment by %s'] = "Komentarz wystawiony przez %s";
$lang['User: %s'] = "Użytkownik: %s";
$lang['Email: %s'] = "Email: %s";
$lang['Admin: %s'] = "Admin: %s";
$lang['Registration of %s'] = "Rejestracja %s";
$lang['Category: %s'] = "Kategoria: %s";
$lang['Picture name: %s'] = "Nazwa zdjęcia: %s";
$lang['Creation date: %s'] = "Data utworzenia: %s";
$lang['Waiting page: %s'] = "Strona oczekująca: %s";
$lang['Picture uploaded by %s'] = "Zdjęcie wgrane przez %s";
$lang['Bad status for user "guest", using default status. Please notify the webmaster.'] = "Zły status dla użytkownika \"gość\", używam domyślnego";
$lang['Administrator, webmaster and special user cannot use this method'] = "Administrator, webmaster i special user nie mogą uzywać tej metody";
$lang['a user use already this mail address'] = "użytkownik już używa tego adresu email";
$lang['Category results for'] = "Wyniki kategorii dla";
$lang['Tag results for'] = "Wyniki tagów dla";
$lang['from %s to %s'] = "od %s do %s";
$lang['Play of slideshow'] = "Odtwórz jako slideshow";
$lang['Pause of slideshow'] = "Pause pokazu";
$lang['Repeat the slideshow'] = "Powtarzaj slideshow";
$lang['Not repeat the slideshow'] = "Nie powtarzaj slideshow";
$lang['Reduce diaporama speed'] = "Zmniejsz prędkość diaporamy";
$lang['Accelerate diaporama speed'] = "Zwiększ prędkość diaporamy";
$lang['Submit'] = "Wyślij";
$lang['Yes'] = "Tak";
$lang['No'] = "Nie";
$lang['%d image'] = "%d obraz";
$lang['%d images'] = "%d obrazów";
$lang['%d image is also linked to current tags'] = "%d obraz jest także podpięty do aktualnych tagów";
$lang['%d images are also linked to current tags'] = "%d obrazy są także podpięte do aktualnych tagów";
$lang['See images linked to this tag only'] = "Zobacz obrazy podięte tylko do tego tagu";
$lang['images posted during the last %d days'] = "obrazy wgrane przez ostatnich %d dni";
$lang['Choose an image'] = "Wybierz obraz";
$lang['Piwigo Help'] = "Piwigo Pomoc";
$lang['Rank'] = "Ranking";
$lang['group by letters'] = "grupuj literami";
$lang['letters'] = "litery";
$lang['show tag cloud'] = "pokazuj tag jako chmurkę";
$lang['cloud'] = "chmurka";
$lang['Reset to default values'] = "";
$lang['delete all images from your favorites'] = "usuń wszystkie obrazy z Twoich ulubionych";
$lang['Sent by'] = "Przesłane przez";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,58 +21,58 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Instalacja';
$lang['Initial_config'] = 'Podstawowa konfiguracja';
$lang['Default_lang'] = 'Domyślny język galerii';
$lang['step1_title'] = 'Konfiguracja bazy danych';
$lang['step2_title'] = 'Konfiguracja administratora';
$lang['Start_Install'] = 'Rozpoczęcie instalacji';
$lang['reg_err_mail_address'] = 'adres email musi być w postaci xxx@yyy.eee (np : jack@altern.org)';
$lang['install_webmaster'] = 'Logowanie Webmastera';
$lang['install_webmaster_info'] = 'To będize wyświetlone dla odwiedzających i jest konieczne do celów administracyjnych ';
$lang['step1_confirmation'] = 'Parametry są poprawne';
$lang['step1_err_db'] = 'Połączenie do serwera powiodło się, ale nie było możliwe połączenie do bazy danych';
$lang['step1_err_server'] = 'Nie można połączyć sie do serwera';
$lang['step1_err_copy_2'] = 'Teraz mozliwy jest następny krok instalacji';
$lang['step1_err_copy_next'] = 'następny krok';
$lang['step1_err_copy'] = 'Skopiuj tekst zaznaczony na różowo pomiędzy cudzysłowiami i wklej do pliku "include/config_database.inc.php"(Uwaga : config_database.inc.php musi zawierać tylko to co jest na różowo bez żadnych znaków końca linii czy spacji)';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'Uzytkownik';
$lang['step1_user_info'] = 'login użytkownika dostarczona przez provider\'a';
$lang['step1_pass'] = 'Hasło';
$lang['step1_pass_info'] = 'hasło użytkownika dostarczona przez provider\'a';
$lang['step1_database'] = 'NAzwa bazy danych';
$lang['step1_database_info'] = 'także dostarczona przez provider\'a';
$lang['step1_prefix'] = 'Prefix tabel bazy danych';
$lang['step1_prefix_info'] = 'tabele w bazie dnaych będą miały taki prefix (ułatwia to zarządzanie tabelami)';
$lang['step2_err_login1'] = 'wprowadź nazwę użytkownika posiadającego uprawnienia Webmaster';
$lang['step2_err_login3'] = 'login nie może zawierać nastepujących znaków \' lub "';
$lang['step2_err_pass'] = 'wprowadź hasło jeszcze raz';
$lang['install_end_title'] = 'Instalacja zakończona';
$lang['step2_pwd'] = 'Hasło użytkownika Webmaster';
$lang['step2_pwd_info'] = 'Zachowaj hasło, umożliwia ono dostep do panelu administracyjnego';
$lang['step2_pwd_conf'] = 'Hasło [potwierdź]';
$lang['step2_pwd_conf_info'] = 'weryfikacja';
$lang['install_help'] = 'Potrzebujesz pomocy ? Zadaj pytanie na <a href="%s">Forum Piwigo</a>.';
$lang['install_end_message'] = 'Konfiguracja Piwigo została zakończona, następny krok to<br><br>
* przejdź do strony logowania : [ <a href="identification.php">logowanie</a> ] i wprowadź użytkownika/hasło będącego webmaster\'em<br>
* logowanie to umożliwi Ci dostęp do panelu administracyjnego oraz instrukcji jak umieszczaćzdjęcia w katalogach';
$lang['conf_mail_webmaster'] = 'Adres email Webmaster\'a';
$lang['conf_mail_webmaster_info'] = 'Z jego pomocą odwiedzający będą mogli się skontaktować z administratorem strony';
$lang['PHP 5 is required'] = 'PHP 5 jest wymagane';
$lang['It appears your webhost is currently running PHP %s.'] = 'Twój serwer aktualnie używa PHP w wersji %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo może spróbować przełączyć Twoją konfigurację do PHP 5 poprzez modyfikację pliku .htaccess.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Możesz również zmienić tę konfigurację sam, a następnie uruchomić ponownie Piwigo.';
$lang['Try to configure PHP 5'] = 'Spróbuj skonfigurować PHP 5';
$lang['Sorry!'] = 'Niestety!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo nie mógł skonfigurować Twojego PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "Możesz skontaktować się z działem wsparcia Twojego providera aby dowiedzieć się jak włączyć PHP 5.";
$lang['Hope to see you back soon.'] = 'Do zobaczenia wkrótce.';
$lang['Installation'] = "Instalacja";
$lang['Basic configuration'] = "Podstawowa konfiguracja";
$lang['Default gallery language'] = "Domyślny język galerii";
$lang['Database configuration'] = "Konfiguracja bazy danych";
$lang['Admin configuration'] = "Konfiguracja administratora";
$lang['Start Install'] = "Rozpoczęcie instalacji";
$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = "adres email musi być w postaci xxx@yyy.eee (np : jack@altern.org)";
$lang['Webmaster login'] = "Logowanie Webmastera";
$lang['It will be shown to the visitors. It is necessary for website administration'] = "To będize wyświetlone dla odwiedzających i jest konieczne do celów administracyjnych";
$lang['Parameters are correct'] = "Parametry są poprawne";
$lang['Connection to server succeed, but it was impossible to connect to database'] = "Połączenie do serwera powiodło się, ale nie było możliwe połączenie do bazy danych";
$lang['Can\'t connect to server'] = "Nie można połączyć sie do serwera";
$lang['The next step of the installation is now possible'] = "Teraz mozliwy jest następny krok instalacji";
$lang['next step'] = "następny krok";
$lang['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)'] = "Skopiuj tekst zaznaczony na różowo pomiędzy cudzysłowiami i wklej do pliku \"include/config_database.inc.php\"(Uwaga : config_database.inc.php musi zawierać tylko to co jest na różowo bez żadnych znaków końca linii czy spacji)";
$lang['Database type'] = "Database type";
$lang['The type of database your piwigo data will be store in'] = "The type of database your piwigo data will be store in";
$lang['Host'] = "Host";
$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = "localhost, sql.multimania.com, toto.freesurf.fr";
$lang['User'] = "Uzytkownik";
$lang['user login given by your host provider'] = "login użytkownika dostarczona przez provider'a";
$lang['Password'] = "Hasło";
$lang['user password given by your host provider'] = "hasło użytkownika dostarczona przez provider'a";
$lang['Database name'] = "NAzwa bazy danych";
$lang['also given by your host provider'] = "także dostarczona przez provider'a";
$lang['Database table prefix'] = "Prefix tabel bazy danych";
$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = "tabele w bazie dnaych będą miały taki prefix (ułatwia to zarządzanie tabelami)";
$lang['enter a login for webmaster'] = "wprowadź nazwę użytkownika posiadającego uprawnienia Webmaster";
$lang['webmaster login can\'t contain characters \' or "'] = "login nie może zawierać nastepujących znaków ' lub \"";
$lang['please enter your password again'] = "wprowadź hasło jeszcze raz";
$lang['Installation finished'] = "Instalacja zakończona";
$lang['Webmaster password'] = "Hasło użytkownika Webmaster";
$lang['Keep it confidential, it enables you to access administration panel'] = "Zachowaj hasło, umożliwia ono dostep do panelu administracyjnego";
$lang['Password [confirm]'] = "Hasło [potwierdź]";
$lang['verification'] = "weryfikacja";
$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = "Potrzebujesz pomocy ? Zadaj pytanie na <a href=\"%s\">Forum Piwigo</a>.";
$lang['The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories'] = "Konfiguracja Piwigo została zakończona, następny krok to<br><br>
* przejdź do strony logowania : [ <a href=\"identification.php\">logowanie</a> ] i wprowadź użytkownika/hasło będącego webmaster'em<br>
* logowanie to umożliwi Ci dostęp do panelu administracyjnego oraz instrukcji jak umieszczaćzdjęcia w katalogach";
$lang['Webmaster mail address'] = "Adres email Webmaster'a";
$lang['Visitors will be able to contact site administrator with this mail'] = "Z jego pomocą odwiedzający będą mogli się skontaktować z administratorem strony";
$lang['PHP 5 is required'] = "PHP 5 jest wymagane";
$lang['It appears your webhost is currently running PHP %s.'] = "Twój serwer aktualnie używa PHP w wersji %s.";
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = "Piwigo może spróbować przełączyć Twoją konfigurację do PHP 5 poprzez modyfikację pliku .htaccess.";
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = "Możesz również zmienić tę konfigurację sam, a następnie uruchomić ponownie Piwigo.";
$lang['Try to configure PHP 5'] = "Spróbuj skonfigurować PHP 5";
$lang['Sorry!'] = "Niestety!";
$lang['Piwigo was not able to configure PHP 5.'] = "Piwigo nie mógł skonfigurować Twojego PHP 5.";
$lang['You may referer to your hosting provider\'s support and see how you could switch to PHP 5 by yourself.'] = "Możesz skontaktować się z działem wsparcia Twojego providera aby dowiedzieć się jak włączyć PHP 5.";
$lang['Hope to see you back soon.'] = "Do zobaczenia wkrótce.";
?>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008 Piwigo Team http://piwigo.org |
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
@ -21,24 +21,24 @@
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Upgrade';
$lang['introduction message'] = 'Strona służy do wykonania aktualizacji bazy danych Piwigo do aktualnej wersji.
Asystent aktualizacji odgadł, że aktualnie używasz <strong>wersji %s</strong> (lub podobnej).';
$lang['Upgrade from %s to %s'] = 'Aktualizacja z wersji %s do %s';
$lang['Statistics'] = 'Statystyki';
$lang['total upgrade time'] = 'sumaryczny czas aktualizacji';
$lang['total SQL time'] = 'symaryczny czas SQL';
$lang['SQL queries'] = 'zapytań SQL';
$lang['Upgrade informations'] = 'Informacje o aktualizacji';
$lang['perform a maintenance check'] = 'Jeżeli napotkasz jakiś problem wykonaj weryfikację przez [Administracja>Specjalne>Maintenance].';
$lang['deactivated plugins'] = 'W ramach zabezpieczenia zostąły deaktywowane następujące wtyczki. Przed ich ponowną aktywacją musisz sprawdzić dostępność aktualizacji dla nich:';
$lang['upgrade login message'] = 'Tylko administrator może wykonać aktualizację: zaloguj się poniżej.';
$lang['You do not have access rights to run upgrade'] = 'Nie masz uprawnień do wykonania aktualizacji';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'W pliku <i>include/config_database.inc.php</i>, przed <b>?></b>, wstaw:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'Wszystkie podkategorie kategorii prywatnych staną się prywatne';
$lang['user permissions and group permissions have been erased'] = 'Uprawnienia użytkowników oraz grup zostały usunięte';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Z poprzedniej konfiguracji zostały zapisane tylko prefixy miniatur oraz adres email administratora.';
$lang['Upgrade'] = "Upgrade";
$lang['This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).'] = "Strona służy do wykonania aktualizacji bazy danych Piwigo do aktualnej wersji.
Asystent aktualizacji odgadł, że aktualnie używasz <strong>wersji %s</strong> (lub podobnej).";
$lang['Upgrade from version %s to %s'] = "Aktualizacja z wersji %s do %s";
$lang['Statistics'] = "Statystyki";
$lang['total upgrade time'] = "sumaryczny czas aktualizacji";
$lang['total SQL time'] = "symaryczny czas SQL";
$lang['SQL queries'] = "zapytań SQL";
$lang['Upgrade informations'] = "Informacje o aktualizacji";
$lang['Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.'] = "Jeżeli napotkasz jakiś problem wykonaj weryfikację przez [Administracja>Specjalne>Maintenance].";
$lang['As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:'] = "W ramach zabezpieczenia zostąły deaktywowane następujące wtyczki. Przed ich ponowną aktywacją musisz sprawdzić dostępność aktualizacji dla nich:";
$lang['Only administrator can run upgrade: please sign in below.'] = "Tylko administrator może wykonać aktualizację: zaloguj się poniżej.";
$lang['You do not have access rights to run upgrade'] = "Nie masz uprawnień do wykonania aktualizacji";
$lang['In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:'] = "W pliku <i>include/config_database.inc.php</i>, przed <b>?></b>, wstaw:";
$lang['All sub-categories of private categories become private'] = "Wszystkie podkategorie kategorii prywatnych staną się prywatne";
$lang['User permissions and group permissions have been erased'] = "Uprawnienia użytkowników oraz grup zostały usunięte";
$lang['Only thumbnails prefix and webmaster mail address have been saved from previous configuration'] = "Z poprzedniej konfiguracji zostały zapisane tylko prefixy miniatur oraz adres email administratora.";
?>

View file

@ -0,0 +1,670 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['%d association'] = '%d association';
$lang['%d associations'] = '%d associations';
$lang['cat_inclu_part1_S'] = '%d category including ';
$lang['cat_inclu_part1_P'] = '%d categories including ';
$lang['cat_inclu_part2_S'] = '%d physical';
$lang['cat_inclu_part2_P'] = '%d physical';
$lang['cat_inclu_part3_S'] = ' and %d virtual';
$lang['cat_inclu_part3_P'] = ' and %d virtual';
$lang['%d category moved'] = '%d category moved';
$lang['%d categories moved'] = '%d categories moved';
$lang['%d group'] = '%d group';
$lang['%d groups'] = '%d groups';
$lang['%d member'] = '%d member';
$lang['%d members'] = '%d members';
$lang['%d tag'] = '%d tag';
$lang['%d tags'] = '%d tags';
$lang['%d user comment rejected'] = '%d user comment rejected';
$lang['%d user comments rejected'] = '%d user comments rejected';
$lang['%d user comment validated'] = '%d user comment validated';
$lang['%d user comments validated'] = '%d user comments validated';
$lang['%d user deleted'] = '%d user deleted';
$lang['%d users deleted'] = '%d users deleted';
$lang['%d user'] = '%d user';
$lang['%d users'] = '%d users';
$lang['%d waiting for validation'] = '%d waiting for validation';
$lang['%d waiting pictures rejected'] = '%d waiting pictures rejected';
$lang['%d waiting pictures validated'] = '%d waiting pictures validated';
$lang['Actions'] = 'Actions';
$lang['Activate'] = 'Activate';
$lang['Add/delete a permalink'] = 'Add/delete a permalink';
$lang['Add a tag'] = 'Add a tag';
$lang['Add a user'] = 'Add a user';
$lang['Add group'] = 'Add group';
$lang['Add selected elements to caddie'] = 'Add selected elements to caddie';
$lang['Add'] = 'Add';
$lang['Allow user registration'] = 'Allow user registration';
$lang['Apply to subcategories'] = 'Apply to subcategories';
$lang['Are you sure?'] = 'Are you sure?';
$lang['Associated'] = 'Associated';
$lang['Association to categories'] = 'Association to categories';
$lang['Batch management'] = 'Batch management';
$lang['Caddie management'] = 'Caddie management';
$lang['Caddie'] = 'Caddie';
$lang['Categories authorized thanks to group associations'] = 'Categories authorized thanks to group associations';
$lang['Categories manual order was saved'] = 'Categories manual order was saved';
$lang['Categories ordered alphanumerically'] = 'Categories ascending alphanumerically ordered';
$lang['Categories ordered alphanumerically reverse'] = 'Categories descending alphanumerically ordered';
$lang['Category elements associated to the following categories: %s'] = 'Category elements associated to the following categories: %s';
$lang['Check for upgrade failed for unknown reasons.'] = 'Check for upgrade failed for unknown reasons.';
$lang['Check for upgrade'] = 'Check for upgrade';
$lang['Comments for all'] = 'Comments for all';
$lang['Controversy'] = 'Controversy';
$lang['Current name'] = 'Current name';
$lang['Database'] = 'Database';
$lang['Deactivate'] = 'Deactivate';
$lang['Delete Representant'] = 'Delete Representant';
$lang['Delete selected tags'] = 'Delete selected tags';
$lang['Delete selected users'] = 'Delete selected users';
$lang['Deletions'] = 'Deletions';
$lang['Deny selected groups'] = 'Deny selected groups';
$lang['Deny selected users'] = 'Deny selected users';
$lang['Description'] = 'Description';
$lang['Display options'] = 'Display options';
$lang['Dissociated'] = 'Dissociated';
$lang['Does not represent'] = 'Does not represent';
$lang['Edit all picture informations'] = 'Edit all picture informations';
$lang['Edit selected tags'] = 'Edit selected tags';
$lang['Edit tags'] = 'Edit tags';
$lang['Elements'] = 'Elements';
$lang['Email administrators when a new user registers'] = 'Email admins when a new user registers';
$lang['Email administrators when a valid comment is entered'] = 'Email admins when a valid comment is entered';
$lang['Email administrators when a comment requires validation'] = 'Email admins when a comment requires validation';
$lang['Email administrators when a picture is uploaded'] = 'Email admins when a picture is uploaded';
$lang['Empty caddie'] = 'Empty caddie';
$lang['Environment'] = 'Environment';
$lang['Form'] = 'Form';
$lang['Gallery URL'] = 'Gallery URL';
$lang['Gallery description'] = 'Gallery description';
$lang['Gallery title'] = 'Gallery title';
$lang['Grant selected groups'] = 'Grant selected groups';
$lang['Grant selected users'] = 'Grant selected users';
$lang['Group name'] = 'Group name';
$lang['Groups'] = 'Groups';
$lang['Guests'] = 'Guests';
$lang['History'] = 'History';
$lang['Informations'] = 'Informations';
$lang['Install'] = 'Install';
$lang['Link all category elements to a new category'] = 'Link all category elements to a new category';
$lang['Link all category elements to some existing categories'] = 'Link all category elements to some existing categories';
$lang['Linked categories'] = 'Linked categories';
$lang['Lock gallery'] = 'Lock gallery';
$lang['Maintenance'] = 'Maintenance';
$lang['Manage permissions for a category'] = 'Manage permissions for a category';
$lang['Manage permissions for group "%s"'] = 'Manage permissions for group "%s"';
$lang['Manage permissions for user "%s"'] = 'Manage permissions for user "%s"';
$lang['Manage tags'] = 'Manage tags';
$lang['Members'] = 'Members';
$lang['Metadata synchronized from file'] = 'Metadata synchronized from file';
$lang['Move categories'] = 'Move categories';
$lang['Move'] = 'Move';
$lang['Name'] = 'Name';
$lang['New name'] = 'New name';
$lang['New parent category'] = 'New parent category';
$lang['New tag'] = 'New tag';
$lang['No tag defined. Use Administration>Pictures>Tags'] = 'No tag defined. Use Administration>Pictures>Tags';
$lang['Number of comments per page'] = 'Number of comments per page';
$lang['Number of rates'] = 'Number of rates';
$lang['Number of thumbnails to create'] = 'Number of thumbnails to create';
$lang['Only private categories are listed'] = 'Only private categories are listed';
$lang['Operating system'] = 'Operating system';
$lang['Options'] = 'Options';
$lang['Order alphanumerically'] = 'Categories sorted in ascending order &dArr;';
$lang['Order alphanumerically reverse'] = 'Categories sorted in descending order &uArr;';
$lang['Other private categories'] = 'Other private categories';
$lang['Page banner'] = 'Page banner';
$lang['Parent category'] = 'Parent category';
$lang['Path'] = 'Path';
$lang['Permalink'] = 'Permalink';
$lang['Permalink_%s_histo_used_by_%s'] = 'Permalink %s has been previously used by category %s. Delete from the permalink history first';
$lang['Permalink_name_rule'] = '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 "-"';
$lang['Permalink %s is already used by category %s'] = 'Permalink %s is already used by category %s';
$lang['Permalink history'] = 'Permalink history';
$lang['Permalinks'] = 'Permalinks';
$lang['Permission denied'] = 'Permission denied';
$lang['Permission granted thanks to a group'] = 'Permission granted thanks to a group';
$lang['Permission granted'] = 'Permission granted';
$lang['Picture informations updated'] = 'Picture informations updated';
$lang['Plugins'] = 'Plugins';
$lang['Position'] = 'Position';
$lang['Preferences'] = 'Preferences';
$lang['Properties'] = 'Properties';
$lang['Random picture'] = 'Random picture';
$lang['Rate date'] = 'Rate date';
$lang['Rating by guests'] = 'Rating by guests';
$lang['Rating'] = 'Rating';
$lang['Reject All'] = 'Reject All';
$lang['Reject'] = 'Reject';
$lang['Representant'] = 'Representant';
$lang['Representation of categories'] = 'Representation of categories';
$lang['Representative'] = 'Representative';
$lang['Represents'] = 'Represents';
$lang['Save order'] = 'Save order';
$lang['Save to permalink history'] = 'Save to permalink history';
$lang['Select at least one category'] = 'Select at least one category';
$lang['Select at least one picture'] = 'Select at least one picture';
$lang['Select at least one user'] = 'Select at least one user';
$lang['Show info'] = 'Show info';
$lang['Site manager'] = 'Site manager';
$lang['Status'] = 'Status';
$lang['Statistics'] = 'Statistics';
$lang['Storage category'] = 'Storage category';
$lang['Sum of rates'] = 'Sum of rates';
$lang['Tag "%s" already exists'] = 'Tag "%s" already exists';
$lang['Tag "%s" was added'] = 'Tag "%s" was added';
$lang['Tag selection'] = 'Tag selection';
$lang['Take selected elements out of caddie'] = 'Take selected elements out of caddie';
$lang['The %d following tag were deleted'] = 'The following tag were deleted';
$lang['The %d following tags were deleted'] = 'The %d following tags were deleted';
$lang['Unable to check for upgrade.'] = 'Unable to check for upgrade.';
$lang['Uninstall'] = 'Uninstall';
$lang['Use default sort order']='Use the default image sort order (defined in the configuration file)';
$lang['User comments validation'] = 'User comments validation';
$lang['Users'] = 'Users';
$lang['Validate All'] = 'Validate All';
$lang['Validate'] = 'Validate';
$lang['Validation'] = 'Validation';
$lang['Version'] = 'Version';
$lang['Virtual categories movement'] = 'Virtual categories movement';
$lang['Virtual categories to move'] = 'Virtual categories to move';
$lang['Virtual category name'] = 'Virtual category name';
$lang['Webmaster cannot be deleted'] = 'Webmaster cannot be deleted';
$lang['You are running on development sources, no check possible.'] = 'You are running on development sources, no check possible.';
$lang['You cannot delete your account'] = "You cannot delete your account";
$lang['You cannot move a category in its own sub category'] = 'You cannot move a category in its own sub category';
$lang['You need to confirm deletion'] = 'You need to confirm deletion';
$lang['add tags'] = 'add tags';
$lang['adviser'] = 'Adviser';
$lang['associate to category'] = 'associate to category';
$lang['associate to group'] = 'associate to group';
$lang['authorized'] = 'Authorized';
$lang['cat_add'] = 'Add a virtual category';
$lang['cat_comments_title'] = 'Authorize users to add comments on selected categories';
$lang['cat_error_name'] = 'The name of a category should not be empty';
$lang['cat_lock_title'] = 'Lock categories';
$lang['cat_private'] = 'Private category';
$lang['cat_public'] = 'Public category';
$lang['cat_representant'] = 'Find a new representant by random';
$lang['cat_security'] = 'Public / Private';
$lang['cat_status_title'] = 'Manage authorizations for selected categories';
$lang['cat_upload_title'] = 'Select uploadable categories';
$lang['cat_virtual_added'] = 'Virtual category added';
$lang['cat_virtual_deleted'] = 'Virtual category deleted';
$lang['category'] = 'Category';
$lang['conf_access'] = 'Access type';
$lang['conf_comments_title'] = 'Comments';
$lang['conf_confirmation'] = 'Information data registered in database';
$lang['conf_display'] = 'Default display';
$lang['conf_history_title'] = 'History';
$lang['conf_gallery_url_error'] = 'The gallery URL is not valid.';
$lang['conf_main_title'] = 'Main';
$lang['conf_nb_comment_page_error'] = 'The number of comments a page must be between 5 and 50 included.';
$lang['config'] = 'Configuration';
$lang['confirm'] = 'confirm';
$lang['Date'] = 'Date';
$lang['delete category'] = 'delete category';
$lang['dissociate from category'] = 'dissociate from category';
$lang['dissociate from group'] = 'dissociate from group';
$lang['edit category permissions'] = 'edit category permissions';
$lang['editcat_confirm'] = 'Category informations updated successfully.';
$lang['editcat_uploadable'] = 'Authorize upload';
$lang['elements per page'] = 'elements per page';
$lang['elements'] = 'elements';
$lang['enabled_high'] = 'High definition enabled';
$lang['file'] = 'File';
$lang['filesize'] = 'Filesize';
$lang['first element added on %s'] = 'first element added on %s';
$lang['forbidden'] = 'Forbidden';
$lang['conf_general'] = 'General';
$lang['global mode'] = 'global mode';
$lang['group "%s" added'] = 'group "%s" added';
$lang['group "%s" deleted'] = 'group "%s" deleted';
$lang['group "%s" updated'] = 'group "%s" updated';
$lang['group'] = 'group';
$lang['group_add_error1'] = 'The name of a group must not contain " or \' or be empty.';
$lang['group_add_error2'] = 'This name is already used by another group.';
$lang['groups'] = 'Groups';
$lang['instructions'] = 'Instructions';
$lang['is_high_disabled'] = '';
$lang['is_high_enabled'] = 'High definition';
$lang['jump to category'] = 'jump to category';
$lang['jump to image'] = 'jump to image';
$lang['leave'] = 'leave';
$lang['lock'] = 'Lock';
$lang['locked'] = 'Locked';
$lang['manage category elements'] = 'manage category elements';
$lang['manage sub-categories'] = 'manage sub-categories';
$lang['manage'] = 'Manage';
$lang['maximum height'] = 'maximum height';
$lang['maximum width'] = 'maximum width';
$lang['nbm_background_treatment_redirect_second'] = 'Execution time is out, treatment must be continue [Estmated time: %d second].';
$lang['nbm_background_treatment_redirect_seconds'] = 'Execution time is out, treatment must be continue [Estmated time: %d seconds].';
$lang['nbm_break_timeout_list_user'] = 'Prepared time for list of users to send mail is limited. Others users are not listed.';
$lang['nbm_break_timeout_send_mail'] = 'Time to send mail is limited. Others mails are skipped.';
$lang['nbm_col_check_user_send_mail'] = 'To send ?';
$lang['nbm_col_last_send'] = 'Last send';
$lang['nbm_col_mail'] = 'email';
$lang['nbm_col_user'] = 'User';
$lang['nbm_complementary_mail_content'] = 'Complementary mail content';
$lang['nbm_content_byebye'] = 'See you soon,';
$lang['nbm_content_goto_1'] = 'Go to ';
$lang['nbm_content_goto_2'] = '.';
$lang['nbm_content_hello_1'] = 'Hello ';
$lang['nbm_content_hello_2'] = ',';
$lang['nbm_content_new_elements'] = 'New elements were added ';
$lang['nbm_content_new_elements_single'] = ' on ';
$lang['nbm_content_new_elements_between_1'] = 'between ';
$lang['nbm_content_new_elements_between_2'] = ' and ';
$lang['nbm_content_subscribe_by_admin'] = 'The webmaster has subscribed you to receiving notifications by mail.';
$lang['nbm_content_subscribe_by_himself'] = 'You have subscribed to receiving notifications by mail.';
$lang['nbm_content_subscribe_link'] = 'To subscribe';
$lang['nbm_content_problem_contact'] = 'If you encounter problems or have any question, please send a message to ';
$lang['nbm_content_pb_contact_object'] = '[NBM] Problems or questions';
$lang['nbm_content_unsubscribe_by_admin'] = 'The webmaster has unsubscribed you from receiving notifications by mail.';
$lang['nbm_content_unsubscribe_by_himself'] = 'You have unsubscribed from receiving notifications by mail.';
$lang['nbm_content_click_on'] = ', click on ';
$lang['nbm_content_unsubscribe_link'] = 'To unsubscribe';
$lang['nbm_info_send_mail_as'] = 'With blank value, gallery title will be used';
$lang['nbm_item_notification'] = 'Notification';
$lang['nbm_msg_error_sending_email_to'] = 'Error when sending email to %s [%s].';
$lang['nbm_msg_mail_sent_to'] = 'Mail sent to %s [%s].';
$lang['nbm_msg_n_mail_sent'] = '%d mail was sent.';
$lang['nbm_msg_n_mails_sent'] = '%d mails were sent.';
$lang['nbm_msg_n_mail_not_send'] = '%d mail was not sent.';
$lang['nbm_msg_n_mails_not_send'] = '%d mails were not sent.';
$lang['nbm_no_mail_to_send'] = 'No mail to send.';
$lang['nbm_no_user_available_to_send_L1'] = 'There is no available subscribers to mail.';
$lang['nbm_no_user_available_to_send_L2'] = 'Subscribers could be listed (available) only if there is new elements to notify.';
$lang['nbm_no_user_available_to_send_L3'] = 'Anyway only webmasters can see this tab and never administrators.';
$lang['nbm_no_user_to send_notifications_by_mail'] = 'No user to send notifications by mail.';
$lang['nbm_object_news'] = 'New elements added';
$lang['nbm_object_subscribe'] = 'Subscribe to notification by mail';
$lang['nbm_object_unsubscribe'] = 'Unsubscribe from notification by mail';
$lang['nbm_param_mode'] = 'Parameter';
$lang['nbm_redirect_msg'] = 'Processing treatment.'."\n\n".'Please wait...';
$lang['nbm_repost_submit'] = 'Continue processing treatment';
$lang['nbm_send_complementary_mail_content'] = 'Complementary mail content';
$lang['nbm_send_detailed_content'] = 'Add detailed content';
$lang['nbm_send_mail_as'] = 'Send mail as';
$lang['nbm_send_mail_to_users'] = 'Send mail to users';
$lang['nbm_send_mode'] = 'Send';
$lang['nbm_send_options'] = 'Options';
$lang['nbm_send_submit'] = 'Send';
$lang['nbm_subscribe_col'] = 'Subscribed';
$lang['nbm_subscribe_mode'] = 'Subscribe';
$lang['nbm_title_param'] = 'Parameters';
$lang['nbm_title_send'] = 'Select recipients';
$lang['nbm_title_subscribe'] = 'Subscribe/unsubscribe users';
$lang['nbm_unsubscribe_col'] = 'Unsubscribed';
$lang['nbm_updated_param_count'] = '%d parameter was updated.';
$lang['nbm_updated_params_count'] = '%d parameters were updated.';
$lang['nbm_user_change_enabled_error_on_updated_data_count'] = '%d user was not updated.';
$lang['nbm_users_change_enabled_error_on_updated_data_count'] = '%d users were not updated.';
$lang['nbm_user_change_enabled_false'] = 'User %s [%s] was removed from the subscription list.';
$lang['nbm_user_change_enabled_true'] = 'User %s [%s] was added to the subscription list.';
$lang['nbm_user_change_enabled_updated_data_count'] = '%d user was updated.';
$lang['nbm_users_change_enabled_updated_data_count'] = '%d users were updated.';
$lang['nbm_user_not_change_enabled_false'] = 'User %s [%s] was not removed from the subscription list.';
$lang['nbm_user_not_change_enabled_true'] = 'User %s [%s] was not added to the subscription list.';
$lang['nbm_user_x_added'] = 'User %s [%s] added.';
$lang['nbm_warning_subscribe_unsubscribe'] = 'Warning: subscribing or unsubscribing will send mails to users';
$lang['nbm_send_html_mail'] = 'Send mail on HTML format';
$lang['nbm_send_recent_post_dates'] = 'Include display of recent pictures group by dates';
$lang['nbm_info_send_recent_post_dates'] = 'Available only with HTML format';
$lang['no_write_access'] = 'no write access';
$lang['path'] = 'path';
$lang['permissions'] = 'Permissions';
$lang['private'] = 'private';
$lang['properties'] = 'Properties';
$lang['public'] = 'public';
$lang['purge never used notification feeds'] = 'Purge never used notification feeds';
$lang['purge sessions'] = 'Purge sessions';
$lang['randomly represented'] = 'randomly represented';
$lang['registration_date'] = 'registration date';
$lang['remote_site'] = 'Remote site';
$lang['remote_site_clean'] = 'clean';
$lang['remote_site_clean_hint'] = 'remove remote listing.xml file';
$lang['remote_site_generate'] = 'generate listing';
$lang['remote_site_generate_hint'] = 'generate file listing.xml on remote site';
$lang['remote_site_local_create'] = 'Create this site';
$lang['remote_site_local_found'] = 'A local listing.xml file has been found for ';
$lang['remote_site_local_update'] = 'read local listing.xml and update';
$lang['remote_site_test'] = 'test';
$lang['remote_site_test_hint'] = 'test this remote site';
$lang['remote_site_uncorrect_url'] = 'Remote site url must start by http or https and must only contain characters among "/", "a-zA-Z0-9", "-" or "_"';
$lang['remove tags'] = 'remove tags';
$lang['repair and optimize database'] = 'Repair and optimize database';
$lang['selection'] = 'selection';
$lang['set to'] = 'set to';
$lang['singly represented'] = 'singly represented';
$lang['site_already_exists'] = 'This site already exists';
$lang['site_create'] = 'Create a new site : (give its URL to create_listing_file.php)';
$lang['site_created'] = 'created';
$lang['site_delete'] = 'delete';
$lang['site_delete_hint'] = 'delete this site and all its attached elements';
$lang['site_deleted'] = 'deleted';
$lang['site_err'] = 'an error happened';
$lang['site_err_remote_file_not_found'] = 'file create_listing_file.php on remote site was not found';
$lang['site_local'] = 'Local';
$lang['site_remote'] = 'Remote';
$lang['site_synchronize'] = 'synchronize';
$lang['site_synchronize_hint'] = 'update the database from files';
$lang['status'] = 'status';
$lang['storage'] = 'Directory';
$lang['sub-categories'] = 'sub-categories';
$lang['synchronize metadata'] = 'synchronize metadata';
$lang['synchronize'] = 'synchronize';
$lang['target'] = 'target';
$lang['thumbnail'] = 'Thumbnail';
$lang['title'] = 'title';
$lang['title_categories'] = 'Categories management';
$lang['title_configuration'] = 'Piwigo configuration';
$lang['title_default'] = 'Piwigo administration';
$lang['title_edit_cat'] = 'Edit a category';
$lang['title_groups'] = 'Group management';
$lang['title_liste_users'] = 'User list';
$lang['title_picmod'] = 'Modify informations about a picture';
$lang['title_thumbnails'] = 'Thumbnail creation';
$lang['title_update'] = 'Database synchronization with files';
$lang['title_upload'] = 'Pictures waiting for validation';
$lang['tn_all'] = 'all';
$lang['tn_alone_title'] = 'pictures without thumbnail (jpeg and png only)';
$lang['tn_err_height'] = 'height must be a number superior to';
$lang['tn_err_width'] = 'width must be a number superior to';
$lang['tn_format'] = 'for the file format';
$lang['tn_no_missing'] = 'No missing thumbnail';
$lang['tn_no_support'] = 'Picture unreachable or no support';
$lang['tn_params_GD'] = 'GD version';
$lang['tn_params_title'] = 'Miniaturization parameters';
$lang['tn_results_gen_time'] = 'generated in';
$lang['tn_results_title'] = 'Results of miniaturization';
$lang['tn_stats'] = 'General statistics';
$lang['tn_stats_max'] = 'max time';
$lang['tn_stats_mean'] = 'average time';
$lang['tn_stats_min'] = 'min time';
$lang['tn_stats_nb'] = 'number of miniaturized pictures';
$lang['tn_stats_total'] = 'total time';
$lang['tn_thisformat'] = 'for this file format';
$lang['unit mode'] = 'unit mode';
$lang['unlocked'] = 'Unlocked';
$lang['unset'] = 'unset';
$lang['up'] = 'Move up';
$lang['update categories informations'] = 'Update categories informations';
$lang['update images informations'] = 'Update images informations';
$lang['update'] = 'Synchronize';
$lang['update_cats_subset'] = 'reduce to single existing categories';
$lang['update_default_title'] = 'Choose an option';
$lang['update_display_info'] = 'display maximum informations (added categories and elements, deleted categories and elements)';
$lang['update_err_pwg_version_differs'] = 'Piwigo version differs on the remote site';
$lang['update_err_pwg_version_differs_info'] = 'Version of create_listing_file.php on the remote site and Piwigo must be the same';
$lang['update_err_remote_listing_not_found'] = 'listing.xml file was not found';
$lang['update_err_remote_listing_not_found_info'] = 'listing.xml file was not found on the remote site. This file is generated by choosing the "generate listing" command in the Site manager';
$lang['update_error_list_title'] = 'Error list';
$lang['update_errors_caption'] = 'Errors caption';
$lang['update_infos_title'] = 'Detailed informations';
$lang['update_missing_file_or_dir'] = 'File/directory read error';
$lang['update_missing_file_or_dir_info'] = 'The file or directory cannot be accessed (either it does not exist or the access is denied)';
$lang['update_missing_tn_info'] = '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 :';
$lang['update_missing_tn_short'] = 'missing thumbnail';
$lang['update_nb_del_categories'] = 'categories deleted in the database';
$lang['update_nb_del_elements'] = 'elements deleted in the database';
$lang['update_nb_elements_metadata_available'] = 'images candidates for metadata synchronization';
$lang['update_nb_elements_metadata_sync'] = 'elements informations synchronized with files metadata';
$lang['update_nb_errors'] = 'errors during synchronization';
$lang['update_nb_new_categories'] = 'categories added in the database';
$lang['update_nb_new_elements'] = 'elements added in the database';
$lang['update_nb_upd_elements'] = 'elements updated in the database';
$lang['update_part_research'] = 'Search for new images in the directories';
$lang['update_research_added'] = 'added';
$lang['update_research_deleted'] = 'deleted';
$lang['update_result_metadata'] = 'Metadata synchronization results';
$lang['update_simulate'] = 'only perform a simulation (no change in database will be made)';
$lang['update_simulation_title'] = '[Simulation]';
$lang['update_sync_all'] = 'directories + files';
$lang['update_sync_dirs'] = 'only directories';
$lang['update_sync_files'] = 'synchronize files structure with database';
$lang['update_sync_metadata'] = 'synchronize files metadata with database elements informations';
$lang['update_sync_metadata_all'] = 'even already synchronized elements';
$lang['update_used_metadata'] = 'Used metadata';
$lang['update_wrong_dirname_info'] = 'The name of directories and files must be composed of letters, numbers, "-", "_" or "."';
$lang['update_wrong_dirname_short'] = 'wrong filename';
$lang['upload'] = 'Upload';
$lang['user "%s" added'] = 'user "%s" added';
$lang['user_status'] = 'User status';
$lang['user_status_admin'] = 'Administrator';
$lang['user_status_generic'] = 'Generic';
$lang['user_status_guest'] = 'Guest';
$lang['user_status_normal'] = 'User';
$lang['user_status_webmaster'] = 'Webmaster';
$lang['username'] = 'username';
$lang['users'] = 'Users';
$lang['virtual_category'] = 'Virtual category';
$lang['waiting'] = 'Waiting';
$lang['is_default_group'] = 'default';
$lang['toggle_is_default_group'] = 'Toggle \'default group\' property';
$lang['Advanced_features'] = 'Advanced features';
$lang['Elements_not_linked'] = 'Not linked elements';
$lang['special_admin_menu'] = 'Specials';
$lang['Duplicates'] = 'Files with same name in more than one physical category';
$lang['Overall'] = 'Overall';
$lang['Year'] = 'Year';
$lang['Month'] = 'Month';
$lang['Day'] = 'Day';
$lang['Pages seen'] = 'Pages seen';
$lang['Pictures'] = 'Pictures';
$lang['time'] = 'Time';
$lang['user'] = 'User';
$lang['IP'] = 'IP';
$lang['image'] = 'Element';
$lang['section'] = 'Section';
$lang['tags'] = 'Tags';
$lang['conf_history_guest'] = 'Save page visits by guests';
$lang['conf_history_user'] = 'Save page visits by users';
$lang['conf_history_admin'] = 'Save page visits by administrators';
$lang['cat_options_title'] = 'Properties';
$lang['An information email was sent to group "%s"'] = 'An information email was sent to group "%s"';
$lang['Send an information email to group members'] = 'Send an information email to group members';
$lang['Group'] = 'Group';
$lang['[%s] Come to visit the category %s'] = '[%s] Come to visit the category %s';
$lang['Hello,'] = 'Hello,';
$lang['See you soon.'] = 'See you soon.';
$lang['Come to discover the category:'] = 'Come to discover the category:';
$lang['mail_content'] = 'Mail content';
$lang['none'] = 'none';
$lang['high'] = 'high';
$lang['other'] = 'other';
$lang['Element type'] = 'Element type';
$lang['User'] = 'User';
$lang['Image id'] = 'Image id';
$lang['Summary'] = 'Summary';
$lang['%d line filtered'] = '%d line filtered';
$lang['%d lines filtered'] = '%d lines filtered';
$lang['%d guest'] = '%d guest';
$lang['%d guests'] = '%d guests';
$lang['Hour'] = 'Hour';
$lang['is_the_guest'] = 'guest';
$lang['is_the_default'] = 'default values';
$lang['High filesize'] = 'High filesize';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['Guest cannot be deleted'] = 'Guest cannot be deleted';
$lang['Default user cannot be deleted'] = 'Default user cannot be deleted';
$lang['purge history detail'] = 'Purge history detail';
$lang['purge history summary'] = 'Purge history summary';
$lang['c13y_title'] = 'Check integrity';
$lang['c13y_Anomaly'] = 'Anomaly';
$lang['c13y_Correction'] = 'Correction';
$lang['c13y_Automatic_correction'] = 'Automatic correction';
$lang['c13y_Impossible_automatic_correction'] = 'Impossible automatic correction';
$lang['c13y_Correction_applied_success'] = 'Correction applied with success';
$lang['c13y_Correction_applied_error'] = 'Correction applied with error';
$lang['c13y_anomaly_count'] = '%d anomaly has been detected.';
$lang['c13y_anomalies_count'] = '%d anomalies have been detected.';
$lang['c13y_anomaly_corrected_count'] = '%d anomaly has been corrected.';
$lang['c13y_anomalies_corrected_count'] = '%d anomalies have been detected corrected.';
$lang['c13y_anomaly_not_corrected_count'] = '%d anomaly has not been corrected.';
$lang['c13y_anomalies_not_corrected_count'] = '%d anomalies have not been corrected.';
$lang['c13y_more_info'] = 'Go to %s or %s for more informations';
$lang['c13y_more_info_forum'] = 'the forum';
$lang['c13y_more_info_wiki'] = 'the wiki';
$lang['c13y_exif_anomaly'] = '%s value is not correct file because exif are not supported';
$lang['c13y_exif_correction'] = '%s must be to set to false in your config_local.inc.php file';
$lang['c13y_guest_non_existent'] = 'Main "guest" user does not exist';
$lang['c13y_bad_guest_status'] = 'Main "guest" user status is incorrect';
$lang['c13y_default_non_existent'] = 'Default user does not exist';
$lang['c13y_webmaster_non_existent'] = 'Main "webmaster" user does not exist';
$lang['c13y_bad_webmaster_status'] = 'Main "webmaster" user status is incorrect';
$lang['c13y_user_created'] = 'User "%s" created with "%s" like password';
$lang['c13y_user_status_updated'] = 'Status of user "%s" updated';
$lang['add new elements to caddie'] = 'add new elements to caddie';
// --------- Starting below: New or revised $lang ---- from Butterfly
$lang['no_display_thumbnail'] = 'No display';
$lang['display_thumbnail_classic'] = 'Classic display';
$lang['display_thumbnail_hoverbox'] = 'Hoverbox display';
$lang['Thumbnails'] = 'Thumbnails';
$lang['obligatory_user_mail_address'] = 'Mail address is obligatory for all users';
$lang['Minimum privacy level'] = 'Minimum privacy level';
$lang['Privacy level'] = 'Privacy level';
$lang['Level 0'] = '---';
$lang['Level 1'] = 'Contacts';
$lang['Level 2'] = 'Friends';
$lang['Level 4'] = 'Family';
$lang['Level 8'] = 'Admins';
$lang['c13y_maintenance'] = 'Reinitialize check integrity';
$lang['Check all'] = 'Check all';
$lang['Uncheck all'] = 'Uncheck all';
$lang['c13y_check_auto'] = 'Check automatic corrections';
$lang['c13y_submit_correction'] = 'Apply selected corrections';
$lang['c13y_submit_ignore'] = 'Ignore selected anomalies';
$lang['c13y_submit_refresh'] = 'Refresh';
$lang['c13y_ignore_msg1'] = 'The anomaly will be ignored until next application version';
$lang['c13y_ignore_msg2'] = 'Correction the anomaly will cancel the fact that it\'s ignored';
$lang['c13y_anomaly_ignored_count'] = '%d anomaly has been ignored.';
$lang['c13y_anomalies_ignored_count'] = '%d anomalies have been ignored.';
$lang['plugins_need_update'] = 'Plugins which need upgrade';
$lang['plugins_dontneed_update'] = 'Plugins up to date';
$lang['plugins_cant_check'] = 'Plugin versions can\'t be checked';
$lang['plugins_actual_version'] = 'Current<br>version';
$lang['plugins_new_version'] = 'Available<br>version';
$lang['plugins_auto_update'] = 'Automatic upgrade';
$lang['plugins_auto_install'] = 'Automatic installation';
$lang['plugins_download'] = 'Download file';
$lang['plugins_tab_list'] = 'Plugin list';
$lang['plugins_tab_update'] = 'Check for updates';
$lang['plugins_tab_new'] = 'Other plugins';
$lang['plugins_revisions'] = 'Last revisions';
$lang['plugins_delete'] = 'Delete';
$lang['plugins_confirm_delete'] = 'Are you sure you want to delete this plugin?';
$lang['plugins_confirm_install'] = 'Are you sure you want to install this plugin?';
$lang['plugins_confirm_upgrade'] = 'Are you sure to install this upgrade? You must verify if this version does not need uninstallation.';
$lang['plugins_upgrade_ok'] = '%s has been successfully upgraded.';
$lang['plugins_install_ok'] = 'Plugin has been successfully copied';
$lang['plugins_install_need_activate'] = 'You might go to plugin list to install and activate it.';
$lang['plugins_temp_path_error'] = 'Can\'t create temporary file.';
$lang['plugins_dl_archive_error'] = 'Can\'t download archive.';
$lang['plugins_archive_error'] = 'Can\'t read or extract archive.';
$lang['plugins_extract_error'] = 'An error occured during extraction (%s).';
$lang['plugins_check_chmod'] = 'Please check "plugins" folder and sub-folders permissions (CHMOD).';
$lang['plugins_server_error'] = 'Can\'t connect to server.';
$lang['Purge compiled templates'] = 'Purge compiled templates';
$lang['Caddie is currently empty'] = 'Caddie is currently empty';
$lang['conf_upload_title'] = 'Upload';
$lang['Show upload link every time'] = 'Show upload link every time';
$lang['User access level to upload'] = 'User access level to upload';
$lang['ACCESS_0'] = 'Free access';
$lang['ACCESS_1'] = 'Access to all';
$lang['ACCESS_2'] = 'Access to subscribed';
$lang['ACCESS_3'] = 'Access to administrators';
$lang['ACCESS_4'] = 'Access to webmasters';
$lang['ACCESS_5'] = 'No access';
$lang['DEMO'] = 'Demo';
$lang['HOME'] = 'Piwigo home';
$lang['FORUM'] = 'Support';
$lang['BUGS'] = 'Bugs';
$lang['EXTENSIONS'] = 'Extensions';
$lang['WIKI / DOC'] = 'Documentation';
$lang['A new version of Piwigo is available.'] = 'A new version of Piwigo is available.';
$lang['Piwigo Administration'] = 'Piwigo Administration';
$lang['Piwigo version'] = 'Piwigo version';
$lang['You are running the latest version of Piwigo.'] = 'You are running the latest version of Piwigo.';
$lang['c13y_version_anomaly'] = 'The version of %s [%s] installed is not compatible with the version required [%s]';
$lang['c13y_version_correction'] = 'You need to upgrade your system to take full advantage of the application else the application will not work correctly, or not at all';
$lang['Deleted on'] = 'Deleted on';
$lang['Last hit'] = 'Last hit';
$lang['Hits'] = 'Hits';
$lang['GD library is missing'] = 'GD library is missing';
$lang['conf_extents'] = 'Templates';
$lang['extend_for_templates'] = 'Extend for templates';
$lang['Replacement of original templates'] = 'Replacement of original templates by customized templates from template-extension subfolder';
$lang['Replacers'] = 'Replacers (customized templates)';
$lang['Original templates'] = 'Original templates';
$lang['Optional URL keyword'] = 'Optional URL keyword';
$lang['Templates recorded.'] = 'Templates configuration has been recorded.';
$lang['Optimizations completed'] = 'All optimizations have been successfully completed.';
$lang['Optimizations errors'] = 'Optimizations have been completed with some errors.';
$lang['delete this comment'] = 'delete this comment';
$lang['link_info_image'] = 'Modify information';
$lang['edit category informations'] = 'edit category informations';
$lang['nothing'] = 'nothing';
$lang['overrides existing values with empty ones'] = 'overrides existing values with empty ones';
$lang['manage image ranks'] = 'manage image ranks';
$lang['Manage image ranks'] = 'Manage image ranks';
$lang['Edit ranks'] = 'Edit ranks';
$lang['No element in this category'] = 'No element in this category';
$lang['Images manual order was saved'] = 'Images manual order was saved';
$lang['ranks'] = 'ranks';
$lang['Drag to re-order'] = 'Drag to re-order';
$lang['Unable to retrieve server informations since allow_url_fopen is disabled.'] = 'Unable to retrieve server informations since allow_url_fopen is disabled.';
$lang['Quick Local Synchronization'] = 'Quick Local Synchronization';
$lang['No photo can be deleted'] = 'No photo can be deleted';
$lang['Note: Only deletes photos added with pLoader'] = 'Note: Only deletes photos added with pLoader';
$lang['Delete selected photos'] = 'Delete selected photos';
$lang['%d photo was deleted'] = '%d photo was deleted';
$lang['%d photos were deleted'] = '%d photos were deleted';
$lang['Bound template'] = 'Bound template';
$lang['Downloads'] = 'Downloads';
$lang['Released on'] = 'Released on';
$lang['Number of downloads'] = 'Number of downloads';
// --------- Starting below: New or revised $lang ---- from Colibri
$lang['Piwigo Announcements Newsletter'] = 'Piwigo Announcements Newsletter';
$lang['Subscribe to Piwigo Announcements Newsletter'] = '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.';
$lang['Subscribe %s'] = 'Subscribe %s';
$lang['Subscribe %s to Piwigo Announcements Newsletter'] = 'Subscribe %s to Piwigo Announcements Newsletter';
$lang['Purge search history'] = 'Purge search history';
$lang['Hide'] = 'Hide';
$lang['Password is missing'] = 'Password is missing. Please enter the password.';
$lang['Password confirmation is missing'] = 'Password confirmation is missing. Please confirm the chosen password.';
$lang['Email address is missing'] = 'Email address is missing. Please specify an email address.';
$lang['Password confirmation error'] = 'Password confirmation error.';
$lang['Allow users to edit theirs owns comments'] = 'Allow users to edit theirs owns comments';
$lang['Allow users to delete theirs owns comments'] = 'Allow users to delete theirs owns comments';
$lang['Email administrators when a comment is modified'] = 'Email administrators when a comment is modified';
$lang['Email administrators when a comment is deleted'] = 'Email administrators when a comment is deleted';
$lang['Cannot delete the old permalink !'] = 'Cannot delete the old permalink !';
$lang['Deleted on'] = 'Deleted on';
$lang['Last hit'] = 'Last hit';
$lang['Hit'] = 'Hit';
?>

View file

@ -0,0 +1,373 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
// Langage informations
$lang_info['language_name'] = 'English';
$lang_info['country'] = 'Great Britain';
$lang_info['direction'] = 'ltr';
$lang_info['code'] = 'en';
$lang_info['zero_plural'] = true;
$lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (rated %d times, standard deviation = %.2f)';
$lang['%d Kb'] = '%d Kb';
$lang['%d category updated'] = '%d category updated';
$lang['%d categories updated'] = '%d categories updated';
$lang['%d comment to validate'] = '%d comment to validate';
$lang['%d comments to validate'] = '%d comments to validate';
$lang['%d new comment'] = '%d new comment';
$lang['%d new comments'] = '%d new comments';
$lang['%d comment'] = '%d comment';
$lang['%d comments'] = '%d comments';
$lang['%d hit'] = '%d hit';
$lang['%d hits'] = '%d hits';
$lang['%d new element'] = '%d new image';
$lang['%d new elements'] = '%d new images';
$lang['%d new user'] = '%d new user';
$lang['%d new users'] = '%d new users';
$lang['%d waiting element'] = '%d waiting element';
$lang['%d waiting elements'] = '%d waiting elements';
$lang['About'] = 'About';
$lang['All tags must match'] = 'All tags must match';
$lang['All tags'] = 'All tags';
$lang['Any tag'] = 'Any tag';
$lang['At least one listed rule must be satisfied.'] = 'At least one listed rule must be satisfied.';
$lang['At least one tag must match'] = 'At least one tag must match';
$lang['Author'] = 'Author';
$lang['Average rate'] = 'Average rate';
$lang['Categories'] = 'Categories';
$lang['Category'] = 'Category';
$lang['Close this window'] = 'Close this window';
$lang['Complete RSS feed'] = 'Complete RSS feed (images, comments)';
$lang['Confirm Password'] = 'Confirm Password';
$lang['Connection settings'] = 'Connection settings';
$lang['Connection'] = 'Login';
$lang['Contact webmaster'] = 'Contact webmaster';
$lang['Create a new account'] = 'Create a new account';
$lang['Created on'] = 'Created on';
$lang['Creation date'] = 'Creation date';
$lang['Current password is wrong'] = 'Current password is wrong';
$lang['Dimensions'] = 'Dimensions';
$lang['Display'] = 'Display';
$lang['Each listed rule must be satisfied.'] = 'Each listed rule must be satisfied.';
$lang['Email address is missing'] = 'Email address is missing';
$lang['Email address'] = 'Email address';
$lang['Enter your personnal informations'] = 'Enter your personnal informations';
$lang['Error sending email'] = 'Error sending email';
$lang['File name'] = 'File name';
$lang['File'] = 'File';
$lang['Filesize'] = 'Filesize';
$lang['Filter and display'] = 'Filter and display';
$lang['Filter'] = 'Filter';
$lang['Forgot your password?'] = 'Forgot your password?';
$lang['Go through the gallery as a visitor'] = 'Go through the gallery as a visitor';
$lang['Help'] = 'Help';
$lang['Identification'] = 'Identification';
$lang['Image only RSS feed'] = 'Image only RSS feed';
$lang['Keyword'] = 'Keyword';
$lang['Links'] = 'Links';
$lang['Mail address'] = 'Mail address';
$lang['N/A'] = 'N/A';
$lang['New on %s'] = 'New on %s';
$lang['New password confirmation does not correspond'] = 'New password confirmation does not correspond';
$lang['New password sent by email'] = 'New password sent by email';
$lang['No email address'] = 'No email address';
$lang['No user matches this email address'] = 'No classic user matches this email address';
$lang['Notification'] = 'Notification';
$lang['Number of items'] = 'Number of items';
$lang['Original dimensions'] = 'Original dimensions';
$lang['Password forgotten'] = 'Password forgotten';
$lang['Password'] = 'Password';
$lang['Post date'] = 'Post date';
$lang['Posted on'] = 'Posted on';
$lang['Profile'] = 'Profile';
$lang['Quick connect'] = 'Quick connect';
$lang['RSS feed'] = 'RSS feed';
$lang['Rate'] = 'Rate';
$lang['Register'] = 'Register';
$lang['Registration'] = 'Registration';
$lang['Related tags'] = 'Related tags';
$lang['Reset'] = 'Reset';
$lang['Retrieve password'] = 'Retrieve password';
$lang['Search rules'] = 'Search rules';
$lang['Search tags'] = 'Search tags';
$lang['Search'] = 'Search';
$lang['See available tags'] = 'See available tags';
$lang['Send new password'] = 'Send new password';
$lang['Since'] = 'Since';
$lang['Sort by'] = 'Sort by';
$lang['Sort order'] = 'Sort order';
$lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.';
$lang['Unknown feed identifier'] = 'Unknown feed identifier';
$lang['User comments'] = 'User comments';
$lang['Username'] = 'Username';
$lang['Visits'] = 'Visits';
$lang['Webmaster'] = 'Webmaster';
$lang['Week %d'] = 'Week %d';
$lang['about_page_title'] = 'About Piwigo';
$lang['access_forbiden'] = 'You are not authorized to access the requested page';
$lang['add to caddie'] = 'add to caddie';
$lang['add_favorites_hint'] = 'add this image to your favorites';
$lang['admin'] = 'Administration';
$lang['adviser_mode_enabled'] = 'Adviser mode enabled';
$lang['all'] = 'all';
$lang['ascending'] = 'ascending';
$lang['author(s) : %s'] = 'author(s) : %s';
$lang['auto_expand'] = 'Expand all categories';
$lang['became available after %s (%s)'] = 'posted after %s (%s)';
$lang['became available before %s (%s)'] = 'posted before %s (%s)';
$lang['became available between %s (%s) and %s (%s)'] = 'posted between %s (%s) and %s (%s)';
$lang['became available on %s'] = 'posted on %s';
$lang['best_rated_cat'] = 'Best rated';
$lang['best_rated_cat_hint'] = 'display best rated items';
$lang['caddie'] = 'caddie';
$lang['calendar'] = 'Calendar';
$lang['calendar_any'] = 'All';
$lang['calendar_hint'] = 'display each day with pictures, month per month';
$lang['calendar_picture_hint'] = 'display pictures added on ';
$lang['calendar_view'] = 'View';
$lang['chronology_monthly_calendar'] = 'Monthly calendar';
$lang['chronology_monthly_list'] = 'Monthly list';
$lang['chronology_weekly_list'] = 'Weekly list';
$lang['click_to_redirect'] = 'Click here if your browser does not automatically forward you';
$lang['comment date'] = 'comment date';
$lang['comment'] = 'Comment';
$lang['comment_added'] = 'Your comment has been registered';
$lang['comment_anti-flood'] = 'Anti-flood system : please wait for a moment before trying to post another comment';
$lang['comment_not_added'] = 'Your comment has NOT been registered because it did not pass the validation rules';
$lang['comment_to_validate'] = 'An administrator must authorize your comment before it is visible.';
$lang['comment_user_exists'] = 'This login is already used by another user';
$lang['comments'] = 'Comments';
$lang['comments_add'] = 'Add a comment';
$lang['created after %s (%s)'] = 'created after %s (%s)';
$lang['created before %s (%s)'] = 'created before %s (%s)';
$lang['created between %s (%s) and %s (%s)'] = 'created between %s (%s) and %s (%s)';
$lang['created on %s'] = 'created on %s';
$lang['customize'] = 'Customize';
$lang['customize_page_title'] = 'Your Gallery Customization ';
$lang['day'][0] = 'Sunday';
$lang['day'][1] = 'Monday';
$lang['day'][2] = 'Tuesday';
$lang['day'][3] = 'Wednesday';
$lang['day'][4] = 'Thursday';
$lang['day'][5] = 'Friday';
$lang['day'][6] = 'Saturday';
$lang['default_sort'] = 'Default';
$lang['del_favorites_hint'] = 'delete this image from your favorites';
$lang['delete'] = 'Delete';
$lang['descending'] = 'descending';
$lang['download'] = 'download';
$lang['download_hint'] = 'download this file';
$lang['edit'] = 'edit';
$lang['err_date'] = 'wrong date';
$lang['excluded'] = 'excluded';
$lang['favorite_cat'] = 'My favorites';
$lang['favorite_cat_hint'] = 'display my favorites pictures';
$lang['favorites'] = 'Favorites';
$lang['first_page'] = 'First';
$lang['gallery_locked_message'] = 'The gallery is locked for maintenance. Please, come back later.';
$lang['generation_time'] = 'Page generated in';
$lang['guest'] = 'guest';
$lang['hello'] = 'Hello';
$lang['hint_admin'] = 'available for administrators only';
$lang['hint_category'] = 'shows images at the root of this category';
$lang['hint_comments'] = 'See last users comments';
$lang['hint_customize'] = 'customize the appareance of the gallery';
$lang['hint_search'] = 'search';
$lang['home'] = 'Home';
$lang['identification'] = 'Identification';
$lang['images_available_cpl'] = 'in this category';
$lang['images_available_cat'] = 'in %d sub-category';
$lang['images_available_cats'] = 'in %d sub-categories';
$lang['included'] = 'included';
$lang['invalid_pwd'] = 'Invalid password!';
$lang['language']='Language';
$lang['last %d days'] = 'last %d days';
$lang['last_page'] = 'Last';
$lang['logout'] = 'Logout';
$lang['mail_address'] = 'E-mail address';
$lang['mandatory'] = 'obligatory';
$lang['maxheight'] = 'Maximum height of the pictures';
$lang['maxheight_error'] = 'Maximum height must be a number superior to 50';
$lang['maxwidth'] = 'Maximum width of the pictures';
$lang['maxwidth_error'] = 'Maximum width must be a number superior to 50';
$lang['mode_created_hint'] = 'display a calendar by creation date';
$lang['mode_flat_hint'] = 'display all elements in all sub-categories';
$lang['mode_normal_hint'] = 'return to normal view mode';
$lang['mode_posted_hint'] = 'display a calendar by posted date';
$lang['month'][10] = 'October';
$lang['month'][11] = 'November';
$lang['month'][12] = 'December';
$lang['month'][1] = 'January';
$lang['month'][2] = 'February';
$lang['month'][3] = 'March';
$lang['month'][4] = 'April';
$lang['month'][5] = 'May';
$lang['month'][6] = 'June';
$lang['month'][7] = 'July';
$lang['month'][8] = 'August';
$lang['month'][9] = 'September';
$lang['most_visited_cat'] = 'Most visited';
$lang['most_visited_cat_hint'] = 'display most visited pictures';
$lang['nb_image_line_error'] = 'The number of images per row must be a not null scalar';
$lang['nb_image_per_row'] = 'Number of images per row';
$lang['nb_line_page_error'] = 'The number of rows per page must be a not null scalar';
$lang['nb_row_per_page'] = 'Number of rows per page';
$lang['nbm_unknown_identifier'] = 'Unknown identifier';
$lang['new_password'] = 'New password';
$lang['new_rate'] = 'Rate this picture';
$lang['next_page'] = 'Next';
$lang['no_category'] = 'Home';
$lang['no_rate'] = 'no rate';
$lang['note_filter_day'] = 'Elements posted within the last %d day.';
$lang['note_filter_days'] = 'Elements posted within the last %d days.';
$lang['password updated'] = 'password updated';
$lang['periods_error'] = 'Recent period must be a positive integer value';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'picture';
$lang['picture_high'] = 'Click on the picture to see it in high definition';
$lang['picture_show_metadata'] = 'Show file metadata';
$lang['powered_by'] = 'Powered by';
$lang['preferences'] = 'Preferences';
$lang['previous_page'] = 'Previous';
$lang['random_cat'] = 'Random pictures';
$lang['random_cat_hint'] = 'display a set of random pictures';
$lang['recent_cats_cat'] = 'Recent categories';
$lang['recent_cats_cat_hint'] = 'display recently updated categories';
$lang['recent_period'] = 'Recent period';
$lang['recent_pics_cat'] = 'Recent pictures';
$lang['recent_pics_cat_hint'] = 'display most recent pictures';
$lang['redirect_msg'] = 'Redirection...';
$lang['reg_err_login1'] = 'Please, enter a login';
$lang['reg_err_login2'] = 'login mustn\'t end with a space character';
$lang['reg_err_login3'] = 'login mustn\'t start with a space character';
$lang['reg_err_login5'] = 'this login is already used';
$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
$lang['reg_err_pass'] = 'please enter your password again';
$lang['remember_me'] = 'Auto login';
$lang['remove this tag'] = 'remove this tag from the list';
$lang['representative'] = 'representative';
$lang['return to homepage'] = 'return to homepage';
$lang['search_author'] = 'Search for Author';
$lang['search_categories'] = 'Search in Categories';
$lang['search_date'] = 'Search by Date';
$lang['search_date_from'] = 'Date';
$lang['search_date_to'] = 'End-Date';
$lang['search_date_type'] = 'Kind of date';
$lang['search_keywords'] = 'Search for words';
$lang['search_mode_and'] = 'Search for all terms ';
$lang['search_mode_or'] = 'Search for any terms';
$lang['search_one_clause_at_least'] = 'Empty query. No criteria has been entered.';
$lang['search_options'] = 'Search Options';
$lang['search_result'] = 'Search results';
$lang['search_subcats_included'] = 'Search in subcategories';
$lang['search_title'] = 'Search';
$lang['searched words : %s'] = 'searched words : %s';
$lang['send_mail'] = 'Contact';
$lang['set as category representative'] = 'set as category representative';
$lang['show_nb_comments'] = 'Show number of comments';
$lang['show_nb_hits'] = 'Show number of hits';
$lang['slideshow'] = 'slideshow';
$lang['slideshow_stop'] = 'stop the slideshow';
$lang['special_categories'] = 'Specials';
$lang['sql_queries_in'] = 'SQL queries in';
$lang['start_filter_hint'] = 'display only recently posted images';
$lang['stop_filter_hint'] = 'return to the display of all images';
$lang['the beginning'] = 'the beginning';
$lang['theme'] = 'Interface theme';
$lang['thumbnails'] = 'Thumbnails';
$lang['title_menu'] = 'Menu';
$lang['title_send_mail'] = 'A comment on your site';
$lang['today'] = 'today';
$lang['update_rate'] = 'Update your rating';
$lang['update_wrong_dirname'] = 'wrong filename';
$lang['upload_advise_filesize'] = 'the filesize of the picture must not exceed : ';
$lang['upload_advise_filetype'] = 'the picture must be to the fileformat jpg, gif or png';
$lang['upload_advise_height'] = 'the height of the picture must not exceed : ';
$lang['upload_advise_thumbnail'] = 'Optional, but recommended : choose a thumbnail to associate to ';
$lang['upload_advise_width'] = 'the width of the picture must not exceed : ';
$lang['upload_author'] = 'Author';
$lang['upload_cannot_upload'] = 'can\'t upload the picture on the server';
$lang['upload_err_username'] = 'the username must be given';
$lang['upload_file_exists'] = 'A picture\'s name already used';
$lang['upload_filenotfound'] = 'You must choose a picture fileformat for the image';
$lang['upload_forbidden'] = 'You can\'t upload pictures in this category';
$lang['upload_name'] = 'Name of the picture';
$lang['upload_picture'] = 'Upload a picture';
$lang['upload_successful'] = 'Picture uploaded with success, an administrator will validate it as soon as possible';
$lang['upload_title'] = 'Upload a picture';
$lang['useful when password forgotten'] = 'useful when password forgotten';
$lang['qsearch'] = 'Quick search';
$lang['Connected user: %s'] = 'Connected user: %s';
$lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Browser: %s';
$lang['Author: %s'] = 'Author: %s';
$lang['Comment: %s'] = 'Comment: %s';
$lang['Delete: %s'] = 'Delete: %s';
$lang['Validate: %s'] = 'Validate: %s';
$lang['Comment by %s'] = 'Comment by %s';
$lang['User: %s'] = 'User: %s';
$lang['Email: %s'] = 'Email: %s';
$lang['Admin: %s'] = 'Admin: %s';
$lang['Registration of %s'] = 'Registration of %s';
$lang['Category: %s'] = 'Category: %s';
$lang['Picture name: %s'] = 'Picture name: %s';
$lang['Creation date: %s'] = 'Creation date: %s';
$lang['Waiting page: %s'] = 'Waiting page: %s';
$lang['Picture uploaded by %s'] = 'Picture uploaded by %s';
// --------- Starting below: New or revised $lang ---- from version 1.7.1
$lang['guest_must_be_guest'] = 'Bad status for user "guest", using default status. Please notify the webmaster.';
// --------- Starting below: New or revised $lang ---- from Butterfly (2.0)
$lang['Administrator, webmaster and special user cannot use this method'] = 'Administrator, webmaster and special user cannot use this method';
$lang['reg_err_mail_address_dbl'] = 'a user use already this mail address';
$lang['Category results for'] = 'Category results for';
$lang['Tag results for'] = 'Tag results for';
$lang['from %s to %s'] = 'from %s to %s';
$lang['start_play'] = 'Play of slideshow';
$lang['stop_play'] = 'Pause of slideshow';
$lang['start_repeat'] = 'Repeat the slideshow';
$lang['stop_repeat'] = 'Not repeat the slideshow';
$lang['inc_period'] = 'Reduce diaporama speed';
$lang['dec_period'] = 'Accelerate diaporama speed';
$lang['Submit'] = 'Submit';
$lang['Yes'] = 'Yes';
$lang['No'] = 'No';
$lang['%d element']='%d image';
$lang['%d elements']='%d images';
$lang['%d element are also linked to current tags'] = '%d image is also linked to current tags';
$lang['%d elements are also linked to current tags'] = '%d images are also linked to current tags';
$lang['See elements linked to this tag only'] = 'See images linked to this tag only';
$lang['elements posted during the last %d days'] = 'images posted during the last %d days';
$lang['Choose an image'] = 'Choose an image';
$lang['Piwigo Help'] = 'Piwigo Help';
$lang['Rank'] = 'Rank';
$lang['group by letters'] = 'group by letters';
$lang['letters'] = 'letters';
$lang['show tag cloud'] = 'show tag cloud';
$lang['cloud'] = 'cloud';
$lang['Reset_To_Default'] = 'Reset to default values';
// --------- Starting below: New or revised $lang ---- from Colibri (2.1)
$lang['del_all_favorites_hint'] = 'delete all images from your favorites';
$lang['Sent by'] = 'Sent by';
$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.';
?>

View file

@ -0,0 +1,78 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Installation'] = 'Installation';
$lang['Initial_config'] = 'Basic configuration';
$lang['Default_lang'] = 'Default gallery language';
$lang['step1_title'] = 'Database configuration';
$lang['step2_title'] = 'Admin configuration';
$lang['Start_Install'] = 'Start Install';
$lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
$lang['install_webmaster'] = 'Webmaster login';
$lang['install_webmaster_info'] = 'It will be shown to the visitors. It is necessary for website administration';
$lang['step1_confirmation'] = 'Parameters are correct';
$lang['step1_err_db'] = 'Connection to server succeed, but it was impossible to connect to database';
$lang['step1_err_server'] = 'Can\'t connect to server';
$lang['step1_err_copy_2'] = 'The next step of the installation is now possible';
$lang['step1_err_copy_next'] = 'next step';
$lang['step1_err_copy'] = '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)';
$lang['step1_dbengine'] = 'Database type';
$lang['step1_dbengine_info'] = 'The type of database your piwigo data will be store in';
$lang['step1_host'] = 'Host';
$lang['step1_host_info'] = 'localhost, sql.multimania.com, toto.freesurf.fr';
$lang['step1_user'] = 'User';
$lang['step1_user_info'] = 'user login given by your host provider';
$lang['step1_pass'] = 'Password';
$lang['step1_pass_info'] = 'user password given by your host provider';
$lang['step1_database'] = 'Database name';
$lang['step1_database_info'] = 'also given by your host provider';
$lang['step1_prefix'] = 'Database table prefix';
$lang['step1_prefix_info'] = 'database tables names will be prefixed with it (enables you to manage better your tables)';
$lang['step2_err_login1'] = 'enter a login for webmaster';
$lang['step2_err_login3'] = 'webmaster login can\'t contain characters \' or "';
$lang['step2_err_pass'] = 'please enter your password again';
$lang['install_end_title'] = 'Installation finished';
$lang['step2_pwd'] = 'Webmaster password';
$lang['step2_pwd_info'] = 'Keep it confidential, it enables you to access administration panel';
$lang['step2_pwd_conf'] = 'Password [confirm]';
$lang['step2_pwd_conf_info'] = 'verification';
$lang['install_help'] = 'Need help ? Ask your question on <a href="%s">Piwigo message board</a>.';
$lang['install_end_message'] = 'The configuration of Piwigo is finished, here is the next step<br><br>
* go to the identification page and use the login/password given for webmaster<br>
* this login will enable you to access to the administration panel and to the instructions in order to place pictures in your directories';
$lang['conf_mail_webmaster'] = 'Webmaster mail address';
$lang['conf_mail_webmaster_info'] = 'Visitors will be able to contact site administrator with this mail';
$lang['PHP 5 is required'] = 'PHP 5 is required';
$lang['It appears your webhost is currently running PHP %s.'] = 'It appears your webhost is currently running PHP %s.';
$lang['Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.'] = 'Piwigo may try to switch your configuration to PHP 5 by creating or modifying a .htaccess file.';
$lang['Note you can change your configuration by yourself and restart Piwigo after that.'] = 'Note you can change your configuration by yourself and restart Piwigo after that.';
$lang['Try to configure PHP 5'] = 'Try to configure PHP 5';
$lang['Sorry!'] = 'Sorry!';
$lang['Piwigo was not able to configure PHP 5.'] = 'Piwigo was not able to configure PHP 5.';
$lang["You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself."] = "You may referer to your hosting provider's support and see how you could switch to PHP 5 by yourself.";
$lang['Hope to see you back soon.'] = 'Hope to see you back soon.';
?>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,44 @@
<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
$lang['Upgrade'] = 'Upgrade';
$lang['introduction message'] = 'This page proposes to upgrade your database corresponding to your old version of Piwigo to the current version.
The upgrade assistant thinks you are currently running a <strong>release %s</strong> (or equivalent).';
$lang['Upgrade from %s to %s'] = 'Upgrade from version %s to %s';
$lang['Statistics'] = 'Statistics';
$lang['total upgrade time'] = 'total upgrade time';
$lang['total SQL time'] = 'total SQL time';
$lang['SQL queries'] = 'SQL queries';
$lang['Upgrade informations'] = 'Upgrade informations';
$lang['perform a maintenance check'] = 'Perform a maintenance check in [Administration>Specials>Maintenance] if you encounter any problem.';
$lang['deactivated plugins'] = 'As a precaution, following plugins have been deactivated. You must check for plugins upgrade before reactiving them:';
$lang['upgrade login message'] = 'Only administrator can run upgrade: please sign in below.';
$lang['You do not have access rights to run upgrade'] = 'You do not have access rights to run upgrade';
$lang['in include/config_database.inc.php, before ?>, insert:'] = 'In <i>include/config_database.inc.php</i>, before <b>?></b>, insert:';
// Upgrade informations from upgrade_1.3.1.php
$lang['all sub-categories of private categories become private'] = 'All sub-categories of private categories become private';
$lang['user permissions and group permissions have been erased'] = 'User permissions and group permissions have been erased';
$lang['only thumbnails prefix and webmaster mail saved'] = 'Only thumbnails prefix and webmaster mail address have been saved from previous configuration';
?>

126
tools/key2value.php Executable file
View file

@ -0,0 +1,126 @@
#!/usr/bin/php -qn
<?php
if (isset($_SERVER['argc']) && $_SERVER['argc']<=1)
{
help();
}
$language = trim($_SERVER['argv'][1]);
if (!is_dir("language/$language"))
{
help();
}
$Files = array('common', 'admin', 'install', 'upgrade');
$exclude_keys = array('user_status_admin', 'user_status_generic',
'user_status_guest', 'user_status_normal',
'user_status_webmaster', 'Level 0',
'Level 1', 'Level 2', 'Level 4', 'Level 8',
'chronology_monthly_calendar', 'chronology_monthly_list',
'chronology_weekly_list');
foreach ($Files as $file)
{
$lang_file = sprintf('language/%s/%s.lang.php', $language, $file);
$en_file = sprintf('language/en_UK/%s.lang.php', $file);
include $lang_file;
$source_lang = $lang;
unset($lang);
include $en_file;
try
{
$fh = fopen($lang_file, 'w+');
fwrite($fh, copyright());
if ($file == 'common')
{
foreach ($lang_info as $key => $value)
{
fwrite($fh, sprintf("\$lang_info['%s'] = \"%s\";\n",
$key,
$value
)
);
}
}
fwrite($fh, "\n\n");
foreach ($lang as $key => $value)
{
if (is_array($value))
{
foreach ($value as $k => $v)
{
fwrite($fh, sprintf("\$lang['%s'][%s] = \"%s\";\n",
str_replace("'", "\'", trim($key)),
trim($k),
str_replace('"', '\"', trim($source_lang[$key][$k]))
)
);
}
}
elseif (in_array($key, $exclude_keys))
{
fwrite($fh, sprintf("\$lang['%s'] = \"%s\";\n",
str_replace("'", "\'", trim($key)),
str_replace('"', '\"', trim($source_lang[$key]))
)
);
}
else
{
fwrite($fh, sprintf("\$lang['%s'] = \"%s\";\n",
str_replace("'", "\'", trim($value)),
str_replace('"', '\"', trim($source_lang[$key]))
)
);
}
}
fwrite($fh, '?>');
fclose($fh);
}
catch (Exception $e)
{
print $e->getMessage();
}
}
function help()
{
echo "\n";
echo 'usage : ', basename($_SERVER['argv'][0]), " <LANGUAGE CODE>\n";
echo "\n";
exit(1);
}
function copyright()
{
return
'<?php
// +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
';
}
?>