зеркало из https://github.com/mozilla/pjs.git
bug 347813 - Adds accesskeys to calendar view preferences. patch by cedric.corazza,r=lilmatt,sr=jminta
This commit is contained in:
Родитель
229c1eef98
Коммит
1aad9c1543
|
@ -24,6 +24,7 @@
|
|||
- ArentJan Banck <ajbanck@planet.nl>
|
||||
- Eric Belhaire <belhaire@ief.u-psud.fr>
|
||||
- Matthew Willis <mattwillis@gmail.com>
|
||||
- Cédric Corazza <cedric.corazza@wanadoo.fr>
|
||||
-
|
||||
- Alternatively, the contents of this file may be used under the terms of
|
||||
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
|
@ -106,7 +107,9 @@
|
|||
<groupbox>
|
||||
<caption label="&pref.calendar.view.allview.caption;"/>
|
||||
<hbox align="center">
|
||||
<caption label="&pref.weekstarts.label;"/>
|
||||
<caption label="&pref.weekstarts.label;"
|
||||
accesskey="&pref.weekstarts.accesskey;"
|
||||
control="weekstarts"/>
|
||||
<menulist id="weekstarts" preference="calendar.week.start">
|
||||
<menupopup id="weekstarts">
|
||||
<menuitem label="&day.1.name;" value="0"/>
|
||||
|
@ -127,30 +130,37 @@
|
|||
<caption label="&pref.daysoff.label;"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.1.Ddd;"
|
||||
accesskey="&day.1.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d0sundaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.2.Ddd;"
|
||||
accesskey="&day.2.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d1mondaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.3.Ddd;"
|
||||
accesskey="&day.3.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d2tuesdaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.4.Ddd;"
|
||||
accesskey="&day.4.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d3wednesdaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.5.Ddd;"
|
||||
accesskey="&day.5.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d4thursdaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.6.Ddd;"
|
||||
accesskey="&day.6.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d5fridaysoff"/>
|
||||
<checkbox class="dayOffCheckbox"
|
||||
label="&day.7.Ddd;"
|
||||
accesskey="&day.7.Ddd.accesskey;"
|
||||
orient="vertical"
|
||||
preference="calendar.week.d6saturdaysoff"/>
|
||||
</hbox>
|
||||
|
@ -159,7 +169,9 @@
|
|||
<groupbox>
|
||||
<caption label="&pref.calendar.view.weekanddayview.caption;"/>
|
||||
<hbox align="center">
|
||||
<caption label="&pref.calendar.view.restrict.label;"/>
|
||||
<caption label="&pref.calendar.view.restrict.label;"
|
||||
accesskey="&pref.calendar.view.restrict.accesskey;"
|
||||
control="daystarthour"/>
|
||||
<menulist id="daystarthour"
|
||||
oncommand="gViewsPane.updateViewEndMenu(this.value);"
|
||||
preference="calendar.view.defaultstarthour">
|
||||
|
@ -190,7 +202,9 @@
|
|||
<menuitem label="&time.23;" value="23"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<caption label="&pref.calendar.view.endtime.label;"/>
|
||||
<caption label="&pref.calendar.view.endtime.label;"
|
||||
accesskey="&pref.calendar.view.endtime.accesskey;"
|
||||
control="dayendhour"/>
|
||||
<menulist id="dayendhour"
|
||||
oncommand="gViewsPane.updateViewStartMenu(this.value);"
|
||||
preference="calendar.view.defaultendhour">
|
||||
|
@ -230,7 +244,9 @@
|
|||
<groupbox>
|
||||
<caption label="&pref.calendar.view.multiweekview.caption;"/>
|
||||
<hbox align="center">
|
||||
<caption label="&pref.numberofweeks.label;"/>
|
||||
<caption label="&pref.numberofweeks.label;"
|
||||
accesskey="&pref.numberofweeks.accesskey;"
|
||||
control="viewsMultiweekTotalWeeks"/>
|
||||
<menulist id="viewsMultiweekTotalWeeks"
|
||||
preference="calendar.weeks.inview">
|
||||
<menupopup>
|
||||
|
@ -244,7 +260,9 @@
|
|||
</menulist>
|
||||
</hbox>
|
||||
<hbox align="center" id="previousWeeksBox">
|
||||
<caption label="&pref.numberofpreviousweeks.label;"/>
|
||||
<caption label="&pref.numberofpreviousweeks.label;"
|
||||
accesskey="&pref.numberofpreviousweeks.accesskey;"
|
||||
control="viewsMultiweekPreviousWeeks"/>
|
||||
<menulist id="viewsMultiweekPreviousWeeks"
|
||||
preference="calendar.previousweeks.inview">
|
||||
<menupopup>
|
||||
|
|
|
@ -59,14 +59,23 @@
|
|||
<!ENTITY time.22 "10:00 PM" >
|
||||
<!ENTITY time.23 "11:00 PM" >
|
||||
|
||||
<!-- Month Names -->
|
||||
<!-- Day Names -->
|
||||
<!-- LOCALIZATION NOTE : Accesskeys for day.1.Ddd to day.7.Ddd are currently
|
||||
only used in Preferences > Views > Workweek groupbox -->
|
||||
<!ENTITY day.1.Ddd "Sun" >
|
||||
<!ENTITY day.1.Ddd.accesskey "S">
|
||||
<!ENTITY day.2.Ddd "Mon" >
|
||||
<!ENTITY day.2.Ddd.accesskey "M">
|
||||
<!ENTITY day.3.Ddd "Tue" >
|
||||
<!ENTITY day.3.Ddd.accesskey "T">
|
||||
<!ENTITY day.4.Ddd "Wed" >
|
||||
<!ENTITY day.4.Ddd.accesskey "W">
|
||||
<!ENTITY day.5.Ddd "Thu" >
|
||||
<!ENTITY day.5.Ddd.accesskey "h">
|
||||
<!ENTITY day.6.Ddd "Fri" >
|
||||
<!ENTITY day.6.Ddd.accesskey "F">
|
||||
<!ENTITY day.7.Ddd "Sat" >
|
||||
<!ENTITY day.7.Ddd.accesskey "a">
|
||||
|
||||
<!ENTITY day.1.DDD "SUN" >
|
||||
<!ENTITY day.2.DDD "MON" >
|
||||
|
@ -87,6 +96,7 @@
|
|||
<!ENTITY time.am "AM" >
|
||||
<!ENTITY time.pm "PM" >
|
||||
|
||||
<!-- Month Names -->
|
||||
<!ENTITY month.1.MMM "JAN" >
|
||||
<!ENTITY month.2.MMM "FEB" >
|
||||
<!ENTITY month.3.MMM "MAR" >
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
- ArentJan Banck <ajbanck@planet.nl>
|
||||
- Eric Belhaire <belhaire@ief.u-psud.fr>
|
||||
- Matthew Willis <mattwillis@gmail.com>
|
||||
- Cédric Corazza <cedric.corazza@wanadoo.fr>
|
||||
-
|
||||
- Alternatively, the contents of this file may be used under the terms of
|
||||
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
|
@ -38,6 +39,11 @@
|
|||
-
|
||||
- ***** END LICENSE BLOCK ***** -->
|
||||
|
||||
<!-- WARNING! This file contains UTF-8 encoded characters!
|
||||
- If this ==> … <== doesn't look like an ellipsis (three dots in a row),
|
||||
- your editor isn't using UTF-8 encoding and may munge up the document!
|
||||
-->
|
||||
|
||||
<!ENTITY pref.calendar.view.allview.caption "General">
|
||||
<!ENTITY pref.calendar.view.weekanddayview.caption "Week and Day Views">
|
||||
<!ENTITY pref.calendar.view.multiweekview.caption "Multiweek View">
|
||||
|
@ -45,15 +51,19 @@
|
|||
|
||||
<!-- NOTE TO LOCALIZERS: This entity should end with a space character. -->
|
||||
<!ENTITY pref.calendar.view.restrict.label "Display from ">
|
||||
<!ENTITY pref.calendar.view.restrict.accesskey "D">
|
||||
<!-- NOTE TO LOCALIZERS: This entity should start with a space character. -->
|
||||
<!ENTITY pref.calendar.view.endtime.label " until ">
|
||||
|
||||
<!ENTITY pref.calendar.view.endtime.accesskey "u">
|
||||
<!ENTITY pref.weekstarts.label "Start the week on:">
|
||||
<!ENTITY pref.weekstarts.accesskey "r">
|
||||
<!ENTITY pref.daysoff.label "Include these days in the workweek:">
|
||||
<!ENTITY pref.hour.help.description "Note that events occurring outside these times will be shown regardless of this setting.">
|
||||
|
||||
<!ENTITY pref.numberofweeks.label "Default weeks to show (including previous weeks):">
|
||||
<!ENTITY pref.numberofweeks.accesskey "e">
|
||||
<!ENTITY pref.numberofpreviousweeks.label "Previous weeks to show:">
|
||||
<!ENTITY pref.numberofpreviousweeks.accesskey "P">
|
||||
<!ENTITY pref.numberofweeks.0 "none">
|
||||
<!ENTITY pref.numberofweeks.1 "1 week">
|
||||
<!ENTITY pref.numberofweeks.2 "2 weeks">
|
||||
|
|
Загрузка…
Ссылка в новой задаче