Skip to content

Commit

Permalink
feature 2102 : rename item/image/picture to photo
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@8665 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
rvelices committed Jan 14, 2011
1 parent 4d3aa63 commit 6eea9f9
Show file tree
Hide file tree
Showing 56 changed files with 928 additions and 928 deletions.
2 changes: 1 addition & 1 deletion admin/intro.php
Expand Up @@ -198,7 +198,7 @@
'PHP_VERSION' => phpversion(),
'DB_ENGINE' => $conf['dblayer'],
'DB_VERSION' => $db_version,
'DB_ELEMENTS' => l10n_dec('%d image', '%d images', $nb_elements),
'DB_ELEMENTS' => l10n_dec('%d photo', '%d photos', $nb_elements),
'DB_CATEGORIES' =>
l10n_dec('%d album including', '%d albums including',
$nb_categories).
Expand Down
2 changes: 1 addition & 1 deletion admin/themes/default/template/admin.tpl
Expand Up @@ -21,7 +21,7 @@ jQuery(document).ready(function(){ldelim}
<li><a href="{$U_RATING}">{'Rating'|@translate}</a></li>
<li><a href="{$U_TAGS}">{'Tags'|@translate}</a></li>
<li><a href="{$U_CADDIE}">{'Caddie'|@translate}</a></li>
<li><a href="{$U_RECENT_SET}">{'Recent pictures'|@translate}</a></li>
<li><a href="{$U_RECENT_SET}">{'Recent photos'|@translate}</a></li>
<li><a href="{$U_BATCH}">{'Batch Manager'|@translate}</a></li>
</ul>
</dd>
Expand Down
4 changes: 2 additions & 2 deletions admin/themes/default/template/configuration.tpl
Expand Up @@ -199,7 +199,7 @@
<ul>
<li>
<label>
<span class="property">{'display only recently posted images'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<span class="property">{'display only recently posted photos'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="menubar_filter_icon" {if ($display.menubar_filter_icon)}checked="checked"{/if}>
</label>
</li>
Expand Down Expand Up @@ -267,7 +267,7 @@

<li>
<label>
<span class="property">{'add this image to your favorites'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<span class="property">{'add this photo to your favorites'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span>
<input type="checkbox" name="picture_favorite_icon" {if ($display.picture_favorite_icon)}checked="checked"{/if}>
</label>
</li>
Expand Down
2 changes: 1 addition & 1 deletion admin/themes/default/template/site_manager.tpl
Expand Up @@ -39,7 +39,7 @@
</tr>
{foreach from=$sites item=site name=site}
<tr style="text-align:left" class="{if $smarty.foreach.site.index is odd}row1{else}row2{/if}"><td>
<a href="{$site.NAME}">{$site.NAME}</a><br>({$site.TYPE}, {$site.CATEGORIES} {'Albums'|@translate}, {$pwg->l10n_dec('%d image','%d images',$site.IMAGES)})
<a href="{$site.NAME}">{$site.NAME}</a><br>({$site.TYPE}, {$site.CATEGORIES} {'Albums'|@translate}, {$pwg->l10n_dec('%d photo','%d photos',$site.IMAGES)})
</td><td>
[<a href="{$site.U_SYNCHRONIZE}" title="{'update the database from files'|@translate}">{'synchronize'|@translate}</a>]
{if isset($site.U_DELETE)}
Expand Down
2 changes: 1 addition & 1 deletion include/functions.inc.php
Expand Up @@ -1434,7 +1434,7 @@ function get_icon($date, $is_child_date = false)
if (!isset($cache['get_icon']['title']))
{
$cache['get_icon']['title'] = sprintf(
l10n('images posted during the last %d days'),
l10n('photos posted during the last %d days'),
$user['recent_period']
);
}
Expand Down
2 changes: 1 addition & 1 deletion include/functions_category.inc.php
Expand Up @@ -476,7 +476,7 @@ function get_display_images_count($cat_nb_images, $cat_count_images, $cat_count_
}

//at least one image direct or indirect
$display_text.= l10n_dec('%d image', '%d images', $cat_count_images);
$display_text.= l10n_dec('%d photo', '%d photos', $cat_count_images);

if ($cat_count_categories == 0 or $cat_nb_images == $cat_count_images)
{
Expand Down
2 changes: 1 addition & 1 deletion include/functions_html.inc.php
Expand Up @@ -421,7 +421,7 @@ function get_tags_content_title()
)
)
.'" title="'
.l10n('See images linked to this tag only')
.l10n('display photos linked to this tag')
.'">'
.$page['tags'][$i]['name']
.'</a>';
Expand Down
10 changes: 5 additions & 5 deletions include/functions_notification.inc.php
Expand Up @@ -395,7 +395,7 @@ function news($start, $end, $exclude_img_cats=false, $add_url=false)
if (!$exclude_img_cats)
{
add_news_line( $news,
nb_new_elements($start, $end), '%d new image', '%d new images',
nb_new_elements($start, $end), '%d new photo', '%d new photos',
make_index_url(array('section'=>'recent_pics')), $add_url );
}

Expand Down Expand Up @@ -526,7 +526,7 @@ function get_html_description_recent_post_date($date_detail)

$description .=
'<li>'
.l10n_dec('%d new image', '%d new images', $date_detail['nb_elements'])
.l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements'])
.' ('
.'<a href="'.make_index_url(array('section'=>'recent_pics')).'">'
.l10n('Recent photos').'</a>'
Expand Down Expand Up @@ -558,8 +558,8 @@ function get_html_description_recent_post_date($date_detail)
'<li>'
.get_cat_display_name_cache($cat['uppercats'])
.' ('.
l10n_dec('%d new image',
'%d new images', $cat['img_count']).')'
l10n_dec('%d new photo',
'%d new photos', $cat['img_count']).')'
.'</li>';
}
$description .= '</ul>';
Expand All @@ -580,7 +580,7 @@ function get_title_recent_post_date($date_detail)
$date = $date_detail['date_available'];
$exploded_date = strptime($date, '%Y-%m-%d %H:%M:%S');

$title = l10n_dec('%d new image', '%d new images', $date_detail['nb_elements']);
$title = l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements']);
$title .= ' ('.$lang['month'][1+$exploded_date['tm_mon']].' '.$exploded_date['tm_mday'].')';

return $title;
Expand Down
22 changes: 11 additions & 11 deletions include/menubar.inc.php
Expand Up @@ -169,15 +169,15 @@ function initialize_menu()
$block->data['favorites'] =
array(
'URL' => make_index_url(array('section' => 'favorites')),
'TITLE' => l10n('display my favorites pictures'),
'NAME' => l10n('My favorites')
'TITLE' => l10n('display your favorites photos'),
'NAME' => l10n('Your favorites')
);
}

$block->data['most_visited'] =
array(
'URL' => make_index_url(array('section' => 'most_visited')),
'TITLE' => l10n('display most visited pictures'),
'TITLE' => l10n('display most visited photos'),
'NAME' => l10n('Most visited')
);

Expand All @@ -186,24 +186,24 @@ function initialize_menu()
$block->data['best_rated'] =
array(
'URL' => make_index_url(array('section' => 'best_rated')),
'TITLE' => l10n('display best rated items'),
'TITLE' => l10n('display best rated photos'),
'NAME' => l10n('Best rated')
);
}

$block->data['random'] =
array(
'URL' => get_root_url().'random.php',
'TITLE' => l10n('display a set of random pictures'),
'NAME' => l10n('Random pictures'),
'TITLE' => l10n('display a set of random photos'),
'NAME' => l10n('Random photos'),
'REL'=> 'rel="nofollow"'
);

$block->data['recent_pics'] =
array(
'URL' => make_index_url(array('section' => 'recent_pics')),
'TITLE' => l10n('display most recent pictures'),
'NAME' => l10n('Recent pictures'),
'TITLE' => l10n('display most recent photos'),
'NAME' => l10n('Recent photos'),
);

$block->data['recent_cats'] =
Expand All @@ -225,7 +225,7 @@ function initialize_menu()
'chronology_view' => 'calendar'
)
),
'TITLE' => l10n('display each day with pictures, month per month'),
'TITLE' => l10n('display each day with photos, month per month'),
'NAME' => l10n('Calendar'),
'REL'=> 'rel="nofollow"'
);
Expand All @@ -243,7 +243,7 @@ function initialize_menu()
// tags link
$block->data['tags'] =
array(
'TITLE' => l10n('See available tags'),
'TITLE' => l10n('display available tags'),
'NAME' => l10n('Tags'),
'URL'=> get_root_url().'tags.php',
);
Expand All @@ -260,7 +260,7 @@ function initialize_menu()
// comments link
$block->data['comments'] =
array(
'TITLE'=>l10n('See last users comments'),
'TITLE'=>l10n('display last user comments'),
'NAME'=>l10n('Comments'),
'URL'=> get_root_url().'comments.php',
);
Expand Down
4 changes: 2 additions & 2 deletions include/section_init.inc.php
Expand Up @@ -455,7 +455,7 @@
$page,
array(
'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.l10n('Recent pictures').'</a>',
.l10n('Recent photos').'</a>',
'items' => array_from_query($query, 'id'),
)
);
Expand Down Expand Up @@ -542,7 +542,7 @@
$page,
array(
'title' => '<a href="'.duplicate_index_url(array('start'=>0)).'">'
.l10n('Random pictures').'</a>',
.l10n('Random photos').'</a>',
'items' => array_from_query($query, 'id'),
)
);
Expand Down
52 changes: 26 additions & 26 deletions language/ar_SA/common.lang.php
Expand Up @@ -40,8 +40,8 @@
$lang['%d comments'] = ' عدد التعليقات %d ';
$lang['%d hit'] = ' المشاهد %d ';
$lang['%d hits'] = ' المشاهدين %d ';
$lang['%d new image'] = '%d صورة جديدة';
$lang['%d new images'] = '%d صور جديدة';
$lang['%d new photo'] = '%d صورة جديدة';
$lang['%d new photos'] = '%d صور جديدة';
$lang['%d new user'] = '%d مسخدم جديد';
$lang['%d new users'] = '%d مستخدمين جدد';
$lang['About'] = 'لماذا؟؟';
Expand Down Expand Up @@ -107,7 +107,7 @@
$lang['Search rules'] = 'قواعد البحث';
$lang['Search tags'] = 'كلمات البحث';
$lang['Search'] = 'بحث';
$lang['See available tags'] = 'أنظر في الكلمات الدلائلية';
$lang['display available tags'] = 'أنظر في الكلمات الدلائلية';
$lang['Send new password'] = 'ارسال كلمة مرور جديدة';
$lang['Since'] = 'منذ';
$lang['Sort by'] = 'ترتيب حسب ..';
Expand All @@ -124,7 +124,7 @@
$lang['About Piwigo'] = 'لماذا هذا المعرض؟ ';
$lang['You are not authorized to access the requested page'] = 'لم تقم بتسجيل الدخول او انك غير مشترك او .. غير مصرح لك';
$lang['add to caddie'] = 'اضفها الي السلة';
$lang['add this image to your favorites'] = 'اضف هذه الصوة لمفضلتك ';
$lang['add this photo to your favorites'] = 'اضف هذه الصوة لمفضلتك ';
$lang['Administration'] = 'الإدارة';
$lang['all'] = 'كل';
$lang['ascending'] = 'تصاعدي';
Expand All @@ -135,11 +135,11 @@
$lang['posted between %s (%s) and %s (%s)'] = 'اضيفت بين %s (%s) و %s (%s)';
$lang['posted on %s'] = 'اضيفت لـ . %s';
$lang['Best rated'] = 'افضل تصويت';
$lang['display best rated items'] = 'اعرض الصور الاكثر تقيما من قبل المشاهدين';
$lang['display best rated photos'] = 'اعرض الصور الاكثر تقيما من قبل المشاهدين';
$lang['caddie'] = 'السلة';
$lang['Calendar'] = 'التقويم';
$lang['All'] = 'الجميع';
$lang['display each day with pictures, month per month'] = 'أعرض جميع صور هذا اليوم ،شهريا';
$lang['display each day with photos, month per month'] = 'أعرض جميع صور هذا اليوم ،شهريا';
$lang['View'] = 'عرض';
$lang['chronology_monthly_calendar'] = 'تقويم شهري';
$lang['chronology_monthly_list'] = 'القائم الشهرية';
Expand Down Expand Up @@ -171,25 +171,25 @@
$lang['day'][5] = 'الجمعه';
$lang['day'][6] = 'السبت';
$lang['Default'] = 'افتراضي';
$lang['delete this image from your favorites'] = 'أزل هذه الصورة من مفضلتك';
$lang['delete this photo from your favorites'] = 'أزل هذه الصورة من مفضلتك';
$lang['Delete'] = 'أحذف';
$lang['descending'] = 'تنازلي';
$lang['download'] = 'تحميل';
$lang['download this file'] = 'تحميل هذا الملف';
$lang['edit'] = 'تحرير';
$lang['wrong date'] = 'تاريخ خطأ';
$lang['excluded'] = 'استبعاد';
$lang['My favorites'] = 'مفضلتي';
$lang['display my favorites pictures'] = 'اعرض صور المفضلة';
$lang['Your favorites'] = 'مفضلتي';
$lang['display your favorites photos'] = 'اعرض صور المفضلة';
$lang['Favorites'] = 'المفضلات';
$lang['First'] = 'الأولى';
$lang['The gallery is locked for maintenance. Please, come back later.'] = 'مغلق للصيانة و التحديث .. نرجوا اعادة الزيارة مرة أخرى.';
$lang['Page generated in'] = 'صفحة أنشئت في ..';
$lang['guest'] = 'ضيف';
$lang['Hello'] = 'مرحبا بك.';
$lang['available for administrators only'] = 'متاح للأدارين فقط';
$lang['shows images at the root of this album'] = 'اعرض جميع صور هذا الالبوم';
$lang['See last users comments'] = 'شاهد آخر التعليقات';
$lang['display this album'] = 'اعرض جميع صور هذا الالبوم';
$lang['display last user comments'] = 'شاهد آخر التعليقات';
$lang['customize the appareance of the gallery'] = 'تخصيص معلوماتك الشخصية';
$lang['search'] = 'بحث';
$lang['Home'] = 'الرئيسية';
Expand Down Expand Up @@ -226,14 +226,14 @@
$lang['month'][8] = 'أغسطس';
$lang['month'][9] = 'سبتمبر';
$lang['Most visited'] = 'الصور الأكثر مشاهدة';
$lang['display most visited pictures'] = 'أعرض الصور الاكثر مشاهدة';
$lang['display most visited photos'] = 'أعرض الصور الاكثر مشاهدة';
$lang['The number of images per row must be a not null scalar'] = 'عدد الصور لكل صف لا يجب ان يكون فارغ';
$lang['Number of images per row'] = 'عدد الصورلكل صف';
$lang['The number of rows per page must be a not null scalar'] = 'عدد الصورلكل صف لا يجب ان يكون فارغ';
$lang['Number of rows per page'] = 'عدد الصفوف في الصفحة';
$lang['Unknown identifier'] = 'معرف مجهول';
$lang['New password'] = 'كلمة مرور جديدة';
$lang['Rate this picture'] = 'قيم هذه الصورة';
$lang['Rate this photo'] = 'قيم هذه الصورة';
$lang['Next'] = 'التالي';
$lang['no rate'] = 'لم يتم تقيم الصورة';
$lang['Elements posted within the last %d day.'] = 'عناصراضيفت في آخر %d يوم.';
Expand All @@ -246,13 +246,13 @@
$lang['Powered by'] = 'بدعم من';
$lang['Preferences'] = 'التفضيلات';
$lang['Previous'] = 'الصورة السابقة';
$lang['Random pictures'] = 'صورة عشوائية';
$lang['display a set of random pictures'] = 'عرض مجموعة من الصورة العشوائية';
$lang['Random photos'] = 'صورة عشوائية';
$lang['display a set of random photos'] = 'عرض مجموعة من الصورة العشوائية';
$lang['Recent albums'] = 'الألبومات الأخيرة';
$lang['display recently updated albums'] = 'عرض احدث الألبومات الحالية';
$lang['Recent period'] = 'الفترة الاخيرة';
$lang['Recent pictures'] = 'الصور الاخيرة';
$lang['display most recent pictures'] = 'عرض أحدث الصور';
$lang['Recent photos'] = 'الصور الاخيرة';
$lang['display most recent photos'] = 'عرض أحدث الصور';
$lang['Redirection...'] = 'إعادة التوجيه .....';
$lang['Please, enter a login'] = 'من فضلك ، سجل دخولك';
$lang['login mustn\'t end with a space character'] = 'login mustn\'t end with a space character';
Expand Down Expand Up @@ -287,8 +287,8 @@
$lang['stop the slideshow'] = 'ايقاف العرض';
$lang['Specials'] = 'احصائيات';
$lang['SQL queries in'] = 'استفسارات في SQL';
$lang['display only recently posted images'] = 'اعرض الصور المضافة حديثا';
$lang['return to the display of all images'] = 'العدوة لعرض جميع الصورة';
$lang['display only recently posted photos'] = 'اعرض الصور المضافة حديثا';
$lang['return to the display of all photos'] = 'العدوة لعرض جميع الصورة';
$lang['the beginning'] = 'البداية';
$lang['Interface theme'] = 'واجة العرض';
$lang['Thumbnails'] = 'الصور المصغرة';
Expand Down Expand Up @@ -341,12 +341,12 @@
$lang['Submit'] = 'أرســل';
$lang['Yes'] = 'نعم';
$lang['No'] = 'لا';
$lang['%d image']=' صورة %d';
$lang['%d images']='مجموع الصور%d';
$lang['%d image is also linked to current tags'] = '%d صورة لها ارتباط بالكلمات';
$lang['%d images are also linked to current tags'] = '%d صور لها اتباط بــ';
$lang['See images linked to this tag only'] = 'شاهد الصورة التي لها اتباط بالكلمات الدلائلية ';
$lang['images posted during the last %d days'] = 'صور الايــ%dــام الاخيرة ';
$lang['%d photo']=' صورة %d';
$lang['%d photos']='مجموع الصور%d';
$lang['%d photo is also linked to current tags'] = '%d صورة لها ارتباط بالكلمات';
$lang['%d photos are also linked to current tags'] = '%d صور لها اتباط بــ';
$lang['display photos linked to this tag'] = 'شاهد الصورة التي لها اتباط بالكلمات الدلائلية ';
$lang['photos posted during the last %d days'] = 'صور الايــ%dــام الاخيرة ';
$lang['Choose an image'] = 'اختر الصورة';
$lang['Piwigo Help'] = 'الدعم الفني ';
$lang['Rank'] = 'الألبوم';
Expand All @@ -357,7 +357,7 @@
$lang['Are you sure?'] = 'هل انت متأكد?';
$lang['delete this comment'] = 'حذف هذا التعليق';
$lang['Reset to default values'] = 'ارجع للقيم الافتراضية';
$lang['delete all images from your favorites'] = 'احذف كل الصور من مفضلتي';
$lang['delete all photos from your favorites'] = 'احذف كل الصور من مفضلتي';
$lang['Sent by'] = 'أرسل بواسطة : ';
$lang['Cookies are blocked or not supported by your browser. You must enable cookies to connect.'] = 'ملفات الارتباط محضورة في متصفحك أو غير معتمده ،يجب تمكين الكوكيز للتمكن من التسجيل';
$lang['Some info about this picture'] = 'معلومات عن هذه الصورة';
Expand Down

0 comments on commit 6eea9f9

Please sign in to comment.