[Greasemonkey] locale updated against HEAD

Valentin Laube valentin.laube at gmx.net
Wed Jan 11 16:00:30 EST 2006


Nikolas Coukouma wrote:
> I've completed testing and checking in all the translations (Dutch, 
> German, and Czech). I've made "Included Pages", "Excluded Pages", and 
> all access keys entities (I checked and Firefox uses entities for it's 
> access keys). Right now the access keys are the English ones because I'm:
> 1) using OS X at the moment, which doesn't underline access keys
> 2) too lazy to find where the localizations are kept and figure out 
> what's been used
> 3) not sure what characters would make sense or be convenient
> Suggestions are more then welcome :)

The attached patch converts another three accesskeys to entities.
For statusbar.enabled.accesskey I used the first letter of the word in 
statusbar.enabled, the others are simply the ones used before.
And last but not least I cleaned up the german accesskeys.

- Valentin
-------------- next part --------------
Index: src/chrome/chromeFiles/content/browser.xul
===================================================================
RCS file: /cvs/greasemonkey/src/chrome/chromeFiles/content/browser.xul,v
retrieving revision 1.6
diff -r1.6 browser.xul
10c10
<     <menu id="gm-userscript-commands-context" accesskey="r" label="&context.commands;"
---
>     <menu id="gm-userscript-commands-context" accesskey="&context.commands.accesskey;" label="&context.commands;"
34c34
<         <menuitem id="gm-status-manage" accesskey="U" label="&statusbar.manage;"/>
---
>         <menuitem id="gm-status-manage" accesskey="&statusbar.manage.accesskey;" label="&statusbar.manage;"/>
39c39
<         <menuitem id="gm-status-enabled-item" accesskey="E" label="&statusbar.enabled;" 
---
>         <menuitem id="gm-status-enabled-item" accesskey="&statusbar.enabled.accesskey;" label="&statusbar.enabled;" 
Index: src/chrome/chromeFiles/locale/cs-CZ/greasemonkey.dtd
===================================================================
RCS file: /cvs/greasemonkey/src/chrome/chromeFiles/locale/cs-CZ/greasemonkey.dtd,v
retrieving revision 1.2
diff -r1.2 greasemonkey.dtd
11a12
> <!ENTITY context.commands.accesskey "r">
20a22
> <!ENTITY statusbar.manage.accesskey "U">
22a25
> <!ENTITY statusbar.enabled.accesskey "P">
Index: src/chrome/chromeFiles/locale/de-DE/greasemonkey.dtd
===================================================================
RCS file: /cvs/greasemonkey/src/chrome/chromeFiles/locale/de-DE/greasemonkey.dtd,v
retrieving revision 1.2
diff -r1.2 greasemonkey.dtd
11c11,12
< <!ENTITY context.commands  "User Script Befehle...">
---
> <!ENTITY context.commands "User Script Befehle...">
> <!ENTITY context.commands.accesskey "B">
13c14
< <!ENTITY menu.new.accesskey "N">
---
> <!ENTITY menu.new.accesskey "U">
15c16
< <!ENTITY menu.manage.accesskey "U">
---
> <!ENTITY menu.manage.accesskey "v">
17c18
< <!ENTITY menu.install.accesskey "S">
---
> <!ENTITY menu.install.accesskey "i">
19c20
< <!ENTITY menu.commands.accesskey "r">
---
> <!ENTITY menu.commands.accesskey "B">
20a22
> <!ENTITY statusbar.manage.accesskey "v">
22a25
> <!ENTITY statusbar.enabled.accesskey "A">
Index: src/chrome/chromeFiles/locale/en-US/greasemonkey.dtd
===================================================================
RCS file: /cvs/greasemonkey/src/chrome/chromeFiles/locale/en-US/greasemonkey.dtd,v
retrieving revision 1.2
diff -r1.2 greasemonkey.dtd
11a12
> <!ENTITY context.commands.accesskey "r">
20a22
> <!ENTITY statusbar.manage.accesskey "U">
22a25
> <!ENTITY statusbar.enabled.accesskey "E">
Index: src/chrome/chromeFiles/locale/nl-NL/greasemonkey.dtd
===================================================================
RCS file: /cvs/greasemonkey/src/chrome/chromeFiles/locale/nl-NL/greasemonkey.dtd,v
retrieving revision 1.2
diff -r1.2 greasemonkey.dtd
11a12
> <!ENTITY context.commands.accesskey "r">
20a22
> <!ENTITY statusbar.manage.accesskey "U">
22a25
> <!ENTITY statusbar.enabled.accesskey "I">


More information about the Greasemonkey mailing list