feature 2102 : rename item/image/picture to photo (public side)

git-svn-id: http://piwigo.org/svn/trunk@8711 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices 2011-01-16 20:43:56 +00:00
commit 8a14faf0e1
47 changed files with 461 additions and 523 deletions

View file

@ -213,7 +213,7 @@
<li> <li>
<label> <label>
<span class="property">{'display all elements in all sub-albums'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span> <span class="property">{'display all photos in all sub-albums'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="index_flat_icon" {if ($display.index_flat_icon)}checked="checked"{/if}> <input type="checkbox" name="index_flat_icon" {if ($display.index_flat_icon)}checked="checked"{/if}>
</label> </label>
</li> </li>

View file

@ -45,7 +45,7 @@
<ul> <ul>
<li> <li>
<span class="property"> <span class="property">
<label for="nb_image_line">{'Number of images per row'|@translate}</label> <label for="nb_image_line">{'Number of photos per row'|@translate}</label>
</span> </span>
<input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{$NB_IMAGE_LINE}"> <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{$NB_IMAGE_LINE}">
</li> </li>
@ -89,13 +89,13 @@
</li> </li>
<li> <li>
<span class="property"> <span class="property">
<label for="maxwidth">{'Maximum width of the pictures'|@translate}</label> <label for="maxwidth">{'Maximum photo width'|@translate}</label>
</span> </span>
<input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}"> <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}">
</li> </li>
<li> <li>
<span class="property"> <span class="property">
<label for="maxheight">{'Maximum height of the pictures'|@translate}</label> <label for="maxheight">{'Maximum photo height'|@translate}</label>
</span> </span>
<input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}"> <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}">
</li> </li>

View file

@ -183,7 +183,7 @@
<table> <table>
<tr> <tr>
<td>{'Number of images per row'|@translate}</td> <td>{'Number of photos per row'|@translate}</td>
<td> <td>
<label><input type="radio" name="nb_image_line_action" value="leave" checked="checked"> {'leave'|@translate}</label> <label><input type="radio" name="nb_image_line_action" value="leave" checked="checked"> {'leave'|@translate}</label>
<label><input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set"> {'set to'|@translate}</label> <label><input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set"> {'set to'|@translate}</label>
@ -265,7 +265,7 @@
</tr> </tr>
<tr> <tr>
<td>{'Maximum width of the pictures'|@translate}</td> <td>{'Maximum photo width'|@translate}</td>
<td> <td>
<label><input type="radio" name="maxwidth_action" value="leave" checked="checked"> {'leave'|@translate}</label> <label><input type="radio" name="maxwidth_action" value="leave" checked="checked"> {'leave'|@translate}</label>
<label><input type="radio" name="maxwidth_action" value="unset"> {'unset'|@translate}</label> <label><input type="radio" name="maxwidth_action" value="unset"> {'unset'|@translate}</label>
@ -277,7 +277,7 @@
<tr> <tr>
<td>{'Maximum height of the pictures'|@translate}</td> <td>{'Maximum photo height'|@translate}</td>
<td> <td>
<label><input type="radio" name="maxheight_action" value="leave" checked="checked"> {'leave'|@translate}</label> <label><input type="radio" name="maxheight_action" value="leave" checked="checked"> {'leave'|@translate}</label>
<label><input type="radio" name="maxheight_action" value="unset"> {'unset'|@translate}</label> <label><input type="radio" name="maxheight_action" value="unset"> {'unset'|@translate}</label>

View file

@ -41,7 +41,7 @@ $sort_order = array(
// sort_by : database fields proposed for sorting comments list // sort_by : database fields proposed for sorting comments list
$sort_by = array( $sort_by = array(
'date' => l10n('comment date'), 'date' => l10n('comment date'),
'image_id' => l10n('picture') 'image_id' => l10n('photo')
); );
// items_number : list of number of items to display per page // items_number : list of number of items to display per page

View file

@ -123,7 +123,7 @@ WHERE ';
unset($filter_key); unset($filter_key);
if (get_filter_page_value('add_notes')) if (get_filter_page_value('add_notes'))
{ {
$header_notes[] = l10n_dec('Elements posted within the last %d day.', 'Elements posted within the last %d days.', $filter['recent_period']); $header_notes[] = l10n_dec('Photos posted within the last %d day.', 'Photos posted within the last %d days.', $filter['recent_period']);
} }
include_once(PHPWG_ROOT_PATH.'include/functions_filter.inc.php'); include_once(PHPWG_ROOT_PATH.'include/functions_filter.inc.php');
} }

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'متوسط التصويت';
$lang['Albums'] = 'الألبومات'; $lang['Albums'] = 'الألبومات';
$lang['Album'] = 'الألبوم'; $lang['Album'] = 'الألبوم';
$lang['Close this window'] = 'اغلق هذه النافذة'; $lang['Close this window'] = 'اغلق هذه النافذة';
$lang['Complete RSS feed (images, comments)'] = 'تابع تحديثات الموقع من صور جديدة و تعليقات عبر الاشتراك في هذه الخدمة RSS'; $lang['Complete RSS feed (photos, comments)'] = 'تابع تحديثات الموقع من صور جديدة و تعليقات عبر الاشتراك في هذه الخدمة RSS';
$lang['Confirm Password'] = 'تأكيد كلمة المرور'; $lang['Confirm Password'] = 'تأكيد كلمة المرور';
$lang['Connection settings'] = 'اعداد الاتصال'; $lang['Connection settings'] = 'اعداد الاتصال';
$lang['Login'] = 'دخول'; $lang['Login'] = 'دخول';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'هل نسيت كلمة المرور?';
$lang['Go through the gallery as a visitor'] = 'ادخل معرض الصور كأحد الزوار'; $lang['Go through the gallery as a visitor'] = 'ادخل معرض الصور كأحد الزوار';
$lang['Help'] = 'مساعدة'; $lang['Help'] = 'مساعدة';
$lang['Identification'] = 'الخصوصية'; $lang['Identification'] = 'الخصوصية';
$lang['Image only RSS feed'] = 'التغذية الراجعه للصورةRSS'; $lang['Photos only RSS feed'] = 'التغذية الراجعه للصورةRSS';
$lang['Keyword'] = 'كلمة مفتاحية'; $lang['Keyword'] = 'كلمة مفتاحية';
$lang['Links'] = 'روابط'; $lang['Links'] = 'روابط';
$lang['N/A'] = 'غير معروف'; $lang['N/A'] = 'غير معروف';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'ترتيب حسب ..';
$lang['Sort order'] = 'طريقة العرض'; $lang['Sort order'] = 'طريقة العرض';
$lang['Tag'] = 'كلمة دلائلية'; $lang['Tag'] = 'كلمة دلائلية';
$lang['Tags'] = 'الكلمات الدلائلية'; $lang['Tags'] = 'الكلمات الدلائلية';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'استخدم خدمةالتغذية الراجعه RSS للحصول التحديثات الجديدة من تعليقات و اضافات في هذا الموقع'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'استخدم خدمةالتغذية الراجعه RSS للحصول التحديثات الجديدة من تعليقات و اضافات في هذا الموقع';
$lang['Unknown feed identifier'] = 'التغذية غير معرفة'; $lang['Unknown feed identifier'] = 'التغذية غير معرفة';
$lang['User comments'] = 'آخر التلعيقات في المعرض'; $lang['User comments'] = 'آخر التلعيقات في المعرض';
$lang['Username'] = 'أسم المستخدم'; $lang['Username'] = 'أسم المستخدم';
@ -205,12 +205,12 @@ $lang['Last'] = 'الأخيرة';
$lang['Logout'] = 'خروج'; $lang['Logout'] = 'خروج';
$lang['E-mail address'] = 'اليريد الالكتروني'; $lang['E-mail address'] = 'اليريد الالكتروني';
$lang['obligatory'] = 'ضروري'; $lang['obligatory'] = 'ضروري';
$lang['Maximum height of the pictures'] = 'الارتفاع الاقصى للصورة'; $lang['Maximum photo height'] = 'الارتفاع الاقصى للصورة';
$lang['Maximum height must be a number superior to 50'] = 'يجب ان يكون اقصى ارتفاع للصورة يتعدى الـ50'; $lang['Maximum height must be a number superior to 50'] = 'يجب ان يكون اقصى ارتفاع للصورة يتعدى الـ50';
$lang['Maximum width of the pictures'] = 'العرض الاقضى للصورة'; $lang['Maximum photo width'] = 'العرض الاقضى للصورة';
$lang['Maximum width must be a number superior to 50'] = 'يجب ان يكون العرض الاقصى للصورة يتعدى الـ50'; $lang['Maximum width must be a number superior to 50'] = 'يجب ان يكون العرض الاقصى للصورة يتعدى الـ50';
$lang['display a calendar by creation date'] = 'عرض التقويم حسب الألبومات'; $lang['display a calendar by creation date'] = 'عرض التقويم حسب الألبومات';
$lang['display all elements in all sub-albums'] = 'عرض جميع الصور '; $lang['display all photos in all sub-albums'] = 'عرض جميع الصور ';
$lang['return to normal view mode'] = 'العودة لنمط العرض العادي'; $lang['return to normal view mode'] = 'العودة لنمط العرض العادي';
$lang['display a calendar by posted date'] = 'عرض التقويم حسب تاريخ الصورة المضافة'; $lang['display a calendar by posted date'] = 'عرض التقويم حسب تاريخ الصورة المضافة';
$lang['month'][10] = 'أكتوبر'; $lang['month'][10] = 'أكتوبر';
@ -227,8 +227,8 @@ $lang['month'][8] = 'أغسطس';
$lang['month'][9] = 'سبتمبر'; $lang['month'][9] = 'سبتمبر';
$lang['Most visited'] = 'الصور الأكثر مشاهدة'; $lang['Most visited'] = 'الصور الأكثر مشاهدة';
$lang['display most visited photos'] = 'أعرض الصور الاكثر مشاهدة'; $lang['display most visited photos'] = 'أعرض الصور الاكثر مشاهدة';
$lang['The number of images per row must be a not null scalar'] = 'عدد الصور لكل صف لا يجب ان يكون فارغ'; $lang['The number of photos per row must be a not null scalar'] = 'عدد الصور لكل صف لا يجب ان يكون فارغ';
$lang['Number of images per row'] = 'عدد الصورلكل صف'; $lang['Number of photos per row'] = 'عدد الصورلكل صف';
$lang['The number of rows per page must be a not null scalar'] = 'عدد الصورلكل صف لا يجب ان يكون فارغ'; $lang['The number of rows per page must be a not null scalar'] = 'عدد الصورلكل صف لا يجب ان يكون فارغ';
$lang['Number of rows per page'] = 'عدد الصفوف في الصفحة'; $lang['Number of rows per page'] = 'عدد الصفوف في الصفحة';
$lang['Unknown identifier'] = 'معرف مجهول'; $lang['Unknown identifier'] = 'معرف مجهول';
@ -236,12 +236,12 @@ $lang['New password'] = 'كلمة مرور جديدة';
$lang['Rate this photo'] = 'قيم هذه الصورة'; $lang['Rate this photo'] = 'قيم هذه الصورة';
$lang['Next'] = 'التالي'; $lang['Next'] = 'التالي';
$lang['no rate'] = 'لم يتم تقيم الصورة'; $lang['no rate'] = 'لم يتم تقيم الصورة';
$lang['Elements posted within the last %d day.'] = 'عناصراضيفت في آخر %d يوم.'; $lang['Photos posted within the last %d day.'] = 'عناصراضيفت في آخر %d يوم.';
$lang['Elements posted within the last %d days.'] = 'صور ادخلت في آخر %d الايام.'; $lang['Photos posted within the last %d days.'] = 'صور ادخلت في آخر %d الايام.';
$lang['password updated'] = 'تم تغير كلمة المرور '; $lang['password updated'] = 'تم تغير كلمة المرور ';
$lang['Recent period must be a positive integer value'] = 'يجب أن تكون القيمة ايجابية في الفترة السابقة'; $lang['Recent period must be a positive integer value'] = 'يجب أن تكون القيمة ايجابية في الفترة السابقة';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'صورة'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'صورة';
$lang['Click on the picture to see it in high definition'] = 'اضغط على الصورة كي ترى الابعاد الحقيقية لها'; $lang['Click on the photo to see it in high definition'] = 'اضغط على الصورة كي ترى الابعاد الحقيقية لها';
$lang['Show file metadata'] = 'اظهر الملعومات الفوتوغرافية للصورة'; $lang['Show file metadata'] = 'اظهر الملعومات الفوتوغرافية للصورة';
$lang['Powered by'] = 'بدعم من'; $lang['Powered by'] = 'بدعم من';
$lang['Preferences'] = 'التفضيلات'; $lang['Preferences'] = 'التفضيلات';
@ -360,8 +360,6 @@ $lang['Reset to default values'] = 'ارجع للقيم الافتراضية';
$lang['delete all photos from your favorites'] = 'احذف كل الصور من مفضلتي'; $lang['delete all photos from your favorites'] = 'احذف كل الصور من مفضلتي';
$lang['Sent by'] = 'أرسل بواسطة : '; $lang['Sent by'] = 'أرسل بواسطة : ';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'ملفات الارتباط محضورة في متصفحك أو غير معتمده ،يجب تمكين الكوكيز للتمكن من التسجيل'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'ملفات الارتباط محضورة في متصفحك أو غير معتمده ،يجب تمكين الكوكيز للتمكن من التسجيل';
$lang['Some info about this picture'] = 'معلومات عن هذه الصورة';
$lang['Some more (technical) info about this picture'] = 'معلومات أكثر ( تقنية ) عن هذه الصورة';
$lang['edit this comment'] = 'عدل هذا التعليق'; $lang['edit this comment'] = 'عدل هذا التعليق';
$lang['Edit a comment'] = 'حرر تعليق'; $lang['Edit a comment'] = 'حرر تعليق';
$lang['(!) This comment requires validation'] = '(!) التعليق يحتاج تصريح'; $lang['(!) This comment requires validation'] = '(!) التعليق يحتاج تصريح';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -53,7 +53,7 @@ $lang['Average rate'] = 'Velocitat mitjana';
$lang['Albums'] = 'Categories'; $lang['Albums'] = 'Categories';
$lang['Album'] = 'Categoria'; $lang['Album'] = 'Categoria';
$lang['Close this window'] = 'Tanca aquesta finestra'; $lang['Close this window'] = 'Tanca aquesta finestra';
$lang['Complete RSS feed (images, comments)'] = 'Canal RSS complet (imatges, comentaris)'; $lang['Complete RSS feed (photos, comments)'] = 'Canal RSS complet (imatges, comentaris)';
$lang['Confirm Password'] = 'Confirma la contrasenya'; $lang['Confirm Password'] = 'Confirma la contrasenya';
$lang['Connection settings'] = 'Paràmetres de connexió'; $lang['Connection settings'] = 'Paràmetres de connexió';
$lang['Login'] = 'Inici de sessió'; $lang['Login'] = 'Inici de sessió';
@ -77,7 +77,7 @@ $lang['Forgot your password?'] = 'Has oblidat la contrasenya?';
$lang['Go through the gallery as a visitor'] = 'Entra a la galeria com a visitant'; $lang['Go through the gallery as a visitor'] = 'Entra a la galeria com a visitant';
$lang['Help'] = 'Ajuda'; $lang['Help'] = 'Ajuda';
$lang['Identification'] = 'Identificació'; $lang['Identification'] = 'Identificació';
$lang['Image only RSS feed'] = 'Canal RSS només d\imatges'; $lang['Photos only RSS feed'] = 'Canal RSS només d\imatges';
$lang['Keyword'] = 'Paraula clau'; $lang['Keyword'] = 'Paraula clau';
$lang['Links'] = 'Enllaços'; $lang['Links'] = 'Enllaços';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -112,7 +112,7 @@ $lang['Sort by'] = 'Ordena per';
$lang['Sort order'] = 'Ordenar'; //?? $lang['Sort order'] = 'Ordenar'; //??
$lang['Tag'] = 'Etiqueta'; $lang['Tag'] = 'Etiqueta';
$lang['Tags'] = 'Etiquetes'; $lang['Tags'] = 'Etiquetes';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Els avisos per canal RSS aporten avisos de notícies d\'aquest lloc web : imatges noves, categories actualitzades, comentaris nous. Utilitzeu un lector de canal de RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Els avisos per canal RSS aporten avisos de notícies d\'aquest lloc web : imatges noves, categories actualitzades, comentaris nous. Utilitzeu un lector de canal de RSS.';
$lang['Unknown feed identifier'] = 'Identificador de canal desconegut'; $lang['Unknown feed identifier'] = 'Identificador de canal desconegut';
$lang['User comments'] = 'Comentaris dels usuaris'; $lang['User comments'] = 'Comentaris dels usuaris';
$lang['Username'] = 'Nom d\'usuari'; $lang['Username'] = 'Nom d\'usuari';
@ -198,12 +198,12 @@ $lang['Last'] = 'Última';
$lang['Logout'] = 'Sortida'; $lang['Logout'] = 'Sortida';
$lang['E-mail address'] = 'Adreça de correu electrònic'; $lang['E-mail address'] = 'Adreça de correu electrònic';
$lang['obligatory'] = 'Obligatori'; $lang['obligatory'] = 'Obligatori';
$lang['Maximum height of the pictures'] = 'Alçada màxima de les imatges'; $lang['Maximum photo height'] = 'Alçada màxima de les imatges';
$lang['Maximum height must be a number superior to 50'] = 'L\'alçada màxima ha de ser un número superior a 50'; $lang['Maximum height must be a number superior to 50'] = 'L\'alçada màxima ha de ser un número superior a 50';
$lang['Maximum width of the pictures'] = 'Amplada màxima de les imatges'; $lang['Maximum photo width'] = 'Amplada màxima de les imatges';
$lang['Maximum width must be a number superior to 50'] = 'L\'amplada màxima ha de ser un número superior a 50'; $lang['Maximum width must be a number superior to 50'] = 'L\'amplada màxima ha de ser un número superior a 50';
$lang['display a calendar by creation date'] = 'visualitza un calendari per data de creació'; $lang['display a calendar by creation date'] = 'visualitza un calendari per data de creació';
$lang['display all elements in all sub-albums'] = 'visualitza tots els elements de totes les sub-categories'; $lang['display all photos in all sub-albums'] = 'visualitza tots els elements de totes les sub-categories';
$lang['return to normal view mode'] = 'Torna a la vista normal'; $lang['return to normal view mode'] = 'Torna a la vista normal';
$lang['display a calendar by posted date'] = 'visualitza un calendari per data de publicació'; $lang['display a calendar by posted date'] = 'visualitza un calendari per data de publicació';
$lang['month'][10] = 'Octubre'; $lang['month'][10] = 'Octubre';
@ -220,8 +220,8 @@ $lang['month'][8] = 'Agost';
$lang['month'][9] = 'Setembre'; $lang['month'][9] = 'Setembre';
$lang['Most visited'] = 'Més visitades'; $lang['Most visited'] = 'Més visitades';
$lang['display most visited photos'] = 'visualitza les imatges més visitades'; $lang['display most visited photos'] = 'visualitza les imatges més visitades';
$lang['The number of images per row must be a not null scalar'] = 'El nombre d\'imatges per fila ha de ser un escalar no nul'; $lang['The number of photos per row must be a not null scalar'] = 'El nombre d\'imatges per fila ha de ser un escalar no nul';
$lang['Number of images per row'] = 'Nombre d\'imatges per fila'; $lang['Number of photos per row'] = 'Nombre d\'imatges per fila';
$lang['The number of rows per page must be a not null scalar'] = 'El nombre de files per pàgina ha de ser un escalar no nul'; $lang['The number of rows per page must be a not null scalar'] = 'El nombre de files per pàgina ha de ser un escalar no nul';
$lang['Number of rows per page'] = 'Nombre de files per pàgina'; $lang['Number of rows per page'] = 'Nombre de files per pàgina';
$lang['Unknown identifier'] = 'identificador desconegut'; $lang['Unknown identifier'] = 'identificador desconegut';
@ -230,12 +230,12 @@ $lang['Rate this photo'] = 'Valoreu aquesta imatge';
$lang['Next'] = 'Següent'; $lang['Next'] = 'Següent';
$lang['Home'] = 'Inici'; $lang['Home'] = 'Inici';
$lang['no rate'] = 'no valorada'; $lang['no rate'] = 'no valorada';
$lang['Elements posted within the last %d day.'] = 'Elements publicats en els últims %d dies.'; $lang['Photos posted within the last %d day.'] = 'Elements publicats en els últims %d dies.';
$lang['Elements posted within the last %d days.'] = 'Elements publicats en els últims %d dies.'; $lang['Photos posted within the last %d days.'] = 'Elements publicats en els últims %d dies.';
$lang['password updated'] = 'contrasenya actualitzada'; $lang['password updated'] = 'contrasenya actualitzada';
$lang['Recent period must be a positive integer value'] = 'El periode recent ha de ser un valor enter positiu'; $lang['Recent period must be a positive integer value'] = 'El periode recent ha de ser un valor enter positiu';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'imatge'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'imatge';
$lang['Click on the picture to see it in high definition'] = 'Cliqueu sobre la imatge per veure-la en alta definició.'; $lang['Click on the photo to see it in high definition'] = 'Cliqueu sobre la imatge per veure-la en alta definició.';
$lang['Show file metadata'] = 'Mostra el fitxer de les metadades'; $lang['Show file metadata'] = 'Mostra el fitxer de les metadades';
$lang['Powered by'] = 'Impulsat per'; $lang['Powered by'] = 'Impulsat per';
$lang['Preferences'] = 'Preferències'; $lang['Preferences'] = 'Preferències';
@ -355,8 +355,6 @@ $lang['delete all photos from your favorites'] = 'elimina totes les imatges de l
$lang['Sent by'] = 'Enviat per'; $lang['Sent by'] = 'Enviat per';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Les galetes estan bloquejades o el navegador no en permet l\'ús. Heu d\'habilitar les galetes per poder-vos connectar.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Les galetes estan bloquejades o el navegador no en permet l\'ús. Heu d\'habilitar les galetes per poder-vos connectar.';
$lang['Some info about this picture'] = "Una mica d'informació sobre aquesta imatge";
$lang['Some more (technical) info about this picture'] = "Una mica més d'informació (tècnica) sobre aquesta imatge";
$lang['edit this comment'] = "edita aquest comentari"; $lang['edit this comment'] = "edita aquest comentari";
$lang['Edit a comment'] = "Edita un comentari"; $lang['Edit a comment'] = "Edita un comentari";

View file

@ -5,7 +5,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2009 Pavel Budka & Petr Jirsa http://pbudka.co.cc | // | Copyright(C) 2009 Pavel Budka & Petr Jirsa http://pbudka.co.cc |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -58,7 +58,7 @@ $lang['Average rate'] = 'Průměrné hodnocení';
$lang['Albums'] = 'Alba'; $lang['Albums'] = 'Alba';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Zavřít okno'; $lang['Close this window'] = 'Zavřít okno';
$lang['Complete RSS feed (images, comments)'] = 'Kompletní RSS vlákno (fotografie, komentáře)'; $lang['Complete RSS feed (photos, comments)'] = 'Kompletní RSS vlákno (fotografie, komentáře)';
$lang['Confirm Password'] = 'Potvrdit heslo'; $lang['Confirm Password'] = 'Potvrdit heslo';
$lang['Connection settings'] = 'Nastavení přihlašovacích údajů'; $lang['Connection settings'] = 'Nastavení přihlašovacích údajů';
$lang['Login'] = 'Přihlásit se'; $lang['Login'] = 'Přihlásit se';
@ -83,7 +83,7 @@ $lang['Forgot your password?'] = 'Zapomenuté heslo?';
$lang['Go through the gallery as a visitor'] = 'Procházet galerii jako host'; $lang['Go through the gallery as a visitor'] = 'Procházet galerii jako host';
$lang['Help'] = 'Nápověda'; $lang['Help'] = 'Nápověda';
$lang['Identification'] = 'Identifikace'; $lang['Identification'] = 'Identifikace';
$lang['Image only RSS feed'] = 'RSS vlákno jen s fotografiemi'; $lang['Photos only RSS feed'] = 'RSS vlákno jen s fotografiemi';
$lang['Keyword'] = 'Klíčové slovo'; $lang['Keyword'] = 'Klíčové slovo';
$lang['Links'] = 'Odkazy'; $lang['Links'] = 'Odkazy';
$lang['N/A'] = 'nezadáno'; $lang['N/A'] = 'nezadáno';
@ -118,7 +118,7 @@ $lang['Sort by'] = 'Řadit podle';
$lang['Sort order'] = 'Směr řazení'; $lang['Sort order'] = 'Směr řazení';
$lang['Tag'] = 'Klíčové slovo'; $lang['Tag'] = 'Klíčové slovo';
$lang['Tags'] = 'Klíčová slova'; $lang['Tags'] = 'Klíčová slova';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS zdroj obsahuje upozornění na nové události z tohoto webu: nové fotky, aktualizované galerie, nové komentáře. K použití se čtečkami RSS kanálů.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS zdroj obsahuje upozornění na nové události z tohoto webu: nové fotky, aktualizované galerie, nové komentáře. K použití se čtečkami RSS kanálů.';
$lang['Unknown feed identifier'] = 'Neznámý identifikátor vlákna'; $lang['Unknown feed identifier'] = 'Neznámý identifikátor vlákna';
$lang['User comments'] = 'Komentáře uživatelů'; $lang['User comments'] = 'Komentáře uživatelů';
$lang['Username'] = 'Uživatelské jméno'; $lang['Username'] = 'Uživatelské jméno';
@ -206,12 +206,12 @@ $lang['Last'] = 'Poslední';
$lang['Logout'] = 'Odhlásit se'; $lang['Logout'] = 'Odhlásit se';
$lang['E-mail address'] = 'E-mailová adresa'; $lang['E-mail address'] = 'E-mailová adresa';
$lang['obligatory'] = 'povinné'; $lang['obligatory'] = 'povinné';
$lang['Maximum height of the pictures'] = 'Maximální výška fotografií'; $lang['Maximum photo height'] = 'Maximální výška fotografií';
$lang['Maximum height must be a number superior to 50'] = 'Maximální výška musí být číslo vetší než 50'; $lang['Maximum height must be a number superior to 50'] = 'Maximální výška musí být číslo vetší než 50';
$lang['Maximum width of the pictures'] = 'Maximální šířka fotografií'; $lang['Maximum photo width'] = 'Maximální šířka fotografií';
$lang['Maximum width must be a number superior to 50'] = 'Maximální šířka musí být číslo vetší než 50'; $lang['Maximum width must be a number superior to 50'] = 'Maximální šířka musí být číslo vetší než 50';
$lang['display a calendar by creation date'] = 'Zobrazit v kalendáři podle datumu vytvoření'; $lang['display a calendar by creation date'] = 'Zobrazit v kalendáři podle datumu vytvoření';
$lang['display all elements in all sub-albums'] = 'zobrazit všechny prvky ve všech albech a sub-albech'; $lang['display all photos in all sub-albums'] = 'zobrazit všechny prvky ve všech albech a sub-albech';
$lang['return to normal view mode'] = 'Návrat do normálního zobrazení'; $lang['return to normal view mode'] = 'Návrat do normálního zobrazení';
$lang['display a calendar by posted date'] = 'Zobrazit v kalendáři podle data vložení'; $lang['display a calendar by posted date'] = 'Zobrazit v kalendáři podle data vložení';
$lang['month'][10] = 'Říjen'; $lang['month'][10] = 'Říjen';
@ -228,8 +228,8 @@ $lang['month'][8] = 'Srpen';
$lang['month'][9] = 'Září'; $lang['month'][9] = 'Září';
$lang['Most visited'] = 'Nejčastěji zobrazované'; $lang['Most visited'] = 'Nejčastěji zobrazované';
$lang['display most visited photos'] = 'Nejčastěji zobrazované fotografie'; $lang['display most visited photos'] = 'Nejčastěji zobrazované fotografie';
$lang['The number of images per row must be a not null scalar'] = 'Počet fotografií v řádku musí být číslo větší než 0.'; $lang['The number of photos per row must be a not null scalar'] = 'Počet fotografií v řádku musí být číslo větší než 0.';
$lang['Number of images per row'] = 'Počet fotografií v řádku'; $lang['Number of photos per row'] = 'Počet fotografií v řádku';
$lang['The number of rows per page must be a not null scalar'] = 'Počet řádků na stránce musí být číslo větší než 0.'; $lang['The number of rows per page must be a not null scalar'] = 'Počet řádků na stránce musí být číslo větší než 0.';
$lang['Number of rows per page'] = 'Počet řádků na stránce'; $lang['Number of rows per page'] = 'Počet řádků na stránce';
$lang['Unknown identifier'] = 'Neznámý identifikátor'; $lang['Unknown identifier'] = 'Neznámý identifikátor';
@ -237,12 +237,12 @@ $lang['New password'] = 'Nové heslo';
$lang['Rate this photo'] = 'Ohodnotit tuto fotografii'; $lang['Rate this photo'] = 'Ohodnotit tuto fotografii';
$lang['Next'] = 'Následující'; $lang['Next'] = 'Následující';
$lang['no rate'] = 'bez hodnocení'; $lang['no rate'] = 'bez hodnocení';
$lang['Elements posted within the last %d day.'] = 'Fotografie vložené během posledního %d dne.'; $lang['Photos posted within the last %d day.'] = 'Fotografie vložené během posledního %d dne.';
$lang['Elements posted within the last %d days.'] = 'Fotografie vložené během posledních %d dnů.'; $lang['Photos posted within the last %d days.'] = 'Fotografie vložené během posledních %d dnů.';
$lang['password updated'] = 'heslo aktualizováno'; $lang['password updated'] = 'heslo aktualizováno';
$lang['Recent period must be a positive integer value'] = 'Aktuální interval musí být číslo větší než 0.'; $lang['Recent period must be a positive integer value'] = 'Aktuální interval musí být číslo větší než 0.';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'fotografie'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'fotografie';
$lang['Click on the picture to see it in high definition'] = 'Pro zobrazení ve vyšším rozlišení klikněte na fotografii'; $lang['Click on the photo to see it in high definition'] = 'Pro zobrazení ve vyšším rozlišení klikněte na fotografii';
$lang['Show file metadata'] = 'Zobrazit metadata'; $lang['Show file metadata'] = 'Zobrazit metadata';
$lang['Powered by'] = 'Publikováno pomocí aplikace'; $lang['Powered by'] = 'Publikováno pomocí aplikace';
$lang['Preferences'] = 'Nastavení'; $lang['Preferences'] = 'Nastavení';
@ -364,8 +364,6 @@ $lang['Reset to default values'] = 'Obnovit výchozí hodnoty';
$lang['delete all photos from your favorites'] = 'vymazat všechny obrázky z Vašich oblíbených'; $lang['delete all photos from your favorites'] = 'vymazat všechny obrázky z Vašich oblíbených';
$lang['Sent by'] = 'Posláno'; $lang['Sent by'] = 'Posláno';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies jsou buď blokovány, nebo nejsou povoleny ve Vašem prohlížeči. Musíte povolit cookies, aby bylo možné se přihlásit.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies jsou buď blokovány, nebo nejsou povoleny ve Vašem prohlížeči. Musíte povolit cookies, aby bylo možné se přihlásit.';
$lang['Some info about this picture'] = 'Informace o této fotografii';
$lang['Some more (technical) info about this picture'] = 'Více informací o této fotografii (technické)';
$lang['edit this comment'] = 'upravit tento komentář'; $lang['edit this comment'] = 'upravit tento komentář';
$lang['Edit a comment'] = 'Upravit komentář'; $lang['Edit a comment'] = 'Upravit komentář';
$lang['(!) This comment requires validation'] = '(!) Tento komentář vyžaduje kontrolu'; $lang['(!) This comment requires validation'] = '(!) Tento komentář vyžaduje kontrolu';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Gennemsnitlig karakter';
$lang['Albums'] = 'kategorier'; $lang['Albums'] = 'kategorier';
$lang['Album'] = 'kategori'; $lang['Album'] = 'kategori';
$lang['Close this window'] = 'Luk dette vindue'; $lang['Close this window'] = 'Luk dette vindue';
$lang['Complete RSS feed (images, comments)'] = 'Komplet RSS feed (fotos, kommentarer)'; $lang['Complete RSS feed (photos, comments)'] = 'Komplet RSS feed (fotos, kommentarer)';
$lang['Confirm Password'] = 'Bekræft Password'; $lang['Confirm Password'] = 'Bekræft Password';
$lang['Connection settings'] = 'Connection settings'; $lang['Connection settings'] = 'Connection settings';
$lang['Login'] = 'Login'; $lang['Login'] = 'Login';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Glemt dit password?';
$lang['Go through the gallery as a visitor'] = 'Kig i galleriet som gæst'; $lang['Go through the gallery as a visitor'] = 'Kig i galleriet som gæst';
$lang['Help'] = 'Hjælp'; $lang['Help'] = 'Hjælp';
$lang['Identification'] = 'Identifikation'; $lang['Identification'] = 'Identifikation';
$lang['Image only RSS feed'] = 'Kun foto RSS feed'; $lang['Photos only RSS feed'] = 'Kun foto RSS feed';
$lang['Keyword'] = 'Nøgleord'; $lang['Keyword'] = 'Nøgleord';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Sorter ';
$lang['Sort order'] = 'Sorterings orden'; $lang['Sort order'] = 'Sorterings orden';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS feed giver besked om nyheder fra denne side : nye fotos, opdaterede kategorier, nye kommentarer. Brug em RSS læser.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS feed giver besked om nyheder fra denne side : nye fotos, opdaterede kategorier, nye kommentarer. Brug em RSS læser.';
$lang['Unknown feed identifier'] = 'Ukendt feed identifikation'; $lang['Unknown feed identifier'] = 'Ukendt feed identifikation';
$lang['User comments'] = 'Bruger kommentarer'; $lang['User comments'] = 'Bruger kommentarer';
$lang['Username'] = 'Brugernavn'; $lang['Username'] = 'Brugernavn';
@ -202,12 +202,12 @@ $lang['Last'] = 'Sidste';
$lang['Logout'] = 'Logout'; $lang['Logout'] = 'Logout';
$lang['E-mail address'] = 'E-mail addresse'; $lang['E-mail address'] = 'E-mail addresse';
$lang['obligatory'] = 'obligatorisk'; $lang['obligatory'] = 'obligatorisk';
$lang['Maximum height of the pictures'] = 'Maksimum højde på fotos'; $lang['Maximum photo height'] = 'Maksimum højde på fotos';
$lang['Maximum height must be a number superior to 50'] = 'Maksimum højde skal være højere end 50'; $lang['Maximum height must be a number superior to 50'] = 'Maksimum højde skal være højere end 50';
$lang['Maximum width of the pictures'] = 'Maksimum bredde på fotos'; $lang['Maximum photo width'] = 'Maksimum bredde på fotos';
$lang['Maximum width must be a number superior to 50'] = 'Maksimum bredde skal være højere end 50'; $lang['Maximum width must be a number superior to 50'] = 'Maksimum bredde skal være højere end 50';
$lang['display a calendar by creation date'] = 'viser en kalender med oprettelses datoer'; $lang['display a calendar by creation date'] = 'viser en kalender med oprettelses datoer';
$lang['display all elements in all sub-albums'] = 'viser alle elementer i alle sub-kategorier'; $lang['display all photos in all sub-albums'] = 'viser alle elementer i alle sub-kategorier';
$lang['return to normal view mode'] = 'tilbage til normal visning'; $lang['return to normal view mode'] = 'tilbage til normal visning';
$lang['display a calendar by posted date'] = 'viser en kalender med oprettelse datoer'; $lang['display a calendar by posted date'] = 'viser en kalender med oprettelse datoer';
$lang['month'][10] = 'Oktober'; $lang['month'][10] = 'Oktober';
@ -224,8 +224,8 @@ $lang['month'][8] = 'August';
$lang['month'][9] = 'September'; $lang['month'][9] = 'September';
$lang['Most visited'] = 'Mest sete'; $lang['Most visited'] = 'Mest sete';
$lang['display most visited photos'] = 'vis mest sete fotos'; $lang['display most visited photos'] = 'vis mest sete fotos';
$lang['The number of images per row must be a not null scalar'] = 'Antallet af fotos pr. række må ikke være nul'; $lang['The number of photos per row must be a not null scalar'] = 'Antallet af fotos pr. række må ikke være nul';
$lang['Number of images per row'] = 'antallet af fotos pr. række'; $lang['Number of photos per row'] = 'antallet af fotos pr. række';
$lang['The number of rows per page must be a not null scalar'] = 'Antallet af rækker pr. side må ikke være nul'; $lang['The number of rows per page must be a not null scalar'] = 'Antallet af rækker pr. side må ikke være nul';
$lang['Number of rows per page'] = 'Antallet af rækker pr. side'; $lang['Number of rows per page'] = 'Antallet af rækker pr. side';
$lang['Unknown identifier'] = 'Ukendt identifier'; $lang['Unknown identifier'] = 'Ukendt identifier';
@ -233,12 +233,12 @@ $lang['New password'] = 'Nyt password';
$lang['Rate this photo'] = 'Bedøm dette foto'; $lang['Rate this photo'] = 'Bedøm dette foto';
$lang['Next'] = 'Næste'; $lang['Next'] = 'Næste';
$lang['no rate'] = 'ingen bedømmelse'; $lang['no rate'] = 'ingen bedømmelse';
$lang['Elements posted within the last %d day.'] = 'Elementer oprettet indenfor de %d dage.'; $lang['Photos posted within the last %d day.'] = 'Elementer oprettet indenfor de %d dage.';
$lang['Elements posted within the last %d days.'] = 'Elementer oprettet indenfor de %d dage.'; $lang['Photos posted within the last %d days.'] = 'Elementer oprettet indenfor de %d dage.';
$lang['password updated'] = 'password opdateret'; $lang['password updated'] = 'password opdateret';
$lang['Recent period must be a positive integer value'] = 'Seneste periode skal være et positivt heltal værdi'; $lang['Recent period must be a positive integer value'] = 'Seneste periode skal være et positivt heltal værdi';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'foto'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'foto';
$lang['Click on the picture to see it in high definition'] = 'klik på fotoet for at se det i høj opløsning'; $lang['Click on the photo to see it in high definition'] = 'klik på fotoet for at se det i høj opløsning';
$lang['Show file metadata'] = 'Vis fotoets metadata'; $lang['Show file metadata'] = 'Vis fotoets metadata';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Præferencer'; $lang['Preferences'] = 'Præferencer';
@ -354,8 +354,6 @@ $lang['Reset to default values'] = 'Reset til default';
$lang['delete all photos from your favorites'] = 'slet alle filer fra dine favoritter'; $lang['delete all photos from your favorites'] = 'slet alle filer fra dine favoritter';
$lang['Sent by'] = 'Sent af'; $lang['Sent by'] = 'Sent af';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies er blokkeret eller ikke supporteret af din browser. Aktiver cookies for at komme på.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies er blokkeret eller ikke supporteret af din browser. Aktiver cookies for at komme på.';
$lang['Some info about this picture'] = 'Informationer om dette foto';
$lang['Some more (technical) info about this picture'] = 'Flere (tekniske) informationer om dette foto';
$lang['edit this comment'] = 'ret denne kommentar'; $lang['edit this comment'] = 'ret denne kommentar';
$lang['Edit a comment'] = 'Rediger en kommentar'; $lang['Edit a comment'] = 'Rediger en kommentar';
$lang['Are you sure?'] = 'Er du sikker?'; $lang['Are you sure?'] = 'Er du sikker?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Durchschnittliche Bewertung';
$lang['Albums'] = 'Alben'; $lang['Albums'] = 'Alben';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Dieses Fenster schließen'; $lang['Close this window'] = 'Dieses Fenster schließen';
$lang['Complete RSS feed (images, comments)'] = 'RSS-Feeds komplett (Bilder, Kommentare)'; $lang['Complete RSS feed (photos, comments)'] = 'RSS-Feeds komplett (Bilder, Kommentare)';
$lang['Confirm Password'] = 'Neues Passwort bestätigen'; $lang['Confirm Password'] = 'Neues Passwort bestätigen';
$lang['Connection settings'] = 'Login-Einstellungen'; $lang['Connection settings'] = 'Login-Einstellungen';
$lang['Login'] = 'Anmeldung'; $lang['Login'] = 'Anmeldung';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Passwort vergessen?';
$lang['Go through the gallery as a visitor'] = 'Besuche die Galerie mit Besucherrechten'; $lang['Go through the gallery as a visitor'] = 'Besuche die Galerie mit Besucherrechten';
$lang['Help'] = 'Hilfe'; $lang['Help'] = 'Hilfe';
$lang['Identification'] = 'Anmeldung'; $lang['Identification'] = 'Anmeldung';
$lang['Image only RSS feed'] = 'Bilder RSS-Feed'; $lang['Photos only RSS feed'] = 'Bilder RSS-Feed';
$lang['Keyword'] = 'Stichwort'; $lang['Keyword'] = 'Stichwort';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'nicht vorhanden'; $lang['N/A'] = 'nicht vorhanden';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Sortieren nach';
$lang['Sort order'] = 'Sortierreihenfolge'; $lang['Sort order'] = 'Sortierreihenfolge';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Der RSS Feed bietet Benachrichtigungen über Events dieser Website an: neue Bilder, Aktualisierungen der Alben, neue Kommentare. Verwendbar durch einen RSS-Feed-Reader.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Der RSS Feed bietet Benachrichtigungen über Events dieser Website an: neue Bilder, Aktualisierungen der Alben, neue Kommentare. Verwendbar durch einen RSS-Feed-Reader.';
$lang['Unknown feed identifier'] = 'Feed-ID unbekanntem'; $lang['Unknown feed identifier'] = 'Feed-ID unbekanntem';
$lang['User comments'] = 'Benutzerkommentare'; $lang['User comments'] = 'Benutzerkommentare';
$lang['Username'] = 'Benutzername'; $lang['Username'] = 'Benutzername';
@ -202,12 +202,12 @@ $lang['Last'] = 'Letzte Seite';
$lang['Logout'] = 'Abmelden'; $lang['Logout'] = 'Abmelden';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = 'obligatorisch'; $lang['obligatory'] = 'obligatorisch';
$lang['Maximum height of the pictures'] = 'Maximale Höhe der Bilder'; $lang['Maximum photo height'] = '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 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 photo width'] = 'Maximale Breite der Bilder';
$lang['Maximum width must be a number superior to 50'] = 'Die Breite der Bilder muss mehr als 50'; $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 a calendar by creation date'] = 'zeige einen Kalender nach Erstellungsdatum';
$lang['display all elements in all sub-albums'] = 'Zeigt alle Elemente in allen Alben und Sub-Alben an'; $lang['display all photos in all sub-albums'] = 'Zeigt alle Elemente in allen Alben und Sub-Alben an';
$lang['return to normal view mode'] = 'Zurück zur normalen Ansicht'; $lang['return to normal view mode'] = 'Zurück zur normalen Ansicht';
$lang['display a calendar by posted date'] = 'zeige einen Kalender nach Einstellungsdatum'; $lang['display a calendar by posted date'] = 'zeige einen Kalender nach Einstellungsdatum';
$lang['month'][10] = 'Oktober'; $lang['month'][10] = 'Oktober';
@ -224,8 +224,8 @@ $lang['month'][8] = 'August';
$lang['month'][9] = 'September'; $lang['month'][9] = 'September';
$lang['Most visited'] = 'Am häufigsten gesehen'; $lang['Most visited'] = 'Am häufigsten gesehen';
$lang['display most visited photos'] = 'zeigt am meisten besuchte Bilder'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Anzahl der Zeilen pro Seite';
$lang['Unknown identifier'] = 'Identifikatoren unbekannt'; $lang['Unknown identifier'] = 'Identifikatoren unbekannt';
@ -233,12 +233,12 @@ $lang['New password'] = 'Neues Passwort';
$lang['Rate this photo'] = 'Bewerten Sie dieses Bild'; $lang['Rate this photo'] = 'Bewerten Sie dieses Bild';
$lang['Next'] = 'Vorwärts'; $lang['Next'] = 'Vorwärts';
$lang['no rate'] = 'noch keine Bewertung'; $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['Photos 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['Photos 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['password updated'] = 'Passwort aktualisiert';
$lang['Recent period must be a positive integer value'] = 'Der Zeitraum der Neuheit muss eine positive ganze Zahl'; $lang['Recent period must be a positive integer value'] = 'Der Zeitraum der Neuheit muss eine positive ganze Zahl';
$lang['picture'] = 'Bild'; $lang['photo'] = '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['Click on the photo 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['Show file metadata'] = 'Zeigen die Meta-Daten in der Datei';
$lang['Powered by'] = 'Unterstützt von'; $lang['Powered by'] = 'Unterstützt von';
$lang['Preferences'] = 'Einstellungen'; $lang['Preferences'] = 'Einstellungen';
@ -358,8 +358,6 @@ $lang['Sent by'] = 'Gesendet von';
$lang['Are you sure?'] = 'Sind Sie sicher?'; $lang['Are you sure?'] = 'Sind Sie sicher?';
$lang['delete this comment'] = 'Diesen Kommentar löschen'; $lang['delete this comment'] = 'Diesen Kommentar löschen';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies werden geblockt oder nicht von ihrem Browser unterstützt. Sie müssen sie erlauben um sich zu verbinden.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies werden geblockt oder nicht von ihrem Browser unterstützt. Sie müssen sie erlauben um sich zu verbinden.';
$lang['Some info about this picture'] = 'Ein paar Infos über dieses Bild';
$lang['Some more (technical) info about this picture'] = 'Ein paar weitere (technische) Infos über dieses Bild';
$lang['edit this comment'] = 'editiere diesen Kommentar'; $lang['edit this comment'] = 'editiere diesen Kommentar';
$lang['Edit a comment'] = 'Editiere einen Kommentar'; $lang['Edit a comment'] = 'Editiere einen Kommentar';
$lang['(!) This comment requires validation'] = '(!) Dieser Kommentar sollte überprüft werden'; $lang['(!) This comment requires validation'] = '(!) Dieser Kommentar sollte überprüft werden';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = "Average rate";
$lang['Albums'] = "Albums"; $lang['Albums'] = "Albums";
$lang['Album'] = "Album"; $lang['Album'] = "Album";
$lang['Close this window'] = "Close this window"; $lang['Close this window'] = "Close this window";
$lang['Complete RSS feed (images, comments)'] = "Complete RSS feed (images, comments)"; $lang['Complete RSS feed (photos, comments)'] = "Complete RSS feed (photos, comments)";
$lang['Confirm Password'] = "Confirm Password"; $lang['Confirm Password'] = "Confirm Password";
$lang['Connection settings'] = "Connection settings"; $lang['Connection settings'] = "Connection settings";
$lang['Login'] = "Login"; $lang['Login'] = "Login";
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = "Forgot your password?";
$lang['Go through the gallery as a visitor'] = "Navigate the gallery as a visitor"; $lang['Go through the gallery as a visitor'] = "Navigate the gallery as a visitor";
$lang['Help'] = "Help"; $lang['Help'] = "Help";
$lang['Identification'] = "Identification"; $lang['Identification'] = "Identification";
$lang['Image only RSS feed'] = "Images only RSS feed"; $lang['Photos only RSS feed'] = "Photos only RSS feed";
$lang['Keyword'] = "Keyword"; $lang['Keyword'] = "Keyword";
$lang['Links'] = "Links"; $lang['Links'] = "Links";
$lang['N/A'] = "N/A"; $lang['N/A'] = "N/A";
@ -113,7 +113,7 @@ $lang['Sort by'] = "Sort by";
$lang['Sort order'] = "Sort order"; $lang['Sort order'] = "Sort order";
$lang['Tag'] = "Tag"; $lang['Tag'] = "Tag";
$lang['Tags'] = "Tags"; $lang['Tags'] = "Tags";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = "The RSS feed provides notification on new events from this website: new pictures, updated albums, new comments. To be used with a RSS feed reader."; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = "The RSS feed provides notification on new events from this website: new photos, updated albums, new comments. To be used with a RSS feed reader.";
$lang['Unknown feed identifier'] = "Unknown feed identifier"; $lang['Unknown feed identifier'] = "Unknown feed identifier";
$lang['User comments'] = "User comments"; $lang['User comments'] = "User comments";
$lang['Username'] = "Username"; $lang['Username'] = "Username";
@ -200,12 +200,12 @@ $lang['Last'] = "Last";
$lang['Logout'] = "Logout"; $lang['Logout'] = "Logout";
$lang['E-mail address'] = "E-mail address"; $lang['E-mail address'] = "E-mail address";
$lang['obligatory'] = "mandatory"; $lang['obligatory'] = "mandatory";
$lang['Maximum height of the pictures'] = "Pictures maximum height"; $lang['Maximum photo height'] = "Maximum photo height";
$lang['Maximum height must be a number superior to 50'] = "Maximum height must be a number greater than 50"; $lang['Maximum height must be a number superior to 50'] = "Maximum height must be a number greater than 50";
$lang['Maximum width of the pictures'] = "Pictures maximum width"; $lang['Maximum photo width'] = "Maximum photo width";
$lang['Maximum width must be a number superior to 50'] = "Maximum width must be a number greater than 50"; $lang['Maximum width must be a number superior to 50'] = "Maximum width must be a number greater than 50";
$lang['display a calendar by creation date'] = "display a calendar by creation date"; $lang['display a calendar by creation date'] = "display a calendar by creation date";
$lang['display all elements in all sub-albums'] = "display all elements in all sub-albums"; $lang['display all photos in all sub-albums'] = "display all photos in all sub-albums";
$lang['return to normal view mode'] = "return to normal view mode"; $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['display a calendar by posted date'] = "display a calendar by posted date";
$lang['month'][10] = "October"; $lang['month'][10] = "October";
@ -222,8 +222,8 @@ $lang['month'][8] = "August";
$lang['month'][9] = "September"; $lang['month'][9] = "September";
$lang['Most visited'] = "Most visited"; $lang['Most visited'] = "Most visited";
$lang['display most visited photos'] = "display most visited photos"; $lang['display most visited photos'] = "display most visited photos";
$lang['The number of images per row must be a not null scalar'] = "The number of images per row must be a nonzero integer"; $lang['The number of photos per row must be a not null scalar'] = "The number of photos per row must be a nonzero integer";
$lang['Number of images per row'] = "Number of images per row"; $lang['Number of photos per row'] = "Number of photos per row";
$lang['The number of rows per page must be a not null scalar'] = "The number of rows per page must be a nonzero integer"; $lang['The number of rows per page must be a not null scalar'] = "The number of rows per page must be a nonzero integer";
$lang['Number of rows per page'] = "Number of rows per page"; $lang['Number of rows per page'] = "Number of rows per page";
$lang['Unknown identifier'] = "Unknown identifier"; $lang['Unknown identifier'] = "Unknown identifier";
@ -231,12 +231,12 @@ $lang['New password'] = "New password";
$lang['Rate this photo'] = "Rate this photo"; $lang['Rate this photo'] = "Rate this photo";
$lang['Next'] = "Next"; $lang['Next'] = "Next";
$lang['no rate'] = "no rate"; $lang['no rate'] = "no rate";
$lang['Elements posted within the last %d day.'] = "Elements posted within the last %d day only."; $lang['Photos posted within the last %d day.'] = "Photos posted within the last %d day only.";
$lang['Elements posted within the last %d days.'] = "Elements posted within the last %d days only."; $lang['Photos posted within the last %d days.'] = "Photos posted within the last %d days only.";
$lang['password updated'] = "password updated"; $lang['password updated'] = "password updated";
$lang['Recent period must be a positive integer value'] = "Recent period must be a positive integer value"; $lang['Recent period must be a positive integer value'] = "Recent period must be a positive integer value";
$lang['picture'] = "picture"; $lang['photo'] = "photo";
$lang['Click on the picture to see it in high definition'] = "Click on the picture to see it in high definition"; $lang['Click on the photo to see it in high definition'] = "Click on the photo to see it in high definition";
$lang['Show file metadata'] = "Show file metadata"; $lang['Show file metadata'] = "Show file metadata";
$lang['Powered by'] = "Powered by"; $lang['Powered by'] = "Powered by";
$lang['Preferences'] = "Preferences"; $lang['Preferences'] = "Preferences";
@ -351,8 +351,6 @@ $lang['delete all photos from your favorites'] = "delete all photos from your fa
$lang['Sent by'] = "Sent by"; $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 log in."; $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 log in.";
$lang['Some info about this picture'] = "Information about this picture";
$lang['Some more (technical) info about this picture'] = "More (technical) information about this picture";
$lang['edit this comment'] = "edit this comment"; $lang['edit this comment'] = "edit this comment";
$lang['Edit a comment'] = "Edit a comment"; $lang['Edit a comment'] = "Edit a comment";
$lang['Are you sure?'] = "Are you sure?"; $lang['Are you sure?'] = "Are you sure?";

View file

@ -98,7 +98,7 @@ users.</p>
labels only. Album names, photo names and all descriptions fields are not labels only. Album names, photo names and all descriptions fields are not
localized.</li> localized.</li>
<li><strong>Number of images per row</strong></li> <li><strong>Number of photos per row</strong></li>
<li><strong>Number of rows per page</strong></li> <li><strong>Number of rows per page</strong></li>

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Promedio';
$lang['Albums'] = 'Categorías'; $lang['Albums'] = 'Categorías';
$lang['Album'] = 'Categoría'; $lang['Album'] = 'Categoría';
$lang['Close this window'] = 'Cierre esta ventana'; $lang['Close this window'] = 'Cierre esta ventana';
$lang['Complete RSS feed (images, comments)'] = 'Flujo RSS completo (imágenes, comentarios)'; $lang['Complete RSS feed (photos, comments)'] = 'Flujo RSS completo (imágenes, comentarios)';
$lang['Confirm Password'] = 'Confirme su contraseña'; $lang['Confirm Password'] = 'Confirme su contraseña';
$lang['Connection settings'] = 'Parámetros de conexión'; $lang['Connection settings'] = 'Parámetros de conexión';
$lang['Login'] = 'Conexión'; $lang['Login'] = 'Conexión';
@ -78,7 +78,7 @@ $lang['Filter'] = 'Filtro';
$lang['Forgot your password?'] = 'Olvidó su contraseña?'; $lang['Forgot your password?'] = 'Olvidó su contraseña?';
$lang['Go through the gallery as a visitor'] = 'Recorrer la galería como visitante'; $lang['Go through the gallery as a visitor'] = 'Recorrer la galería como visitante';
$lang['Help'] = 'Ayuda'; $lang['Help'] = 'Ayuda';
$lang['Image only RSS feed'] = 'Flujo RSS de las imágenes'; $lang['Photos only RSS feed'] = 'Flujo RSS de las imágenes';
$lang['Keyword'] = 'Palabra clave'; $lang['Keyword'] = 'Palabra clave';
$lang['Links'] = 'Enlaces'; $lang['Links'] = 'Enlaces';
$lang['N/A'] = 'no disponible'; $lang['N/A'] = 'no disponible';
@ -113,7 +113,7 @@ $lang['Sort by'] = 'Clasificar por';
$lang['Sort order'] = 'Orden de clasificación'; $lang['Sort order'] = 'Orden de clasificación';
$lang['Tag'] = 'Etiqueta'; $lang['Tag'] = 'Etiqueta';
$lang['Tags'] = 'Etiquetas'; $lang['Tags'] = 'Etiquetas';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'El flujo RSS notifica eventos de la galería: imágenes nuevas, categorías actualizadas, nuevos comentarios de usuarios. Debe usarse con un lector de flujos RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'El flujo RSS notifica eventos de la galería: imágenes nuevas, categorías actualizadas, nuevos comentarios de usuarios. Debe usarse con un lector de flujos RSS.';
$lang['Unknown feed identifier'] = 'Identificador de flujo desconocido'; $lang['Unknown feed identifier'] = 'Identificador de flujo desconocido';
$lang['User comments'] = 'Comentarios de usuario'; $lang['User comments'] = 'Comentarios de usuario';
$lang['Username'] = 'Nombre de usuario'; $lang['Username'] = 'Nombre de usuario';
@ -201,12 +201,12 @@ $lang['Last'] = 'Última';
$lang['Logout'] = 'Desconectarse'; $lang['Logout'] = 'Desconectarse';
$lang['E-mail address'] = 'Dirección de correo electrónico'; $lang['E-mail address'] = 'Dirección de correo electrónico';
$lang['obligatory'] = 'obligatorio'; $lang['obligatory'] = 'obligatorio';
$lang['Maximum height of the pictures'] = 'Altura máxima de las imágenes'; $lang['Maximum photo height'] = 'Altura máxima de las imágenes';
$lang['Maximum height must be a number superior to 50'] = 'La altura de las imágenes debe ser superior a 50'; $lang['Maximum height must be a number superior to 50'] = 'La altura de las imágenes debe ser superior a 50';
$lang['Maximum width of the pictures'] = 'Ancho máximo de las imágenes'; $lang['Maximum photo width'] = 'Ancho máximo de las imágenes';
$lang['Maximum width must be a number superior to 50'] = 'El ancho de las imágenes debe ser superior a 50'; $lang['Maximum width must be a number superior to 50'] = 'El ancho de las imágenes debe ser superior a 50';
$lang['display a calendar by creation date'] = 'mostrar un calendario por fecha de creación'; $lang['display a calendar by creation date'] = 'mostrar un calendario por fecha de creación';
$lang['display all elements in all sub-albums'] = 'mostrar de plano los elementos de categorías y sub-categorías'; $lang['display all photos in all sub-albums'] = 'mostrar de plano los elementos de categorías y sub-categorías';
$lang['return to normal view mode'] = 'volver a la apariencia inicial'; $lang['return to normal view mode'] = 'volver a la apariencia inicial';
$lang['display a calendar by posted date'] = 'mostrar un calendario por fecha de agregado'; $lang['display a calendar by posted date'] = 'mostrar un calendario por fecha de agregado';
$lang['month'][10] = 'Octubre'; $lang['month'][10] = 'Octubre';
@ -223,8 +223,8 @@ $lang['month'][8] = 'Agosto';
$lang['month'][9] = 'Septiembre'; $lang['month'][9] = 'Septiembre';
$lang['Most visited'] = 'Las más vistas'; $lang['Most visited'] = 'Las más vistas';
$lang['display most visited photos'] = 'mostrar las imágenes más vistas'; $lang['display most visited photos'] = 'mostrar las imágenes más vistas';
$lang['The number of images per row must be a not null scalar'] = 'La cantidad de imágenes por línea debe ser un número entero superior a cero'; $lang['The number of photos per row must be a not null scalar'] = 'La cantidad de imágenes por línea debe ser un número entero superior a cero';
$lang['Number of images per row'] = 'Cantidad de diapositivas por línea'; $lang['Number of photos per row'] = 'Cantidad de diapositivas por línea';
$lang['The number of rows per page must be a not null scalar'] = 'La cantidad de líneas por página debe ser un número entero superior a cero'; $lang['The number of rows per page must be a not null scalar'] = 'La cantidad de líneas por página debe ser un número entero superior a cero';
$lang['Number of rows per page'] = 'Cantidad de líneas por página'; $lang['Number of rows per page'] = 'Cantidad de líneas por página';
$lang['Unknown identifier'] = 'Identificador desconocido'; $lang['Unknown identifier'] = 'Identificador desconocido';
@ -232,12 +232,12 @@ $lang['New password'] = 'Nueva contraseña';
$lang['Rate this photo'] = 'Votar esta imagen'; $lang['Rate this photo'] = 'Votar esta imagen';
$lang['Next'] = 'Siguiente'; $lang['Next'] = 'Siguiente';
$lang['no rate'] = 'sin calificar'; $lang['no rate'] = 'sin calificar';
$lang['Elements posted within the last %d day.'] = 'Se han filtrado los elementos para mostrar sólo los recientes de menos de %d día.'; $lang['Photos posted within the last %d day.'] = 'Se han filtrado los elementos para mostrar sólo los recientes de menos de %d día.';
$lang['Elements posted within the last %d days.'] = 'Se han filtrado los elementos para mostrar sólo los recientes de menos de %d días.'; $lang['Photos posted within the last %d days.'] = 'Se han filtrado los elementos para mostrar sólo los recientes de menos de %d días.';
$lang['password updated'] = 'contraseña actualizada'; $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['Recent period must be a positive integer value'] = 'El período debe ser un número entero positivo';
$lang['picture'] = 'imagen'; $lang['photo'] = 'imagen';
$lang['Click on the picture to see it in high definition'] = 'Haga clic en la imagen para verla en alta resolución'; $lang['Click on the photo to see it in high definition'] = 'Haga clic en la imagen para verla en alta resolución';
$lang['Show file metadata'] = 'Mostrar los meta-datos del archivo'; $lang['Show file metadata'] = 'Mostrar los meta-datos del archivo';
$lang['Powered by'] = 'Puesto en página por'; $lang['Powered by'] = 'Puesto en página por';
$lang['Preferences'] = 'Preferencias'; $lang['Preferences'] = 'Preferencias';
@ -353,8 +353,6 @@ $lang['Reset to default values'] = 'Resetear a los valores por defecto';
$lang['delete all photos from your favorites'] = 'borrar todas las imágenes de tus favoritos'; $lang['delete all photos from your favorites'] = 'borrar todas las imágenes de tus favoritos';
$lang['Sent by'] = 'Enviado por'; $lang['Sent by'] = 'Enviado por';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Tu navegador web bloquea las cookies o no las sopporta. Para conectarse es necesario activar las cookies.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Tu navegador web bloquea las cookies o no las sopporta. Para conectarse es necesario activar las cookies.';
$lang['Some info about this picture'] = 'Informaciones de esta imagen';
$lang['Some more (technical) info about this picture'] = 'Información (técnica) de esta imagen';
$lang['edit this comment'] = 'editar este comentario'; $lang['edit this comment'] = 'editar este comentario';
$lang['Edit a comment'] = 'Editar un comentario'; $lang['Edit a comment'] = 'Editar un comentario';
$lang['Are you sure?'] = 'Seguro?'; $lang['Are you sure?'] = 'Seguro?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Valoración promedio';
$lang['Albums'] = 'Albums'; $lang['Albums'] = 'Albums';
$lang['Album'] = 'Álbum'; $lang['Album'] = 'Álbum';
$lang['Close this window'] = 'Cerrar la ventana'; $lang['Close this window'] = 'Cerrar la ventana';
$lang['Complete RSS feed (images, comments)'] = 'Flujo RSS completo (imágenes, comentarios)'; $lang['Complete RSS feed (photos, comments)'] = 'Flujo RSS completo (imágenes, comentarios)';
$lang['Confirm Password'] = 'Confirmar la contraseña'; $lang['Confirm Password'] = 'Confirmar la contraseña';
$lang['Connection settings'] = 'Datos de conexión'; $lang['Connection settings'] = 'Datos de conexión';
$lang['Login'] = 'Identificarse'; $lang['Login'] = 'Identificarse';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = '¿Olvidó su contraseña?';
$lang['Go through the gallery as a visitor'] = 'Recorrer la galería como visitante'; $lang['Go through the gallery as a visitor'] = 'Recorrer la galería como visitante';
$lang['Help'] = 'Ayuda'; $lang['Help'] = 'Ayuda';
$lang['Identification'] = 'Identificación'; $lang['Identification'] = 'Identificación';
$lang['Image only RSS feed'] = 'Contenido RSS: sólo imagen'; $lang['Photos only RSS feed'] = 'Contenido RSS: sólo imagen';
$lang['Keyword'] = 'Palabra clave'; $lang['Keyword'] = 'Palabra clave';
$lang['Links'] = 'Enlaces'; $lang['Links'] = 'Enlaces';
$lang['N/A'] = 'no disponible'; $lang['N/A'] = 'no disponible';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Clasificar según';
$lang['Sort order'] = 'Orden de Clasificación'; $lang['Sort order'] = 'Orden de Clasificación';
$lang['Tag'] = 'Etiqueta'; $lang['Tag'] = 'Etiqueta';
$lang['Tags'] = 'Etiquetas'; $lang['Tags'] = 'Etiquetas';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'El flujo RSS notifica los eventos de la galeria : fotos nuevas, àlbumes actualizados, nuevos comentarios usuario. Para utilizar con un lecteur de flujo RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'El flujo RSS notifica los eventos de la galeria : fotos nuevas, àlbumes actualizados, nuevos comentarios usuario. Para utilizar con un lecteur de flujo RSS.';
$lang['Unknown feed identifier'] = 'Identificador de RSS desconocido'; $lang['Unknown feed identifier'] = 'Identificador de RSS desconocido';
$lang['User comments'] = 'Comentarios del usuario'; $lang['User comments'] = 'Comentarios del usuario';
$lang['Username'] = 'Nombre del usuario'; $lang['Username'] = 'Nombre del usuario';
@ -201,12 +201,12 @@ $lang['Last'] = 'Última página';
$lang['Logout'] = 'Desconexión'; $lang['Logout'] = 'Desconexión';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = 'obligatorio'; $lang['obligatory'] = 'obligatorio';
$lang['Maximum height of the pictures'] = 'Altura máxima de las imágenes'; $lang['Maximum photo height'] = '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 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'] = 'Ancho máxima de las imágenes'; $lang['Maximum photo width'] = 'Ancho 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['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 subida'; $lang['display a calendar by creation date'] = 'mostrar las imágenes en un calendario, por fecha de subida';
$lang['display all elements in all sub-albums'] = 'Ver todas las fotos de los abumes y sub-albumes'; $lang['display all photos in all sub-albums'] = 'Ver todas las fotos de los abumes y sub-albumes';
$lang['return to normal view mode'] = 'Volver a la vista normal'; $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['display a calendar by posted date'] = 'Mostrar las imágenes en un calendario por fecha de agregación';
$lang['month'][10] = 'Octubre'; $lang['month'][10] = 'Octubre';
@ -223,8 +223,8 @@ $lang['month'][8] = 'Agosto';
$lang['month'][9] = 'Septiembre'; $lang['month'][9] = 'Septiembre';
$lang['Most visited'] = 'Imágenes más vistas'; $lang['Most visited'] = 'Imágenes más vistas';
$lang['display most visited photos'] = 'mostrar las imágenes más vistas'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Número de líneas por pagina';
$lang['Unknown identifier'] = 'Identificador desconocido'; $lang['Unknown identifier'] = 'Identificador desconocido';
@ -232,12 +232,12 @@ $lang['New password'] = 'Nueva contraseña';
$lang['Rate this photo'] = 'De una calificación a esta imagen'; $lang['Rate this photo'] = 'De una calificación a esta imagen';
$lang['Next'] = 'Página siguiente'; $lang['Next'] = 'Página siguiente';
$lang['no rate'] = 'no valorada'; $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['Photos 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['Photos 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['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['Recent period must be a positive integer value'] = 'El período debe ser un número entero positivo';
$lang['picture'] = 'imagen'; $lang['photo'] = 'imagen';
$lang['Click on the picture to see it in high definition'] = 'Hacer clic sobre la imagen para verla en alta resolución'; $lang['Click on the photo 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['Show file metadata'] = 'Mostrar los meta-datos del fichero';
$lang['Powered by'] = 'Distribuido por'; $lang['Powered by'] = 'Distribuido por';
$lang['Preferences'] = 'Preferencias'; $lang['Preferences'] = 'Preferencias';
@ -356,8 +356,6 @@ $lang['Cookies are blocked or not supported by your browser. You must enable coo
$lang['delete all photos from your favorites'] = 'Suprimir todas las imágenes de sus favoritos'; $lang['delete all photos from your favorites'] = 'Suprimir todas las imágenes de sus favoritos';
$lang['Are you sure?'] = '¿Seguro?'; $lang['Are you sure?'] = '¿Seguro?';
$lang['delete this comment'] = 'Borrar este comentario'; $lang['delete this comment'] = 'Borrar este comentario';
$lang['Some info about this picture'] = 'Informaciones sobre esta imagen';
$lang['Some more (technical) info about this picture'] = 'Informaciones (técnicas) sobre esta imagen';
$lang['edit this comment'] = 'editar este comentario'; $lang['edit this comment'] = 'editar este comentario';
$lang['Edit a comment'] = 'Editar un comentario'; $lang['Edit a comment'] = 'Editar un comentario';
$lang['(!) This comment requires validation'] = '(!) Este comentario debe ser validado'; $lang['(!) This comment requires validation'] = '(!) Este comentario debe ser validado';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = "Average rate";
$lang['Albums'] = "دسته‌ها"; $lang['Albums'] = "دسته‌ها";
$lang['Album'] = "دسته"; $lang['Album'] = "دسته";
$lang['Close this window'] = "بستن این پنجره"; $lang['Close this window'] = "بستن این پنجره";
$lang['Complete RSS feed (images, comments)'] = "خوراک RSS کامل (عکس ها, نظرات)"; $lang['Complete RSS feed (photos, comments)'] = "خوراک RSS کامل (عکس ها, نظرات)";
$lang['Confirm Password'] = "تایید گذرواژه"; $lang['Confirm Password'] = "تایید گذرواژه";
$lang['Connection settings'] = "تنظیمات اتصال"; $lang['Connection settings'] = "تنظیمات اتصال";
$lang['Login'] = "ورود"; $lang['Login'] = "ورود";
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = "گذرواژه خود را فراموش کرد
$lang['Go through the gallery as a visitor'] = "هدایت بازدید کننده به گالری"; $lang['Go through the gallery as a visitor'] = "هدایت بازدید کننده به گالری";
$lang['Help'] = "کمک"; $lang['Help'] = "کمک";
$lang['Identification'] = "شناسایی"; $lang['Identification'] = "شناسایی";
$lang['Image only RSS feed'] = "Images only RSS feed"; $lang['Photos only RSS feed'] = "Images only RSS feed";
$lang['Keyword'] = "کلید واژه‌ها"; $lang['Keyword'] = "کلید واژه‌ها";
$lang['Links'] = "لینک‌ها"; $lang['Links'] = "لینک‌ها";
$lang['N/A'] = "N/A"; $lang['N/A'] = "N/A";
@ -113,7 +113,7 @@ $lang['Sort by'] = "مرتب سازی با";
$lang['Sort order'] = "Sort order"; $lang['Sort order'] = "Sort order";
$lang['Tag'] = "برچسب"; $lang['Tag'] = "برچسب";
$lang['Tags'] = "برچسب‌ها"; $lang['Tags'] = "برچسب‌ها";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = "سرویس‌دهنده جدید RSS جدیدترین چیزهای سایت شما را از قبیل عکس‌های جدید ، دسته‌های بروز رسنای شده ‌، نظرات جدید را با یک خواننده RSS نمایش می‌دهد."; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = "سرویس‌دهنده جدید RSS جدیدترین چیزهای سایت شما را از قبیل عکس‌های جدید ، دسته‌های بروز رسنای شده ‌، نظرات جدید را با یک خواننده RSS نمایش می‌دهد.";
$lang['Unknown feed identifier'] = "خوراک خور شناسایی نشد!"; $lang['Unknown feed identifier'] = "خوراک خور شناسایی نشد!";
$lang['User comments'] = "نطرات کاربران"; $lang['User comments'] = "نطرات کاربران";
$lang['Username'] = "نام‌کاربری"; $lang['Username'] = "نام‌کاربری";
@ -200,12 +200,12 @@ $lang['Last'] = "آخرین";
$lang['Logout'] = "خروج"; $lang['Logout'] = "خروج";
$lang['E-mail address'] = "آدرس ایمیل"; $lang['E-mail address'] = "آدرس ایمیل";
$lang['obligatory'] = "اجباری"; $lang['obligatory'] = "اجباری";
$lang['Maximum height of the pictures'] = "حداکثر طول تصویر"; $lang['Maximum photo height'] = "حداکثر طول تصویر";
$lang['Maximum height must be a number superior to 50'] = "حداکثر طول تصویر باید عددی بزرگتر از 50 باشد"; $lang['Maximum height must be a number superior to 50'] = "حداکثر طول تصویر باید عددی بزرگتر از 50 باشد";
$lang['Maximum width of the pictures'] = "حداکثر عرض تصویر"; $lang['Maximum photo width'] = "حداکثر عرض تصویر";
$lang['Maximum width must be a number superior to 50'] = "حداکثر عرض تصویر باید عددی بزرگتر از 50 باشد"; $lang['Maximum width must be a number superior to 50'] = "حداکثر عرض تصویر باید عددی بزرگتر از 50 باشد";
$lang['display a calendar by creation date'] = "نمایش یک تقویم بر اساس تاریخ ایجاد"; $lang['display a calendar by creation date'] = "نمایش یک تقویم بر اساس تاریخ ایجاد";
$lang['display all elements in all sub-albums'] = "نمایش تمام تصاویر"; $lang['display all photos in all sub-albums'] = "نمایش تمام تصاویر";
$lang['return to normal view mode'] = "بازگشت به حالت عادی"; $lang['return to normal view mode'] = "بازگشت به حالت عادی";
$lang['display a calendar by posted date'] = "نمایش یک تقویم براساس تاریخ ارسال"; $lang['display a calendar by posted date'] = "نمایش یک تقویم براساس تاریخ ارسال";
$lang['month'][10] = "اکتبر"; $lang['month'][10] = "اکتبر";
@ -222,8 +222,8 @@ $lang['month'][8] = "آگوست";
$lang['month'][9] = "سپتامبر"; $lang['month'][9] = "سپتامبر";
$lang['Most visited'] = "بیشترین بازدید"; $lang['Most visited'] = "بیشترین بازدید";
$lang['display most visited photos'] = "نمایش عکس‌هایی که بیشترین بازدید را داشته‌اند."; $lang['display most visited photos'] = "نمایش عکس‌هایی که بیشترین بازدید را داشته‌اند.";
$lang['The number of images per row must be a not null scalar'] = "تعداد عکس‌هایی که در هر سطر نمایش داده می‌شود که باید یک عدد غیر صفر باشد."; $lang['The number of photos per row must be a not null scalar'] = "تعداد عکس‌هایی که در هر سطر نمایش داده می‌شود که باید یک عدد غیر صفر باشد.";
$lang['Number of images per row'] = "تعداد عکس‌هایی که در هر سطر نمایش داده می‌شود"; $lang['Number of photos per row'] = "تعداد عکس‌هایی که در هر سطر نمایش داده می‌شود";
$lang['The number of rows per page must be a not null scalar'] = "تعداد عکس‌هایی که در هر صفحه نمایش داده می‌شود که باید یک عدد غیر صفر باشد."; $lang['The number of rows per page must be a not null scalar'] = "تعداد عکس‌هایی که در هر صفحه نمایش داده می‌شود که باید یک عدد غیر صفر باشد.";
$lang['Number of rows per page'] = "تعداد عکس‌هایی که در هر صفحه نمایش داده می‌شود"; $lang['Number of rows per page'] = "تعداد عکس‌هایی که در هر صفحه نمایش داده می‌شود";
$lang['Unknown identifier'] = "ناشناخته!"; $lang['Unknown identifier'] = "ناشناخته!";
@ -231,12 +231,12 @@ $lang['New password'] = "گذرواژه جدید";
$lang['Rate this photo'] = "امتیاز دادن به این تصویر"; $lang['Rate this photo'] = "امتیاز دادن به این تصویر";
$lang['Next'] = "بعدی"; $lang['Next'] = "بعدی";
$lang['no rate'] = "بدون امتیاز"; $lang['no rate'] = "بدون امتیاز";
$lang['Elements posted within the last %d day.'] = "فقط پست‌هایی را نمایش بده که در %d روز قبل ارسال شده‌اند."; $lang['Photos posted within the last %d day.'] = "فقط پست‌هایی را نمایش بده که در %d روز قبل ارسال شده‌اند.";
$lang['Elements posted within the last %d days.'] = "فقط پست‌هایی را نمایش بده که در %d روز قبل ارسال شده‌اند."; $lang['Photos posted within the last %d days.'] = "فقط پست‌هایی را نمایش بده که در %d روز قبل ارسال شده‌اند.";
$lang['password updated'] = "گذرواژه بروزرسانی شد"; $lang['password updated'] = "گذرواژه بروزرسانی شد";
$lang['Recent period must be a positive integer value'] = "Recent period must be a positive integer value"; $lang['Recent period must be a positive integer value'] = "Recent period must be a positive integer value";
$lang['picture'] = "عکس"; $lang['photo'] = "عکس";
$lang['Click on the picture to see it in high definition'] = "روی تصاویر کلیک کنید تا آن‌ها را با بالاترین کیفیت مشاهده نمایید."; $lang['Click on the photo to see it in high definition'] = "روی تصاویر کلیک کنید تا آن‌ها را با بالاترین کیفیت مشاهده نمایید.";
$lang['Show file metadata'] = "نمایش فایل ابرداده(metadata)"; $lang['Show file metadata'] = "نمایش فایل ابرداده(metadata)";
$lang['Powered by'] = "به قدرت رسیده توسط"; $lang['Powered by'] = "به قدرت رسیده توسط";
$lang['Preferences'] = "تنظیمات"; $lang['Preferences'] = "تنظیمات";
@ -351,8 +351,6 @@ $lang['delete all photos from your favorites'] = "حذف تمام تصاویر
$lang['Sent by'] = "ارسال به وسیله"; $lang['Sent by'] = "ارسال به وسیله";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "شما در تنظیمات مرورگر خود کوکی ها را بلاک کردید یا مرورگر شما از کوکی پشتیبانی نمی‌کند. برای ورود به محیط کاربری باید کوکی‌ها فعال باشند."; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "شما در تنظیمات مرورگر خود کوکی ها را بلاک کردید یا مرورگر شما از کوکی پشتیبانی نمی‌کند. برای ورود به محیط کاربری باید کوکی‌ها فعال باشند.";
$lang['Some info about this picture'] = "اطلاعات این تصویر";
$lang['Some more (technical) info about this picture'] = "اطلاعات اضافی درباره‌ی این تصویر";
$lang['edit this comment'] = "ویرایش این نظر"; $lang['edit this comment'] = "ویرایش این نظر";
$lang['Edit a comment'] = "ویرایش یک نظر"; $lang['Edit a comment'] = "ویرایش یک نظر";
$lang['Are you sure?'] = "شما مطمئن هستید؟"; $lang['Are you sure?'] = "شما مطمئن هستید؟";

View file

@ -54,7 +54,7 @@ $lang['Average rate'] = 'Note moyenne';
$lang['Albums'] = 'Catégories'; $lang['Albums'] = 'Catégories';
$lang['Album'] = 'Catégorie'; $lang['Album'] = 'Catégorie';
$lang['Close this window'] = 'Fermer cette fenêtre'; $lang['Close this window'] = 'Fermer cette fenêtre';
$lang['Complete RSS feed (images, comments)'] = 'Flux RSS complet (images, commentaires)'; $lang['Complete RSS feed (photos, comments)'] = 'Flux RSS complet (images, commentaires)';
$lang['Confirm Password'] = 'Confirmer le mot de passe'; $lang['Confirm Password'] = 'Confirmer le mot de passe';
$lang['Connection settings'] = 'Paramètres de connexion'; $lang['Connection settings'] = 'Paramètres de connexion';
$lang['Login'] = 'Connexion'; $lang['Login'] = 'Connexion';
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = 'Mot de passe oublié ?';
$lang['Go through the gallery as a visitor'] = 'Parcourir la galerie en tant que visiteur'; $lang['Go through the gallery as a visitor'] = 'Parcourir la galerie en tant que visiteur';
$lang['Help'] = 'Aide'; $lang['Help'] = 'Aide';
$lang['Identification'] = 'Identification'; $lang['Identification'] = 'Identification';
$lang['Image only RSS feed'] = 'Flux RSS des images uniquement'; $lang['Photos only RSS feed'] = 'Flux RSS des images uniquement';
$lang['Keyword'] = 'Mot-clef'; $lang['Keyword'] = 'Mot-clef';
$lang['Links'] = 'Liens'; $lang['Links'] = 'Liens';
$lang['N/A'] = 'non disponible'; $lang['N/A'] = 'non disponible';
@ -113,7 +113,7 @@ $lang['Sort by'] = 'Trier selon';
$lang['Sort order'] = 'Ordre de tri'; $lang['Sort order'] = 'Ordre de tri';
$lang['Tag'] = 'Mot clé'; $lang['Tag'] = 'Mot clé';
$lang['Tags'] = 'Mots clés'; $lang['Tags'] = 'Mots clés';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, 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 utilisateurs. À utiliser avec un lecteur de flux RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, 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 utilisateurs. À utiliser avec un lecteur de flux RSS.';
$lang['Unknown feed identifier'] = 'Identifiant de flux inconnu'; $lang['Unknown feed identifier'] = 'Identifiant de flux inconnu';
$lang['User comments'] = 'Commentaires utilisateur'; $lang['User comments'] = 'Commentaires utilisateur';
$lang['Username'] = 'Nom d\'utilisateur'; $lang['Username'] = 'Nom d\'utilisateur';
@ -200,12 +200,12 @@ $lang['Last'] = 'Dernière';
$lang['Logout'] = 'Déconnexion'; $lang['Logout'] = 'Déconnexion';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = 'obligatoire'; $lang['obligatory'] = 'obligatoire';
$lang['Maximum height of the pictures'] = 'Hauteur maximum des images'; $lang['Maximum photo height'] = '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 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 photo width'] = 'Largeur maximum des images';
$lang['Maximum width must be a number superior to 50'] = 'La largeur des images doit être supérieure à 50'; $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 a calendar by creation date'] = 'afficher un calendrier par date de création';
$lang['display all elements in all sub-albums'] = 'afficher à plat les éléments des catégories et des sous-catégories'; $lang['display all photos in all sub-albums'] = 'afficher à plat les éléments des catégories et des sous-catégories';
$lang['return to normal view mode'] = 'retourner à la vue normale'; $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['display a calendar by posted date'] = 'afficher un calendrier par date d\'ajout';
$lang['month'][10] = 'Octobre'; $lang['month'][10] = 'Octobre';
@ -222,8 +222,8 @@ $lang['month'][8] = 'Août';
$lang['month'][9] = 'Septembre'; $lang['month'][9] = 'Septembre';
$lang['Most visited'] = 'Plus vues'; $lang['Most visited'] = 'Plus vues';
$lang['display most visited photos'] = 'afficher les images les plus vues'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Nombre de lignes par page';
$lang['Unknown identifier'] = 'Identifiants inconnus'; $lang['Unknown identifier'] = 'Identifiants inconnus';
@ -232,12 +232,12 @@ $lang['Rate this photo'] = 'Votez pour cette image';
$lang['Next'] = 'Suivante'; $lang['Next'] = 'Suivante';
$lang['Home'] = 'Accueil'; $lang['Home'] = 'Accueil';
$lang['no rate'] = 'pas de note'; $lang['no rate'] = 'pas de note';
$lang['Elements posted within the last %d day.'] = 'N\'afficher que les éléments récents de moins de %d jour.'; $lang['Photos posted within the last %d day.'] = 'N\'afficher que les éléments récents de moins de %d jour.';
$lang['Elements posted within the last %d days.'] = 'N\'afficher que les éléments récents de moins de %d jours.'; $lang['Photos posted within the last %d days.'] = 'N\'afficher que les éléments récents de moins de %d jours.';
$lang['password updated'] = 'mot de passe mis à jour'; $lang['password updated'] = 'mot de passe mis à jour';
$lang['Recent period must be a positive integer value'] = 'La période de nouveautés doit être un entier positif'; $lang['Recent period must be a positive integer value'] = 'La période de nouveautés doit être un entier positif';
$lang['picture'] = 'image'; $lang['photo'] = 'image';
$lang['Click on the picture to see it in high definition'] = 'Cliquer sur l\'image pour la visualiser en haute définition'; $lang['Click on the photo 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['Show file metadata'] = 'Montrer les méta-données du fichier';
$lang['Powered by'] = 'Propulsé par'; $lang['Powered by'] = 'Propulsé par';
$lang['Preferences'] = 'Préférences'; $lang['Preferences'] = 'Préférences';
@ -356,8 +356,6 @@ $lang['delete all photos from your favorites'] = 'supprimer toutes les images de
$lang['Sent by'] = 'Envoyé par'; $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['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['Some info about this picture'] = "Informations sur cette image";
$lang['Some more (technical) info about this picture'] = "Informations (techniques) sur cette image";
$lang['edit this comment'] = "éditer ce commentaire"; $lang['edit this comment'] = "éditer ce commentaire";
$lang['Edit a comment'] = "Éditer un commentaire"; $lang['Edit a comment'] = "Éditer un commentaire";
$lang['Are you sure?'] = "Êtes-vous sûr ?"; $lang['Are you sure?'] = "Êtes-vous sûr ?";

View file

@ -54,7 +54,7 @@ $lang['Average rate'] = 'Note moyenne';
$lang['Albums'] = 'Albums'; $lang['Albums'] = 'Albums';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Fermer cette fenêtre'; $lang['Close this window'] = 'Fermer cette fenêtre';
$lang['Complete RSS feed (images, comments)'] = 'Flux RSS complet (images, commentaires)'; $lang['Complete RSS feed (photos, comments)'] = 'Flux RSS complet (images, commentaires)';
$lang['Confirm Password'] = 'Confirmer le mot de passe'; $lang['Confirm Password'] = 'Confirmer le mot de passe';
$lang['Connection settings'] = 'Paramètres de connexion'; $lang['Connection settings'] = 'Paramètres de connexion';
$lang['Login'] = 'Connexion'; $lang['Login'] = 'Connexion';
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = 'Mot de passe oublié ?';
$lang['Go through the gallery as a visitor'] = 'Parcourir la galerie en tant que visiteur'; $lang['Go through the gallery as a visitor'] = 'Parcourir la galerie en tant que visiteur';
$lang['Help'] = 'Aide'; $lang['Help'] = 'Aide';
$lang['Identification'] = 'Identification'; $lang['Identification'] = 'Identification';
$lang['Image only RSS feed'] = 'Flux RSS des images uniquement'; $lang['Photos only RSS feed'] = 'Flux RSS des images uniquement';
$lang['Keyword'] = 'Mot-clef'; $lang['Keyword'] = 'Mot-clef';
$lang['Links'] = 'Liens'; $lang['Links'] = 'Liens';
$lang['N/A'] = 'non disponible'; $lang['N/A'] = 'non disponible';
@ -113,7 +113,7 @@ $lang['Sort by'] = 'Trier selon';
$lang['Sort order'] = 'Ordre de tri'; $lang['Sort order'] = 'Ordre de tri';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Le flux RSS notifie les événements de la galerie : nouvelles photos, albums mis à jour, nouveaux commentaires utilisateur. À utiliser avec un lecteur de flux RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Le flux RSS notifie les événements de la galerie : nouvelles photos, albums mis à jour, nouveaux commentaires utilisateur. À utiliser avec un lecteur de flux RSS.';
$lang['Unknown feed identifier'] = 'Identifiant de flux inconnu'; $lang['Unknown feed identifier'] = 'Identifiant de flux inconnu';
$lang['User comments'] = 'Commentaires utilisateur'; $lang['User comments'] = 'Commentaires utilisateur';
$lang['Username'] = 'Nom d\'utilisateur'; $lang['Username'] = 'Nom d\'utilisateur';
@ -200,12 +200,12 @@ $lang['Last'] = 'Dernière';
$lang['Logout'] = 'Déconnexion'; $lang['Logout'] = 'Déconnexion';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = 'obligatoire'; $lang['obligatory'] = 'obligatoire';
$lang['Maximum height of the pictures'] = 'Hauteur maximum des images'; $lang['Maximum photo height'] = '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 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 photo width'] = 'Largeur maximum des images';
$lang['Maximum width must be a number superior to 50'] = 'La largeur des images doit être supérieure à 50'; $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 a calendar by creation date'] = 'afficher un calendrier par date de création';
$lang['display all elements in all sub-albums'] = 'afficher à plat les photos des albums et des sous-albums'; $lang['display all photos in all sub-albums'] = 'afficher à plat les photos des albums et des sous-albums';
$lang['return to normal view mode'] = 'retourner à la vue normale'; $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['display a calendar by posted date'] = 'afficher un calendrier par date d\'ajout';
$lang['month'][10] = 'Octobre'; $lang['month'][10] = 'Octobre';
@ -222,8 +222,8 @@ $lang['month'][8] = 'Août';
$lang['month'][9] = 'Septembre'; $lang['month'][9] = 'Septembre';
$lang['Most visited'] = 'Plus vues'; $lang['Most visited'] = 'Plus vues';
$lang['display most visited photos'] = 'afficher les images les plus vues'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Nombre de lignes par page';
$lang['Unknown identifier'] = 'Identifiants inconnus'; $lang['Unknown identifier'] = 'Identifiants inconnus';
@ -231,12 +231,12 @@ $lang['New password'] = 'Nouveau mot de passe';
$lang['Rate this photo'] = 'Votez pour cette image'; $lang['Rate this photo'] = 'Votez pour cette image';
$lang['Next'] = 'Suivante'; $lang['Next'] = 'Suivante';
$lang['no rate'] = 'pas de note'; $lang['no rate'] = 'pas de note';
$lang['Elements posted within the last %d day.'] = 'N\'afficher que les éléments récents de moins de %d jour.'; $lang['Photos posted within the last %d day.'] = 'N\'afficher que les éléments récents de moins de %d jour.';
$lang['Elements posted within the last %d days.'] = 'N\'afficher que les éléments récents de moins de %d jours.'; $lang['Photos posted within the last %d days.'] = 'N\'afficher que les éléments récents de moins de %d jours.';
$lang['password updated'] = 'mot de passe mis à jour'; $lang['password updated'] = 'mot de passe mis à jour';
$lang['Recent period must be a positive integer value'] = 'La période de nouveautés doit être un entier positif'; $lang['Recent period must be a positive integer value'] = 'La période de nouveautés doit être un entier positif';
$lang['picture'] = 'image'; $lang['photo'] = 'image';
$lang['Click on the picture to see it in high definition'] = 'Cliquer sur l\'image pour la visualiser en haute définition'; $lang['Click on the photo 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['Show file metadata'] = 'Montrer les méta-données du fichier';
$lang['Powered by'] = 'Propulsé par'; $lang['Powered by'] = 'Propulsé par';
$lang['Preferences'] = 'Préférences'; $lang['Preferences'] = 'Préférences';
@ -353,8 +353,6 @@ $lang['delete all photos from your favorites'] = 'supprimer toutes les images de
$lang['Sent by'] = 'Envoyé par'; $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['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['Some info about this picture'] = "Informations sur cette image";
$lang['Some more (technical) info about this picture'] = "Informations (techniques) sur cette image";
$lang['edit this comment'] = "éditer ce commentaire"; $lang['edit this comment'] = "éditer ce commentaire";
$lang['Edit a comment'] = "Éditer un commentaire"; $lang['Edit a comment'] = "Éditer un commentaire";
$lang['Are you sure?'] = "Etes-vous sûr ?"; $lang['Are you sure?'] = "Etes-vous sûr ?";

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -53,7 +53,7 @@ $lang['Average rate'] = "דירוג ממוצע";
$lang['Albums'] = "קטגוריות"; $lang['Albums'] = "קטגוריות";
$lang['Album'] = "קטגוריה"; $lang['Album'] = "קטגוריה";
$lang['Close this window'] = "סגור חלון זה"; $lang['Close this window'] = "סגור חלון זה";
$lang['Complete RSS feed (images, comments)'] = "עדכון RSS (תמונות, הערות)"; $lang['Complete RSS feed (photos, comments)'] = "עדכון RSS (תמונות, הערות)";
$lang['Confirm Password'] = "אשר סיסמה"; $lang['Confirm Password'] = "אשר סיסמה";
$lang['Connection settings'] = "הגדרות חיבור"; $lang['Connection settings'] = "הגדרות חיבור";
$lang['Login'] = "התחברות"; $lang['Login'] = "התחברות";
@ -77,7 +77,7 @@ $lang['Forgot your password?'] = "שכחת את הסיסמה?";
$lang['Go through the gallery as a visitor'] = "נווט בגלריה כמבקר"; $lang['Go through the gallery as a visitor'] = "נווט בגלריה כמבקר";
$lang['Help'] = "עזרה"; $lang['Help'] = "עזרה";
$lang['Identification'] = "הזדהות"; $lang['Identification'] = "הזדהות";
$lang['Image only RSS feed'] = "תמונות בלבד RSS "; $lang['Photos only RSS feed'] = "תמונות בלבד RSS ";
$lang['Keyword'] = "מילות מפתח"; $lang['Keyword'] = "מילות מפתח";
$lang['Links'] = "קישורים"; $lang['Links'] = "קישורים";
$lang['N/A'] = "N/A לא ידוע"; $lang['N/A'] = "N/A לא ידוע";
@ -112,7 +112,7 @@ $lang['Sort by'] = "מיין לפי";
$lang['Sort order'] = "לפי הסדר"; $lang['Sort order'] = "לפי הסדר";
$lang['Tag'] = "תווית"; $lang['Tag'] = "תווית";
$lang['Tags'] = "תוויות"; $lang['Tags'] = "תוויות";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = "ה-RSS מספק התראה על אירועים חדשים מאתר זה: תמונות חדשות, קטגוריות מעודכן, הערות חדשות. כדי להשתמש עם קורא RSS."; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = "ה-RSS מספק התראה על אירועים חדשים מאתר זה: תמונות חדשות, קטגוריות מעודכן, הערות חדשות. כדי להשתמש עם קורא RSS.";
$lang['Unknown feed identifier'] = 'מזהה לא ידוע'; $lang['Unknown feed identifier'] = 'מזהה לא ידוע';
$lang['User comments'] = 'תגובות משתמש'; $lang['User comments'] = 'תגובות משתמש';
$lang['Username'] = 'שם משתמש'; $lang['Username'] = 'שם משתמש';
@ -200,12 +200,12 @@ $lang['Last'] = "אחרון";
$lang['Logout'] = "התנתק"; $lang['Logout'] = "התנתק";
$lang['E-mail address'] = "כתובת דואר אלקטרוני"; $lang['E-mail address'] = "כתובת דואר אלקטרוני";
$lang['obligatory'] = "הכרחי"; $lang['obligatory'] = "הכרחי";
$lang['Maximum height of the pictures'] = "גובה מקסימלי לתמונה"; $lang['Maximum photo height'] = "גובה מקסימלי לתמונה";
$lang['Maximum height must be a number superior to 50'] = "הגובהה המקסימלי חייב להיות מעל 50"; $lang['Maximum height must be a number superior to 50'] = "הגובהה המקסימלי חייב להיות מעל 50";
$lang['Maximum width of the pictures'] = "רוחב מקסימלי לתמונה"; $lang['Maximum photo width'] = "רוחב מקסימלי לתמונה";
$lang['Maximum width must be a number superior to 50'] = "הרוחב המקסימלי חייב להיות מעל 50"; $lang['Maximum width must be a number superior to 50'] = "הרוחב המקסימלי חייב להיות מעל 50";
$lang['display a calendar by creation date'] = "הצג לוח שנה לפי תאריך יצירה"; $lang['display a calendar by creation date'] = "הצג לוח שנה לפי תאריך יצירה";
$lang['display all elements in all sub-albums'] = "הצג את כל הפריטים בכל הקטגוריות ובכל התת קטגוריות"; $lang['display all photos in all sub-albums'] = "הצג את כל הפריטים בכל הקטגוריות ובכל התת קטגוריות";
$lang['return to normal view mode'] = "חזור לתצוגה רגילה"; $lang['return to normal view mode'] = "חזור לתצוגה רגילה";
$lang['display a calendar by posted date'] = "הצג לוח שנה לפי תאריך פרסום"; $lang['display a calendar by posted date'] = "הצג לוח שנה לפי תאריך פרסום";
$lang['month'][10] = "אוקטובר"; $lang['month'][10] = "אוקטובר";
@ -222,8 +222,8 @@ $lang['month'][8] = "אוגוסט";
$lang['month'][9] = "ספטמבר"; $lang['month'][9] = "ספטמבר";
$lang['Most visited'] = "הכי נצפה"; $lang['Most visited'] = "הכי נצפה";
$lang['display most visited photos'] = "הצג את התמונות הנצפות ביותר"; $lang['display most visited photos'] = "הצג את התמונות הנצפות ביותר";
$lang['The number of images per row must be a not null scalar'] = 'מספר התמונות בכל שורה חייב להיות מספר שלם שונה מאפס'; $lang['The number of photos per row must be a not null scalar'] = 'מספר התמונות בכל שורה חייב להיות מספר שלם שונה מאפס';
$lang['Number of images per row'] = 'מספר התמונות בכל שורה'; $lang['Number of photos per row'] = 'מספר התמונות בכל שורה';
$lang['The number of rows per page must be a not null scalar'] = 'מספר שורות בכל דף חייב להיות מספר שלם שונה מאפס'; $lang['The number of rows per page must be a not null scalar'] = 'מספר שורות בכל דף חייב להיות מספר שלם שונה מאפס';
$lang['Number of rows per page'] = "מספר שורות לעמוד"; $lang['Number of rows per page'] = "מספר שורות לעמוד";
$lang['Unknown identifier'] = 'מזהה לא ידוע'; $lang['Unknown identifier'] = 'מזהה לא ידוע';
@ -231,12 +231,12 @@ $lang['New password'] = "סיסמה חדשה";
$lang['Rate this photo'] = "דרג תמונה זאת"; $lang['Rate this photo'] = "דרג תמונה זאת";
$lang['Next'] = "הבא"; $lang['Next'] = "הבא";
$lang['no rate'] = "לא דורג"; $lang['no rate'] = "לא דורג";
$lang['Elements posted within the last %d day.'] = "פריטים שנוספו ב %d ימים האחרונים."; $lang['Photos posted within the last %d day.'] = "פריטים שנוספו ב %d ימים האחרונים.";
$lang['Elements posted within the last %d days.'] = "פריטים שנוספו ב %d ימים האחרונים."; $lang['Photos posted within the last %d days.'] = "פריטים שנוספו ב %d ימים האחרונים.";
$lang['password updated'] = "הסיסמה עודכנה"; $lang['password updated'] = "הסיסמה עודכנה";
$lang['Recent period must be a positive integer value'] = 'התמונות האחרונות חייב להיות מספר שלם חיובי'; $lang['Recent period must be a positive integer value'] = 'התמונות האחרונות חייב להיות מספר שלם חיובי';
$lang['picture'] = "תמונה"; $lang['photo'] = "תמונה";
$lang['Click on the picture to see it in high definition'] = "לחץ על הצמונה על מנת לראות אותה באיכות גבוהה"; $lang['Click on the photo to see it in high definition'] = "לחץ על הצמונה על מנת לראות אותה באיכות גבוהה";
$lang['Show file metadata'] = "הראה את המידע על הקובץ"; $lang['Show file metadata'] = "הראה את המידע על הקובץ";
$lang['Powered by'] = "נוצר על ידי"; $lang['Powered by'] = "נוצר על ידי";
$lang['Preferences'] = "העדפות"; $lang['Preferences'] = "העדפות";
@ -351,8 +351,6 @@ $lang['delete all photos from your favorites'] = "מחק את כל התמונו
$lang['Sent by'] = "נשלח על ידי"; $lang['Sent by'] = "נשלח על ידי";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "הדפדפן שלך חוסם קוקיז או לא תומך בהם. אתה חייב להפעיל את ה קוקיז בשביל להתחבר."; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "הדפדפן שלך חוסם קוקיז או לא תומך בהם. אתה חייב להפעיל את ה קוקיז בשביל להתחבר.";
$lang['Some info about this picture'] = "מידע על התמונה הזאת";
$lang['Some more (technical) info about this picture'] = "עוד מידע תכני על התמונה הזאת";
$lang['edit this comment'] = "ערוך תגובה זאת"; $lang['edit this comment'] = "ערוך תגובה זאת";
$lang['Edit a comment'] = "ערוך תגובה"; $lang['Edit a comment'] = "ערוך תגובה";
$lang['Are you sure?'] = "האם אתה בטוח?"; $lang['Are you sure?'] = "האם אתה בטוח?";

View file

@ -54,7 +54,7 @@ $lang['Average rate'] = 'Prosječna ocjena';
$lang['Albums'] = 'Skupine'; $lang['Albums'] = 'Skupine';
$lang['Album'] = 'Skupina'; $lang['Album'] = 'Skupina';
$lang['Close this window'] = 'Zatvori prozor'; $lang['Close this window'] = 'Zatvori prozor';
$lang['Complete RSS feed (images, comments)'] = 'Potpuni RSS izvori (slike, komentari)'; $lang['Complete RSS feed (photos, comments)'] = 'Potpuni RSS izvori (slike, komentari)';
$lang['Confirm Password'] = 'Potvrdi Zaporku'; $lang['Confirm Password'] = 'Potvrdi Zaporku';
$lang['Connection settings'] = 'Postavke povezivanja'; $lang['Connection settings'] = 'Postavke povezivanja';
$lang['Login'] = 'Prijava'; $lang['Login'] = 'Prijava';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Zaboravili ste zaporku?';
$lang['Go through the gallery as a visitor'] = 'Pregledajte galeriju kao posjetitelj'; $lang['Go through the gallery as a visitor'] = 'Pregledajte galeriju kao posjetitelj';
$lang['Help'] = 'Pomoć'; $lang['Help'] = 'Pomoć';
$lang['Identification'] = 'Prijavnica'; $lang['Identification'] = 'Prijavnica';
$lang['Image only RSS feed'] = 'RSS izvor samo za slike'; $lang['Photos only RSS feed'] = 'RSS izvor samo za slike';
$lang['Keyword'] = 'Ključna riječ'; $lang['Keyword'] = 'Ključna riječ';
$lang['Links'] = 'Poveznice'; $lang['Links'] = 'Poveznice';
$lang['N/A'] = 'N/D'; $lang['N/A'] = 'N/D';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Složeno po';
$lang['Sort order'] = 'Redoslijed slaganja'; $lang['Sort order'] = 'Redoslijed slaganja';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tagovi'; $lang['Tags'] = 'Tagovi';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS obavijesni izvor omogućava obavještavanje o novostima sa ovog web mjesta : nove slike, obnovljene skupine, nove komentare. Koristite čitač RSS izvora.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS obavijesni izvor omogućava obavještavanje o novostima sa ovog web mjesta : nove slike, obnovljene skupine, nove komentare. Koristite čitač RSS izvora.';
$lang['Unknown feed identifier'] = 'Nepoznata oznaka izvora'; $lang['Unknown feed identifier'] = 'Nepoznata oznaka izvora';
$lang['User comments'] = 'Korisnički komentari'; $lang['User comments'] = 'Korisnički komentari';
$lang['Username'] = 'Korisničko ime'; $lang['Username'] = 'Korisničko ime';
@ -201,12 +201,12 @@ $lang['Last'] = 'Zadnji';
$lang['Logout'] = 'Odjava'; $lang['Logout'] = 'Odjava';
$lang['E-mail address'] = 'E-mail adresa'; $lang['E-mail address'] = 'E-mail adresa';
$lang['obligatory'] = 'obvezno'; $lang['obligatory'] = 'obvezno';
$lang['Maximum height of the pictures'] = 'Najveća dozvoljena visina slika'; $lang['Maximum photo height'] = 'Najveća dozvoljena visina slika';
$lang['Maximum height must be a number superior to 50'] = 'Najveća visina mora biti broj veći od 50'; $lang['Maximum height must be a number superior to 50'] = 'Najveća visina mora biti broj veći od 50';
$lang['Maximum width of the pictures'] = 'Najveća dozvoljena širina slika'; $lang['Maximum photo width'] = 'Najveća dozvoljena širina slika';
$lang['Maximum width must be a number superior to 50'] = 'Najveća širina mora biti broj veći od 50'; $lang['Maximum width must be a number superior to 50'] = 'Najveća širina mora biti broj veći od 50';
$lang['display a calendar by creation date'] = 'prikaz kalendara po nadnevku izrade'; $lang['display a calendar by creation date'] = 'prikaz kalendara po nadnevku izrade';
$lang['display all elements in all sub-albums'] = 'prikaz svih stavki u svim podskupinama'; $lang['display all photos in all sub-albums'] = 'prikaz svih stavki u svim podskupinama';
$lang['return to normal view mode'] = 'povratak u uobičajeni način pregleda'; $lang['return to normal view mode'] = 'povratak u uobičajeni način pregleda';
$lang['display a calendar by posted date'] = 'prikaz kalendara po nadnevku objave'; $lang['display a calendar by posted date'] = 'prikaz kalendara po nadnevku objave';
$lang['month'][10] = 'Listopad'; $lang['month'][10] = 'Listopad';
@ -223,8 +223,8 @@ $lang['month'][8] = 'Kolovoz';
$lang['month'][9] = 'Rujan'; $lang['month'][9] = 'Rujan';
$lang['Most visited'] = 'Najposjećenije'; $lang['Most visited'] = 'Najposjećenije';
$lang['display most visited photos'] = 'prikaz najposjećenijih slika'; $lang['display most visited photos'] = 'prikaz najposjećenijih slika';
$lang['The number of images per row must be a not null scalar'] = 'broj slika po redu mora biti cjelobrojna vrijednost'; $lang['The number of photos per row must be a not null scalar'] = 'broj slika po redu mora biti cjelobrojna vrijednost';
$lang['Number of images per row'] = 'Broj slika po redu'; $lang['Number of photos per row'] = 'Broj slika po redu';
$lang['The number of rows per page must be a not null scalar'] = 'Broj redova po stranici mora biti cjelobrojna vrijednost'; $lang['The number of rows per page must be a not null scalar'] = 'Broj redova po stranici mora biti cjelobrojna vrijednost';
$lang['Number of rows per page'] = 'Broj redova po stranici'; $lang['Number of rows per page'] = 'Broj redova po stranici';
$lang['Unknown identifier'] = 'Nepoznata oznaka'; $lang['Unknown identifier'] = 'Nepoznata oznaka';
@ -232,12 +232,12 @@ $lang['New password'] = 'Nova zaporka';
$lang['Rate this photo'] = 'Ocjeni ovu sliku'; $lang['Rate this photo'] = 'Ocjeni ovu sliku';
$lang['Next'] = 'Slijedeći'; $lang['Next'] = 'Slijedeći';
$lang['no rate'] = 'bez ocjene'; $lang['no rate'] = 'bez ocjene';
$lang['Elements posted within the last %d day.'] = 'Stavke objavljene u zadnjem %d danu.'; $lang['Photos posted within the last %d day.'] = 'Stavke objavljene u zadnjem %d danu.';
$lang['Elements posted within the last %d days.'] = 'Stavke objavljene između zadnjih %d dana.'; $lang['Photos posted within the last %d days.'] = 'Stavke objavljene između zadnjih %d dana.';
$lang['password updated'] = 'zaporka obnovljena'; $lang['password updated'] = 'zaporka obnovljena';
$lang['Recent period must be a positive integer value'] = 'Nedavno razdoblje mora biti pozitivna cjelobrojna vrijednost'; $lang['Recent period must be a positive integer value'] = 'Nedavno razdoblje mora biti pozitivna cjelobrojna vrijednost';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'slika'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'slika';
$lang['Click on the picture to see it in high definition'] = 'Klikni na sliku za pregled u visokoj razlučljivosti'; $lang['Click on the photo to see it in high definition'] = 'Klikni na sliku za pregled u visokoj razlučljivosti';
$lang['Show file metadata'] = 'Prikaži meta podatke zapisa'; $lang['Show file metadata'] = 'Prikaži meta podatke zapisa';
$lang['Powered by'] = 'Osnaženo sa'; $lang['Powered by'] = 'Osnaženo sa';
$lang['Preferences'] = 'Postavke'; $lang['Preferences'] = 'Postavke';
@ -357,8 +357,6 @@ $lang['Reset to default values'] = 'Povratak na pretpostavljene vrijednosti';
$lang['delete all photos from your favorites'] = 'izbriši sve slike iz omiljenih'; $lang['delete all photos from your favorites'] = 'izbriši sve slike iz omiljenih';
$lang['Sent by'] = 'Poslano od'; $lang['Sent by'] = 'Poslano od';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Kolačići su onemogućeni ili nisu podržani od vašeg preglednika. Morate ih omogućiti za prijavu.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Kolačići su onemogućeni ili nisu podržani od vašeg preglednika. Morate ih omogućiti za prijavu.';
$lang['Some info about this picture'] = 'Podatci o ovoj slici';
$lang['Some more (technical) info about this picture'] = 'Više (tehničkih) podataka o ovoj slici';
$lang['edit this comment'] = 'uredi ovaj komentar'; $lang['edit this comment'] = 'uredi ovaj komentar';
$lang['Edit a comment'] = 'Uredi komentar'; $lang['Edit a comment'] = 'Uredi komentar';
$lang['(!) This comment requires validation'] = '(!) Ovaj komentar zahtijeva ovjeru'; $lang['(!) This comment requires validation'] = '(!) Ovaj komentar zahtijeva ovjeru';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Átlagos pontszám';
$lang['Albums'] = 'Albumok'; $lang['Albums'] = 'Albumok';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Ablak bezárása'; $lang['Close this window'] = 'Ablak bezárása';
$lang['Complete RSS feed (images, comments)'] = 'Teljes RSS (képek, hozzászólások)'; $lang['Complete RSS feed (photos, comments)'] = 'Teljes RSS (képek, hozzászólások)';
$lang['Confirm Password'] = 'Jelszó megerősítése'; $lang['Confirm Password'] = 'Jelszó megerősítése';
$lang['Connection settings'] = 'Kapcsolat beállításai'; $lang['Connection settings'] = 'Kapcsolat beállításai';
$lang['Login'] = 'Bejelentkezés'; $lang['Login'] = 'Bejelentkezés';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Elfelejtette a jelszavát?';
$lang['Go through the gallery as a visitor'] = 'Megtekintés látogatóként'; $lang['Go through the gallery as a visitor'] = 'Megtekintés látogatóként';
$lang['Help'] = 'Segítség'; $lang['Help'] = 'Segítség';
$lang['Identification'] = 'Belépés'; $lang['Identification'] = 'Belépés';
$lang['Image only RSS feed'] = 'Képek RSS'; $lang['Photos only RSS feed'] = 'Képek RSS';
$lang['Keyword'] = 'Kulcsszó'; $lang['Keyword'] = 'Kulcsszó';
$lang['Links'] = 'Kapcsolódó linkek'; $lang['Links'] = 'Kapcsolódó linkek';
$lang['N/A'] = 'Nincs adat'; $lang['N/A'] = 'Nincs adat';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Rendezés';
$lang['Sort order'] = 'Rendezési sorrend'; $lang['Sort order'] = 'Rendezési sorrend';
$lang['Tag'] = 'Címke'; $lang['Tag'] = 'Címke';
$lang['Tags'] = 'Címkék'; $lang['Tags'] = 'Címkék';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Az RSS értesítő a következő -az oldallal kapcsolatos- információkat tartalmazza: új fotók, új albumok, új kommentek.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Az RSS értesítő a következő -az oldallal kapcsolatos- információkat tartalmazza: új fotók, új albumok, új kommentek.';
$lang['Unknown feed identifier'] = 'Ismeretlen RSS azonosító'; $lang['Unknown feed identifier'] = 'Ismeretlen RSS azonosító';
$lang['User comments'] = 'Felhasználói hozzászólások'; $lang['User comments'] = 'Felhasználói hozzászólások';
$lang['Username'] = 'Felhasználónév'; $lang['Username'] = 'Felhasználónév';
@ -202,12 +202,12 @@ $lang['Last'] = 'Utolsó oldal';
$lang['Logout'] = 'Kijelentkezés'; $lang['Logout'] = 'Kijelentkezés';
$lang['E-mail address'] = 'E-mail cím'; $lang['E-mail address'] = 'E-mail cím';
$lang['obligatory'] = 'szükséges'; $lang['obligatory'] = 'szükséges';
$lang['Maximum height of the pictures'] = 'Maximális képmagasság'; $lang['Maximum photo height'] = 'Maximális képmagasság';
$lang['Maximum height must be a number superior to 50'] = 'A képmagasságnak 50-nél nagyobbnak kell lennie!'; $lang['Maximum height must be a number superior to 50'] = 'A képmagasságnak 50-nél nagyobbnak kell lennie!';
$lang['Maximum width of the pictures'] = 'Maximális képszélesség'; $lang['Maximum photo width'] = 'Maximális képszélesség';
$lang['Maximum width must be a number superior to 50'] = 'A maximális képszélességnek 50-nél nagyobbnak kell lennie!'; $lang['Maximum width must be a number superior to 50'] = 'A maximális képszélességnek 50-nél nagyobbnak kell lennie!';
$lang['display a calendar by creation date'] = 'Naptár megjelenítése a készítés dátuma szerint'; $lang['display a calendar by creation date'] = 'Naptár megjelenítése a készítés dátuma szerint';
$lang['display all elements in all sub-albums'] = 'Megjelenik az összes elem (belső albumok is)'; $lang['display all photos in all sub-albums'] = 'Megjelenik az összes elem (belső albumok is)';
$lang['return to normal view mode'] = 'Visszatérés a normál kinézethez'; $lang['return to normal view mode'] = 'Visszatérés a normál kinézethez';
$lang['display a calendar by posted date'] = 'Naptár megjelenítése a feltöltés dátuma szerint'; $lang['display a calendar by posted date'] = 'Naptár megjelenítése a feltöltés dátuma szerint';
$lang['month'][10] = 'Október'; $lang['month'][10] = 'Október';
@ -224,8 +224,8 @@ $lang['month'][8] = 'Augusztus';
$lang['month'][9] = 'Szeptember'; $lang['month'][9] = 'Szeptember';
$lang['Most visited'] = 'Legtöbbször nézett'; $lang['Most visited'] = 'Legtöbbször nézett';
$lang['display most visited photos'] = 'A leglátogatottabb képek megjelenítése'; $lang['display most visited photos'] = 'A leglátogatottabb képek megjelenítése';
$lang['The number of images per row must be a not null scalar'] = 'A soronkénti képek száma nem lehet 0!'; $lang['The number of photos per row must be a not null scalar'] = 'A soronkénti képek száma nem lehet 0!';
$lang['Number of images per row'] = 'Képek száma soronként'; $lang['Number of photos per row'] = 'Képek száma soronként';
$lang['The number of rows per page must be a not null scalar'] = 'Az oldalankénti sorok száma nem lehet 0!'; $lang['The number of rows per page must be a not null scalar'] = 'Az oldalankénti sorok száma nem lehet 0!';
$lang['Number of rows per page'] = 'Sorok száma oldalanként'; $lang['Number of rows per page'] = 'Sorok száma oldalanként';
$lang['Unknown identifier'] = 'Ismeretlen azonosító'; $lang['Unknown identifier'] = 'Ismeretlen azonosító';
@ -233,12 +233,12 @@ $lang['New password'] = 'Új jelszó';
$lang['Rate this photo'] = 'Értékeld a képet'; $lang['Rate this photo'] = 'Értékeld a képet';
$lang['Next'] = 'Következő'; $lang['Next'] = 'Következő';
$lang['no rate'] = 'még nincs értékelve'; $lang['no rate'] = 'még nincs értékelve';
$lang['Elements posted within the last %d day.'] = 'Az alábbi elemek kerültek fel az elmúlt % d napban.'; $lang['Photos posted within the last %d day.'] = 'Az alábbi elemek kerültek fel az elmúlt % d napban.';
$lang['Elements posted within the last %d days.'] = 'Az alábbi elemek kerültek fel az elmúlt % d napban.'; $lang['Photos posted within the last %d days.'] = 'Az alábbi elemek kerültek fel az elmúlt % d napban.';
$lang['password updated'] = 'Jelszó frissítve'; $lang['password updated'] = 'Jelszó frissítve';
$lang['Recent period must be a positive integer value'] = 'Kell egy pozitív egész érték'; $lang['Recent period must be a positive integer value'] = 'Kell egy pozitív egész érték';
$lang['picture'] = 'kép'; $lang['photo'] = 'kép';
$lang['Click on the picture to see it in high definition'] = 'Az eredeti méret megnyitásához kattints a képre!'; $lang['Click on the photo to see it in high definition'] = 'Az eredeti méret megnyitásához kattints a képre!';
$lang['Show file metadata'] = 'Meta adatok megjelenítése'; $lang['Show file metadata'] = 'Meta adatok megjelenítése';
$lang['Powered by'] = 'Az oldal motorja:'; $lang['Powered by'] = 'Az oldal motorja:';
$lang['Preferences'] = 'Beállítások'; $lang['Preferences'] = 'Beállítások';
@ -360,8 +360,6 @@ $lang['Are you sure?'] = 'Biztos vagy benne?';
$lang['delete this comment'] = 'Hozzászólás törlése'; $lang['delete this comment'] = 'Hozzászólás törlése';
$lang['Email address is missing. Please specify an email address.'] = 'E-mail cím hiányzik. Kérem írja be az e-mail címet.'; $lang['Email address is missing. Please specify an email address.'] = 'E-mail cím hiányzik. Kérem írja be az e-mail címet.';
// --------- Starting below: Új vagy javított $lang ---- Tőle: Colibri (2.1.0 RC1) // --------- Starting below: Új vagy javított $lang ---- Tőle: Colibri (2.1.0 RC1)
$lang['Some info about this picture'] = 'Kép információi';
$lang['Some more (technical) info about this picture'] = 'További (technikai) adatok a képhez';
$lang['edit this comment'] = 'Hozzászólás módosítása'; $lang['edit this comment'] = 'Hozzászólás módosítása';
$lang['Edit a comment'] = 'A hozzászólás módosítása'; $lang['Edit a comment'] = 'A hozzászólás módosítása';
$lang['(!) This comment requires validation'] = '(!) Ezt a hozzászólást engedélyezni kell'; $lang['(!) This comment requires validation'] = '(!) Ezt a hozzászólást engedélyezni kell';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Voto medio';
$lang['Albums'] = 'Album'; $lang['Albums'] = 'Album';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Chiudi questa finestra'; $lang['Close this window'] = 'Chiudi questa finestra';
$lang['Complete RSS feed (images, comments)'] = 'Feed RSS completo (immagini, commenti)'; $lang['Complete RSS feed (photos, comments)'] = 'Feed RSS completo (immagini, commenti)';
$lang['Confirm Password'] = 'Conferma la Password'; $lang['Confirm Password'] = 'Conferma la Password';
$lang['Connection settings'] = 'Parametri di connessione'; $lang['Connection settings'] = 'Parametri di connessione';
$lang['Login'] = 'Connessione'; $lang['Login'] = 'Connessione';
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = 'Password dimenticata ?';
$lang['Go through the gallery as a visitor'] = 'Visita la galleria come ospite'; $lang['Go through the gallery as a visitor'] = 'Visita la galleria come ospite';
$lang['Help'] = 'Aiuto'; $lang['Help'] = 'Aiuto';
$lang['Identification'] = 'Identificazione'; $lang['Identification'] = 'Identificazione';
$lang['Image only RSS feed'] = 'Feed RSS solo per le immagini'; $lang['Photos only RSS feed'] = 'Feed RSS solo per le immagini';
$lang['Keyword'] = 'Parola chiave'; $lang['Keyword'] = 'Parola chiave';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'Non disponibile'; $lang['N/A'] = 'Non disponibile';
@ -113,7 +113,7 @@ $lang['Sort by'] = 'Ordina per';
$lang['Sort order'] = 'Tipo di ordinamento'; $lang['Sort order'] = 'Tipo di ordinamento';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'L\'RSS Feed notifica delle novità della galleria: nuove immagini, nuovi album, nuovi commenti. Da usare con un lettore RSS Feed.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'L\'RSS Feed notifica delle novità della galleria: nuove immagini, nuovi album, nuovi commenti. Da usare con un lettore RSS Feed.';
$lang['Unknown feed identifier'] = 'Identificatore di flusso sconosciuto'; $lang['Unknown feed identifier'] = 'Identificatore di flusso sconosciuto';
$lang['User comments'] = 'Commenti utenti'; $lang['User comments'] = 'Commenti utenti';
$lang['Username'] = 'Nome utente'; $lang['Username'] = 'Nome utente';
@ -200,12 +200,12 @@ $lang['Last'] = 'Ultima';
$lang['Logout'] = 'Logout'; $lang['Logout'] = 'Logout';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = 'obbligatorio'; $lang['obligatory'] = 'obbligatorio';
$lang['Maximum height of the pictures'] = 'Altezza massima delle immagini'; $lang['Maximum photo height'] = '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 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 photo width'] = '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['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 a calendar by creation date'] = 'Mostra il calendario per data di creazione';
$lang['display all elements in all sub-albums'] = 'Mostrare tutti gli elementi in tutti gli album e sub album'; $lang['display all photos in all sub-albums'] = 'Mostrare tutti gli elementi in tutti gli album e sub album';
$lang['return to normal view mode'] = 'Ritorna alla visualizzazione normale'; $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['display a calendar by posted date'] = 'Mostra il calendario per data d\'inserimento nella galleria';
$lang['month'][10] = 'Ottobre'; $lang['month'][10] = 'Ottobre';
@ -222,8 +222,8 @@ $lang['month'][8] = 'Agosto';
$lang['month'][9] = 'Settembre'; $lang['month'][9] = 'Settembre';
$lang['Most visited'] = 'Le più viste'; $lang['Most visited'] = 'Le più viste';
$lang['display most visited photos'] = 'Mostra le foto le più viste'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Numero di righe per pagina';
$lang['Unknown identifier'] = 'Identificante sconosciuto'; $lang['Unknown identifier'] = 'Identificante sconosciuto';
@ -231,12 +231,12 @@ $lang['New password'] = 'Nuova password';
$lang['Rate this photo'] = 'Vota questa foto'; $lang['Rate this photo'] = 'Vota questa foto';
$lang['Next'] = 'Prossima'; $lang['Next'] = 'Prossima';
$lang['no rate'] = 'nessun voto'; $lang['no rate'] = 'nessun voto';
$lang['Elements posted within the last %d day.'] = 'Elementi pubblicati nell\'ultimo giorno %d.'; $lang['Photos posted within the last %d day.'] = 'Elementi pubblicati nell\'ultimo giorno %d.';
$lang['Elements posted within the last %d days.'] = 'Elementi pubblicati negli ultimi %d giorni.'; $lang['Photos posted within the last %d days.'] = 'Elementi pubblicati negli ultimi %d giorni.';
$lang['password updated'] = 'password aggiornata'; $lang['password updated'] = 'password aggiornata';
$lang['Recent period must be a positive integer value'] = 'Il periodo deve essere un valore intero positivo'; $lang['Recent period must be a positive integer value'] = 'Il periodo deve essere un valore intero positivo';
$lang['picture'] = 'immagini'; $lang['photo'] = 'immagini';
$lang['Click on the picture to see it in high definition'] = 'Cliccare sull\'immagine per vederla in alta definizione'; $lang['Click on the photo to see it in high definition'] = 'Cliccare sull\'immagine per vederla in alta definizione';
$lang['Show file metadata'] = 'Mostrare i metadati del file'; $lang['Show file metadata'] = 'Mostrare i metadati del file';
$lang['Powered by'] = 'Sito realizzato grazie a'; $lang['Powered by'] = 'Sito realizzato grazie a';
$lang['Preferences'] = 'Preferenze'; $lang['Preferences'] = 'Preferenze';
@ -352,8 +352,6 @@ $lang['Reset to default values'] = 'Ripristinare le impostazioni predefinite';
$lang['delete all photos from your favorites'] = 'Cancellare tutte le immagini dai vostri favoriti'; $lang['delete all photos from your favorites'] = 'Cancellare tutte le immagini dai vostri favoriti';
$lang['Sent by'] = 'Mandato da'; $lang['Sent by'] = 'Mandato da';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'I cookies sono bloccati o non supportati dal vostro browser. Dovete attivare i cookie per connettervi.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'I cookies sono bloccati o non supportati dal vostro browser. Dovete attivare i cookie per connettervi.';
$lang['Some info about this picture'] = 'Alcune informazioni su questa foto';
$lang['Some more (technical) info about this picture'] = 'Alcune informazioni (tecniche) su questa foto';
$lang['edit this comment'] = 'Modificare questo commento'; $lang['edit this comment'] = 'Modificare questo commento';
$lang['Edit a comment'] = 'Modificare un commento'; $lang['Edit a comment'] = 'Modificare un commento';
$lang['Are you sure?'] = 'Sei sicuro?'; $lang['Are you sure?'] = 'Sei sicuro?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = '平均評価';
$lang['Albums'] = 'カテゴリ'; $lang['Albums'] = 'カテゴリ';
$lang['Album'] = 'カテゴリ'; $lang['Album'] = 'カテゴリ';
$lang['Close this window'] = 'このウィンドウを閉じる'; $lang['Close this window'] = 'このウィンドウを閉じる';
$lang['Complete RSS feed (images, comments)'] = '完全なRSSフィード (イメージ、コメント)'; $lang['Complete RSS feed (photos, comments)'] = '完全なRSSフィード (イメージ、コメント)';
$lang['Confirm Password'] = 'パスワードをもう一度'; $lang['Confirm Password'] = 'パスワードをもう一度';
$lang['Connection settings'] = '接続設定'; $lang['Connection settings'] = '接続設定';
$lang['Login'] = 'ログイン'; $lang['Login'] = 'ログイン';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'パスワードを忘れましたか?';
$lang['Go through the gallery as a visitor'] = 'ビジターとしてギャラリーにアクセスする'; $lang['Go through the gallery as a visitor'] = 'ビジターとしてギャラリーにアクセスする';
$lang['Help'] = 'ヘルプ'; $lang['Help'] = 'ヘルプ';
$lang['Identification'] = 'アイデンティフィケーション'; $lang['Identification'] = 'アイデンティフィケーション';
$lang['Image only RSS feed'] = 'イメージ限定RSSフィード'; $lang['Photos only RSS feed'] = 'イメージ限定RSSフィード';
$lang['Keyword'] = 'キーワード'; $lang['Keyword'] = 'キーワード';
$lang['Links'] = 'リンク'; $lang['Links'] = 'リンク';
$lang['N/A'] = 'なし'; $lang['N/A'] = 'なし';
@ -114,7 +114,7 @@ $lang['Sort by'] = '並び替え';
$lang['Sort order'] = '並び順'; $lang['Sort order'] = '並び順';
$lang['Tag'] = 'タグ'; $lang['Tag'] = 'タグ';
$lang['Tags'] = 'タグ'; $lang['Tags'] = 'タグ';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS通知フィードでは、このウェブサイトからニュースを通知します : 新しい写真、更新カテゴリ、新しいコメント。RSSフィードリーダーをお使いください。'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS通知フィードでは、このウェブサイトからニュースを通知します : 新しい写真、更新カテゴリ、新しいコメント。RSSフィードリーダーをお使いください。';
$lang['Unknown feed identifier'] = '不明なフィードIDです。'; $lang['Unknown feed identifier'] = '不明なフィードIDです。';
$lang['User comments'] = 'ユーザコメント'; $lang['User comments'] = 'ユーザコメント';
$lang['Username'] = 'ユーザ名'; $lang['Username'] = 'ユーザ名';
@ -201,12 +201,12 @@ $lang['Last'] = '最後へ';
$lang['Logout'] = 'ログアウト'; $lang['Logout'] = 'ログアウト';
$lang['E-mail address'] = 'メールアドレス'; $lang['E-mail address'] = 'メールアドレス';
$lang['obligatory'] = '必須'; $lang['obligatory'] = '必須';
$lang['Maximum height of the pictures'] = '写真の最大高'; $lang['Maximum photo height'] = '写真の最大高';
$lang['Maximum height must be a number superior to 50'] = '最大高は、50以上に設定してください。'; $lang['Maximum height must be a number superior to 50'] = '最大高は、50以上に設定してください。';
$lang['Maximum width of the pictures'] = '写真の最大幅'; $lang['Maximum photo width'] = '写真の最大幅';
$lang['Maximum width must be a number superior to 50'] = '最大幅は、50以上に設定してください。'; $lang['Maximum width must be a number superior to 50'] = '最大幅は、50以上に設定してください。';
$lang['display a calendar by creation date'] = '作成日のカレンダーを表示する'; $lang['display a calendar by creation date'] = '作成日のカレンダーを表示する';
$lang['display all elements in all sub-albums'] = 'すべてのサブカテゴリのエレメント表示する'; $lang['display all photos in all sub-albums'] = 'すべてのサブカテゴリのエレメント表示する';
$lang['return to normal view mode'] = 'ノーマルビューモードに戻る'; $lang['return to normal view mode'] = 'ノーマルビューモードに戻る';
$lang['display a calendar by posted date'] = '投稿日のカレンダーを表示する'; $lang['display a calendar by posted date'] = '投稿日のカレンダーを表示する';
$lang['month'][10] = '10月'; $lang['month'][10] = '10月';
@ -223,8 +223,8 @@ $lang['month'][8] = '8月';
$lang['month'][9] = '9月'; $lang['month'][9] = '9月';
$lang['Most visited'] = '最多アクセス'; $lang['Most visited'] = '最多アクセス';
$lang['display most visited photos'] = '最もアクセスされた写真を表示します。'; $lang['display most visited photos'] = '最もアクセスされた写真を表示します。';
$lang['The number of images per row must be a not null scalar'] = '1行あたりのイメージ数には、空白以外の値を設定してください。'; $lang['The number of photos per row must be a not null scalar'] = '1行あたりのイメージ数には、空白以外の値を設定してください。';
$lang['Number of images per row'] = '1行あたりのイメージ数'; $lang['Number of photos per row'] = '1行あたりのイメージ数';
$lang['The number of rows per page must be a not null scalar'] = '1ページあたりの行数には、空白以外の値を設定してください。'; $lang['The number of rows per page must be a not null scalar'] = '1ページあたりの行数には、空白以外の値を設定してください。';
$lang['Number of rows per page'] = '1ページあたりの行数'; $lang['Number of rows per page'] = '1ページあたりの行数';
$lang['Unknown identifier'] = '不明なID'; $lang['Unknown identifier'] = '不明なID';
@ -232,12 +232,12 @@ $lang['New password'] = '新しいパスワード';
$lang['Rate this photo'] = 'この写真を評する'; $lang['Rate this photo'] = 'この写真を評する';
$lang['Next'] = '次へ'; $lang['Next'] = '次へ';
$lang['no rate'] = '評価なし'; $lang['no rate'] = '評価なし';
$lang['Elements posted within the last %d day.'] = '直近 %d 日に投稿されたエレメントのみ表示します。'; $lang['Photos posted within the last %d day.'] = '直近 %d 日に投稿されたエレメントのみ表示します。';
$lang['Elements posted within the last %d days.'] = '直近 %d 日に投稿されたエレメントのみ表示します。'; $lang['Photos posted within the last %d days.'] = '直近 %d 日に投稿されたエレメントのみ表示します。';
$lang['password updated'] = 'パスワードが更新されました。'; $lang['password updated'] = 'パスワードが更新されました。';
$lang['Recent period must be a positive integer value'] = '最近の期間には正の整数を設定してください。'; $lang['Recent period must be a positive integer value'] = '最近の期間には正の整数を設定してください。';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = '写真'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = '写真';
$lang['Click on the picture to see it in high definition'] = '高解像度の写真を表示するには、写真をクリックしてください。'; $lang['Click on the photo to see it in high definition'] = '高解像度の写真を表示するには、写真をクリックしてください。';
$lang['Show file metadata'] = 'ファイルメタデータを表示する'; $lang['Show file metadata'] = 'ファイルメタデータを表示する';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'プリファレンス'; $lang['Preferences'] = 'プリファレンス';
@ -355,8 +355,6 @@ $lang['Reset to default values'] = 'デフォルトにリセットする';
$lang['delete all photos from your favorites'] = 'お気に入りから画像を全て削除する。'; $lang['delete all photos from your favorites'] = 'お気に入りから画像を全て削除する。';
$lang['Sent by'] = 'Sent by'; $lang['Sent by'] = 'Sent by';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'あなたのブラウザーでは、クッキーの設定が有効にされていません。ブラウザのクッキーが有効になっていることも確認しておいてください。'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'あなたのブラウザーでは、クッキーの設定が有効にされていません。ブラウザのクッキーが有効になっていることも確認しておいてください。';
$lang['Some info about this picture'] = 'この写真による情報';
$lang['Some more (technical) info about this picture'] = 'この写真の詳細情報';
$lang['edit this comment'] = 'このコメントに編集'; $lang['edit this comment'] = 'このコメントに編集';
$lang['Edit a comment'] = 'コメントを編集'; $lang['Edit a comment'] = 'コメントを編集';
$lang['(!) This comment requires validation'] = '(!) このコメントは有効が必要'; $lang['(!) This comment requires validation'] = '(!) このコメントは有効が必要';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'საშუალო ქულა';
$lang['Albums'] = 'გალერეა'; $lang['Albums'] = 'გალერეა';
$lang['Album'] = 'გალერეა'; $lang['Album'] = 'გალერეა';
$lang['Close this window'] = 'დავხუროთ ეს ფანჯარა'; $lang['Close this window'] = 'დავხუროთ ეს ფანჯარა';
$lang['Complete RSS feed (images, comments)'] = 'სრული RSS ლენტა (ფოტოები, კომენტარები)'; $lang['Complete RSS feed (photos, comments)'] = 'სრული RSS ლენტა (ფოტოები, კომენტარები)';
$lang['Confirm Password'] = 'გაიმეორეთ პაროლი'; $lang['Confirm Password'] = 'გაიმეორეთ პაროლი';
$lang['Connection settings'] = 'დაკავშირების გასწორება'; $lang['Connection settings'] = 'დაკავშირების გასწორება';
$lang['Login'] = 'ავტორიზაცია'; $lang['Login'] = 'ავტორიზაცია';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'დაგავიწყდათ პარო
$lang['Go through the gallery as a visitor'] = 'შევიდეთ გალერეაში როგორც სტუმარი'; $lang['Go through the gallery as a visitor'] = 'შევიდეთ გალერეაში როგორც სტუმარი';
$lang['Help'] = 'დახმარება'; $lang['Help'] = 'დახმარება';
$lang['Identification'] = 'იდენტიფიკაცია'; $lang['Identification'] = 'იდენტიფიკაცია';
$lang['Image only RSS feed'] = 'RSS ლენტი ფოტოებით'; $lang['Photos only RSS feed'] = 'RSS ლენტი ფოტოებით';
$lang['Keyword'] = 'ძირითადი სიტყვები'; $lang['Keyword'] = 'ძირითადი სიტყვები';
$lang['Links'] = 'ბმულები'; $lang['Links'] = 'ბმულები';
$lang['N/A'] = 'გაურკვეველია'; $lang['N/A'] = 'გაურკვეველია';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'სორტირება';
$lang['Sort order'] = 'სორტირების წესი'; $lang['Sort order'] = 'სორტირების წესი';
$lang['Tag'] = 'სიტყვა'; $lang['Tag'] = 'სიტყვა';
$lang['Tags'] = 'საძიებო სიტყვები'; $lang['Tags'] = 'საძიებო სიტყვები';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS შეტყობინებები გიამბობენ ახალ ფოტოებზე, გალერეის განახლებაზე, ახალ კომენტარებზე. ამისათვის გამოიყენეთ RSS-წამკითხველი.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS შეტყობინებები გიამბობენ ახალ ფოტოებზე, გალერეის განახლებაზე, ახალ კომენტარებზე. ამისათვის გამოიყენეთ RSS-წამკითხველი.';
$lang['Unknown feed identifier'] = 'ლენტის გაურკვეველი იდენტიფიკატორი'; $lang['Unknown feed identifier'] = 'ლენტის გაურკვეველი იდენტიფიკატორი';
$lang['User comments'] = 'მნახველების კომენტარები'; $lang['User comments'] = 'მნახველების კომენტარები';
$lang['Username'] = 'მომხმარებლის სახელი'; $lang['Username'] = 'მომხმარებლის სახელი';
@ -202,12 +202,12 @@ $lang['Last'] = 'ბოლო';
$lang['Logout'] = 'გამოსვლა'; $lang['Logout'] = 'გამოსვლა';
$lang['E-mail address'] = 'E-mail მისამართი'; $lang['E-mail address'] = 'E-mail მისამართი';
$lang['obligatory'] = 'აუცილებელი'; $lang['obligatory'] = 'აუცილებელი';
$lang['Maximum height of the pictures'] = 'სურათის მაქსიმალური სიმაღლე'; $lang['Maximum photo height'] = 'სურათის მაქსიმალური სიმაღლე';
$lang['Maximum height must be a number superior to 50'] = 'სურათის მაქსიმალური სიმაღლე უნდა იყოს 50ზე მეტი'; $lang['Maximum height must be a number superior to 50'] = 'სურათის მაქსიმალური სიმაღლე უნდა იყოს 50ზე მეტი';
$lang['Maximum width of the pictures'] = 'სურათის მაქსიმალური სიგანე'; $lang['Maximum photo width'] = 'სურათის მაქსიმალური სიგანე';
$lang['Maximum width must be a number superior to 50'] = 'სურათის მაქსიმალური სიგანე უნდა იყოს 50ზე მეტი'; $lang['Maximum width must be a number superior to 50'] = 'სურათის მაქსიმალური სიგანე უნდა იყოს 50ზე მეტი';
$lang['display a calendar by creation date'] = ' ვნახოთ კალენდარი შექმნის თარიღით'; $lang['display a calendar by creation date'] = ' ვნახოთ კალენდარი შექმნის თარიღით';
$lang['display all elements in all sub-albums'] = ' ვნახოთ ყველა ფოტო ყველა ქვეკატეგორიებში'; $lang['display all photos in all sub-albums'] = ' ვნახოთ ყველა ფოტო ყველა ქვეკატეგორიებში';
$lang['return to normal view mode'] = 'ჩვეულებრივ რეჯიმში დაბრუნება'; $lang['return to normal view mode'] = 'ჩვეულებრივ რეჯიმში დაბრუნება';
$lang['display a calendar by posted date'] = ' ვნახოთ კალენდარი გაგზავნის დროის მიხედვით'; $lang['display a calendar by posted date'] = ' ვნახოთ კალენდარი გაგზავნის დროის მიხედვით';
$lang['month'][10] = 'ოქტომბერი'; $lang['month'][10] = 'ოქტომბერი';
@ -224,8 +224,8 @@ $lang['month'][8] = 'აგვისტო';
$lang['month'][9] = 'სექტემბერი'; $lang['month'][9] = 'სექტემბერი';
$lang['Most visited'] = 'პოპულარურობის მიხედვით'; $lang['Most visited'] = 'პოპულარურობის მიხედვით';
$lang['display most visited photos'] = 'ვნახოთ ყველაზე პოპულარული ფოტოები'; $lang['display most visited photos'] = 'ვნახოთ ყველაზე პოპულარული ფოტოები';
$lang['The number of images per row must be a not null scalar'] = 'ფოტოების რიცხვი არ უნდა იყოს ნულის ტოლი'; $lang['The number of photos per row must be a not null scalar'] = 'ფოტოების რიცხვი არ უნდა იყოს ნულის ტოლი';
$lang['Number of images per row'] = 'ფოტოების რაოდენობა სტრიქონში'; $lang['Number of photos per row'] = 'ფოტოების რაოდენობა სტრიქონში';
$lang['The number of rows per page must be a not null scalar'] = 'სტრიქონთა რაოდენობა არ უნდა იყოს ნულის ტოლი'; $lang['The number of rows per page must be a not null scalar'] = 'სტრიქონთა რაოდენობა არ უნდა იყოს ნულის ტოლი';
$lang['Number of rows per page'] = 'სტრიქონთა რიცხვი გვერდზე'; $lang['Number of rows per page'] = 'სტრიქონთა რიცხვი გვერდზე';
$lang['Unknown identifier'] = 'უცნობი იდენტიფიკატორი'; $lang['Unknown identifier'] = 'უცნობი იდენტიფიკატორი';
@ -234,12 +234,12 @@ $lang['Rate this photo'] = 'შეაფასეთ ეს ფოტო';
$lang['Next'] = 'შემდეგი'; $lang['Next'] = 'შემდეგი';
$lang['Home'] = 'დასაწყისი'; $lang['Home'] = 'დასაწყისი';
$lang['no rate'] = 'არ არის შეფასებული'; $lang['no rate'] = 'არ არის შეფასებული';
$lang['Elements posted within the last %d day.'] = 'ვნახოთ ფოტოები, გამოქვეყნებული ბოლო %s დღეში.'; $lang['Photos posted within the last %d day.'] = 'ვნახოთ ფოტოები, გამოქვეყნებული ბოლო %s დღეში.';
$lang['Elements posted within the last %d days.'] = 'ვნახოთ ფოტოები, გამოქვეყნებული ბოლო %s დღეში.'; $lang['Photos posted within the last %d days.'] = 'ვნახოთ ფოტოები, გამოქვეყნებული ბოლო %s დღეში.';
$lang['password updated'] = 'პაროლი შეცვლილია'; $lang['password updated'] = 'პაროლი შეცვლილია';
$lang['Recent period must be a positive integer value'] = 'ბოლო პერიოდი უნდა იყოს დადებითი ციფრი'; $lang['Recent period must be a positive integer value'] = 'ბოლო პერიოდი უნდა იყოს დადებითი ციფრი';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'ფოტო'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'ფოტო';
$lang['Click on the picture to see it in high definition'] = 'დაკლიკეთ ფოტოზე, რათა ნახოთ იგი დიდი ფორმატით'; $lang['Click on the photo to see it in high definition'] = 'დაკლიკეთ ფოტოზე, რათა ნახოთ იგი დიდი ფორმატით';
$lang['Show file metadata'] = 'ვნახოთ მეტამონაცემები'; $lang['Show file metadata'] = 'ვნახოთ მეტამონაცემები';
$lang['Powered by'] = 'სკრიპტი'; $lang['Powered by'] = 'სკრიპტი';
$lang['Preferences'] = 'უპირატესი'; $lang['Preferences'] = 'უპირატესი';
@ -359,8 +359,6 @@ $lang['Reset to default values'] = 'აღვადგინოთ ძირი
$lang['delete all photos from your favorites'] = 'გადავაგდოთ ყველა ფოტო რჩეულიდან'; $lang['delete all photos from your favorites'] = 'გადავაგდოთ ყველა ფოტო რჩეულიდან';
$lang['Sent by'] = 'გაგზავნა'; $lang['Sent by'] = 'გაგზავნა';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'თქვენს როუზერს არ აქვს კუკების(Cookies) მხარდაჭერა, ან ბლოკავს მათ. გთხოვთ ჩართოთ ან გაასწოროთ იგი.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'თქვენს როუზერს არ აქვს კუკების(Cookies) მხარდაჭერა, ან ბლოკავს მათ. გთხოვთ ჩართოთ ან გაასწოროთ იგი.';
$lang['Some info about this picture'] = 'ინფორმაცია ფოტოზე';
$lang['Some more (technical) info about this picture'] = 'ინფორმაცია ფოტოზე (ტექნიკური)';
$lang['edit this comment'] = 'ამ კომენტარის რედაქტირება'; $lang['edit this comment'] = 'ამ კომენტარის რედაქტირება';
$lang['Edit a comment'] = 'კომენტარის რედაქტირება'; $lang['Edit a comment'] = 'კომენტარის რედაქტირება';
$lang['(!) This comment requires validation'] = '(!) ეს კომენტარი ელოდება შემოწმებას'; $lang['(!) This comment requires validation'] = '(!) ეს კომენტარი ელოდება შემოწმებას';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = "Vidējais novērtejums";
$lang['Albums'] = 'Albūmi'; $lang['Albums'] = 'Albūmi';
$lang['Album'] = 'Albūms'; $lang['Album'] = 'Albūms';
$lang['Close this window'] = "Aizveriet šo logu"; $lang['Close this window'] = "Aizveriet šo logu";
$lang['Complete RSS feed (images, comments)'] = "Pabeidziet RSS padevi (attēli, komentāri)"; $lang['Complete RSS feed (photos, comments)'] = "Pabeidziet RSS padevi (attēli, komentāri)";
$lang['Confirm Password'] = "Apstiprināt paroli"; $lang['Confirm Password'] = "Apstiprināt paroli";
$lang['Connection settings'] = "Savienojuma iestatījumi"; $lang['Connection settings'] = "Savienojuma iestatījumi";
$lang['Login'] = "Ielogoties"; $lang['Login'] = "Ielogoties";
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = "Aizmirsāt paroli?";
$lang['Go through the gallery as a visitor'] = "Skatīt galeriju ka apmeklētājam"; $lang['Go through the gallery as a visitor'] = "Skatīt galeriju ka apmeklētājam";
$lang['Help'] = "Palīgs"; $lang['Help'] = "Palīgs";
$lang['Identification'] = "Identifikācija"; $lang['Identification'] = "Identifikācija";
$lang['Image only RSS feed'] = "Tkai RSS piegādes attēli"; $lang['Photos only RSS feed'] = "Tkai RSS piegādes attēli";
$lang['Keyword'] = "Atslēgvārds"; $lang['Keyword'] = "Atslēgvārds";
$lang['Links'] = "Saites"; $lang['Links'] = "Saites";
$lang['N/A'] = "N/A"; $lang['N/A'] = "N/A";
@ -113,7 +113,7 @@ $lang['Sort by'] = "Sarindot pēc";
$lang['Sort order'] = "Rindošanas secība"; $lang['Sort order'] = "Rindošanas secība";
$lang['Tag'] = "Tags"; $lang['Tag'] = "Tags";
$lang['Tags'] = "Tagi"; $lang['Tags'] = "Tagi";
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS nodrošina informāciju par jauniem notikumiem uz šīs web lapas: jauni attēli, atjaunināti albūmi, jauni komentāri. Lietojam ar RSS info lasītāju.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS nodrošina informāciju par jauniem notikumiem uz šīs web lapas: jauni attēli, atjaunināti albūmi, jauni komentāri. Lietojam ar RSS info lasītāju.';
$lang['Unknown feed identifier'] = "Nezināms piegādes identifikators"; $lang['Unknown feed identifier'] = "Nezināms piegādes identifikators";
$lang['User comments'] = "Lietotāja komentāri"; $lang['User comments'] = "Lietotāja komentāri";
$lang['Username'] = "Lietotājvārds"; $lang['Username'] = "Lietotājvārds";
@ -200,12 +200,12 @@ $lang['Last'] = "Pēdējais";
$lang['Logout'] = "Iziet"; $lang['Logout'] = "Iziet";
$lang['E-mail address'] = "E-pasta adreses"; $lang['E-mail address'] = "E-pasta adreses";
$lang['obligatory'] = "obligāts"; $lang['obligatory'] = "obligāts";
$lang['Maximum height of the pictures'] = "Attēla maksimālais augstums"; $lang['Maximum photo height'] = "Attēla maksimālais augstums";
$lang['Maximum height must be a number superior to 50'] = "Maksimālajam augstumam jābūt lielākam par 50"; $lang['Maximum height must be a number superior to 50'] = "Maksimālajam augstumam jābūt lielākam par 50";
$lang['Maximum width of the pictures'] = "Attēla maksimālais platums"; $lang['Maximum photo width'] = "Attēla maksimālais platums";
$lang['Maximum width must be a number superior to 50'] = "Maksimālajam platumam jābūt lielākam par 50"; $lang['Maximum width must be a number superior to 50'] = "Maksimālajam platumam jābūt lielākam par 50";
$lang['display a calendar by creation date'] = "rāda kalendārā izveides datumu"; $lang['display a calendar by creation date'] = "rāda kalendārā izveides datumu";
$lang['display all elements in all sub-albums'] = 'rādīt visus elementus visos albūmos un apakšalbūmos'; $lang['display all photos in all sub-albums'] = 'rādīt visus elementus visos albūmos un apakšalbūmos';
$lang['return to normal view mode'] = "atgriezties normālajā apskates režīmā"; $lang['return to normal view mode'] = "atgriezties normālajā apskates režīmā";
$lang['display a calendar by posted date'] = "rāda kalendārā iesniegšanas datumu"; $lang['display a calendar by posted date'] = "rāda kalendārā iesniegšanas datumu";
$lang['month'][10] = "Oktobris"; $lang['month'][10] = "Oktobris";
@ -222,8 +222,8 @@ $lang['month'][8] = "Augusts";
$lang['month'][9] = "Septembris"; $lang['month'][9] = "Septembris";
$lang['Most visited'] = "Visapmeklētākie"; $lang['Most visited'] = "Visapmeklētākie";
$lang['display most visited photos'] = "parādīt visapmeklētākos attēlus"; $lang['display most visited photos'] = "parādīt visapmeklētākos attēlus";
$lang['The number of images per row must be a not null scalar'] = "Attēlu skaitam rindā jābut lielākam par 0 un veselam skaitlim"; $lang['The number of photos per row must be a not null scalar'] = "Attēlu skaitam rindā jābut lielākam par 0 un veselam skaitlim";
$lang['Number of images per row'] = "Attēlu skaits rindā"; $lang['Number of photos per row'] = "Attēlu skaits rindā";
$lang['The number of rows per page must be a not null scalar'] = "Rindu skaitam lapā jābut lielākam par 0 un veselam skaitlim"; $lang['The number of rows per page must be a not null scalar'] = "Rindu skaitam lapā jābut lielākam par 0 un veselam skaitlim";
$lang['Number of rows per page'] = "Rindu skaits lapā"; $lang['Number of rows per page'] = "Rindu skaits lapā";
$lang['Unknown identifier'] = "Nezināms identifikators"; $lang['Unknown identifier'] = "Nezināms identifikators";
@ -231,12 +231,12 @@ $lang['New password'] = "Jauna parole";
$lang['Rate this photo'] = "Vērtējiet šo attēlu"; $lang['Rate this photo'] = "Vērtējiet šo attēlu";
$lang['Next'] = "Nākamais"; $lang['Next'] = "Nākamais";
$lang['no rate'] = "nav novērtējuma"; $lang['no rate'] = "nav novērtējuma";
$lang['Elements posted within the last %d day.'] = "Attēli, kas publicēti tikai %d dienā."; $lang['Photos posted within the last %d day.'] = "Attēli, kas publicēti tikai %d dienā.";
$lang['Elements posted within the last %d days.'] = "Attēli, kas publicēti tikai %d dienās."; $lang['Photos posted within the last %d days.'] = "Attēli, kas publicēti tikai %d dienās.";
$lang['password updated'] = "parole izmainīta"; $lang['password updated'] = "parole izmainīta";
$lang['Recent period must be a positive integer value'] = "Tekošajam periodam jābūt veselam skaitlim"; $lang['Recent period must be a positive integer value'] = "Tekošajam periodam jābūt veselam skaitlim";
$lang['picture'] = "attēls"; $lang['photo'] = "attēls";
$lang['Click on the picture to see it in high definition'] = "Uzklišķiniet uz attēla, lai apskatītu to HD režīmā"; $lang['Click on the photo to see it in high definition'] = "Uzklišķiniet uz attēla, lai apskatītu to HD režīmā";
$lang['Show file metadata'] = "Parādīt faila metadatus"; $lang['Show file metadata'] = "Parādīt faila metadatus";
$lang['Powered by'] = "Skripts"; $lang['Powered by'] = "Skripts";
$lang['Preferences'] = 'Izvēles'; $lang['Preferences'] = 'Izvēles';
@ -351,8 +351,6 @@ $lang['delete all photos from your favorites'] = "izdzēst visus attēlus on jū
$lang['Sent by'] = "Aizūtījis"; $lang['Sent by'] = "Aizūtījis";
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "Jūsu pārlūks ir bloķējis sīklietotnes - cookies. Lai varētu ielogoties ir jāaktevizē sīklietotnes."; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = "Jūsu pārlūks ir bloķējis sīklietotnes - cookies. Lai varētu ielogoties ir jāaktevizē sīklietotnes.";
$lang['Some info about this picture'] = "Informācija par šo attēlu";
$lang['Some more (technical) info about this picture'] = "Vairāk (tehniskas) informācijas par šo attēlu";
$lang['edit this comment'] = "labot šo komentāru"; $lang['edit this comment'] = "labot šo komentāru";
$lang['Edit a comment'] = "Labot komentāru"; $lang['Edit a comment'] = "Labot komentāru";
$lang['Are you sure?'] = "Esat pārliecināts?"; $lang['Are you sure?'] = "Esat pārliecināts?";

View file

@ -62,7 +62,7 @@ $lang['Average rate'] = 'Просек';
$lang['Albums'] = 'Категории'; $lang['Albums'] = 'Категории';
$lang['Album'] = 'Категорија'; $lang['Album'] = 'Категорија';
$lang['Close this window'] = 'Затвори го овој прозор'; $lang['Close this window'] = 'Затвори го овој прозор';
$lang['Complete RSS feed (images, comments)'] = 'Комплетен RSS feed (фотографии и коментари)'; $lang['Complete RSS feed (photos, comments)'] = 'Комплетен RSS feed (фотографии и коментари)';
$lang['Confirm Password'] = 'Потврдете ја лозинката'; $lang['Confirm Password'] = 'Потврдете ја лозинката';
$lang['Connection settings'] = 'Најавете се со вашето корисничко име и лозинка'; $lang['Connection settings'] = 'Најавете се со вашето корисничко име и лозинка';
$lang['Login'] = 'Најави се'; $lang['Login'] = 'Најави се';
@ -87,7 +87,7 @@ $lang['Forgot your password?'] = 'Ја заборави лозинката?';
$lang['Go through the gallery as a visitor'] = 'Почетна страница'; $lang['Go through the gallery as a visitor'] = 'Почетна страница';
$lang['Help'] = 'Help'; $lang['Help'] = 'Help';
$lang['Identification'] = 'Корисник'; $lang['Identification'] = 'Корисник';
$lang['Image only RSS feed'] = 'Парцијален RSS feed (фотографии)'; $lang['Photos only RSS feed'] = 'Парцијален RSS feed (фотографии)';
$lang['Keyword'] = 'Клучен збор'; $lang['Keyword'] = 'Клучен збор';
$lang['Links'] = 'Линкови'; $lang['Links'] = 'Линкови';
$lang['N/A'] = 'Не е познат'; $lang['N/A'] = 'Не е познат';
@ -123,7 +123,7 @@ $lang['Sort by'] = 'Подреди ги по';
$lang['Sort order'] = 'Подредување по'; $lang['Sort order'] = 'Подредување по';
$lang['Tag'] = 'Етикета'; $lang['Tag'] = 'Етикета';
$lang['Tags'] = 'Етикети'; $lang['Tags'] = 'Етикети';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Really Simple Syndication функцијата обезбедува известувања кога се прикачуваат нови фотографии и пишуваат нови коментари. Потребно е да имате RSS feed reader. Повеќе информации може да најдете <a href="http://en.wikipedia.org/wiki/RSS_(file_format)">тука.</a>'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Really Simple Syndication функцијата обезбедува известувања кога се прикачуваат нови фотографии и пишуваат нови коментари. Потребно е да имате RSS feed reader. Повеќе информации може да најдете <a href="http://en.wikipedia.org/wiki/RSS_(file_format)">тука.</a>';
$lang['Unknown feed identifier'] = 'Непознат feed.'; $lang['Unknown feed identifier'] = 'Непознат feed.';
$lang['User comments'] = 'Коментари од корисниците'; $lang['User comments'] = 'Коментари од корисниците';
$lang['Username'] = 'Член'; $lang['Username'] = 'Член';
@ -211,12 +211,12 @@ $lang['Last'] = 'Последна';
$lang['Logout'] = 'Одјави се'; $lang['Logout'] = 'Одјави се';
$lang['E-mail address'] = 'E-mail адреса'; $lang['E-mail address'] = 'E-mail адреса';
$lang['obligatory'] = 'Полињата обележани со звездичка се задолжителни за пополнување'; $lang['obligatory'] = 'Полињата обележани со звездичка се задолжителни за пополнување';
$lang['Maximum height of the pictures'] = 'Максимална висина на фотографиите'; $lang['Maximum photo height'] = 'Максимална висина на фотографиите';
$lang['Maximum height must be a number superior to 50'] = 'Максималната висина мора да е број поголем од 50'; $lang['Maximum height must be a number superior to 50'] = 'Максималната висина мора да е број поголем од 50';
$lang['Maximum width of the pictures'] = 'Максимална ширина на фотографиите'; $lang['Maximum photo width'] = 'Максимална ширина на фотографиите';
$lang['Maximum width must be a number superior to 50'] = 'Максималната ширина мора да е број поголем од 50'; $lang['Maximum width must be a number superior to 50'] = 'Максималната ширина мора да е број поголем од 50';
$lang['display a calendar by creation date'] = 'Го покажува календарот по дата на создавање'; $lang['display a calendar by creation date'] = 'Го покажува календарот по дата на создавање';
$lang['display all elements in all sub-albums'] = 'Ги покажува сите елементи во сите подкатегории'; $lang['display all photos in all sub-albums'] = 'Ги покажува сите елементи во сите подкатегории';
$lang['return to normal view mode'] = 'Врати се кон нормалниот преглед'; $lang['return to normal view mode'] = 'Врати се кон нормалниот преглед';
$lang['display a calendar by posted date'] = 'Го покажува календарот по дата на испраќање'; $lang['display a calendar by posted date'] = 'Го покажува календарот по дата на испраќање';
$lang['month'][10] = 'октомври'; $lang['month'][10] = 'октомври';
@ -233,8 +233,8 @@ $lang['month'][8] = 'август';
$lang['month'][9] = 'септември'; $lang['month'][9] = 'септември';
$lang['Most visited'] = 'Најпосетени'; $lang['Most visited'] = 'Најпосетени';
$lang['display most visited photos'] = 'Ги покажува најпосетените фотографии'; $lang['display most visited photos'] = 'Ги покажува најпосетените фотографии';
$lang['The number of images per row must be a not null scalar'] = 'Бројот на фотографии во низа не може да биде непостоечки број.'; $lang['The number of photos per row must be a not null scalar'] = 'Бројот на фотографии во низа не може да биде непостоечки број.';
$lang['Number of images per row'] = 'Број на фотографии во низа'; $lang['Number of photos per row'] = 'Број на фотографии во низа';
$lang['The number of rows per page must be a not null scalar'] = 'Бројот на низи по страна не може да биде непостоечки број.'; $lang['The number of rows per page must be a not null scalar'] = 'Бројот на низи по страна не може да биде непостоечки број.';
$lang['Number of rows per page'] = 'Број на низи по страна'; $lang['Number of rows per page'] = 'Број на низи по страна';
$lang['Unknown identifier'] = 'Unknown identifier'; $lang['Unknown identifier'] = 'Unknown identifier';
@ -242,12 +242,12 @@ $lang['New password'] = 'Нова лозинка';
$lang['Rate this photo'] = 'Оцени ја фотографијата'; $lang['Rate this photo'] = 'Оцени ја фотографијата';
$lang['Next'] = 'Следна'; $lang['Next'] = 'Следна';
$lang['no rate'] = 'Никој не ја оценал досега'; $lang['no rate'] = 'Никој не ја оценал досега';
$lang['Elements posted within the last %d day.'] = 'Се прикажуваат само фотографии испратени во последниот %s ден.'; $lang['Photos posted within the last %d day.'] = 'Се прикажуваат само фотографии испратени во последниот %s ден.';
$lang['Elements posted within the last %d days.'] = 'Се прикажуваат само фотографии испратени во последните %s дена.'; $lang['Photos posted within the last %d days.'] = 'Се прикажуваат само фотографии испратени во последните %s дена.';
$lang['password updated'] = 'лозинката е обновена'; $lang['password updated'] = 'лозинката е обновена';
$lang['Recent period must be a positive integer value'] = 'Мора да внесеш позитивен број.'; $lang['Recent period must be a positive integer value'] = 'Мора да внесеш позитивен број.';
$lang['picture'] = 'фотографија'; $lang['photo'] = 'фотографија';
$lang['Click on the picture to see it in high definition'] = 'Кликни на фотографијата за поголема димензија'; $lang['Click on the photo to see it in high definition'] = 'Кликни на фотографијата за поголема димензија';
$lang['Show file metadata'] = 'Покажи метадата за датотеката'; $lang['Show file metadata'] = 'Покажи метадата за датотеката';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Подесувања'; $lang['Preferences'] = 'Подесувања';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Gemiddelde waardering';
$lang['Albums'] = 'Categorieën'; $lang['Albums'] = 'Categorieën';
$lang['Album'] = 'Categorie'; $lang['Album'] = 'Categorie';
$lang['Close this window'] = 'Sluit dit venster'; $lang['Close this window'] = 'Sluit dit venster';
$lang['Complete RSS feed (images, comments)'] = 'Complete RSS feed (afbeeldingen, commentaar)'; $lang['Complete RSS feed (photos, comments)'] = 'Complete RSS feed (afbeeldingen, commentaar)';
$lang['Confirm Password'] = 'Bevestig wachtwoord'; $lang['Confirm Password'] = 'Bevestig wachtwoord';
$lang['Connection settings'] = 'Verbindings-instellingen'; $lang['Connection settings'] = 'Verbindings-instellingen';
$lang['Login'] = 'Verbinding'; $lang['Login'] = 'Verbinding';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Wachtwoord vergeten?';
$lang['Go through the gallery as a visitor'] = 'Ga naar de galerie als gast'; $lang['Go through the gallery as a visitor'] = 'Ga naar de galerie als gast';
$lang['Help'] = 'Help'; $lang['Help'] = 'Help';
$lang['Identification'] = 'Administratie'; $lang['Identification'] = 'Administratie';
$lang['Image only RSS feed'] = 'Alleen RSS feed mbt afbeeldingen'; $lang['Photos only RSS feed'] = 'Alleen RSS feed mbt afbeeldingen';
$lang['Keyword'] = 'Sleutelwoord'; $lang['Keyword'] = 'Sleutelwoord';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'Niet bekend'; $lang['N/A'] = 'Niet bekend';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Sorteren op';
$lang['Sort order'] = 'Sorteervolgorde'; $lang['Sort order'] = 'Sorteervolgorde';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, 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['The RSS notification feed provides notification on news from this website : new photos, updated albums, 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['Unknown feed identifier'] = 'Onbekende feed identifier';
$lang['User comments'] = 'Gebruikers-commentaar'; $lang['User comments'] = 'Gebruikers-commentaar';
$lang['Username'] = 'Gebruikersnaam'; $lang['Username'] = 'Gebruikersnaam';
@ -202,12 +202,12 @@ $lang['Last'] = 'Laatste';
$lang['Logout'] = 'Loguit'; $lang['Logout'] = 'Loguit';
$lang['E-mail address'] = 'Email-adres'; $lang['E-mail address'] = 'Email-adres';
$lang['obligatory'] = 'verplicht'; $lang['obligatory'] = 'verplicht';
$lang['Maximum height of the pictures'] = 'Maximale hoogte van de afbeelding'; $lang['Maximum photo height'] = 'Maximale hoogte van de afbeelding';
$lang['Maximum height must be a number superior to 50'] = 'Maximale hoogte moet meer zijn dan 50'; $lang['Maximum height must be a number superior to 50'] = 'Maximale hoogte moet meer zijn dan 50';
$lang['Maximum width of the pictures'] = 'Maximale breedte van de afbeelding'; $lang['Maximum photo width'] = 'Maximale breedte van de afbeelding';
$lang['Maximum width must be a number superior to 50'] = 'Maximale breedte moet meer zijn dan 50'; $lang['Maximum width must be a number superior to 50'] = 'Maximale breedte moet meer zijn dan 50';
$lang['display a calendar by creation date'] = 'Toon afbeeldingen gesorteerd op aanmaakdatum'; $lang['display a calendar by creation date'] = 'Toon afbeeldingen gesorteerd op aanmaakdatum';
$lang['display all elements in all sub-albums'] = 'Toon alle afbeeldingen in alle sub-categorieën'; $lang['display all photos in all sub-albums'] = 'Toon alle afbeeldingen in alle sub-categorieën';
$lang['return to normal view mode'] = 'Terug naar de standaardweergave'; $lang['return to normal view mode'] = 'Terug naar de standaardweergave';
$lang['display a calendar by posted date'] = 'Toon afbeeldingen gesorteerd op plaatsingsdatum'; $lang['display a calendar by posted date'] = 'Toon afbeeldingen gesorteerd op plaatsingsdatum';
$lang['month'][10] = 'Oktober'; $lang['month'][10] = 'Oktober';
@ -224,8 +224,8 @@ $lang['month'][8] = 'Augustus';
$lang['month'][9] = 'September'; $lang['month'][9] = 'September';
$lang['Most visited'] = 'Meest bekeken'; $lang['Most visited'] = 'Meest bekeken';
$lang['display most visited photos'] = 'Toon de meest bekeken afbeelding'; $lang['display most visited photos'] = 'Toon de meest bekeken afbeelding';
$lang['The number of images per row must be a not null scalar'] = 'Het aantal afbeeldingen per rij mag geen ongeldige deling zijn'; $lang['The number of photos per row must be a not null scalar'] = 'Het aantal afbeeldingen per rij mag geen ongeldige deling zijn';
$lang['Number of images per row'] = 'Aantal afbeeldingen per rij'; $lang['Number of photos 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['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['Number of rows per page'] = 'Aantal rijen per pagina';
$lang['Unknown identifier'] = 'Onbekend herkenningsteken'; $lang['Unknown identifier'] = 'Onbekend herkenningsteken';
@ -233,12 +233,12 @@ $lang['New password'] = 'Nieuw wachtwoord';
$lang['Rate this photo'] = 'Waardeer deze afbeelding'; $lang['Rate this photo'] = 'Waardeer deze afbeelding';
$lang['Next'] = 'Volgende'; $lang['Next'] = 'Volgende';
$lang['no rate'] = 'geen waardering'; $lang['no rate'] = 'geen waardering';
$lang['Elements posted within the last %d day.'] = 'Toon alleen afbeeldingen geplaatst in de laatste %s dag.'; $lang['Photos posted within the last %d day.'] = 'Toon alleen afbeeldingen geplaatst in de laatste %s dag.';
$lang['Elements posted within the last %d days.'] = 'Toon alleen afbeeldingen geplaatst in de laatste %s dagen.'; $lang['Photos posted within the last %d days.'] = 'Toon alleen afbeeldingen geplaatst in de laatste %s dagen.';
$lang['password updated'] = 'wachtwoord bijgewerkt'; $lang['password updated'] = 'wachtwoord bijgewerkt';
$lang['Recent period must be a positive integer value'] = 'Recente periode moet een positieve waarde zijn'; $lang['Recent period must be a positive integer value'] = 'Recente periode moet een positieve waarde zijn';
$lang['picture'] = 'afbeelding'; $lang['photo'] = '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['Click on the photo 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['Show file metadata'] = 'Toon bestands metadata';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Voorkeuren'; $lang['Preferences'] = 'Voorkeuren';
@ -357,8 +357,6 @@ $lang['Reset to default values'] = 'Reset naar standaardwaarden';
$lang['delete all photos from your favorites'] = 'verwijder al de afbeeldingen van uw favorieten'; $lang['delete all photos from your favorites'] = 'verwijder al de afbeeldingen van uw favorieten';
$lang['Sent by'] = 'Verstuurd door'; $lang['Sent by'] = 'Verstuurd door';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies worden geblokkeerd of worden niet ondersteund door uw browser. Om verbinding te kunnen maken dient u er voor te zorgen dat het gebruik van cookies mogelijk is.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies worden geblokkeerd of worden niet ondersteund door uw browser. Om verbinding te kunnen maken dient u er voor te zorgen dat het gebruik van cookies mogelijk is.';
$lang['Some info about this picture'] = 'Enige informatie over deze afbeelding';
$lang['Some more (technical) info about this picture'] = 'Nog wat meer (technische) informatie over deze afbeelding';
$lang['edit this comment'] = 'Dit commentaar wijzigen'; $lang['edit this comment'] = 'Dit commentaar wijzigen';
$lang['Edit a comment'] = 'een commentaar wijzigen'; $lang['Edit a comment'] = 'een commentaar wijzigen';
$lang['(!) This comment requires validation'] = '(!) Dit commentaar moet nog gevakideerd worden'; $lang['(!) This comment requires validation'] = '(!) Dit commentaar moet nog gevakideerd worden';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -96,7 +96,7 @@ $lang['month'][9] = 'September';
$lang['Albums'] = 'Album'; $lang['Albums'] = 'Album';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Lukk dette vinduet'; $lang['Close this window'] = 'Lukk dette vinduet';
$lang['Complete RSS feed (images, comments)'] = 'Komplett RSS mating (bilder, kommentarer)'; $lang['Complete RSS feed (photos, comments)'] = 'Komplett RSS mating (bilder, kommentarer)';
$lang['Confirm Password'] = 'Bekreft Passord'; $lang['Confirm Password'] = 'Bekreft Passord';
$lang['Connection settings'] = 'Tilkoblings innstillinger'; $lang['Connection settings'] = 'Tilkoblings innstillinger';
$lang['Login'] = 'Logg inn'; $lang['Login'] = 'Logg inn';
@ -120,7 +120,7 @@ $lang['Forgot your password?'] = 'Glemt passord?';
$lang['Go through the gallery as a visitor'] = 'Naviger galleriet som gjest'; $lang['Go through the gallery as a visitor'] = 'Naviger galleriet som gjest';
$lang['Help'] = 'Hjelp'; $lang['Help'] = 'Hjelp';
$lang['Identification'] = 'Identifikasjon'; $lang['Identification'] = 'Identifikasjon';
$lang['Image only RSS feed'] = 'Bare bilder RSS feed'; $lang['Photos only RSS feed'] = 'Bare bilder RSS feed';
$lang['Keyword'] = 'Nøkkelord'; $lang['Keyword'] = 'Nøkkelord';
$lang['Links'] = 'Linker'; $lang['Links'] = 'Linker';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -176,7 +176,7 @@ $lang['Sort by'] = 'Sorter etter';
$lang['Sort order'] = 'Sorter alfabetisk'; $lang['Sort order'] = 'Sorter alfabetisk';
$lang['Tag'] = 'Ord'; $lang['Tag'] = 'Ord';
$lang['Tags'] = 'Ord'; $lang['Tags'] = 'Ord';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS mater gir varsling om nye aktiviteter fra denne web siden: nye bilder, oppdaterte album, nye kommentarer. For å bli brukt i en RSS leser.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS mater gir varsling om nye aktiviteter fra denne web siden: nye bilder, oppdaterte album, nye kommentarer. For å bli brukt i en RSS leser.';
$lang['Unknown feed identifier'] = 'ukjent mater gjenkjenner'; $lang['Unknown feed identifier'] = 'ukjent mater gjenkjenner';
$lang['User comments'] = 'Bruker kommentarer'; $lang['User comments'] = 'Bruker kommentarer';
$lang['Username'] = 'Brukernavn'; $lang['Username'] = 'Brukernavn';
@ -255,18 +255,18 @@ $lang['Last'] = 'Sist';
$lang['Logout'] = 'Logg ut'; $lang['Logout'] = 'Logg ut';
$lang['E-mail address'] = 'E-mail addresse'; $lang['E-mail address'] = 'E-mail addresse';
$lang['obligatory'] = 'obligatorisk'; $lang['obligatory'] = 'obligatorisk';
$lang['Maximum height of the pictures'] = 'Bildets maksimum høyde'; $lang['Maximum photo height'] = 'Bildets maksimum høyde';
$lang['Maximum height must be a number superior to 50'] = 'Maksimum høyde må være et tall større en 50'; $lang['Maximum height must be a number superior to 50'] = 'Maksimum høyde må være et tall større en 50';
$lang['Maximum width of the pictures'] = 'Bildets maksimums bredde'; $lang['Maximum photo width'] = 'Bildets maksimums bredde';
$lang['Maximum width must be a number superior to 50'] = 'Maksimum bredde må være et tall større en 50'; $lang['Maximum width must be a number superior to 50'] = 'Maksimum bredde må være et tall større en 50';
$lang['display a calendar by creation date'] = 'vis en kalender fra opprettelses dato'; $lang['display a calendar by creation date'] = 'vis en kalender fra opprettelses dato';
$lang['display all elements in all sub-albums'] = 'vis alle elementer i alle grunn-albumer'; $lang['display all photos in all sub-albums'] = 'vis alle elementer i alle grunn-albumer';
$lang['return to normal view mode'] = 'tilbake til normalvisning'; $lang['return to normal view mode'] = 'tilbake til normalvisning';
$lang['display a calendar by posted date'] = 'vis en kalender etter dato postet'; $lang['display a calendar by posted date'] = 'vis en kalender etter dato postet';
$lang['Most visited'] = 'Mest besøkte'; $lang['Most visited'] = 'Mest besøkte';
$lang['display most visited photos'] = 'vis mest besøkte bilder'; $lang['display most visited photos'] = 'vis mest besøkte bilder';
$lang['The number of images per row must be a not null scalar'] = 'Antall bilder per rad må være større en null'; $lang['The number of photos per row must be a not null scalar'] = 'Antall bilder per rad må være større en null';
$lang['Number of images per row'] = 'Antall bilder per rad'; $lang['Number of photos per row'] = 'Antall bilder per rad';
$lang['The number of rows per page must be a not null scalar'] = 'Antall rader per side må være større en null'; $lang['The number of rows per page must be a not null scalar'] = 'Antall rader per side må være større en null';
$lang['Number of rows per page'] = 'Antall rader per side'; $lang['Number of rows per page'] = 'Antall rader per side';
$lang['Unknown identifier'] = 'Ukjent identifier'; $lang['Unknown identifier'] = 'Ukjent identifier';
@ -274,12 +274,12 @@ $lang['New password'] = 'Nytt passord';
$lang['Rate this photo'] = 'Gi karakter på dette bildet'; $lang['Rate this photo'] = 'Gi karakter på dette bildet';
$lang['Next'] = 'Neste'; $lang['Next'] = 'Neste';
$lang['no rate'] = 'ingen karakter'; $lang['no rate'] = 'ingen karakter';
$lang['Elements posted within the last %d day.'] = 'Elementer posted kun de % siste dager.'; $lang['Photos posted within the last %d day.'] = 'Elementer posted kun de % siste dager.';
$lang['Elements posted within the last %d days.'] = 'Elementer posted kun de % siste dager.'; $lang['Photos posted within the last %d days.'] = 'Elementer posted kun de % siste dager.';
$lang['password updated'] = 'passord oppdatert'; $lang['password updated'] = 'passord oppdatert';
$lang['Recent period must be a positive integer value'] = 'Siste periode må være en positiv verdi'; $lang['Recent period must be a positive integer value'] = 'Siste periode må være en positiv verdi';
$lang['picture'] = 'bilde'; $lang['photo'] = 'bilde';
$lang['Click on the picture to see it in high definition'] = 'Klikk på bildet for å se det i høy oppløsning'; $lang['Click on the photo to see it in high definition'] = 'Klikk på bildet for å se det i høy oppløsning';
$lang['Show file metadata'] = 'Vis filens metadata'; $lang['Show file metadata'] = 'Vis filens metadata';
$lang['Powered by'] = 'Drevet av'; $lang['Powered by'] = 'Drevet av';
$lang['Preferences'] = 'Referanser'; $lang['Preferences'] = 'Referanser';
@ -349,8 +349,6 @@ $lang['Name of the picture'] = 'Bilde navn';
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'Bildet er lastet opp, en administrator vil godkjenne det så snart som mulig'; $lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'Bildet er lastet opp, en administrator vil godkjenne det så snart som mulig';
$lang['Album: %s'] = 'Album: %s'; $lang['Album: %s'] = 'Album: %s';
$lang['Album results for'] = 'Album results for'; $lang['Album results for'] = 'Album results for';
$lang['Some info about this picture'] = 'Informatson om dette bildet';
$lang['Some more (technical) info about this picture'] = 'Mer (teknisk) informasjon om dette bildet';
$lang['edit this comment'] = 'Endre denne kommentaren'; $lang['edit this comment'] = 'Endre denne kommentaren';
$lang['Edit a comment'] = 'Endre en kommentar'; $lang['Edit a comment'] = 'Endre en kommentar';
$lang['Are you sure?'] = 'Er du sikker?'; $lang['Are you sure?'] = 'Er du sikker?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Średnia ocena';
$lang['Albums'] = 'Albumy'; $lang['Albums'] = 'Albumy';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Zamknij okno'; $lang['Close this window'] = 'Zamknij okno';
$lang['Complete RSS feed (images, comments)'] = 'Kompletny RSS feed (zdjęcia, komentarze)'; $lang['Complete RSS feed (photos, comments)'] = 'Kompletny RSS feed (zdjęcia, komentarze)';
$lang['Confirm Password'] = 'Potwierdź hasło'; $lang['Confirm Password'] = 'Potwierdź hasło';
$lang['Connection settings'] = 'Ustawienia połączenia'; $lang['Connection settings'] = 'Ustawienia połączenia';
$lang['Login'] = 'Logowanie'; $lang['Login'] = 'Logowanie';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Zapomniane hasło?';
$lang['Go through the gallery as a visitor'] = 'Przejdź do galerii jako gość'; $lang['Go through the gallery as a visitor'] = 'Przejdź do galerii jako gość';
$lang['Help'] = 'Pomoc'; $lang['Help'] = 'Pomoc';
$lang['Identification'] = 'Logowanie'; $lang['Identification'] = 'Logowanie';
$lang['Image only RSS feed'] = 'RSS feed tylko dla zdjęć'; $lang['Photos only RSS feed'] = 'RSS feed tylko dla zdjęć';
$lang['Keyword'] = 'Słowo kluczowe'; $lang['Keyword'] = 'Słowo kluczowe';
$lang['Links'] = 'Linki'; $lang['Links'] = 'Linki';
$lang['N/A'] = 'N/D'; $lang['N/A'] = 'N/D';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Sortuj po';
$lang['Sort order'] = 'Sortowanie po'; $lang['Sort order'] = 'Sortowanie po';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tagi'; $lang['Tags'] = 'Tagi';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS zapewnia powiadomienia o wydarzeniach na tej stronie: nowych zdjęciach, aktualizacjach albumów, nowych komentarzach. Do użycia z czytnikiem RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS zapewnia powiadomienia o wydarzeniach na tej stronie: nowych zdjęciach, aktualizacjach albumów, nowych komentarzach. Do użycia z czytnikiem RSS.';
$lang['Unknown feed identifier'] = 'Nieznany identyfikator feed'; $lang['Unknown feed identifier'] = 'Nieznany identyfikator feed';
$lang['User comments'] = 'Komentarze użytkowników'; $lang['User comments'] = 'Komentarze użytkowników';
$lang['Username'] = 'Użytkownik'; $lang['Username'] = 'Użytkownik';
@ -202,12 +202,12 @@ $lang['Last'] = 'Ostatnia';
$lang['Logout'] = 'Wyloguj'; $lang['Logout'] = 'Wyloguj';
$lang['E-mail address'] = 'Adres email'; $lang['E-mail address'] = 'Adres email';
$lang['obligatory'] = 'obowiązkowe'; $lang['obligatory'] = 'obowiązkowe';
$lang['Maximum height of the pictures'] = 'Maksymalna wysokość zdjęć'; $lang['Maximum photo height'] = 'Maksymalna wysokość zdjęć';
$lang['Maximum height must be a number superior to 50'] = 'Maksymalna wysokość musi być liczbą do 50'; $lang['Maximum height must be a number superior to 50'] = 'Maksymalna wysokość musi być liczbą do 50';
$lang['Maximum width of the pictures'] = 'Maksymalna szerokość zdjęć'; $lang['Maximum photo width'] = 'Maksymalna szerokość zdjęć';
$lang['Maximum width must be a number superior to 50'] = 'Maksymalna szerokość musi być liczbą do 50'; $lang['Maximum width must be a number superior to 50'] = 'Maksymalna szerokość musi być liczbą do 50';
$lang['display a calendar by creation date'] = 'wyświetla kalendarz po dacie utworzenia'; $lang['display a calendar by creation date'] = 'wyświetla kalendarz po dacie utworzenia';
$lang['display all elements in all sub-albums'] = 'pokaż wszystkie elementy w albumach i pod-albumach'; $lang['display all photos in all sub-albums'] = 'pokaż wszystkie elementy w albumach i pod-albumach';
$lang['return to normal view mode'] = 'powrót do normalnego widoku'; $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['display a calendar by posted date'] = 'wyświetla kalendarz po dacie umieszczenia';
$lang['month'][10] = 'Październik'; $lang['month'][10] = 'Październik';
@ -224,8 +224,8 @@ $lang['month'][8] = 'Sierpień';
$lang['month'][9] = 'Wrzesień'; $lang['month'][9] = 'Wrzesień';
$lang['Most visited'] = 'Najczęściej odwiedzane'; $lang['Most visited'] = 'Najczęściej odwiedzane';
$lang['display most visited photos'] = 'pokaż najczęściej odwiedzane zdjęcia'; $lang['display most visited photos'] = '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['The number of photos 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['Number of photos 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['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['Number of rows per page'] = 'Liczba wierszy na stronie';
$lang['Unknown identifier'] = 'Nieznany identyfikator'; $lang['Unknown identifier'] = 'Nieznany identyfikator';
@ -233,12 +233,12 @@ $lang['New password'] = 'Nowe hasło';
$lang['Rate this photo'] = 'Oceń to zdjęcie'; $lang['Rate this photo'] = 'Oceń to zdjęcie';
$lang['Next'] = 'Następne'; $lang['Next'] = 'Następne';
$lang['no rate'] = 'nie oceniane'; $lang['no rate'] = 'nie oceniane';
$lang['Elements posted within the last %d day.'] = 'Wyświetl elementy umieszczone w ciągu ostatniego %s dnia.'; $lang['Photos 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ągu ostatnich %s dni.'; $lang['Photos posted within the last %d days.'] = 'Wyświetl elementy umieszczone w ciągu ostatnich %s dni.';
$lang['password updated'] = 'hasło zmienione'; $lang['password updated'] = 'hasło zmienione';
$lang['Recent period must be a positive integer value'] = 'Okres czasu musi być liczbą dodatnią'; $lang['Recent period must be a positive integer value'] = 'Okres czasu musi być liczbą dodatnią';
$lang['picture'] = 'zdjęcie'; $lang['photo'] = '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['Click on the photo 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['Show file metadata'] = 'Pokaż metadane (EXIF)';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Preferencje'; $lang['Preferences'] = 'Preferencje';
@ -357,8 +357,6 @@ $lang['Reset to default values'] = 'Resetuj do domyślnych wartości';
$lang['delete all photos from your favorites'] = 'usuń wszystkie obrazy ze swoich ulubionych'; $lang['delete all photos from your favorites'] = 'usuń wszystkie obrazy ze swoich ulubionych';
$lang['Sent by'] = 'Wysłane przez'; $lang['Sent by'] = 'Wysłane przez';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookie są zablokowane lub nie wspierane przez Twoją przeglądarkę. Musisz włączyć cookies aby się zalogować.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookie są zablokowane lub nie wspierane przez Twoją przeglądarkę. Musisz włączyć cookies aby się zalogować.';
$lang['Some info about this picture'] = 'Informacje o tym obrazku';
$lang['Some more (technical) info about this picture'] = 'Więcej (technicznych) informacji o tym obrazku';
$lang['edit this comment'] = 'edytuj ten komentarz'; $lang['edit this comment'] = 'edytuj ten komentarz';
$lang['Edit a comment'] = 'Edytuj komentarz'; $lang['Edit a comment'] = 'Edytuj komentarz';
$lang['(!) This comment requires validation'] = '(!) Ten komentarz wymaga potwierdzenia'; $lang['(!) This comment requires validation'] = '(!) Ten komentarz wymaga potwierdzenia';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Nota média';
$lang['Albums'] = 'Categorias'; $lang['Albums'] = 'Categorias';
$lang['Album'] = 'Categoria'; $lang['Album'] = 'Categoria';
$lang['Close this window'] = 'Fechar esta janela'; $lang['Close this window'] = 'Fechar esta janela';
$lang['Complete RSS feed (images, comments)'] = 'RSS completo'; $lang['Complete RSS feed (photos, comments)'] = 'RSS completo';
$lang['Confirm Password'] = 'Confirmar senha'; $lang['Confirm Password'] = 'Confirmar senha';
$lang['Connection settings'] = 'dados da conexão'; $lang['Connection settings'] = 'dados da conexão';
$lang['Login'] = 'Conexão'; $lang['Login'] = 'Conexão';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Esqueceu sua senha?';
$lang['Go through the gallery as a visitor'] = 'Percorer a galeria como visitante'; $lang['Go through the gallery as a visitor'] = 'Percorer a galeria como visitante';
$lang['Help'] = 'Ajuda'; $lang['Help'] = 'Ajuda';
$lang['Identification'] = 'Identificação'; $lang['Identification'] = 'Identificação';
$lang['Image only RSS feed'] = 'RSS das imagens'; $lang['Photos only RSS feed'] = 'RSS das imagens';
$lang['Keyword'] = 'Palavra chave'; $lang['Keyword'] = 'Palavra chave';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'Não disponível'; $lang['N/A'] = 'Não disponível';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Listado por';
$lang['Sort order'] = 'Ordem de exibição'; $lang['Sort order'] = 'Ordem de exibição';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'O RSS notifica dos eventos da galeria : novas imagens, categorias actualizadas, Novos comentários usários. Use um leitor de fluxos RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'O RSS notifica dos eventos da galeria : novas imagens, categorias actualizadas, Novos comentários usários. Use um leitor de fluxos RSS.';
$lang['Unknown feed identifier'] = 'identificador de fluxo RSS desconhecido'; $lang['Unknown feed identifier'] = 'identificador de fluxo RSS desconhecido';
$lang['User comments'] = 'Comentários de usuário'; $lang['User comments'] = 'Comentários de usuário';
$lang['Username'] = 'Nome de usuário'; $lang['Username'] = 'Nome de usuário';
@ -201,12 +201,12 @@ $lang['Last'] = 'Última página';
$lang['Logout'] = 'Desconectar (logout)'; $lang['Logout'] = 'Desconectar (logout)';
$lang['E-mail address'] = 'E-mail address'; $lang['E-mail address'] = 'E-mail address';
$lang['obligatory'] = 'obrigatório'; $lang['obligatory'] = 'obrigatório';
$lang['Maximum height of the pictures'] = 'Altura máxima das imagens'; $lang['Maximum photo height'] = 'Altura máxima das imagens';
$lang['Maximum height must be a number superior to 50'] = 'A altura máxima das imagens deve ser um número superior a 50'; $lang['Maximum height must be a number superior to 50'] = 'A altura máxima das imagens deve ser um número superior a 50';
$lang['Maximum width of the pictures'] = 'Largura máxima das imagens'; $lang['Maximum photo width'] = 'Largura máxima das imagens';
$lang['Maximum width must be a number superior to 50'] = 'A largura máxima das imagens deve ser um número superior a 50'; $lang['Maximum width must be a number superior to 50'] = 'A largura máxima das imagens deve ser um número superior a 50';
$lang['display a calendar by creation date'] = 'Mostra um calendário ordenado pela data de criação'; $lang['display a calendar by creation date'] = 'Mostra um calendário ordenado pela data de criação';
$lang['display all elements in all sub-albums'] = 'Mostra todos os elementos em todas as subcategorias'; $lang['display all photos in all sub-albums'] = 'Mostra todos os elementos em todas as subcategorias';
$lang['return to normal view mode'] = 'voltar à exibição normal'; $lang['return to normal view mode'] = 'voltar à exibição normal';
$lang['display a calendar by posted date'] = 'Mostrar um calendário por data de envio das imagens'; $lang['display a calendar by posted date'] = 'Mostrar um calendário por data de envio das imagens';
$lang['month'][10] = 'outubro'; $lang['month'][10] = 'outubro';
@ -223,8 +223,8 @@ $lang['month'][8] = 'agosto';
$lang['month'][9] = 'setembro'; $lang['month'][9] = 'setembro';
$lang['Most visited'] = 'Mais visitadas'; $lang['Most visited'] = 'Mais visitadas';
$lang['display most visited photos'] = 'Mostra as imagens mais visitadas'; $lang['display most visited photos'] = 'Mostra as imagens mais visitadas';
$lang['The number of images per row must be a not null scalar'] = 'O número de imagens por linha deve ser inteiro e não nulo'; $lang['The number of photos per row must be a not null scalar'] = 'O número de imagens por linha deve ser inteiro e não nulo';
$lang['Number of images per row'] = 'Número de imagens por linha'; $lang['Number of photos per row'] = 'Número de imagens por linha';
$lang['The number of rows per page must be a not null scalar'] = 'O número de linhas por página deve ser inteiro e não nulo'; $lang['The number of rows per page must be a not null scalar'] = 'O número de linhas por página deve ser inteiro e não nulo';
$lang['Number of rows per page'] = 'Número de linhas por página'; $lang['Number of rows per page'] = 'Número de linhas por página';
$lang['Unknown identifier'] = 'Origem desconhecida'; $lang['Unknown identifier'] = 'Origem desconhecida';
@ -232,12 +232,12 @@ $lang['New password'] = 'Senha nova';
$lang['Rate this photo'] = 'Dê uma nota a esta imagem'; $lang['Rate this photo'] = 'Dê uma nota a esta imagem';
$lang['Next'] = 'Página seguinte'; $lang['Next'] = 'Página seguinte';
$lang['no rate'] = 'nenhuma nota'; $lang['no rate'] = 'nenhuma nota';
$lang['Elements posted within the last %d day.'] = 'Imagens adicionadas a partir do últimos %d dia.'; $lang['Photos posted within the last %d day.'] = 'Imagens adicionadas a partir do últimos %d dia.';
$lang['Elements posted within the last %d days.'] = 'Imagens adicionadas a partir dos últimos %d dias'; $lang['Photos posted within the last %d days.'] = 'Imagens adicionadas a partir dos últimos %d dias';
$lang['password updated'] = 'senha atualizada'; $lang['password updated'] = 'senha atualizada';
$lang['Recent period must be a positive integer value'] = 'O período deve ser um número inteiro positivo'; $lang['Recent period must be a positive integer value'] = 'O período deve ser um número inteiro positivo';
$lang['picture'] = 'imagem'; $lang['photo'] = 'imagem';
$lang['Click on the picture to see it in high definition'] = 'Clique na imagem para vê-la em alta definição'; $lang['Click on the photo to see it in high definition'] = 'Clique na imagem para vê-la em alta definição';
$lang['Show file metadata'] = 'Mostrar os metadados do arquivo.'; $lang['Show file metadata'] = 'Mostrar os metadados do arquivo.';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Preferências'; $lang['Preferences'] = 'Preferências';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Nota média';
$lang['Albums'] = 'Categorias'; $lang['Albums'] = 'Categorias';
$lang['Album'] = 'Categoria'; $lang['Album'] = 'Categoria';
$lang['Close this window'] = 'Fechar esta janela'; $lang['Close this window'] = 'Fechar esta janela';
$lang['Complete RSS feed (images, comments)'] = 'RSS completo'; $lang['Complete RSS feed (photos, comments)'] = 'RSS completo';
$lang['Confirm Password'] = 'Confirmar palavra-passe'; $lang['Confirm Password'] = 'Confirmar palavra-passe';
$lang['Connection settings'] = 'dados da conexão'; $lang['Connection settings'] = 'dados da conexão';
$lang['Login'] = 'Conexão'; $lang['Login'] = 'Conexão';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Esqueceu sua palavra-passe?';
$lang['Go through the gallery as a visitor'] = 'Percorer a galeria como visitante'; $lang['Go through the gallery as a visitor'] = 'Percorer a galeria como visitante';
$lang['Help'] = 'Ajuda'; $lang['Help'] = 'Ajuda';
$lang['Identification'] = 'Identificação'; $lang['Identification'] = 'Identificação';
$lang['Image only RSS feed'] = 'RSS das imagens'; $lang['Photos only RSS feed'] = 'RSS das imagens';
$lang['Keyword'] = 'Palavra chave'; $lang['Keyword'] = 'Palavra chave';
$lang['Links'] = 'Links'; $lang['Links'] = 'Links';
$lang['N/A'] = 'Não disponível'; $lang['N/A'] = 'Não disponível';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Listado por';
$lang['Sort order'] = 'Ordem de exibição'; $lang['Sort order'] = 'Ordem de exibição';
$lang['Tag'] = 'Tag'; $lang['Tag'] = 'Tag';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'O RSS notifica dos eventos da galeria : novas imagens, categorias actualizadas, Novos comentários usários. Use um leitor de fluxos RSS.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'O RSS notifica dos eventos da galeria : novas imagens, categorias actualizadas, Novos comentários usários. Use um leitor de fluxos RSS.';
$lang['Unknown feed identifier'] = 'identificador de fluxo RSS desconhecido'; $lang['Unknown feed identifier'] = 'identificador de fluxo RSS desconhecido';
$lang['User comments'] = 'Comentários de usuário'; $lang['User comments'] = 'Comentários de usuário';
$lang['Username'] = 'Nome de usuário'; $lang['Username'] = 'Nome de usuário';
@ -201,12 +201,12 @@ $lang['Last'] = 'Última página';
$lang['Logout'] = 'Desconectar (logout)'; $lang['Logout'] = 'Desconectar (logout)';
$lang['E-mail address'] = 'E-mail address'; $lang['E-mail address'] = 'E-mail address';
$lang['obligatory'] = 'obrigatório'; $lang['obligatory'] = 'obrigatório';
$lang['Maximum height of the pictures'] = 'Altura máxima das imagens'; $lang['Maximum photo height'] = 'Altura máxima das imagens';
$lang['Maximum height must be a number superior to 50'] = 'A altura máxima das imagens deve ser um número superior a 50'; $lang['Maximum height must be a number superior to 50'] = 'A altura máxima das imagens deve ser um número superior a 50';
$lang['Maximum width of the pictures'] = 'Largura máxima das imagens'; $lang['Maximum photo width'] = 'Largura máxima das imagens';
$lang['Maximum width must be a number superior to 50'] = 'A largura máxima das imagens deve ser um número superior a 50'; $lang['Maximum width must be a number superior to 50'] = 'A largura máxima das imagens deve ser um número superior a 50';
$lang['display a calendar by creation date'] = 'Mostra um calendário ordenado pela data de criação'; $lang['display a calendar by creation date'] = 'Mostra um calendário ordenado pela data de criação';
$lang['display all elements in all sub-albums'] = 'Mostra todos os elementos em todas as subcategorias'; $lang['display all photos in all sub-albums'] = 'Mostra todos os elementos em todas as subcategorias';
$lang['return to normal view mode'] = 'voltar à exibição normal'; $lang['return to normal view mode'] = 'voltar à exibição normal';
$lang['display a calendar by posted date'] = 'Mostrar um calendário por data de envio das imagens'; $lang['display a calendar by posted date'] = 'Mostrar um calendário por data de envio das imagens';
$lang['month'][10] = 'outubro'; $lang['month'][10] = 'outubro';
@ -223,8 +223,8 @@ $lang['month'][8] = 'agosto';
$lang['month'][9] = 'setembro'; $lang['month'][9] = 'setembro';
$lang['Most visited'] = 'Mais visitadas'; $lang['Most visited'] = 'Mais visitadas';
$lang['display most visited photos'] = 'Mostra as imagens mais visitadas'; $lang['display most visited photos'] = 'Mostra as imagens mais visitadas';
$lang['The number of images per row must be a not null scalar'] = 'O número de imagens por linha deve ser inteiro e não nulo'; $lang['The number of photos per row must be a not null scalar'] = 'O número de imagens por linha deve ser inteiro e não nulo';
$lang['Number of images per row'] = 'Número de imagens por linha'; $lang['Number of photos per row'] = 'Número de imagens por linha';
$lang['The number of rows per page must be a not null scalar'] = 'O número de linhas por página deve ser inteiro e não nulo'; $lang['The number of rows per page must be a not null scalar'] = 'O número de linhas por página deve ser inteiro e não nulo';
$lang['Number of rows per page'] = 'Número de linhas por página'; $lang['Number of rows per page'] = 'Número de linhas por página';
$lang['Unknown identifier'] = 'Origem desconhecida'; $lang['Unknown identifier'] = 'Origem desconhecida';
@ -232,12 +232,12 @@ $lang['New password'] = 'Nova palavra-passe';
$lang['Rate this photo'] = 'Dê uma nota a esta imagem'; $lang['Rate this photo'] = 'Dê uma nota a esta imagem';
$lang['Next'] = 'Página seguinte'; $lang['Next'] = 'Página seguinte';
$lang['no rate'] = 'nenhuma nota'; $lang['no rate'] = 'nenhuma nota';
$lang['Elements posted within the last %d day.'] = 'Imagens adicionadas a partir do últimos %d dia.'; $lang['Photos posted within the last %d day.'] = 'Imagens adicionadas a partir do últimos %d dia.';
$lang['Elements posted within the last %d days.'] = 'Imagens adicionadas a partir dos últimos %d dias'; $lang['Photos posted within the last %d days.'] = 'Imagens adicionadas a partir dos últimos %d dias';
$lang['password updated'] = 'palavra-passe atualizada'; $lang['password updated'] = 'palavra-passe atualizada';
$lang['Recent period must be a positive integer value'] = 'O período deve ser um número inteiro positivo'; $lang['Recent period must be a positive integer value'] = 'O período deve ser um número inteiro positivo';
$lang['picture'] = 'imagem'; $lang['photo'] = 'imagem';
$lang['Click on the picture to see it in high definition'] = 'Clique na imagem para vê-la em alta definição'; $lang['Click on the photo to see it in high definition'] = 'Clique na imagem para vê-la em alta definição';
$lang['Show file metadata'] = 'Mostrar os metadados do arquivo.'; $lang['Show file metadata'] = 'Mostrar os metadados do arquivo.';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Preferências'; $lang['Preferences'] = 'Preferências';

View file

@ -57,7 +57,7 @@ $lang['Average rate'] = 'Notă medie';
$lang['Albums'] = 'Categorii'; $lang['Albums'] = 'Categorii';
$lang['Album'] = 'Categorie'; $lang['Album'] = 'Categorie';
$lang['Close this window'] = 'Inchide această fereastră'; $lang['Close this window'] = 'Inchide această fereastră';
$lang['Complete RSS feed (images, comments)'] = 'Flux RSS complet (imagini, comentarii)'; $lang['Complete RSS feed (photos, comments)'] = 'Flux RSS complet (imagini, comentarii)';
$lang['Confirm Password'] = 'Confirmare parolă'; $lang['Confirm Password'] = 'Confirmare parolă';
$lang['Connection settings'] = 'Parametrii de conecţie'; $lang['Connection settings'] = 'Parametrii de conecţie';
$lang['Login'] = 'Conecţie'; $lang['Login'] = 'Conecţie';
@ -81,7 +81,7 @@ $lang['Forgot your password?'] = 'Aţi uitat parola?';
$lang['Go through the gallery as a visitor'] = 'Navigaţi prin galerie ca un vizitator'; $lang['Go through the gallery as a visitor'] = 'Navigaţi prin galerie ca un vizitator';
$lang['Help'] = 'Ajutor'; $lang['Help'] = 'Ajutor';
$lang['Identification'] = 'Identificare'; $lang['Identification'] = 'Identificare';
$lang['Image only RSS feed'] = 'RSS feed numai cu imagini'; $lang['Photos only RSS feed'] = 'RSS feed numai cu imagini';
$lang['Keyword'] = 'Cuvînt cheie'; $lang['Keyword'] = 'Cuvînt cheie';
$lang['Links'] = 'Link-uri'; $lang['Links'] = 'Link-uri';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -116,7 +116,7 @@ $lang['Sort by'] = 'Sortare după';
$lang['Sort order'] = 'Ordine de sortare'; $lang['Sort order'] = 'Ordine de sortare';
$lang['Tag'] = 'Etichetă'; $lang['Tag'] = 'Etichetă';
$lang['Tags'] = 'Etichete'; $lang['Tags'] = 'Etichete';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Notificarea RSS feed prevede notificarea cu privire la noutăţile din acest site: poze noi, categorii actualizate, noi comentarii. Folosiţi un RSS feed reader.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Notificarea RSS feed prevede notificarea cu privire la noutăţile din acest site: poze noi, categorii actualizate, noi comentarii. Folosiţi un RSS feed reader.';
$lang['Unknown feed identifier'] = 'Identificator RSS feed necunoscut'; $lang['Unknown feed identifier'] = 'Identificator RSS feed necunoscut';
$lang['User comments'] = 'Comentarii utilizator '; $lang['User comments'] = 'Comentarii utilizator ';
$lang['Username'] = 'Nume de utilizator'; $lang['Username'] = 'Nume de utilizator';
@ -204,18 +204,18 @@ $lang['Last'] = 'Ultima(ul)';
$lang['Logout'] = 'Deconectare'; $lang['Logout'] = 'Deconectare';
$lang['E-mail address'] = 'Adresa de e-mail'; $lang['E-mail address'] = 'Adresa de e-mail';
$lang['obligatory'] = 'obligatorie'; $lang['obligatory'] = 'obligatorie';
$lang['Maximum height of the pictures'] = 'Înălţimea maximă a imaginii'; $lang['Maximum photo height'] = 'Înălţimea maximă a imaginii';
$lang['Maximum height must be a number superior to 50'] = 'Înălţimea maximă trebuie să fie mai mare de 50'; $lang['Maximum height must be a number superior to 50'] = 'Înălţimea maximă trebuie să fie mai mare de 50';
$lang['Maximum width of the pictures'] = 'Lăţimea maximă a imaginilor'; $lang['Maximum photo width'] = 'Lăţimea maximă a imaginilor';
$lang['Maximum width must be a number superior to 50'] = 'Lăţimea maximă trebuie să fie mai mare de 50'; $lang['Maximum width must be a number superior to 50'] = 'Lăţimea maximă trebuie să fie mai mare de 50';
$lang['display a calendar by creation date'] = 'afişează un calendar în funcţie de data creării'; $lang['display a calendar by creation date'] = 'afişează un calendar în funcţie de data creării';
$lang['display all elements in all sub-albums'] = 'afişează toate elementele în toate sub-categoriile'; $lang['display all photos in all sub-albums'] = 'afişează toate elementele în toate sub-categoriile';
$lang['return to normal view mode'] = 'Înapoi la vizualizarea normală'; $lang['return to normal view mode'] = 'Înapoi la vizualizarea normală';
$lang['display a calendar by posted date'] = 'afişează un calendar în funcţie de data adăugării'; $lang['display a calendar by posted date'] = 'afişează un calendar în funcţie de data adăugării';
$lang['Most visited'] = 'Cele mai vizionate'; $lang['Most visited'] = 'Cele mai vizionate';
$lang['display most visited photos'] = 'afişează imaginile cele mai vizionate'; $lang['display most visited photos'] = 'afişează imaginile cele mai vizionate';
$lang['The number of images per row must be a not null scalar'] = 'Numărul de imagini pe linie trebuie să fie un număr întreg nenul'; $lang['The number of photos per row must be a not null scalar'] = 'Numărul de imagini pe linie trebuie să fie un număr întreg nenul';
$lang['Number of images per row'] = 'Numărul de miniaturi pe linie'; $lang['Number of photos per row'] = 'Numărul de miniaturi pe linie';
$lang['The number of rows per page must be a not null scalar'] = 'Numărul de linii pe pagină trebuie să fie un număr întreg nenul'; $lang['The number of rows per page must be a not null scalar'] = 'Numărul de linii pe pagină trebuie să fie un număr întreg nenul';
$lang['Number of rows per page'] = 'Numărul de linii pe pagină'; $lang['Number of rows per page'] = 'Numărul de linii pe pagină';
$lang['Unknown identifier'] = 'Identificator necunoscut '; $lang['Unknown identifier'] = 'Identificator necunoscut ';
@ -223,12 +223,12 @@ $lang['New password'] = 'Parolă nouă';
$lang['Rate this photo'] = 'Evaluează aceasta imagine'; $lang['Rate this photo'] = 'Evaluează aceasta imagine';
$lang['Next'] = 'Următor(oare)'; $lang['Next'] = 'Următor(oare)';
$lang['no rate'] = 'nici o evaluare'; $lang['no rate'] = 'nici o evaluare';
$lang['Elements posted within the last %d day.'] = 'Elemente postate în ultima %d zi.'; $lang['Photos posted within the last %d day.'] = 'Elemente postate în ultima %d zi.';
$lang['Elements posted within the last %d days.'] = 'Elemente postate în ultimele %d zile.'; $lang['Photos posted within the last %d days.'] = 'Elemente postate în ultimele %d zile.';
$lang['password updated'] = 'parolă actualizată'; $lang['password updated'] = 'parolă actualizată';
$lang['Recent period must be a positive integer value'] = 'perioada recentă trebuie să fie un număr întreg pozitiv'; $lang['Recent period must be a positive integer value'] = 'perioada recentă trebuie să fie un număr întreg pozitiv';
$lang['picture'] = 'imagine'; $lang['photo'] = 'imagine';
$lang['Click on the picture to see it in high definition'] = 'Clicaţi pe imagine pentru a o vedea de înaltă definiţie'; $lang['Click on the photo to see it in high definition'] = 'Clicaţi pe imagine pentru a o vedea de înaltă definiţie';
$lang['Show file metadata'] = 'Arată metadatele fişierului'; $lang['Show file metadata'] = 'Arată metadatele fişierului';
$lang['Powered by'] = 'Realizat de'; $lang['Powered by'] = 'Realizat de';
$lang['Preferences'] = 'Preferinţe'; $lang['Preferences'] = 'Preferinţe';
@ -343,8 +343,6 @@ $lang['Reset to default values'] = 'Reveniţi la setările implicite';
$lang['delete all photos from your favorites'] = 'scoate-ţi toate pozele din preferinţele dvs.'; $lang['delete all photos from your favorites'] = 'scoate-ţi toate pozele din preferinţele dvs.';
$lang['Sent by'] = 'Trimis de'; $lang['Sent by'] = 'Trimis de';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookie-urile sunt blocate sau nu sunt suportate de browser-ul dumneavoastră. Trebuie să activaţi cookie-urile pentru a vă conecta.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookie-urile sunt blocate sau nu sunt suportate de browser-ul dumneavoastră. Trebuie să activaţi cookie-urile pentru a vă conecta.';
$lang['Some info about this picture'] = 'Informaţii despre această imagine';
$lang['Some more (technical) info about this picture'] = 'Informaţii (tehnice) despre această imagine';
$lang['edit this comment'] = 'modifică acest comentariu'; $lang['edit this comment'] = 'modifică acest comentariu';
$lang['Edit a comment'] = 'modifică un comentariu'; $lang['Edit a comment'] = 'modifică un comentariu';
$lang['Are you sure?'] = 'Sunteţi sigur(ă) ?'; $lang['Are you sure?'] = 'Sunteţi sigur(ă) ?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Средний балл';
$lang['Albums'] = 'Альбомы'; $lang['Albums'] = 'Альбомы';
$lang['Album'] = 'Альбом'; $lang['Album'] = 'Альбом';
$lang['Close this window'] = 'Закрыть это окно'; $lang['Close this window'] = 'Закрыть это окно';
$lang['Complete RSS feed (images, comments)'] = 'Полная RSS лента (фотографии, комментарии)'; $lang['Complete RSS feed (photos, comments)'] = 'Полная RSS лента (фотографии, комментарии)';
$lang['Confirm Password'] = 'Повторите пароль'; $lang['Confirm Password'] = 'Повторите пароль';
$lang['Connection settings'] = 'Настройки соединения'; $lang['Connection settings'] = 'Настройки соединения';
$lang['Login'] = 'Авторизация'; $lang['Login'] = 'Авторизация';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Забыли пароль?';
$lang['Go through the gallery as a visitor'] = 'Войти в галерею как посетитель'; $lang['Go through the gallery as a visitor'] = 'Войти в галерею как посетитель';
$lang['Help'] = 'Помощь'; $lang['Help'] = 'Помощь';
$lang['Identification'] = 'Идентификация'; $lang['Identification'] = 'Идентификация';
$lang['Image only RSS feed'] = 'RSS лента только с фотографиями'; $lang['Photos only RSS feed'] = 'RSS лента только с фотографиями';
$lang['Keyword'] = 'Ключевые слова'; $lang['Keyword'] = 'Ключевые слова';
$lang['Links'] = 'Ссылки'; $lang['Links'] = 'Ссылки';
$lang['N/A'] = 'не определен'; $lang['N/A'] = 'не определен';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Признак сортировки';
$lang['Sort order'] = 'Порядок сортировки'; $lang['Sort order'] = 'Порядок сортировки';
$lang['Tag'] = 'Слово'; $lang['Tag'] = 'Слово';
$lang['Tags'] = 'Ключевые слова'; $lang['Tags'] = 'Ключевые слова';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Канал RSS обеспечивает уведомление о новых событиях на сайте: новые изображения, обновленные альбомы, новые комментарии. Читается RSS читалкой.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Канал RSS обеспечивает уведомление о новых событиях на сайте: новые изображения, обновленные альбомы, новые комментарии. Читается RSS читалкой.';
$lang['Unknown feed identifier'] = 'Неизвестный идентификатор ленты'; $lang['Unknown feed identifier'] = 'Неизвестный идентификатор ленты';
$lang['User comments'] = 'Комментарии посетителей'; $lang['User comments'] = 'Комментарии посетителей';
$lang['Username'] = 'Имя пользователя'; $lang['Username'] = 'Имя пользователя';
@ -202,12 +202,12 @@ $lang['Last'] = 'Последняя';
$lang['Logout'] = 'Выход'; $lang['Logout'] = 'Выход';
$lang['E-mail address'] = 'E-mail адрес'; $lang['E-mail address'] = 'E-mail адрес';
$lang['obligatory'] = 'обязательный'; $lang['obligatory'] = 'обязательный';
$lang['Maximum height of the pictures'] = 'Максимальная высота изображения'; $lang['Maximum photo height'] = 'Максимальная высота изображения';
$lang['Maximum height must be a number superior to 50'] = 'Максимальная высота изображения должна быть больше 50'; $lang['Maximum height must be a number superior to 50'] = 'Максимальная высота изображения должна быть больше 50';
$lang['Maximum width of the pictures'] = 'Максимальная ширина изображения'; $lang['Maximum photo width'] = 'Максимальная ширина изображения';
$lang['Maximum width must be a number superior to 50'] = 'Максимальная ширина изображения должна быть больше 50'; $lang['Maximum width must be a number superior to 50'] = 'Максимальная ширина изображения должна быть больше 50';
$lang['display a calendar by creation date'] = 'показывает календарь по дате создания'; $lang['display a calendar by creation date'] = 'показывает календарь по дате создания';
$lang['display all elements in all sub-albums'] = 'показать все элементы во всех альбомах и всех вложенных альбомах'; $lang['display all photos in all sub-albums'] = 'показать все элементы во всех альбомах и всех вложенных альбомах';
$lang['return to normal view mode'] = 'возвращение к нормальному режиму'; $lang['return to normal view mode'] = 'возвращение к нормальному режиму';
$lang['display a calendar by posted date'] = 'показывает календарь по дате отправления'; $lang['display a calendar by posted date'] = 'показывает календарь по дате отправления';
$lang['month'][10] = 'Октябрь'; $lang['month'][10] = 'Октябрь';
@ -224,8 +224,8 @@ $lang['month'][8] = 'Август';
$lang['month'][9] = 'Сентябрь'; $lang['month'][9] = 'Сентябрь';
$lang['Most visited'] = 'По популярности'; $lang['Most visited'] = 'По популярности';
$lang['display most visited photos'] = 'показать наиболее популярные фотографии'; $lang['display most visited photos'] = 'показать наиболее популярные фотографии';
$lang['The number of images per row must be a not null scalar'] = 'Число фотографий в строке должно быть не нулевым целым положительным'; $lang['The number of photos per row must be a not null scalar'] = 'Число фотографий в строке должно быть не нулевым целым положительным';
$lang['Number of images per row'] = 'Число фотографий в строке'; $lang['Number of photos per row'] = 'Число фотографий в строке';
$lang['The number of rows per page must be a not null scalar'] = 'Число строк на странице должно быть не нулевым целым положительным'; $lang['The number of rows per page must be a not null scalar'] = 'Число строк на странице должно быть не нулевым целым положительным';
$lang['Number of rows per page'] = 'Число строк на странице'; $lang['Number of rows per page'] = 'Число строк на странице';
$lang['Unknown identifier'] = 'Неизвестный идентификатор'; $lang['Unknown identifier'] = 'Неизвестный идентификатор';
@ -233,12 +233,12 @@ $lang['New password'] = 'Новый пароль';
$lang['Rate this photo'] = 'Оцените это изображение'; $lang['Rate this photo'] = 'Оцените это изображение';
$lang['Next'] = 'Следующая'; $lang['Next'] = 'Следующая';
$lang['no rate'] = 'не оценено'; $lang['no rate'] = 'не оценено';
$lang['Elements posted within the last %d day.'] = 'Показывает только фотографии, опубликованные за последние %s дня.'; $lang['Photos posted within the last %d day.'] = 'Показывает только фотографии, опубликованные за последние %s дня.';
$lang['Elements posted within the last %d days.'] = 'Показывает только фотографии, опубликованные за последние %s дней.'; $lang['Photos posted within the last %d days.'] = 'Показывает только фотографии, опубликованные за последние %s дней.';
$lang['password updated'] = 'пароль изменен'; $lang['password updated'] = 'пароль изменен';
$lang['Recent period must be a positive integer value'] = 'Последний период должен быть положительным целым числом'; $lang['Recent period must be a positive integer value'] = 'Последний период должен быть положительным целым числом';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'изображение'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'изображение';
$lang['Click on the picture to see it in high definition'] = 'Нажмите на изображение, чтобы увидеть его в большом разрешении'; $lang['Click on the photo to see it in high definition'] = 'Нажмите на изображение, чтобы увидеть его в большом разрешении';
$lang['Show file metadata'] = 'Показать метаданные'; $lang['Show file metadata'] = 'Показать метаданные';
$lang['Powered by'] = 'Скрипт'; $lang['Powered by'] = 'Скрипт';
$lang['Preferences'] = 'Предпочтение'; $lang['Preferences'] = 'Предпочтение';
@ -356,8 +356,6 @@ $lang['Reset to default values'] = 'Восстановить значения п
$lang['delete all photos from your favorites'] = 'удалить все изображения из избранных'; $lang['delete all photos from your favorites'] = 'удалить все изображения из избранных';
$lang['Sent by'] = 'Отправить'; $lang['Sent by'] = 'Отправить';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Ваш браузер не поддерживает или блокирует куки. Разрешите использовать куки в настройках.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Ваш браузер не поддерживает или блокирует куки. Разрешите использовать куки в настройках.';
$lang['Some info about this picture'] = 'Информация об изображении';
$lang['Some more (technical) info about this picture'] = 'Информация об изображении (техническая)';
$lang['edit this comment'] = 'редактировать этот комментарий'; $lang['edit this comment'] = 'редактировать этот комментарий';
$lang['Edit a comment'] = 'Редактировать комментарий'; $lang['Edit a comment'] = 'Редактировать комментарий';
$lang['(!) This comment requires validation'] = '(!) Этот комментарий ждет проверки'; $lang['(!) This comment requires validation'] = '(!) Этот комментарий ждет проверки';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Prosečna ocena';
$lang['Albums'] = 'Kategorije'; $lang['Albums'] = 'Kategorije';
$lang['Album'] = 'Kategorija'; $lang['Album'] = 'Kategorija';
$lang['Close this window'] = 'Zatvori prozor'; $lang['Close this window'] = 'Zatvori prozor';
$lang['Complete RSS feed (images, comments)'] = 'Potpuni RSS izvori (slike, komentari)'; $lang['Complete RSS feed (photos, comments)'] = 'Potpuni RSS izvori (slike, komentari)';
$lang['Confirm Password'] = 'Potvrdi Lozinku'; $lang['Confirm Password'] = 'Potvrdi Lozinku';
$lang['Connection settings'] = 'Podešavanja povezivanja'; $lang['Connection settings'] = 'Podešavanja povezivanja';
$lang['Login'] = 'Prijava'; $lang['Login'] = 'Prijava';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Zaboravili ste lozinku?';
$lang['Go through the gallery as a visitor'] = 'Pregledajte galeriju kao posetioc'; $lang['Go through the gallery as a visitor'] = 'Pregledajte galeriju kao posetioc';
$lang['Help'] = 'Pomoć'; $lang['Help'] = 'Pomoć';
$lang['Identification'] = 'Prijava'; $lang['Identification'] = 'Prijava';
$lang['Image only RSS feed'] = 'RSS izvor samo za slike'; $lang['Photos only RSS feed'] = 'RSS izvor samo za slike';
$lang['Keyword'] = 'Ključna riječ'; $lang['Keyword'] = 'Ključna riječ';
$lang['Links'] = 'Linkovi'; $lang['Links'] = 'Linkovi';
$lang['N/A'] = 'N/D'; $lang['N/A'] = 'N/D';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Složeno po';
$lang['Sort order'] = 'Redosled slaganja'; $lang['Sort order'] = 'Redosled slaganja';
$lang['Tag'] = 'Oznaka'; $lang['Tag'] = 'Oznaka';
$lang['Tags'] = 'Tagovi'; $lang['Tags'] = 'Tagovi';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS obavijesni izvor omogućava obaveštavanje o novostima sa ovog web mesta : nove slike, obnovljene kategorije, nove komentare. Koristite čitač RSS izvora.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS obavijesni izvor omogućava obaveštavanje o novostima sa ovog web mesta : nove slike, obnovljene kategorije, nove komentare. Koristite čitač RSS izvora.';
$lang['Unknown feed identifier'] = 'Nepoznata oznaka izvora'; $lang['Unknown feed identifier'] = 'Nepoznata oznaka izvora';
$lang['User comments'] = 'Korisnički komentari'; $lang['User comments'] = 'Korisnički komentari';
$lang['Username'] = 'Korisničko ime'; $lang['Username'] = 'Korisničko ime';
@ -201,12 +201,12 @@ $lang['Last'] = 'Zadnji';
$lang['Logout'] = 'Odjava'; $lang['Logout'] = 'Odjava';
$lang['E-mail address'] = 'E-mail adresa'; $lang['E-mail address'] = 'E-mail adresa';
$lang['obligatory'] = 'obvezno'; $lang['obligatory'] = 'obvezno';
$lang['Maximum height of the pictures'] = 'Najveća dozvoljena visina slika'; $lang['Maximum photo height'] = 'Najveća dozvoljena visina slika';
$lang['Maximum height must be a number superior to 50'] = 'Najveća visina mora biti broj veći od 50'; $lang['Maximum height must be a number superior to 50'] = 'Najveća visina mora biti broj veći od 50';
$lang['Maximum width of the pictures'] = 'Najveća dozvoljena širina slika'; $lang['Maximum photo width'] = 'Najveća dozvoljena širina slika';
$lang['Maximum width must be a number superior to 50'] = 'Najveća širina mora biti broj veći od 50'; $lang['Maximum width must be a number superior to 50'] = 'Najveća širina mora biti broj veći od 50';
$lang['display a calendar by creation date'] = 'prikaz kalendara po datumu izrade'; $lang['display a calendar by creation date'] = 'prikaz kalendara po datumu izrade';
$lang['display all elements in all sub-albums'] = 'prikaz svih stavki u svim podkategorijama'; $lang['display all photos in all sub-albums'] = 'prikaz svih stavki u svim podkategorijama';
$lang['return to normal view mode'] = 'povratak u uobičajeni način pregleda'; $lang['return to normal view mode'] = 'povratak u uobičajeni način pregleda';
$lang['display a calendar by posted date'] = 'prikaz kalendara po datumu objave'; $lang['display a calendar by posted date'] = 'prikaz kalendara po datumu objave';
$lang['month'][10] = 'Oktobar'; $lang['month'][10] = 'Oktobar';
@ -223,8 +223,8 @@ $lang['month'][8] = 'Avgust';
$lang['month'][9] = 'Septembar'; $lang['month'][9] = 'Septembar';
$lang['Most visited'] = 'Najposjećenije'; $lang['Most visited'] = 'Najposjećenije';
$lang['display most visited photos'] = 'prikaz najposjećenijih slika'; $lang['display most visited photos'] = 'prikaz najposjećenijih slika';
$lang['The number of images per row must be a not null scalar'] = 'broj slika po redu mora biti celobrojna vrednost'; $lang['The number of photos per row must be a not null scalar'] = 'broj slika po redu mora biti celobrojna vrednost';
$lang['Number of images per row'] = 'Broj slika po redu'; $lang['Number of photos per row'] = 'Broj slika po redu';
$lang['The number of rows per page must be a not null scalar'] = 'Broj redova po stranici mora biti celobrojna vrednost'; $lang['The number of rows per page must be a not null scalar'] = 'Broj redova po stranici mora biti celobrojna vrednost';
$lang['Number of rows per page'] = 'Broj redova po stranici'; $lang['Number of rows per page'] = 'Broj redova po stranici';
$lang['Unknown identifier'] = 'Nepoznata oznaka'; $lang['Unknown identifier'] = 'Nepoznata oznaka';
@ -232,12 +232,12 @@ $lang['New password'] = 'Nova lozinka';
$lang['Rate this photo'] = 'Oceni ovu sliku'; $lang['Rate this photo'] = 'Oceni ovu sliku';
$lang['Next'] = 'Sledeći'; $lang['Next'] = 'Sledeći';
$lang['no rate'] = 'bez ocene'; $lang['no rate'] = 'bez ocene';
$lang['Elements posted within the last %d day.'] = 'Stavke objavljene u zadnjem %d danu.'; $lang['Photos posted within the last %d day.'] = 'Stavke objavljene u zadnjem %d danu.';
$lang['Elements posted within the last %d days.'] = 'Stavke objavljene u zadnjih %d dana.'; $lang['Photos posted within the last %d days.'] = 'Stavke objavljene u zadnjih %d dana.';
$lang['password updated'] = 'lozinka obnovljena'; $lang['password updated'] = 'lozinka obnovljena';
$lang['Recent period must be a positive integer value'] = 'Razdoblje mora biti pozitivna celobrojna vrednost'; $lang['Recent period must be a positive integer value'] = 'Razdoblje mora biti pozitivna celobrojna vrednost';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'slika'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'slika';
$lang['Click on the picture to see it in high definition'] = 'Klikni na sliku za pregled u visokoj rezoluciji'; $lang['Click on the photo to see it in high definition'] = 'Klikni na sliku za pregled u visokoj rezoluciji';
$lang['Show file metadata'] = 'Prikaži meta podatke zapisa'; $lang['Show file metadata'] = 'Prikaži meta podatke zapisa';
$lang['Powered by'] = 'Urađeno u'; $lang['Powered by'] = 'Urađeno u';
$lang['Preferences'] = 'Podešenja'; $lang['Preferences'] = 'Podešenja';
@ -354,8 +354,6 @@ $lang['Reset to default values'] = 'Vrati na podrazumevane vrednosti';
$lang['delete all photos from your favorites'] = 'obriši sve slike iz Omiljeni'; $lang['delete all photos from your favorites'] = 'obriši sve slike iz Omiljeni';
$lang['Sent by'] = 'Poslao'; $lang['Sent by'] = 'Poslao';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies su blokirani ili nisu podržani od Vašeg pretraživača. Morate omogućiti cookies da bi se logovali.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies su blokirani ili nisu podržani od Vašeg pretraživača. Morate omogućiti cookies da bi se logovali.';
$lang['Some info about this picture'] = 'Informacije o ovoj slici';
$lang['Some more (technical) info about this picture'] = 'Dodatne (tehničke) informacije o slici';
$lang['edit this comment'] = 'uredi ovaj komentar'; $lang['edit this comment'] = 'uredi ovaj komentar';
$lang['Edit a comment'] = 'Uredi komentar'; $lang['Edit a comment'] = 'Uredi komentar';
$lang['Are you sure?'] = 'Jeste li sigurni?'; $lang['Are you sure?'] = 'Jeste li sigurni?';

View file

@ -5,7 +5,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2009 Pavel Budka & Petr Jirsa http://pbudka.co.cc | // | Copyright(C) 2009 Pavel Budka & Petr Jirsa http://pbudka.co.cc |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -58,7 +58,7 @@ $lang['Average rate'] = 'Priemerné hodnotenie';
$lang['Albums'] = 'Albumy'; $lang['Albums'] = 'Albumy';
$lang['Album'] = 'Album'; $lang['Album'] = 'Album';
$lang['Close this window'] = 'Zatvoriť okno'; $lang['Close this window'] = 'Zatvoriť okno';
$lang['Complete RSS feed (images, comments)'] = 'Kompletné RSS vlákno (fotografie, komentáre)'; $lang['Complete RSS feed (photos, comments)'] = 'Kompletné RSS vlákno (fotografie, komentáre)';
$lang['Confirm Password'] = 'Potvrdiť heslo'; $lang['Confirm Password'] = 'Potvrdiť heslo';
$lang['Connection settings'] = 'Nastavenie prihlasovacích údajov'; $lang['Connection settings'] = 'Nastavenie prihlasovacích údajov';
$lang['Login'] = 'Prihlásiť sa'; $lang['Login'] = 'Prihlásiť sa';
@ -83,7 +83,7 @@ $lang['Forgot your password?'] = 'Zabudnuté heslo?';
$lang['Go through the gallery as a visitor'] = 'Prechádzať galériu ako hosť'; $lang['Go through the gallery as a visitor'] = 'Prechádzať galériu ako hosť';
$lang['Help'] = 'Nápoveda'; $lang['Help'] = 'Nápoveda';
$lang['Identification'] = 'Identifikácia'; $lang['Identification'] = 'Identifikácia';
$lang['Image only RSS feed'] = 'RSS vlákno len s fotografiami'; $lang['Photos only RSS feed'] = 'RSS vlákno len s fotografiami';
$lang['Keyword'] = 'Kľúčové slovo'; $lang['Keyword'] = 'Kľúčové slovo';
$lang['Links'] = 'Odkazy'; $lang['Links'] = 'Odkazy';
$lang['N/A'] = 'nezadané'; $lang['N/A'] = 'nezadané';
@ -118,7 +118,7 @@ $lang['Sort by'] = 'Zoradiť podľa';
$lang['Sort order'] = 'Smer zoradenia'; $lang['Sort order'] = 'Smer zoradenia';
$lang['Tag'] = 'Kľúčové slovo'; $lang['Tag'] = 'Kľúčové slovo';
$lang['Tags'] = 'Kľúčové slová'; $lang['Tags'] = 'Kľúčové slová';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS vlákno informuje o novinkách na týchto stránkach: nové fotografie, aktualizované albumy, komentáre. Použite RSS čítačku.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS vlákno informuje o novinkách na týchto stránkach: nové fotografie, aktualizované albumy, komentáre. Použite RSS čítačku.';
$lang['Unknown feed identifier'] = 'Neznámý identifikátor vlákna'; $lang['Unknown feed identifier'] = 'Neznámý identifikátor vlákna';
$lang['User comments'] = 'Komentáre používateľov'; $lang['User comments'] = 'Komentáre používateľov';
$lang['Username'] = 'Používateľské meno'; $lang['Username'] = 'Používateľské meno';
@ -206,12 +206,12 @@ $lang['Last'] = 'Koniec';
$lang['Logout'] = 'Odhlásiť sa'; $lang['Logout'] = 'Odhlásiť sa';
$lang['E-mail address'] = 'E-mailová adresa'; $lang['E-mail address'] = 'E-mailová adresa';
$lang['obligatory'] = 'povinné'; $lang['obligatory'] = 'povinné';
$lang['Maximum height of the pictures'] = 'Maximálna výška fotografií'; $lang['Maximum photo height'] = 'Maximálna výška fotografií';
$lang['Maximum height must be a number superior to 50'] = 'Maximálna výška musí byť číslo väčšie ako 50'; $lang['Maximum height must be a number superior to 50'] = 'Maximálna výška musí byť číslo väčšie ako 50';
$lang['Maximum width of the pictures'] = 'Maximálna šírka fotografií'; $lang['Maximum photo width'] = 'Maximálna šírka fotografií';
$lang['Maximum width must be a number superior to 50'] = 'Maximálna šírka musí byť číslo väčšie ako 50'; $lang['Maximum width must be a number superior to 50'] = 'Maximálna šírka musí byť číslo väčšie ako 50';
$lang['display a calendar by creation date'] = 'zobraziť v kalendári podľa dátumu vytvorenia'; $lang['display a calendar by creation date'] = 'zobraziť v kalendári podľa dátumu vytvorenia';
$lang['display all elements in all sub-albums'] = 'zobraziť všetky objekty v podalbumoch'; $lang['display all photos in all sub-albums'] = 'zobraziť všetky objekty v podalbumoch';
$lang['return to normal view mode'] = 'návrat do normálneho zobrazenia'; $lang['return to normal view mode'] = 'návrat do normálneho zobrazenia';
$lang['display a calendar by posted date'] = 'zobraziť v kalendári podľa dátumu vloženia'; $lang['display a calendar by posted date'] = 'zobraziť v kalendári podľa dátumu vloženia';
$lang['month'][10] = 'Október'; $lang['month'][10] = 'Október';
@ -228,8 +228,8 @@ $lang['month'][8] = 'August';
$lang['month'][9] = 'September'; $lang['month'][9] = 'September';
$lang['Most visited'] = 'Najčastejšie zobrazované'; $lang['Most visited'] = 'Najčastejšie zobrazované';
$lang['display most visited photos'] = 'najčastejšie zobrazované fotografie'; $lang['display most visited photos'] = 'najčastejšie zobrazované fotografie';
$lang['The number of images per row must be a not null scalar'] = 'Počet fotografií v riadku musí byť číslo väčšie ako 0.'; $lang['The number of photos per row must be a not null scalar'] = 'Počet fotografií v riadku musí byť číslo väčšie ako 0.';
$lang['Number of images per row'] = 'Počet fotografií v riadku'; $lang['Number of photos per row'] = 'Počet fotografií v riadku';
$lang['The number of rows per page must be a not null scalar'] = 'Počet riadkov na stránke musí byť číslo väčšie ako 0.'; $lang['The number of rows per page must be a not null scalar'] = 'Počet riadkov na stránke musí byť číslo väčšie ako 0.';
$lang['Number of rows per page'] = 'Počet riadkov na stránke'; $lang['Number of rows per page'] = 'Počet riadkov na stránke';
$lang['Unknown identifier'] = 'Neznámy identifikátor'; $lang['Unknown identifier'] = 'Neznámy identifikátor';
@ -237,12 +237,12 @@ $lang['New password'] = 'Nové heslo';
$lang['Rate this photo'] = 'Ohodnotiť túto fotografiu'; $lang['Rate this photo'] = 'Ohodnotiť túto fotografiu';
$lang['Next'] = 'Nasledujúca'; $lang['Next'] = 'Nasledujúca';
$lang['no rate'] = 'bez hodnotenia'; $lang['no rate'] = 'bez hodnotenia';
$lang['Elements posted within the last %d day.'] = 'Fotografie vložené behom posledného %d dňa.'; $lang['Photos posted within the last %d day.'] = 'Fotografie vložené behom posledného %d dňa.';
$lang['Elements posted within the last %d days.'] = 'Fotografie vložené behom posledných %d dní.'; $lang['Photos posted within the last %d days.'] = 'Fotografie vložené behom posledných %d dní.';
$lang['password updated'] = 'heslo aktualizované'; $lang['password updated'] = 'heslo aktualizované';
$lang['Recent period must be a positive integer value'] = 'Aktuálny interval musí byť číslo väčšie ako 0.'; $lang['Recent period must be a positive integer value'] = 'Aktuálny interval musí byť číslo väčšie ako 0.';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'fotografia'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'fotografia';
$lang['Click on the picture to see it in high definition'] = 'Pre zobrazenie vo vyššom rozlíšení kliknite na fotografiu'; $lang['Click on the photo to see it in high definition'] = 'Pre zobrazenie vo vyššom rozlíšení kliknite na fotografiu';
$lang['Show file metadata'] = 'Zobraziť metadata'; $lang['Show file metadata'] = 'Zobraziť metadata';
$lang['Powered by'] = 'Publikované pomocou aplikácie'; $lang['Powered by'] = 'Publikované pomocou aplikácie';
$lang['Preferences'] = 'Nastavenia'; $lang['Preferences'] = 'Nastavenia';
@ -358,8 +358,6 @@ $lang['Reset to default values'] = 'Obnoviť východzie hodnoty';
$lang['delete all photos from your favorites'] = 'vymazať všetky obrázky z Vašich obľúbených'; $lang['delete all photos from your favorites'] = 'vymazať všetky obrázky z Vašich obľúbených';
$lang['Sent by'] = 'Poslané'; $lang['Sent by'] = 'Poslané';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies sú buď blokované, alebo nie sú povolené vo Vašom prehliadači. Musíte povoliť cookies, aby bolo možné sa prihlásiť.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies sú buď blokované, alebo nie sú povolené vo Vašom prehliadači. Musíte povoliť cookies, aby bolo možné sa prihlásiť.';
$lang['Some info about this picture'] = 'Informácie o tejto fotografii';
$lang['Some more (technical) info about this picture'] = 'Viac informácií o tejto fotografii (technické)';
$lang['edit this comment'] = 'upraviť tento komentár'; $lang['edit this comment'] = 'upraviť tento komentár';
$lang['Edit a comment'] = 'Upraviť komentár'; $lang['Edit a comment'] = 'Upraviť komentár';
$lang['(!) This comment requires validation'] = '(!) Tento komentár vyžaduje kontrolu'; $lang['(!) This comment requires validation'] = '(!) Tento komentár vyžaduje kontrolu';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -62,7 +62,7 @@ $lang['Dimensions'] = 'Dimenzije';
$lang['Display'] = 'Zaslon'; $lang['Display'] = 'Zaslon';
$lang['%d new photo'] = '%d nova slika'; $lang['%d new photo'] = '%d nova slika';
$lang['%d new photos'] = '%d novih slik'; $lang['%d new photos'] = '%d novih slik';
$lang['Complete RSS feed (images, comments)'] = 'RSS vir (slike, komentarji)'; $lang['Complete RSS feed (photos, comments)'] = 'RSS vir (slike, komentarji)';
$lang['Login'] = 'Prijava'; $lang['Login'] = 'Prijava';
$lang['Each listed rule must be satisfied.'] = 'Vsa pravila morajo biti izpolnjena.'; $lang['Each listed rule must be satisfied.'] = 'Vsa pravila morajo biti izpolnjena.';
$lang['Email address'] = 'E-pošta'; $lang['Email address'] = 'E-pošta';
@ -77,7 +77,7 @@ $lang['Forgot your password?'] = 'Si pozabil geslo?';
$lang['Go through the gallery as a visitor'] = 'Obiskaj galerijo kot obiskovalec'; $lang['Go through the gallery as a visitor'] = 'Obiskaj galerijo kot obiskovalec';
$lang['Help'] = 'Pomoč'; $lang['Help'] = 'Pomoč';
$lang['Identification'] = 'Identifikacija'; $lang['Identification'] = 'Identifikacija';
$lang['Image only RSS feed'] = 'RSS vir (samo slike)'; $lang['Photos only RSS feed'] = 'RSS vir (samo slike)';
$lang['Keyword'] = 'Ključna beseda'; $lang['Keyword'] = 'Ključna beseda';
$lang['Links'] = 'Povezave'; $lang['Links'] = 'Povezave';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -157,7 +157,7 @@ $lang['Sort by'] = 'Uredi po';
$lang['Sort order'] = 'Urejeno po'; $lang['Sort order'] = 'Urejeno po';
$lang['Tag'] = 'Označba'; $lang['Tag'] = 'Označba';
$lang['Tags'] = 'Označbe'; $lang['Tags'] = 'Označbe';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS viri omogočajo prijavo na dogodke te spletne strani, kot so: nove slike, nove kategorije, novi komentarji. Za uporabo je potreben RSS odjemalec.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS viri omogočajo prijavo na dogodke te spletne strani, kot so: nove slike, nove kategorije, novi komentarji. Za uporabo je potreben RSS odjemalec.';
$lang['Default'] = 'Privzeto'; $lang['Default'] = 'Privzeto';
$lang['delete this photo from your favorites'] = 'odstrani to sliko iz svojih priljubljenih'; $lang['delete this photo from your favorites'] = 'odstrani to sliko iz svojih priljubljenih';
$lang['Delete'] = 'Odstrani'; $lang['Delete'] = 'Odstrani';
@ -192,13 +192,13 @@ $lang['Last'] = 'Zadnji';
$lang['Logout'] = 'Odjava'; $lang['Logout'] = 'Odjava';
$lang['E-mail address'] = 'E-pošta'; $lang['E-mail address'] = 'E-pošta';
$lang['obligatory'] = 'obvezno'; $lang['obligatory'] = 'obvezno';
$lang['Maximum height of the pictures'] = 'Maksimalna velikost slik'; $lang['Maximum photo height'] = 'Maksimalna velikost slik';
$lang['Maximum height must be a number superior to 50'] = 'Maksimalna velikost mora biti vecja od 50'; $lang['Maximum height must be a number superior to 50'] = 'Maksimalna velikost mora biti vecja od 50';
$lang['Maximum width of the pictures'] = 'Maksimalna dolžina slik'; $lang['Maximum photo width'] = 'Maksimalna dolžina slik';
$lang['Most visited'] = 'Najbolj obiskana'; $lang['Most visited'] = 'Najbolj obiskana';
$lang['display most visited photos'] = 'prikaži najbolj obiskane slike'; $lang['display most visited photos'] = 'prikaži najbolj obiskane slike';
$lang['The number of images per row must be a not null scalar'] = 'Število slik v vrstici, mora biti ne prazno celo število.'; $lang['The number of photos per row must be a not null scalar'] = 'Število slik v vrstici, mora biti ne prazno celo število.';
$lang['Number of images per row'] = 'Število slik v vrstici'; $lang['Number of photos per row'] = 'Število slik v vrstici';
$lang['The number of rows per page must be a not null scalar'] = 'Število vrstic na strani, mora biti ne prazno celo število.'; $lang['The number of rows per page must be a not null scalar'] = 'Število vrstic na strani, mora biti ne prazno celo število.';
$lang['Number of rows per page'] = 'Število vrstic na stran'; $lang['Number of rows per page'] = 'Število vrstic na stran';
$lang['Unknown identifier'] = 'Neznan'; $lang['Unknown identifier'] = 'Neznan';
@ -206,12 +206,12 @@ $lang['New password'] = 'Novo geslo';
$lang['Rate this photo'] = 'Glasuj'; $lang['Rate this photo'] = 'Glasuj';
$lang['Next'] = 'Naprej'; $lang['Next'] = 'Naprej';
$lang['no rate'] = 'brez glasa'; $lang['no rate'] = 'brez glasa';
$lang['Elements posted within the last %d day.'] = 'Elementi naloženi znotraj zadnjega %d dneva.'; $lang['Photos posted within the last %d day.'] = 'Elementi naloženi znotraj zadnjega %d dneva.';
$lang['Elements posted within the last %d days.'] = 'Elementi naloženi znotraj zadnjih %d dni.'; $lang['Photos posted within the last %d days.'] = 'Elementi naloženi znotraj zadnjih %d dni.';
$lang['password updated'] = 'geslo spremenjeno'; $lang['password updated'] = 'geslo spremenjeno';
$lang['Recent period must be a positive integer value'] = 'Novo obdobje more biti pozitivno celo število'; $lang['Recent period must be a positive integer value'] = 'Novo obdobje more biti pozitivno celo število';
$lang['picture'] = 'slika'; $lang['photo'] = 'slika';
$lang['Click on the picture to see it in high definition'] = 'Za ogled v originalni velikosti, kliknite na sliko'; $lang['Click on the photo to see it in high definition'] = 'Za ogled v originalni velikosti, kliknite na sliko';
$lang['Show file metadata'] = 'Prikaži mete podatke datoteke'; $lang['Show file metadata'] = 'Prikaži mete podatke datoteke';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Nastavitve'; $lang['Preferences'] = 'Nastavitve';
@ -251,7 +251,7 @@ $lang['Contact'] = 'Kontakt';
$lang['set as album representative'] = 'set as category representative'; $lang['set as album representative'] = 'set as category representative';
$lang['Maximum width must be a number superior to 50'] = 'Maksimalna dolžina mora biti večje od 50'; $lang['Maximum width must be a number superior to 50'] = 'Maksimalna dolžina mora biti večje od 50';
$lang['display a calendar by creation date'] = 'prikaži kolendar po datumo nastanka'; $lang['display a calendar by creation date'] = 'prikaži kolendar po datumo nastanka';
$lang['display all elements in all sub-albums'] = 'prikaži vse elemente v kategorijah in pod-kategorijah'; $lang['display all photos in all sub-albums'] = 'prikaži vse elemente v kategorijah in pod-kategorijah';
$lang['return to normal view mode'] = 'vrni se v normalni način'; $lang['return to normal view mode'] = 'vrni se v normalni način';
$lang['display a calendar by posted date'] = 'prikaži kolendar po datumo odpošiljanja'; $lang['display a calendar by posted date'] = 'prikaži kolendar po datumo odpošiljanja';
$lang['Show number of comments'] = 'Prikaži število komentarjev'; $lang['Show number of comments'] = 'Prikaži število komentarjev';
@ -349,8 +349,6 @@ $lang['Reset to default values'] = 'Resetiraj na privzete vrednosti';
$lang['delete all photos from your favorites'] = 'odstrani vse slike iz svojih priljubljenih'; $lang['delete all photos from your favorites'] = 'odstrani vse slike iz svojih priljubljenih';
$lang['Sent by'] = 'Poslano od'; $lang['Sent by'] = 'Poslano od';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Piškotki so blokirani ali niso podprti s strani vašega brskalnika. Za prijavo je potrebno omogočiti piškotke.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Piškotki so blokirani ali niso podprti s strani vašega brskalnika. Za prijavo je potrebno omogočiti piškotke.';
$lang['Some info about this picture'] = 'Informacije o tej sliki';
$lang['Some more (technical) info about this picture'] = 'Več (tehničnih) informacij o tej sliki';
$lang['edit this comment'] = 'uredi ta komentar'; $lang['edit this comment'] = 'uredi ta komentar';
$lang['Edit a comment'] = 'Uredi komentar'; $lang['Edit a comment'] = 'Uredi komentar';
$lang['Are you sure?'] = 'Ali ste prepričani?'; $lang['Are you sure?'] = 'Ali ste prepričani?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Просечна оцена';
$lang['Albums'] = 'Категорије'; $lang['Albums'] = 'Категорије';
$lang['Album'] = 'Категорија'; $lang['Album'] = 'Категорија';
$lang['Close this window'] = 'Затвори прозор'; $lang['Close this window'] = 'Затвори прозор';
$lang['Complete RSS feed (images, comments)'] = 'Потпуни RSS извори (слике, коментари)'; $lang['Complete RSS feed (photos, comments)'] = 'Потпуни RSS извори (слике, коментари)';
$lang['Confirm Password'] = 'Потврди Лозинку'; $lang['Confirm Password'] = 'Потврди Лозинку';
$lang['Connection settings'] = 'Подешавања повезивања'; $lang['Connection settings'] = 'Подешавања повезивања';
$lang['Login'] = 'Пријава'; $lang['Login'] = 'Пријава';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = 'Заборавили сте лозинку?';
$lang['Go through the gallery as a visitor'] = 'Прегледајте галерију као посетиоц'; $lang['Go through the gallery as a visitor'] = 'Прегледајте галерију као посетиоц';
$lang['Help'] = 'Помоћ'; $lang['Help'] = 'Помоћ';
$lang['Identification'] = 'Пријава'; $lang['Identification'] = 'Пријава';
$lang['Image only RSS feed'] = 'RSS извор само за слике'; $lang['Photos only RSS feed'] = 'RSS извор само за слике';
$lang['Keyword'] = 'Кључна реч'; $lang['Keyword'] = 'Кључна реч';
$lang['Links'] = 'Интернет везе'; $lang['Links'] = 'Интернет везе';
$lang['N/A'] = 'Н/Д'; $lang['N/A'] = 'Н/Д';
@ -114,7 +114,7 @@ $lang['Sort by'] = 'Сложено по';
$lang['Sort order'] = 'Редослед слагања'; $lang['Sort order'] = 'Редослед слагања';
$lang['Tag'] = 'Ознака'; $lang['Tag'] = 'Ознака';
$lang['Tags'] = 'Ознаке'; $lang['Tags'] = 'Ознаке';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS обавијесни извор омогућава обавештавање о новостима са овог wеб места : нове слике, обновљене категорије, нове коментаре. Користите читач RSS iзвора.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS обавијесни извор омогућава обавештавање о новостима са овог wеб места : нове слике, обновљене категорије, нове коментаре. Користите читач RSS iзвора.';
$lang['Unknown feed identifier'] = 'Непозната ознака извора'; $lang['Unknown feed identifier'] = 'Непозната ознака извора';
$lang['User comments'] = 'Кориснички коментари'; $lang['User comments'] = 'Кориснички коментари';
$lang['Username'] = 'Корисничко име'; $lang['Username'] = 'Корисничко име';
@ -201,12 +201,12 @@ $lang['Last'] = 'Задњи';
$lang['Logout'] = 'Одјава'; $lang['Logout'] = 'Одјава';
$lang['E-mail address'] = 'Адреса електронске поште'; $lang['E-mail address'] = 'Адреса електронске поште';
$lang['obligatory'] = 'обвезно'; $lang['obligatory'] = 'обвезно';
$lang['Maximum height of the pictures'] = 'Највећа дозвољена висина слика'; $lang['Maximum photo height'] = 'Највећа дозвољена висина слика';
$lang['Maximum height must be a number superior to 50'] = 'Највећа висина мора бити број већи од 50'; $lang['Maximum height must be a number superior to 50'] = 'Највећа висина мора бити број већи од 50';
$lang['Maximum width of the pictures'] = 'Највећа дозвољена ширина слика'; $lang['Maximum photo width'] = 'Највећа дозвољена ширина слика';
$lang['Maximum width must be a number superior to 50'] = 'Највећа ширина мора бити број већи од 50'; $lang['Maximum width must be a number superior to 50'] = 'Највећа ширина мора бити број већи од 50';
$lang['display a calendar by creation date'] = 'приказ календара по датуму израде'; $lang['display a calendar by creation date'] = 'приказ календара по датуму израде';
$lang['display all elements in all sub-albums'] = 'приказ свих ставки у свим подкатегоријама'; $lang['display all photos in all sub-albums'] = 'приказ свих ставки у свим подкатегоријама';
$lang['return to normal view mode'] = 'повратак у уобичајени начин прегледа'; $lang['return to normal view mode'] = 'повратак у уобичајени начин прегледа';
$lang['display a calendar by posted date'] = 'приказ календара по датуму објаве'; $lang['display a calendar by posted date'] = 'приказ календара по датуму објаве';
$lang['month'][10] = 'Октобар'; $lang['month'][10] = 'Октобар';
@ -223,8 +223,8 @@ $lang['month'][8] = 'Август';
$lang['month'][9] = 'Септембар'; $lang['month'][9] = 'Септембар';
$lang['Most visited'] = 'Најпосјећеније'; $lang['Most visited'] = 'Најпосјећеније';
$lang['display most visited photos'] = 'приказ најпосјећенијих слика'; $lang['display most visited photos'] = 'приказ најпосјећенијих слика';
$lang['The number of images per row must be a not null scalar'] = 'број слика по реду мора бити целобројна вредност'; $lang['The number of photos per row must be a not null scalar'] = 'број слика по реду мора бити целобројна вредност';
$lang['Number of images per row'] = 'Број слика по реду'; $lang['Number of photos per row'] = 'Број слика по реду';
$lang['The number of rows per page must be a not null scalar'] = 'Број редова по страници мора бити целобројна вредност'; $lang['The number of rows per page must be a not null scalar'] = 'Број редова по страници мора бити целобројна вредност';
$lang['Number of rows per page'] = 'Број редова по страници'; $lang['Number of rows per page'] = 'Број редова по страници';
$lang['Unknown identifier'] = 'Непозната ознака'; $lang['Unknown identifier'] = 'Непозната ознака';
@ -232,12 +232,12 @@ $lang['New password'] = 'Нова лозинка';
$lang['Rate this photo'] = 'Оцени ову слику'; $lang['Rate this photo'] = 'Оцени ову слику';
$lang['Next'] = 'Следећи'; $lang['Next'] = 'Следећи';
$lang['no rate'] = 'без оцене'; $lang['no rate'] = 'без оцене';
$lang['Elements posted within the last %d day.'] = 'Ставке објављене у задњем %d дану.'; $lang['Photos posted within the last %d day.'] = 'Ставке објављене у задњем %d дану.';
$lang['Elements posted within the last %d days.'] = 'Ставке објављене у задњих %d дана.'; $lang['Photos posted within the last %d days.'] = 'Ставке објављене у задњих %d дана.';
$lang['password updated'] = 'лозинка обновљена'; $lang['password updated'] = 'лозинка обновљена';
$lang['Recent period must be a positive integer value'] = 'Раздобље мора бити позитивна целобројна вредност'; $lang['Recent period must be a positive integer value'] = 'Раздобље мора бити позитивна целобројна вредност';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'слика'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'слика';
$lang['Click on the picture to see it in high definition'] = 'Кликни на слику за преглед у високој резолуцији'; $lang['Click on the photo to see it in high definition'] = 'Кликни на слику за преглед у високој резолуцији';
$lang['Show file metadata'] = 'Прикажи мета податке записа'; $lang['Show file metadata'] = 'Прикажи мета податке записа';
$lang['Powered by'] = 'Урађено у'; $lang['Powered by'] = 'Урађено у';
$lang['Preferences'] = 'Подешења'; $lang['Preferences'] = 'Подешења';
@ -354,8 +354,6 @@ $lang['Reset to default values'] = 'Врати на подразумеване
$lang['delete all photos from your favorites'] = 'обриши све слике из Омиљени'; $lang['delete all photos from your favorites'] = 'обриши све слике из Омиљени';
$lang['Sent by'] = 'Послао'; $lang['Sent by'] = 'Послао';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies су блокирани или нису подржани од Вашег претраживача. Морате омогућити цоокиес да би се логовали.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies су блокирани или нису подржани од Вашег претраживача. Морате омогућити цоокиес да би се логовали.';
$lang['Some info about this picture'] = 'Информације о овој слици';
$lang['Some more (technical) info about this picture'] = 'Додатне (техничке) информације о слици';
$lang['edit this comment'] = 'уреди овај коментар'; $lang['edit this comment'] = 'уреди овај коментар';
$lang['Edit a comment'] = 'Уреди коментар'; $lang['Edit a comment'] = 'Уреди коментар';
$lang['Are you sure?'] = 'Јесте ли сигурни?'; $lang['Are you sure?'] = 'Јесте ли сигурни?';

View file

@ -97,7 +97,7 @@ $lang['Average rate'] = 'Genomsnittlig';
$lang['Albums'] = 'kategorier'; $lang['Albums'] = 'kategorier';
$lang['Album'] = 'kategori'; $lang['Album'] = 'kategori';
$lang['Close this window'] = 'Stäng detta fönster'; $lang['Close this window'] = 'Stäng detta fönster';
$lang['Complete RSS feed (images, comments)'] = 'Komplett RSS-flöde (bilder, kommentarer)'; $lang['Complete RSS feed (photos, comments)'] = 'Komplett RSS-flöde (bilder, kommentarer)';
$lang['Confirm Password'] = 'Bekräfta lösenord'; $lang['Confirm Password'] = 'Bekräfta lösenord';
$lang['Connection settings'] = 'Inställningar för anslutning'; $lang['Connection settings'] = 'Inställningar för anslutning';
$lang['Login'] = 'logga in'; $lang['Login'] = 'logga in';
@ -121,7 +121,7 @@ $lang['Forgot your password?'] = 'Har du glömt lösenordet?';
$lang['Go through the gallery as a visitor'] = 'Navigera galleriet som en besökare'; $lang['Go through the gallery as a visitor'] = 'Navigera galleriet som en besökare';
$lang['Help'] = 'Hjälp'; $lang['Help'] = 'Hjälp';
$lang['Identification'] = 'Identifiering'; $lang['Identification'] = 'Identifiering';
$lang['Image only RSS feed'] = 'Endast bilder RSS-flöde'; $lang['Photos only RSS feed'] = 'Endast bilder RSS-flöde';
$lang['Keyword'] = 'sökord'; $lang['Keyword'] = 'sökord';
$lang['Links'] = 'sökord'; $lang['Links'] = 'sökord';
$lang['New password confirmation does not correspond'] = 'Nytt lösenord matchar inte'; $lang['New password confirmation does not correspond'] = 'Nytt lösenord matchar inte';
@ -154,7 +154,7 @@ $lang['Sort by'] = 'Sortera efter';
$lang['Sort order'] = 'Sorteringsordning'; $lang['Sort order'] = 'Sorteringsordning';
$lang['Tag'] = 'Tagg'; $lang['Tag'] = 'Tagg';
$lang['Tags'] = 'Tags'; $lang['Tags'] = 'Tags';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Den RSS-flöde ger information om nya händelser från denna webbplats: nya bilder, upp daterad kategorier, nya kommentarer. Användas med en RSS-läsare.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Den RSS-flöde ger information om nya händelser från denna webbplats: nya bilder, upp daterad kategorier, nya kommentarer. Användas med en RSS-läsare.';
$lang['Unknown feed identifier'] = 'Okänt Rss-flöde'; $lang['Unknown feed identifier'] = 'Okänt Rss-flöde';
$lang['User comments'] = 'Kommentarer'; $lang['User comments'] = 'Kommentarer';
$lang['Username'] = 'Användarnamn'; $lang['Username'] = 'Användarnamn';
@ -253,18 +253,18 @@ $lang['Last'] = 'Senaste';
$lang['Logout'] = 'Logga ut'; $lang['Logout'] = 'Logga ut';
$lang['E-mail address'] = 'E-postadress'; $lang['E-mail address'] = 'E-postadress';
$lang['obligatory'] = 'obligatorisk'; $lang['obligatory'] = 'obligatorisk';
$lang['Maximum height of the pictures'] = 'Max höjd på bilderna'; $lang['Maximum photo height'] = 'Max höjd på bilderna';
$lang['Maximum height must be a number superior to 50'] = 'Maximal höjd måste vara större än 50'; $lang['Maximum height must be a number superior to 50'] = 'Maximal höjd måste vara större än 50';
$lang['Maximum width of the pictures'] = 'Maximum bredd på bilderna'; $lang['Maximum photo width'] = 'Maximum bredd på bilderna';
$lang['Maximum width must be a number superior to 50'] = 'Maximal bredd måste vara större än 50'; $lang['Maximum width must be a number superior to 50'] = 'Maximal bredd måste vara större än 50';
$lang['display a calendar by creation date'] = 'visa en kalender med datum för skapande'; $lang['display a calendar by creation date'] = 'visa en kalender med datum för skapande';
$lang['display all elements in all sub-albums'] = 'visa alla delar i alla kategorier och under kategorier'; $lang['display all photos in all sub-albums'] = 'visa alla delar i alla kategorier och under kategorier';
$lang['return to normal view mode'] = 'återgå till normalt visnings läge'; $lang['return to normal view mode'] = 'återgå till normalt visnings läge';
$lang['display a calendar by posted date'] = 'visa en kalender sorterad på publicerd datum'; $lang['display a calendar by posted date'] = 'visa en kalender sorterad på publicerd datum';
$lang['Most visited'] = 'Mest besökta'; $lang['Most visited'] = 'Mest besökta';
$lang['display most visited photos'] = 'Visa mest besökta bilder'; $lang['display most visited photos'] = 'Visa mest besökta bilder';
$lang['The number of images per row must be a not null scalar'] = 'Antalet bilder per rad måste vara ett heltal'; $lang['The number of photos per row must be a not null scalar'] = 'Antalet bilder per rad måste vara ett heltal';
$lang['Number of images per row'] = 'Antal bilder per rad'; $lang['Number of photos per row'] = 'Antal bilder per rad';
$lang['The number of rows per page must be a not null scalar'] = 'Antalet rader per sida måste vara ett heltal'; $lang['The number of rows per page must be a not null scalar'] = 'Antalet rader per sida måste vara ett heltal';
$lang['Number of rows per page'] = 'Antal rader per sida'; $lang['Number of rows per page'] = 'Antal rader per sida';
$lang['Unknown identifier'] = 'Okänt användarnamn'; $lang['Unknown identifier'] = 'Okänt användarnamn';
@ -272,12 +272,12 @@ $lang['New password'] = 'Nytt lösenord';
$lang['Rate this photo'] = 'Betyg sätt den här bilden'; $lang['Rate this photo'] = 'Betyg sätt den här bilden';
$lang['Next'] = 'Nästa'; $lang['Next'] = 'Nästa';
$lang['no rate'] = 'Inget betyg'; $lang['no rate'] = 'Inget betyg';
$lang['Elements posted within the last %d day.'] = 'Inlägg postade de senaste %d dagen bara.'; $lang['Photos posted within the last %d day.'] = 'Inlägg postade de senaste %d dagen bara.';
$lang['Elements posted within the last %d days.'] = 'Inlägg postade de senaste %d dagarna.'; $lang['Photos posted within the last %d days.'] = 'Inlägg postade de senaste %d dagarna.';
$lang['password updated'] = 'lösenord uppdateras'; $lang['password updated'] = 'lösenord uppdateras';
$lang['Recent period must be a positive integer value'] = 'senaste tiden måste vara ett positivt heltal'; $lang['Recent period must be a positive integer value'] = 'senaste tiden måste vara ett positivt heltal';
$lang['picture'] = 'Bild'; $lang['photo'] = 'Bild';
$lang['Click on the picture to see it in high definition'] = 'Klicka på bilden för att se den i hög upplösning'; $lang['Click on the photo to see it in high definition'] = 'Klicka på bilden för att se den i hög upplösning';
$lang['Show file metadata'] = 'Visa fil metadata'; $lang['Show file metadata'] = 'Visa fil metadata';
$lang['Powered by'] = 'Powered by'; $lang['Powered by'] = 'Powered by';
$lang['Preferences'] = 'Inställningar'; $lang['Preferences'] = 'Inställningar';
@ -350,8 +350,6 @@ $lang['A picture\'s name already used'] = 'Bild namnet används redan';
$lang['You must choose a picture fileformat for the image'] = 'Du måste välja en bild filformat för bilden'; $lang['You must choose a picture fileformat for the image'] = 'Du måste välja en bild filformat för bilden';
$lang['Name of the picture'] = 'Namn på bilden'; $lang['Name of the picture'] = 'Namn på bilden';
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'Bilden laddades med framgång, en administratör kommer att godkänna det så snart som möjligt'; $lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'Bilden laddades med framgång, en administratör kommer att godkänna det så snart som möjligt';
$lang['Some info about this picture'] = 'Information om den här bilden';
$lang['Some more (technical) info about this picture'] = 'Mer (teknisk) information om den här bilden';
$lang['edit this comment'] = 'Redigera detta inlägg'; $lang['edit this comment'] = 'Redigera detta inlägg';
$lang['Edit a comment'] = 'Redigera ett inlägg'; $lang['Edit a comment'] = 'Redigera ett inlägg';
$lang['Are you sure?'] = 'Är du säker?'; $lang['Are you sure?'] = 'Är du säker?';

View file

@ -53,7 +53,7 @@ $lang['Average rate'] = 'Ortalama Puan';
$lang['Albums'] = 'Albümler'; $lang['Albums'] = 'Albümler';
$lang['Album'] = 'Albüm'; $lang['Album'] = 'Albüm';
$lang['Close this window'] = 'Pencereyi Kapat'; $lang['Close this window'] = 'Pencereyi Kapat';
$lang['Complete RSS feed (images, comments)'] = ' RSS alanını tamamla (resimler, yorumlar)'; $lang['Complete RSS feed (photos, comments)'] = ' RSS alanını tamamla (resimler, yorumlar)';
$lang['Confirm Password'] = 'Sifreyi Onayla'; $lang['Confirm Password'] = 'Sifreyi Onayla';
$lang['Connection settings'] = 'Bağlantı Ayarları'; $lang['Connection settings'] = 'Bağlantı Ayarları';
$lang['Login'] = 'Giriş'; $lang['Login'] = 'Giriş';
@ -77,7 +77,7 @@ $lang['Forgot your password?'] = 'Şifrenizi mi Unuttunuz?';
$lang['Go through the gallery as a visitor'] = 'Ziyaretçi olarak görüntüle'; $lang['Go through the gallery as a visitor'] = 'Ziyaretçi olarak görüntüle';
$lang['Help'] = 'Yardım'; $lang['Help'] = 'Yardım';
$lang['Identification'] = 'Kimlik'; $lang['Identification'] = 'Kimlik';
$lang['Image only RSS feed'] = 'Yanlizca Resim - RSS'; $lang['Photos only RSS feed'] = 'Yanlizca Resim - RSS';
$lang['Keyword'] = 'Anahtar Kelime'; $lang['Keyword'] = 'Anahtar Kelime';
$lang['Links'] = 'Bağlantılar'; $lang['Links'] = 'Bağlantılar';
$lang['N/A'] = 'N/A'; $lang['N/A'] = 'N/A';
@ -112,7 +112,7 @@ $lang['Sort by'] = 'Sırala';
$lang['Sort order'] = 'Sıralama Düzeni'; $lang['Sort order'] = 'Sıralama Düzeni';
$lang['Tag'] = 'Etiket'; $lang['Tag'] = 'Etiket';
$lang['Tags'] = 'Etiketler'; $lang['Tags'] = 'Etiketler';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Bu RSS beslemesi bu siteden yeni resimler, güncellenen albümler, yeni yorumlar içerir. Bir RSS okuyucu ile kullanılabilir'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Bu RSS beslemesi bu siteden yeni resimler, güncellenen albümler, yeni yorumlar içerir. Bir RSS okuyucu ile kullanılabilir';
$lang['Unknown feed identifier'] = 'Bilinmeyen besleme kimliği'; $lang['Unknown feed identifier'] = 'Bilinmeyen besleme kimliği';
$lang['User comments'] = 'Ziyaretçi Yorumları'; $lang['User comments'] = 'Ziyaretçi Yorumları';
$lang['Username'] = 'Kullanıcı Adı'; $lang['Username'] = 'Kullanıcı Adı';
@ -200,9 +200,9 @@ $lang['Last'] = 'Son';
$lang['Logout'] = ıkış'; $lang['Logout'] = ıkış';
$lang['E-mail address'] = 'E-posta adresi'; $lang['E-mail address'] = 'E-posta adresi';
$lang['obligatory'] = 'obligatori'; $lang['obligatory'] = 'obligatori';
$lang['Maximum height of the pictures'] = 'Maximum Resim Yüksekligi'; $lang['Maximum photo height'] = 'Maximum Resim Yüksekligi';
$lang['Maximum height must be a number superior to 50'] = 'Maximum yükseklik 50'; $lang['Maximum height must be a number superior to 50'] = 'Maximum yükseklik 50';
$lang['Maximum width of the pictures'] = 'Maximum Resim Genisligi'; $lang['Maximum photo width'] = 'Maximum Resim Genisligi';
$lang['Maximum width must be a number superior to 50'] = 'Maximum Yükseklik 50'; $lang['Maximum width must be a number superior to 50'] = 'Maximum Yükseklik 50';
$lang['%.2f (rated %d times)'] = '%.2f (şu kadar oylandı: %d )'; $lang['%.2f (rated %d times)'] = '%.2f (şu kadar oylandı: %d )';
$lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'resim gönderimi başarıyla gerçekleşti, yönetici onayından sonra yayına girecektir'; $lang['Picture uploaded with success, an administrator will validate it as soon as possible'] = 'resim gönderimi başarıyla gerçekleşti, yönetici onayından sonra yayına girecektir';
@ -211,7 +211,7 @@ $lang['Quick search'] = 'Hızlı arama';
$lang['Connected user: %s'] = 'Kullanıcıya bağlanılıyor: %s'; $lang['Connected user: %s'] = 'Kullanıcıya bağlanılıyor: %s';
$lang['IP: %s'] = 'IP: %s'; $lang['IP: %s'] = 'IP: %s';
$lang['Browser: %s'] = 'Web Tarayıcı: %s'; $lang['Browser: %s'] = 'Web Tarayıcı: %s';
$lang['display all elements in all sub-albums'] = 'albümlere ve alt albümlere ait bütün elemanları göster'; $lang['display all photos in all sub-albums'] = 'albümlere ve alt albümlere ait bütün elemanları göster';
$lang['return to normal view mode'] = 'normal görüntü moduna geri dön'; $lang['return to normal view mode'] = 'normal görüntü moduna geri dön';
$lang['display a calendar by posted date'] = 'gönderme gününü takvimde göster'; $lang['display a calendar by posted date'] = 'gönderme gününü takvimde göster';
$lang['month'][10] = "Ekim"; $lang['month'][10] = "Ekim";
@ -228,8 +228,8 @@ $lang['month'][8] = "Ağustos";
$lang['month'][9] = "Eylül"; $lang['month'][9] = "Eylül";
$lang['Most visited'] = 'En çok görüntülenen'; $lang['Most visited'] = 'En çok görüntülenen';
$lang['display most visited photos'] = 'en çok görüntülenen resimlerı göster'; $lang['display most visited photos'] = 'en çok görüntülenen resimlerı göster';
$lang['The number of images per row must be a not null scalar'] = 'Her sıra için gösterilen resim sayısı 0 dan farklı bir tam sayı olmalıdır'; $lang['The number of photos per row must be a not null scalar'] = 'Her sıra için gösterilen resim sayısı 0 dan farklı bir tam sayı olmalıdır';
$lang['Number of images per row'] = 'Her sıra için gösterilen resim sayısı'; $lang['Number of photos per row'] = 'Her sıra için gösterilen resim sayısı';
$lang['The number of rows per page must be a not null scalar'] = 'Her sayfa için gösterilen resim sayısı 0 dan farklı bir tamsayı olmalıdır'; $lang['The number of rows per page must be a not null scalar'] = 'Her sayfa için gösterilen resim sayısı 0 dan farklı bir tamsayı olmalıdır';
$lang['Number of rows per page'] = 'Her sayfada gösterilen sıra sayısı'; $lang['Number of rows per page'] = 'Her sayfada gösterilen sıra sayısı';
$lang['Unknown identifier'] = 'bilinmeyen kimlik'; $lang['Unknown identifier'] = 'bilinmeyen kimlik';
@ -237,12 +237,12 @@ $lang['New password'] = 'yeni şifre';
$lang['Rate this photo'] = 'resime puan ver'; $lang['Rate this photo'] = 'resime puan ver';
$lang['Next'] = 'sonraki'; $lang['Next'] = 'sonraki';
$lang['no rate'] = 'puan verilmemiş'; $lang['no rate'] = 'puan verilmemiş';
$lang['Elements posted within the last %d day.'] = 'içerik en son %d gün önce yüklendi.'; $lang['Photos posted within the last %d day.'] = 'içerik en son %d gün önce yüklendi.';
$lang['Elements posted within the last %d days.'] = 'içerikler en son %d gün önce yüklendi.'; $lang['Photos posted within the last %d days.'] = 'içerikler en son %d gün önce yüklendi.';
$lang['password updated'] = 'şifre değiştirildi'; $lang['password updated'] = 'şifre değiştirildi';
$lang['Recent period must be a positive integer value'] = 'yakın dönem pozitif tam sayı değere sahip olmalıdır'; $lang['Recent period must be a positive integer value'] = 'yakın dönem pozitif tam sayı değere sahip olmalıdır';
$lang['picture'] = 'resim'; $lang['photo'] = 'resim';
$lang['Click on the picture to see it in high definition'] = 'yüksek çözünürlükte görmek için resima tıklayın'; $lang['Click on the photo to see it in high definition'] = 'yüksek çözünürlükte görmek için resima tıklayın';
$lang['Show file metadata'] = 'üstveriyi göster'; $lang['Show file metadata'] = 'üstveriyi göster';
$lang['Powered by'] = 'destekleyen :'; $lang['Powered by'] = 'destekleyen :';
$lang['Preferences'] = 'özellikler'; $lang['Preferences'] = 'özellikler';
@ -307,8 +307,6 @@ $lang['Reset to default values'] = 'fabrika ayarlarına dönüş';
$lang['delete all photos from your favorites'] = 'favorilerinizdeki tüm resimlerı silin'; $lang['delete all photos from your favorites'] = 'favorilerinizdeki tüm resimlerı silin';
$lang['Sent by'] = 'gönderen'; $lang['Sent by'] = 'gönderen';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'çerezler engelli yada web tarayıcınız tarafından desteklenmiyor. Giriş yapmak için çerezlere izin verin .'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'çerezler engelli yada web tarayıcınız tarafından desteklenmiyor. Giriş yapmak için çerezlere izin verin .';
$lang['Some info about this picture'] = 'resim hakkında bilgi';
$lang['Some more (technical) info about this picture'] = 'resim hakkında detaylı (teknik) bilgi';
$lang['edit this comment'] = 'yorumu değiştir'; $lang['edit this comment'] = 'yorumu değiştir';
$lang['Edit a comment'] = 'yorumu değiştir'; $lang['Edit a comment'] = 'yorumu değiştir';
$lang['Are you sure?'] = 'Emin misiniz?'; $lang['Are you sure?'] = 'Emin misiniz?';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = 'Xếp hạng trung bình';
$lang['Albums'] = 'Đề mục'; $lang['Albums'] = 'Đề mục';
$lang['Album'] = 'Đề mục'; $lang['Album'] = 'Đề mục';
$lang['Close this window'] = 'Đóng'; $lang['Close this window'] = 'Đóng';
$lang['Complete RSS feed (images, comments)'] = 'Bản RSS feed đầy đủ (gồm hình ảnh và lời bình)'; $lang['Complete RSS feed (photos, comments)'] = 'Bản RSS feed đầy đủ (gồm hình ảnh và lời bình)';
$lang['Confirm Password'] = 'Xác nhận lại mật khẩu'; $lang['Confirm Password'] = 'Xác nhận lại mật khẩu';
$lang['Connection settings'] = 'Thiết lập cài đặt'; $lang['Connection settings'] = 'Thiết lập cài đặt';
$lang['Login'] = 'Đăng nhập'; $lang['Login'] = 'Đăng nhập';
@ -78,7 +78,7 @@ $lang['Forgot your password?'] = 'Bạn quên mật khẩu?';
$lang['Go through the gallery as a visitor'] = 'Xem gallery như một khách thăm quan'; $lang['Go through the gallery as a visitor'] = 'Xem gallery như một khách thăm quan';
$lang['Help'] = 'Trợ giúp'; $lang['Help'] = 'Trợ giúp';
$lang['Identification'] = 'Định danh'; $lang['Identification'] = 'Định danh';
$lang['Image only RSS feed'] = 'Chỉ hiện hình ảnh trên RSS feed'; $lang['Photos only RSS feed'] = 'Chỉ hiện hình ảnh trên RSS feed';
$lang['Keyword'] = 'Từ khoá'; $lang['Keyword'] = 'Từ khoá';
$lang['Links'] = 'Liên kết'; $lang['Links'] = 'Liên kết';
$lang['N/A'] = 'Không có'; $lang['N/A'] = 'Không có';
@ -113,7 +113,7 @@ $lang['Sort by'] = 'Sắp xếp theo';
$lang['Sort order'] = 'Vị trí sắp xếp'; $lang['Sort order'] = 'Vị trí sắp xếp';
$lang['Tag'] = 'Thẻ'; $lang['Tag'] = 'Thẻ';
$lang['Tags'] = 'Thẻ'; $lang['Tags'] = 'Thẻ';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'Bản thông báo RSS feed cung cấp thông báo về tin tức và cập nhật trên trang này bao gồm: hình ảnh mới, đề mục được cập nhật và lời bình mới. Hãy sử dụng trình đọc RSS Feed.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'Bản thông báo RSS feed cung cấp thông báo về tin tức và cập nhật trên trang này bao gồm: hình ảnh mới, đề mục được cập nhật và lời bình mới. Hãy sử dụng trình đọc RSS Feed.';
$lang['Unknown feed identifier'] = 'Nguồn cung cấp tin không xác nhận'; $lang['Unknown feed identifier'] = 'Nguồn cung cấp tin không xác nhận';
$lang['User comments'] = 'Bình luận của thành viên'; $lang['User comments'] = 'Bình luận của thành viên';
$lang['Username'] = 'Tên đăng nhập'; $lang['Username'] = 'Tên đăng nhập';
@ -200,12 +200,12 @@ $lang['Last'] = 'Cuối';
$lang['Logout'] = 'Thoát'; $lang['Logout'] = 'Thoát';
$lang['E-mail address'] = 'Địa chỉ email'; $lang['E-mail address'] = 'Địa chỉ email';
$lang['obligatory'] = 'Phần bắt buộc'; $lang['obligatory'] = 'Phần bắt buộc';
$lang['Maximum height of the pictures'] = 'Chiều cao tối đa của hình'; $lang['Maximum photo height'] = 'Chiều cao tối đa của hình';
$lang['Maximum height must be a number superior to 50'] = 'Chiều cao tối đa của hình phải trên 50 pixel'; $lang['Maximum height must be a number superior to 50'] = 'Chiều cao tối đa của hình phải trên 50 pixel';
$lang['Maximum width of the pictures'] = 'Chiều rộng tối đa của hình'; $lang['Maximum photo width'] = 'Chiều rộng tối đa của hình';
$lang['Maximum width must be a number superior to 50'] = 'Chiều rộng tối đa của hình phải trên 50 pixel'; $lang['Maximum width must be a number superior to 50'] = 'Chiều rộng tối đa của hình phải trên 50 pixel';
$lang['display a calendar by creation date'] = 'hiển thị lịch theo ngày gởi hình'; $lang['display a calendar by creation date'] = 'hiển thị lịch theo ngày gởi hình';
$lang['display all elements in all sub-albums'] = 'hiển thị mọi thành phần có trong tất cả mục nhỏ'; $lang['display all photos in all sub-albums'] = 'hiển thị mọi thành phần có trong tất cả mục nhỏ';
$lang['return to normal view mode'] = 'chuyện lại chế độ xem hình bình thường'; $lang['return to normal view mode'] = 'chuyện lại chế độ xem hình bình thường';
$lang['display a calendar by posted date'] = 'hiển thị lịch theo ngày gởi hình'; $lang['display a calendar by posted date'] = 'hiển thị lịch theo ngày gởi hình';
$lang['month'][10] = 'Tháng Mười'; $lang['month'][10] = 'Tháng Mười';
@ -222,8 +222,8 @@ $lang['month'][8] = 'Tháng Tám';
$lang['month'][9] = 'Tháng Chín'; $lang['month'][9] = 'Tháng Chín';
$lang['Most visited'] = 'Hình được xem nhiều nhất'; $lang['Most visited'] = 'Hình được xem nhiều nhất';
$lang['display most visited photos'] = 'hiển thị những hình được xem nhiều nhất'; $lang['display most visited photos'] = 'hiển thị những hình được xem nhiều nhất';
$lang['The number of images per row must be a not null scalar'] = 'Số hình mỗi hàng phải là đại lượng vô hướng không rỗng'; $lang['The number of photos per row must be a not null scalar'] = 'Số hình mỗi hàng phải là đại lượng vô hướng không rỗng';
$lang['Number of images per row'] = 'Số hình trên mỗi hàng'; $lang['Number of photos per row'] = 'Số hình trên mỗi hàng';
$lang['The number of rows per page must be a not null scalar'] = 'Số hàng mỗi trang phải là đại lượng vô hướng không rỗng'; $lang['The number of rows per page must be a not null scalar'] = 'Số hàng mỗi trang phải là đại lượng vô hướng không rỗng';
$lang['Number of rows per page'] = 'Số hàng trên mỗi trang'; $lang['Number of rows per page'] = 'Số hàng trên mỗi trang';
$lang['Unknown identifier'] = 'Định danh không xác định'; $lang['Unknown identifier'] = 'Định danh không xác định';
@ -231,12 +231,12 @@ $lang['New password'] = 'Mật khẩu mới';
$lang['Rate this photo'] = 'Đánh giá hình này'; $lang['Rate this photo'] = 'Đánh giá hình này';
$lang['Next'] = 'Tiếp theo'; $lang['Next'] = 'Tiếp theo';
$lang['no rate'] = 'không có đánh giá'; $lang['no rate'] = 'không có đánh giá';
$lang['Elements posted within the last %d day.'] = 'Thành phần được gởi trong vòng %d ngày cuối.'; $lang['Photos posted within the last %d day.'] = 'Thành phần được gởi trong vòng %d ngày cuối.';
$lang['Elements posted within the last %d days.'] = 'Các thành phần được gởi trong %d ngày cuối.'; $lang['Photos posted within the last %d days.'] = 'Các thành phần được gởi trong %d ngày cuối.';
$lang['password updated'] = 'mật khẩu đã được cập nhật'; $lang['password updated'] = 'mật khẩu đã được cập nhật';
$lang['Recent period must be a positive integer value'] = 'Chu kỳ gần đây phải có giá trị là số nguyên dương'; $lang['Recent period must be a positive integer value'] = 'Chu kỳ gần đây phải có giá trị là số nguyên dương';
/* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['picture'] = 'hình ảnh'; /* DEPRECATED USED IN comments.php FOR image_id ? */ $lang['photo'] = 'hình ảnh';
$lang['Click on the picture to see it in high definition'] = 'Click lên hình để xem ở định dạng cao'; $lang['Click on the photo to see it in high definition'] = 'Click lên hình để xem ở định dạng cao';
$lang['Show file metadata'] = 'Hiển thị metadata của hình'; $lang['Show file metadata'] = 'Hiển thị metadata của hình';
$lang['Powered by'] = 'Sản phẩm của'; $lang['Powered by'] = 'Sản phẩm của';
$lang['Preferences'] = 'Tuỳ chọn thêm'; $lang['Preferences'] = 'Tuỳ chọn thêm';
@ -354,8 +354,6 @@ $lang['Sent by'] = 'Được gởi bởi';
$lang['Are you sure?'] = 'Bạn có chắc không?'; $lang['Are you sure?'] = 'Bạn có chắc không?';
$lang['delete this comment'] = 'xóa bỏ lời bình này'; $lang['delete this comment'] = 'xóa bỏ lời bình này';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies đã bị chặn lại hoặc không được trình duyệt web trên máy bạn hỗ trợ. Bạn phải mở cookie để tiếp tục.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'Cookies đã bị chặn lại hoặc không được trình duyệt web trên máy bạn hỗ trợ. Bạn phải mở cookie để tiếp tục.';
$lang['Some info about this picture'] = 'Thông tin về hình ảnh';
$lang['Some more (technical) info about this picture'] = 'Thêm một số thông tin kỹ thuật về hình ảnh';
$lang['edit this comment'] = 'biên tập lại lời bình này'; $lang['edit this comment'] = 'biên tập lại lời bình này';
$lang['Edit a comment'] = 'Biên tập một lời bình'; $lang['Edit a comment'] = 'Biên tập một lời bình';
$lang['(!) This comment requires validation'] = '(!) Lời bình này yêu cầu sự xác nhận'; $lang['(!) This comment requires validation'] = '(!) Lời bình này yêu cầu sự xác nhận';

View file

@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Piwigo - a PHP based picture gallery | // | Piwigo - a PHP based picture gallery |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | // | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
@ -54,7 +54,7 @@ $lang['Average rate'] = '评分';
$lang['Albums'] = '相册'; $lang['Albums'] = '相册';
$lang['Album'] = '相册'; $lang['Album'] = '相册';
$lang['Close this window'] = '关闭窗口'; $lang['Close this window'] = '关闭窗口';
$lang['Complete RSS feed (images, comments)'] = '完整RSS回馈(图片, 评论等)'; $lang['Complete RSS feed (photos, comments)'] = '完整RSS回馈(图片, 评论等)';
$lang['Confirm Password'] = '重复输入密码'; $lang['Confirm Password'] = '重复输入密码';
$lang['Connection settings'] = '连接设置'; $lang['Connection settings'] = '连接设置';
$lang['Login'] = '连接'; $lang['Login'] = '连接';
@ -79,7 +79,7 @@ $lang['Forgot your password?'] = '忘记密码?';
$lang['Go through the gallery as a visitor'] = '以游客身份浏览图库'; $lang['Go through the gallery as a visitor'] = '以游客身份浏览图库';
$lang['Help'] = '帮助'; $lang['Help'] = '帮助';
$lang['Identification'] = '身份鉴别'; $lang['Identification'] = '身份鉴别';
$lang['Image only RSS feed'] = '图片RSS'; $lang['Photos only RSS feed'] = '图片RSS';
$lang['Keyword'] = '关键字'; $lang['Keyword'] = '关键字';
$lang['Links'] = '链接'; $lang['Links'] = '链接';
$lang['N/A'] = '不存在'; $lang['N/A'] = '不存在';
@ -114,7 +114,7 @@ $lang['Sort by'] = '排序';
$lang['Sort order'] = '排序规则'; $lang['Sort order'] = '排序规则';
$lang['Tag'] = '标签'; $lang['Tag'] = '标签';
$lang['Tags'] = '标签簇'; $lang['Tags'] = '标签簇';
$lang['The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'] = 'RSS提要从这个网站上提供新事件的通知新相片更新相册新评论。要使用 RSS 阅读器查看new pictures, updated albums, new comments. To be used with a RSS feed reader.'; $lang['The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'] = 'RSS提要从这个网站上提供新事件的通知新相片更新相册新评论。要使用 RSS 阅读器查看new photos, updated albums, new comments. To be used with a RSS feed reader.';
$lang['Unknown feed identifier'] = '未知流标识'; $lang['Unknown feed identifier'] = '未知流标识';
$lang['User comments'] = '用户评论'; $lang['User comments'] = '用户评论';
$lang['Username'] = '用户名'; $lang['Username'] = '用户名';
@ -201,12 +201,12 @@ $lang['Last'] = '最后';
$lang['Logout'] = '注销'; $lang['Logout'] = '注销';
$lang['E-mail address'] = $lang['Email address']; $lang['E-mail address'] = $lang['Email address'];
$lang['obligatory'] = '必需'; $lang['obligatory'] = '必需';
$lang['Maximum height of the pictures'] = '图片的最大长度'; $lang['Maximum photo height'] = '图片的最大长度';
$lang['Maximum height must be a number superior to 50'] = '图片最大长度必须大于50'; $lang['Maximum height must be a number superior to 50'] = '图片最大长度必须大于50';
$lang['Maximum width of the pictures'] = '图片的最大宽度'; $lang['Maximum photo width'] = '图片的最大宽度';
$lang['Maximum width must be a number superior to 50'] = '图片最大宽度必须大于50'; $lang['Maximum width must be a number superior to 50'] = '图片最大宽度必须大于50';
$lang['display a calendar by creation date'] = '通过创建时间显示日历'; $lang['display a calendar by creation date'] = '通过创建时间显示日历';
$lang['display all elements in all sub-albums'] = '显示所有相册和子相册的相片'; $lang['display all photos in all sub-albums'] = '显示所有相册和子相册的相片';
$lang['return to normal view mode'] = '返回到普通模式显示'; $lang['return to normal view mode'] = '返回到普通模式显示';
$lang['display a calendar by posted date'] = '通过发送时间来显示日历'; $lang['display a calendar by posted date'] = '通过发送时间来显示日历';
$lang['month'][10] = '十月'; $lang['month'][10] = '十月';
@ -223,8 +223,8 @@ $lang['month'][8] = '八月';
$lang['month'][9] = '九月'; $lang['month'][9] = '九月';
$lang['Most visited'] = '最受喜欢'; $lang['Most visited'] = '最受喜欢';
$lang['display most visited photos'] = '显示查看次数最多的图片'; $lang['display most visited photos'] = '显示查看次数最多的图片';
$lang['The number of images per row must be a not null scalar'] = '每行图片数必须是非零整数'; $lang['The number of photos per row must be a not null scalar'] = '每行图片数必须是非零整数';
$lang['Number of images per row'] = '每行图片数'; $lang['Number of photos per row'] = '每行图片数';
$lang['The number of rows per page must be a not null scalar'] = '每页总行数必须是非零整数'; $lang['The number of rows per page must be a not null scalar'] = '每页总行数必须是非零整数';
$lang['Number of rows per page'] = '每页行数'; $lang['Number of rows per page'] = '每页行数';
$lang['Unknown identifier'] = '帐户不存在'; $lang['Unknown identifier'] = '帐户不存在';
@ -232,12 +232,12 @@ $lang['New password'] = '新密码';
$lang['Rate this photo'] = '对图片投票'; $lang['Rate this photo'] = '对图片投票';
$lang['Next'] = '下一页'; $lang['Next'] = '下一页';
$lang['no rate'] = '没有被投票'; $lang['no rate'] = '没有被投票';
$lang['Elements posted within the last %d day.'] = '只显示最近 %d 天的图片.'; $lang['Photos posted within the last %d day.'] = '只显示最近 %d 天的图片.';
$lang['Elements posted within the last %d days.'] = '只显示最近 %d 天的图片.'; $lang['Photos posted within the last %d days.'] = '只显示最近 %d 天的图片.';
$lang['password updated'] = '密码已更新'; $lang['password updated'] = '密码已更新';
$lang['Recent period must be a positive integer value'] = '再次发表间隔时间必须是正整数'; $lang['Recent period must be a positive integer value'] = '再次发表间隔时间必须是正整数';
$lang['picture'] = '图片'; $lang['photo'] = '图片';
$lang['Click on the picture to see it in high definition'] = '点击查看大图片'; $lang['Click on the photo to see it in high definition'] = '点击查看大图片';
$lang['Show file metadata'] = '显示文件的元数据'; $lang['Show file metadata'] = '显示文件的元数据';
$lang['Powered by'] = '基于'; $lang['Powered by'] = '基于';
$lang['Preferences'] = '使用偏好'; $lang['Preferences'] = '使用偏好';
@ -355,8 +355,6 @@ $lang['Reset to default values'] = '重置为默认值';
$lang['delete all photos from your favorites'] = '删除您的收藏里所有相片'; $lang['delete all photos from your favorites'] = '删除您的收藏里所有相片';
$lang['Sent by'] = 'Sent by'; $lang['Sent by'] = 'Sent by';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = '您的浏览器已关闭或者不支持Cookies. 您必须开启 cookies 才能登录.'; $lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = '您的浏览器已关闭或者不支持Cookies. 您必须开启 cookies 才能登录.';
$lang['Some info about this picture'] = '关于此相片的信息';
$lang['Some more (technical) info about this picture'] = '更多关于此相片 (技术性的) 的信息';
$lang['edit this comment'] = '修改此评论'; $lang['edit this comment'] = '修改此评论';
$lang['Edit a comment'] = '修改一个评论'; $lang['Edit a comment'] = '修改一个评论';
$lang['(!) This comment requires validation'] = '(!) 此评论需要审核'; $lang['(!) This comment requires validation'] = '(!) 此评论需要审核';

View file

@ -120,7 +120,7 @@ function save_profile_from_post($userdata, &$errors)
if (empty($_POST['nb_image_line']) if (empty($_POST['nb_image_line'])
or (!preg_match($int_pattern, $_POST['nb_image_line']))) or (!preg_match($int_pattern, $_POST['nb_image_line'])))
{ {
$errors[] = l10n('The number of images per row must be a not null scalar'); $errors[] = l10n('The number of photos per row must be a not null scalar');
} }
if (empty($_POST['nb_line_page']) if (empty($_POST['nb_line_page'])

View file

@ -41,8 +41,8 @@
</a></li> </a></li>
{/if} {/if}
{if isset($U_MODE_FLAT)} {if isset($U_MODE_FLAT)}
<li><a href="{$U_MODE_FLAT}" title="{'display all elements in all sub-albums'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> <li><a href="{$U_MODE_FLAT}" title="{'display all photos in all sub-albums'|@translate}" class="pwg-state-default pwg-button" rel="nofollow">
<span class="pwg-icon pwg-icon-category-view-flat">&nbsp;</span><span class="pwg-button-text">{'display all elements in all sub-albums'|@translate}</span> <span class="pwg-icon pwg-icon-category-view-flat">&nbsp;</span><span class="pwg-button-text">{'display all photos in all sub-albums'|@translate}</span>
</a></li> </a></li>
{/if} {/if}
{if isset($U_MODE_NORMAL)} {if isset($U_MODE_NORMAL)}

View file

@ -1,6 +1,6 @@
{html_head} {html_head}
<link rel="alternate" type="application/rss+xml" title="{'Image only RSS feed'|@translate}" href="{$U_FEED_IMAGE_ONLY}"> <link rel="alternate" type="application/rss+xml" title="{'Photos only RSS feed'|@translate}" href="{$U_FEED_IMAGE_ONLY}">
<link rel="alternate" type="application/rss+xml" title="{'Complete RSS feed (images, comments)'|@translate}" href="{$U_FEED}"> <link rel="alternate" type="application/rss+xml" title="{'Complete RSS feed (photos, comments)'|@translate}" href="{$U_FEED}">
{/html_head} {/html_head}
<div id="content" class="content"> <div id="content" class="content">
@ -13,14 +13,14 @@
<h2>{'Notification'|@translate}</h2> <h2>{'Notification'|@translate}</h2>
</div> </div>
<p>{'The RSS notification feed provides notification on news from this website : new pictures, updated albums, new comments. Use a RSS feed reader.'|@translate}</p> <p>{'The RSS notification feed provides notification on news from this website : new photos, updated albums, new comments. Use a RSS feed reader.'|@translate}</p>
<dl> <dl>
<dt> <dt>
<a href="{$U_FEED_IMAGE_ONLY}">{'Image only RSS feed'|@translate}</a><br><br> <a href="{$U_FEED_IMAGE_ONLY}">{'Photos only RSS feed'|@translate}</a><br><br>
</dt> </dt>
<dt> <dt>
<a href="{$U_FEED}">{'Complete RSS feed (images, comments)'|@translate}</a> <a href="{$U_FEED}">{'Complete RSS feed (photos, comments)'|@translate}</a>
</dt> </dt>
</dl> </dl>
</div> </div>

View file

@ -119,7 +119,7 @@ y.callService(
{/if} {/if}
{/if} {/if}
<table id="standard" class="infoTable" summary="{'Some info about this picture'|@translate}"> <table id="standard" class="infoTable">
{if $display_info.author} {if $display_info.author}
<tr id="Author"> <tr id="Author">
<td class="label">{'Author'|@translate}</td> <td class="label">{'Author'|@translate}</td>
@ -261,7 +261,7 @@ y.callService(
</table> </table>
{if isset($metadata)} {if isset($metadata)}
<table id="Metadata" class="infoTable2" summary="{'Some more (technical) info about this picture'|@translate}"> <table id="Metadata" class="infoTable2">
{foreach from=$metadata item=meta} {foreach from=$metadata item=meta}
<tr> <tr>
<th colspan="2">{$meta.TITLE}</th> <th colspan="2">{$meta.TITLE}</th>

View file

@ -7,5 +7,5 @@
{/if}> {/if}>
{if isset($high) } {if isset($high) }
</a> </a>
<p>{'Click on the picture to see it in high definition'|@translate}</p> <p>{'Click on the photo to see it in high definition'|@translate}</p>
{/if} {/if}

View file

@ -46,7 +46,7 @@
<ul> <ul>
<li> <li>
<span class="property"> <span class="property">
<label for="nb_image_line">{'Number of images per row'|@translate}</label> <label for="nb_image_line">{'Number of photos per row'|@translate}</label>
</span> </span>
<input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{$NB_IMAGE_LINE}"> <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{$NB_IMAGE_LINE}">
</li> </li>
@ -88,13 +88,13 @@
</li> </li>
<li> <li>
<span class="property"> <span class="property">
<label for="Maximum width of the pictures">{'Maximum width of the pictures'|@translate}</label> <label for="maxwidth">{'Maximum photo width'|@translate}</label>
</span> </span>
<input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}"> <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}">
</li> </li>
<li> <li>
<span class="property"> <span class="property">
<label for="Maximum height of the pictures">{'Maximum height of the pictures'|@translate}</label> <label for="maxheight">{'Maximum photo height'|@translate}</label>
</span> </span>
<input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}"> <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}">
</li> </li>

View file

@ -65,13 +65,13 @@ $lang['%d category updated'] = '%d album updated';
$lang['%d categories updated'] = '%d albums updated'; $lang['%d categories updated'] = '%d albums updated';
$lang['Categories'] = 'Albums'; $lang['Categories'] = 'Albums';
$lang['Category'] = 'Album'; $lang['Category'] = 'Album';
$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 albums, new comments. Use a RSS feed reader.'; $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 photos, updated albums, new comments. Use a RSS feed reader.';
$lang['Expand all categories'] = 'Expand all albums'; $lang['Expand all categories'] = 'Expand all albums';
$lang['shows images at the root of this category'] = 'display this album'; $lang['shows images at the root of this category'] = 'display this album';
$lang['in this category'] = 'in this album'; $lang['in this category'] = 'in this album';
$lang['in %d sub-category'] = 'in %d sub-album'; $lang['in %d sub-category'] = 'in %d sub-album';
$lang['in %d sub-categories'] = 'in %d sub-albums'; $lang['in %d sub-categories'] = 'in %d sub-albums';
$lang['display all elements in all sub-categories'] = 'display all elements in all sub-albums'; $lang['display all elements in all sub-categories'] = 'display all photos in all sub-albums';
$lang['Recent categories'] = 'Recent albums'; $lang['Recent categories'] = 'Recent albums';
$lang['display recently updated categories'] = 'display recently updated albums'; $lang['display recently updated categories'] = 'display recently updated albums';
$lang['Search in Categories'] = 'Search in albums'; $lang['Search in Categories'] = 'Search in albums';