Skip to content

Commit

Permalink
Update language template with missing strings
Browse files Browse the repository at this point in the history
Also includes a small change to KonamiCode plugin, so that it
behaves a bit better when idle
  • Loading branch information
mickelson committed Sep 23, 2015
1 parent 313fb60 commit c562725
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 5 deletions.
5 changes: 5 additions & 0 deletions config/language/de.msg
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,14 @@ fr;Français
#
# Strings still needing translation
#
Add Exception;Add Exception
Display Name;Display Name
Exception;Exception
Exception Edit;Exception Edit
FileIsAvailable;FileIsAvailable
Intro;Intro
Scrape Fanart;Scrape Fanart
Scrape Videos (MAME only);Scrape Videos (MAME only)
_help_control_custom3;Set the "Custom3" control(s)
_help_control_custom4;Set the "Custom4" control(s)
_help_control_custom5;Set the "Custom5" control(s)
Expand Down
5 changes: 5 additions & 0 deletions config/language/es.msg
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,14 @@ fr;Français
#
# Strings still needing translation
#
Add Exception;Add Exception
Display Name;Display Name
Exception;Exception
Exception Edit;Exception Edit
FileIsAvailable;FileIsAvailable
Intro;Intro
Scrape Fanart;Scrape Fanart
Scrape Videos (MAME only);Scrape Videos (MAME only)
_help_control_custom3;Set the "Custom3" control(s)
_help_control_custom4;Set the "Custom4" control(s)
_help_control_custom5;Set the "Custom5" control(s)
Expand Down
5 changes: 5 additions & 0 deletions config/language/fr.msg
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,14 @@ kr;Coréen
# Strings still needing translation
#
$1 Rule(s);$1 Rule(s)
Add Exception;Add Exception
Empty;Empty
Exception;Exception
Exception Edit;Exception Edit
FileIsAvailable;FileIsAvailable
Intro;Intro
Play Sound;Play Sound
Scrape Videos (MAME only);Scrape Videos (MAME only)
_help_art;An artwork resource available for use by layouts
_help_back;Exit menu
_help_filter_add_exception;Add an exception to this filter. If a game matches an exception (and wasn't filtered out by an earlier rule) it will be listed in the filter
Expand Down
5 changes: 5 additions & 0 deletions config/language/jp.msg
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,14 @@ _help_emu_listxml;
# Strings still needing translation
#
$1 Rule(s);$1 Rule(s)
Add Exception;Add Exception
Empty;Empty
Exception;Exception
Exception Edit;Exception Edit
Intro;Intro
Play Sound;Play Sound
Scrape Fanart;Scrape Fanart
Scrape Videos (MAME only);Scrape Videos (MAME only)
_help_art;An artwork resource available for use by layouts
_help_back;Exit menu
_help_control_custom3;Set the "Custom3" control(s)
Expand Down
5 changes: 5 additions & 0 deletions config/language/kr.msg
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,14 @@ _help_emu_listxml;
# Strings still needing translation
#
$1 Rule(s);$1 Rule(s)
Add Exception;Add Exception
Empty;Empty
Exception;Exception
Exception Edit;Exception Edit
Intro;Intro
Play Sound;Play Sound
Scrape Fanart;Scrape Fanart
Scrape Videos (MAME only);Scrape Videos (MAME only)
_help_art;An artwork resource available for use by layouts
_help_back;Exit menu
_help_control_custom3;Set the "Custom3" control(s)
Expand Down
9 changes: 7 additions & 2 deletions config/language/msg_template.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#
# Interface strings
# This file is the template for Attract-Mode translations.
# Translate the string to the right of the semicolon on each line. thanks!
#
$1 Rule(s);$1 Rule(s)
Action;Action
Add Artwork;Add Artwork
Add Emulator;Add Emulator
Add Exception;Add Exception
Add Filter;Add Filter
Add Input;Add Input
Add New Display;Add New Display
Expand Down Expand Up @@ -77,6 +78,8 @@ Enabled;Enabled
Enter Display Name;Enter Display Name
Enter Emulator Name;Enter Emulator Name
Enter Filter Name;Enter Filter Name
Exception;Exception
Exception Edit;Exception Edit
Executable;Executable
Exit (Confirm);Exit (Confirm)
Exit Attract-Mode;Exit Attract-Mode
Expand All @@ -103,6 +106,7 @@ Generating Rom List: $1%;Generating Rom List: $1%
Global Filter;Global Filter
Hide Brackets in Game Title;Hide Brackets in Game Title
Info Source/Scraper;Info Source/Scraper
Intro;Intro
Joystick Threshold;Joystick Threshold
Jump to Next Display;Jump to Next Display
Language;Language
Expand Down Expand Up @@ -154,6 +158,7 @@ Scrape Flyers/Boxart;Scrape Flyers/Boxart
Scrape Game Logos (Wheel Art);Scrape Game Logos (Wheel Art)
Scrape Marquees;Scrape Marquees
Scrape Snaps;Scrape Snaps
Scrape Videos (MAME only);Scrape Videos (MAME only)
Scraper;Scraper
Scraping Artwork: $1%;Scraping Artwork: $1%
Screen Saver;Screen Saver
Expand Down
5 changes: 2 additions & 3 deletions config/plugins/KonamiCode.nut
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,11 @@ class KonamiCode
m_last_time = ttime;
m_pressed = false;
}
else
else if ( m_current > 0 )
{
// Check for whether we need to cancel the sequence
//
if (( m_current > 0 )
&& ( ttime > m_last_time + RESET_TIME ))
if ( ttime > m_last_time + RESET_TIME )
{
// timeout
m_current = 0;
Expand Down

0 comments on commit c562725

Please sign in to comment.