summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessio Lenzi <lenzone10@rockbox.org>2009-01-06 16:53:44 +0000
committerAlessio Lenzi <lenzone10@rockbox.org>2009-01-06 16:53:44 +0000
commita1a287905be77249d0020bfddd6d27b0c3f15ed9 (patch)
treef54319407f519e115d96bb09d771a2d557fb0dcf
parent4add1af7637e34567c5dedd6acfee3ccc4c0e8ac (diff)
downloadrockbox-a1a287905be77249d0020bfddd6d27b0c3f15ed9.zip
rockbox-a1a287905be77249d0020bfddd6d27b0c3f15ed9.tar.gz
rockbox-a1a287905be77249d0020bfddd6d27b0c3f15ed9.tar.bz2
rockbox-a1a287905be77249d0020bfddd6d27b0c3f15ed9.tar.xz
Changed lang message for credits item in Rockbox Mainmenu/System and updated italian translation.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19699 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/lang/italiano.lang22
-rw-r--r--apps/menus/main_menu.c2
2 files changed, 19 insertions, 5 deletions
diff --git a/apps/lang/italiano.lang b/apps/lang/italiano.lang
index 16e2ed3..a3a43be 100644
--- a/apps/lang/italiano.lang
+++ b/apps/lang/italiano.lang
@@ -6963,16 +6963,16 @@
</phrase>
<phrase>
id: LANG_VERSION
- desc: start the credits.rock plugin which shows who made Rockbox
+ desc: in the Rockbox Info screen
user:
<source>
- *: "Credits"
+ *: "Version"
</source>
<dest>
- *: "Crediti"
+ *: "Versione"
</dest>
<voice>
- *: "Crediti"
+ *: "Versione"
</voice>
</phrase>
<phrase>
@@ -12274,3 +12274,17 @@
quickscreen: "Imposta Come Inferiore Nel Menu Rapido"
</voice>
</phrase>
+<phrase>
+ id: LANG_CREDITS
+ desc: in the Main Menu -> System screen
+ user:
+ <source>
+ *: "Credits"
+ </source>
+ <dest>
+ *: "Crediti"
+ </dest>
+ <voice>
+ *: "Crediti"
+ </voice>
+</phrase>
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c
index 8611a66..fc4d3e4 100644
--- a/apps/menus/main_menu.c
+++ b/apps/menus/main_menu.c
@@ -440,7 +440,7 @@ MENUITEM_FUNCTION(sleep_timer_call, 0, ID2P(LANG_SLEEP_TIMER), sleep_timer,
NULL, NULL, Icon_Menu_setting); /* make it look like a
setting to the user */
-MENUITEM_FUNCTION(show_credits_item, 0, ID2P(LANG_VERSION),
+MENUITEM_FUNCTION(show_credits_item, 0, ID2P(LANG_CREDITS),
(menu_function)show_credits, NULL, NULL, Icon_NOICON);
MENUITEM_FUNCTION(show_runtime_item, 0, ID2P(LANG_RUNNING_TIME),
(menu_function)view_runtime, NULL, NULL, Icon_NOICON);