aboutsummaryrefslogtreecommitdiffstats
path: root/include/menubar.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2011-01-14 21:19:15 +0000
committerrvelices <rv-github@modusoptimus.com>2011-01-14 21:19:15 +0000
commit6eea9f9e08f5d823484d2c76c81d3a1bca69b682 (patch)
treeedeab3054277daed17d0d4710b415f0b7de51fef /include/menubar.inc.php
parent4d3aa6331efa96ddaede756e1d91693c76ecfc2d (diff)
feature 2102 : rename item/image/picture to photo
git-svn-id: http://piwigo.org/svn/trunk@8665 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/menubar.inc.php')
-rw-r--r--include/menubar.inc.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/menubar.inc.php b/include/menubar.inc.php
index a138e8786..2d64f6902 100644
--- a/include/menubar.inc.php
+++ b/include/menubar.inc.php
@@ -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')
);
@@ -186,7 +186,7 @@ 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')
);
}
@@ -194,16 +194,16 @@ function initialize_menu()
$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'] =
@@ -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"'
);
@@ -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',
);
@@ -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',
);