From 4bf0ee17df2c95a982630d6f80bf5d8e6136cf44 Mon Sep 17 00:00:00 2001 From: Michael Prager Date: Thu, 31 Dec 2009 19:10:36 +0100 Subject: [PATCH] * added localization support * added french translation * updated readme and version info for next release --- Readme.txt | 10 +- build.bat | 2 +- comingNext/Info.plist | 4 +- comingNext/fr.lproj/localizedTextStrings.js | 77 ++++++ comingNext/index.html | 267 +++++-------------- comingNext/localizedTextStrings.js | 77 ++++++ comingNextB/Info.plist | 4 +- comingNextB/fr.lproj/localizedTextStrings.js | 77 ++++++ comingNextB/index.html | 267 +++++-------------- comingNextB/localizedTextStrings.js | 77 ++++++ 10 files changed, 456 insertions(+), 406 deletions(-) create mode 100644 comingNext/fr.lproj/localizedTextStrings.js create mode 100644 comingNext/localizedTextStrings.js create mode 100644 comingNextB/fr.lproj/localizedTextStrings.js create mode 100644 comingNextB/localizedTextStrings.js diff --git a/Readme.txt b/Readme.txt index 61b4d06..1df79a7 100644 --- a/Readme.txt +++ b/Readme.txt @@ -171,4 +171,12 @@ Changelog: - added fullscreen mode (can list 30 events) - added settings menu. Need to modify the widget manually anymore. - fixed table cell alignment in cases where the event summary was very long - - fixed display of "tomorrow" text if CombinedDateTime is enabled \ No newline at end of file + - fixed display of "tomorrow" text if CombinedDateTime is enabled +1.24 () by Michael Prager + - localization support added by Christophe Milsent + - added french translation by Christophe Milsent + - new option "hide Widget On Calendar Open". When enabled, this will close + the fullscreen widget when opening the calendar app + - code cleanup and size reduction + - update interval to detect screen rotation increased from 3 to 1 secs + - open calendar app when clicking anywhere in fullscreen view \ No newline at end of file diff --git a/build.bat b/build.bat index 518748b..efa9fbf 100644 --- a/build.bat +++ b/build.bat @@ -1,6 +1,6 @@ @echo off -set VERSION=1.23 +set VERSION=1.24 del *.wgz del *.zip diff --git a/comingNext/Info.plist b/comingNext/Info.plist index f5e697b..9bf18c3 100644 --- a/comingNext/Info.plist +++ b/comingNext/Info.plist @@ -2,9 +2,9 @@ - DisplayName Coming Next 1.23 + DisplayName Coming Next 1.24 Identifier ar.com.cochambre.symbian.wrt.comingnext - Version 1.23 + Version 1.24 MainHTML index.html AllowNetworkAccess MiniViewEnabled diff --git a/comingNext/fr.lproj/localizedTextStrings.js b/comingNext/fr.lproj/localizedTextStrings.js new file mode 100644 index 0000000..f8ee9ad --- /dev/null +++ b/comingNext/fr.lproj/localizedTextStrings.js @@ -0,0 +1,77 @@ +var localizedText = new Array(); + +localizedText['menu.settings'] = "Parametres"; +localizedText['menu.openCalendarApp'] = "Ouvrir Calendrier"; +localizedText['menu.about'] = "A propos"; + +localizedText['settings.restoreDefaults'] = 'Restore Defaults'; +localizedText['settings.help'] = 'Aide'; +localizedText['settings.save'] = 'Sauver'; +localizedText['settings.cancel'] = 'Annuler'; + +localizedText['settings.name.monthRange'] = 'Nombre de mois'; +localizedText['settings.info.monthRange'] = 'Nombre de mois à inclure dans la liste d\'événements'; +localizedText['settings.name.includeTodos'] = 'Ajouter ToDos'; +localizedText['settings.info.includeTodos'] = 'Décocher pour ne pas afficher ToDos dans la liste d\'événements'; +localizedText['settings.name.useBackgroundImage'] = 'Utiliser Background Image'; +localizedText['settings.info.useBackgroundImage'] = 'Utiliser background_portrait.png et background_landscape.png pour simuler la transparence. Décocher pour utiliser une couleur de fond'; +localizedText['settings.name.showCombinedDateTime'] = 'Afficher date & heure'; +localizedText['settings.info.showCombinedDateTime'] = 'Afficher seulement l\'heure pour les événements de la journée, sinon seulement date'; +localizedText['settings.name.showLocation'] = 'Afficher le lieu'; +localizedText['settings.info.showLocation'] = 'Afficher les lieux pour les réunions'; +localizedText['settings.name.showTodayAsText'] = 'Afficher "Aujourd\'hui"'; +localizedText['settings.info.showTodayAsText'] = 'Si coché, la date du jour sera remplacé par "Aujourd\'hui" au lieu de "31.12"'; +localizedText['settings.name.todayText'] = 'Texte pour "Aujourd\'hui"'; +localizedText['settings.info.todayText'] = 'Texte à afficher pour "Aujourd\'hui"'; +localizedText['settings.default.todayText'] = 'Aujour.'; +localizedText['settings.name.tomorrowText'] = 'Texte pour "Demain"'; +localizedText['settings.info.tomorrowText'] = 'Texte à afficher pour "Demain"'; +localizedText['settings.default.tomorrowText'] = 'Demain'; +localizedText['settings.name.showNowAsText'] = 'Afficher "Maintenant"'; +localizedText['settings.info.showNowAsText'] = 'Si coché, l\'heure de rendez-vous affichera "Maintenant" au lieu de "12:00"'; +localizedText['settings.name.nowText'] = 'Texte pour "Maint."'; +localizedText['settings.info.nowText'] = 'Texte à afficher pour "Maintenant"'; +localizedText['settings.default.nowText'] = 'Maint.'; +localizedText['settings.name.dateSeparator'] = 'Séparateur pour les dates'; +localizedText['settings.info.dateSeparator'] = 'Séparateur pour les dates. cad "31.12" ou "31/12"'; +localizedText['settings.default.dateSeparator'] = '/'; +localizedText['settings.name.dateFormat'] = 'Format des dates'; +localizedText['settings.info.dateFormat'] = 'Comment les dates doivent être affichées. \'auto\' format de votre téléphone. \'MMDD\' mois en premier, \'DDMM\' jour en premier'; +localizedText['settings.name.weekDayLength'] = 'Nombre de caractère pour le jour'; +localizedText['settings.info.weekDayLength'] = 'Définit le nombre de caractères pour afficher le jour de la semaine : 2 coupera "Lundi" à "Lu"'; +localizedText['settings.name.updateDataInterval'] = 'Interval de mise à jour'; +localizedText['settings.info.updateDataInterval'] = 'Combien de minute avant de mettre à jour les informations. Plus le nombre est grand, moins la batterie sera utilisée'; +localizedText['settings.name.calendarApp'] = 'Calendar Application To Run'; +localizedText['settings.info.calendarApp'] = 'UID of the calendar app to run when clicking the widget. 0x10005901 = buildin calendar, 0x20004ec1 = Epocware Handy Calendar'; +localizedText['settings.name.eventsPerWidget'] = 'Evénément par Widget'; +localizedText['settings.info.eventsPerWidget'] = 'Nombre d\'événement à afficher par widget. Par défaut 4'; +localizedText['settings.name.showNothingText'] = 'Afficher un text si vide'; +localizedText['settings.info.showNothingText'] = 'Si coché, affiche un texte si aucun événement n\'est présent dans la liste'; +localizedText['settings.name.nothingText'] = 'Texte pour "Aucun événement"'; +localizedText['settings.info.nothingText'] = 'Texte à afficher quand il n\'y a aucun événement à afficher'; +localizedText['settings.default.nothingText'] = 'Pas d\'événements durant les prochains mois'; +localizedText['settings.name.enableDaylightSaving'] = 'Activé Daylight Saving'; +localizedText['settings.info.enableDaylightSaving'] = 'Permet d\'activer Daylight saving si vous êtes dans une fuseau horaire où il y a daylight saving time (+1h)'; +localizedText['settings.name.hideWidgetOnCalendarOpen'] = 'Hide Widget When Opening Calendar'; +localizedText['settings.info.hideWidgetOnCalendarOpen'] = 'enable this if the fullscreen widget should be hidden when clicking on the widget to open the calendar app'; +localizedText['settings.name.cssStyle_background'] = '.background'; +localizedText['settings.info.cssStyle_background'] = 'Definit le style CSS du fond du widget. Si vous voulez mettre une image de fond, cocher "Utiliser Background Image". Pour le thème par défaut, noir, gris, and bleu, les codes sont #292029, #e7dfe7, #009aef'; +localizedText['settings.name.cssStyle_backgroundFullscreen'] = '.backgroundFullscreen'; +localizedText['settings.info.cssStyle_backgroundFullscreen'] = 'Identique à background mais pour l\'affichage plein écran du widget'; +localizedText['settings.name.cssStyle_weekDay'] = '.weekDay'; +localizedText['settings.info.cssStyle_weekDay'] = 'Définit l\'apparence de l\'affichage des jours de la semaine'; +localizedText['settings.name.cssStyle_date'] = '.date'; +localizedText['settings.info.cssStyle_date'] = 'Définit l\'apparence de l\'affichage des dates'; +localizedText['settings.name.cssStyle_today'] = '.today'; +localizedText['settings.info.cssStyle_today'] = 'Définit l\'apparence de l\'affichage du texte "Aujourd\'hui"'; +localizedText['settings.name.cssStyle_tomorrow'] = '.tomorrow'; +localizedText['settings.info.cssStyle_tomorrow'] = 'Définit l\'apparence de l\'affichage du texte "Demain"'; +localizedText['settings.name.cssStyle_time'] = '.time'; +localizedText['settings.info.cssStyle_time'] = 'Définit l\'apparence de l\'affichage des heures'; +localizedText['settings.name.cssStyle_now'] = '.now'; +localizedText['settings.info.cssStyle_now'] = 'Définit l\'apparence de l\'affichage du texte "Maintenant"'; +localizedText['settings.name.cssStyle_description'] = '.description'; +localizedText['settings.info.cssStyle_description'] = 'Définit l\'apparence de l\'affichage du texte de description des événements'; +localizedText['settings.name.cssStyle_icon'] = '.icon'; +localizedText['settings.info.cssStyle_icon'] = 'Définit la taille des icones'; + diff --git a/comingNext/index.html b/comingNext/index.html index e17e29b..47decb7 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -19,197 +19,49 @@ .icon { } + @@ -1093,8 +956,12 @@ hr { color:#ffffff; background-color:#ffffff; height:1px; text-align:left; borde

Coming Next


Created by Dr. Cochambre and Michael Prager.

+

Contributions:

+

Paul Moore (bug fixes, new features and code cleanup)

+

Manfred Hanselmann (DST support)

+

Christophe Milsent (translation support & french translation

This software is open source and licensed under the GPLv3.

-

Visit https://sourceforge.net/projects/comingnext/ for free updates.

+

Visit sourceforge.net/projects/comingnext for free updates.


diff --git a/comingNext/localizedTextStrings.js b/comingNext/localizedTextStrings.js new file mode 100644 index 0000000..6a8c71c --- /dev/null +++ b/comingNext/localizedTextStrings.js @@ -0,0 +1,77 @@ +var localizedText = new Array(); + +localizedText['menu.settings'] = "Settings"; +localizedText['menu.openCalendarApp'] = "Open Calendar App"; +localizedText['menu.about'] = "About"; + +localizedText['settings.restoreDefaults'] = 'Restore Defaults'; +localizedText['settings.help'] = 'Help'; +localizedText['settings.save'] = 'Save'; +localizedText['settings.cancel'] = 'Cancel'; + +localizedText['settings.name.monthRange'] = 'Month Range'; +localizedText['settings.info.monthRange'] = 'number of months to include in the event list'; +localizedText['settings.name.includeTodos'] = 'Include ToDos'; +localizedText['settings.info.includeTodos'] = 'disable to remove ToDos from event list'; +localizedText['settings.name.useBackgroundImage'] = 'Use Background Image'; +localizedText['settings.info.useBackgroundImage'] = 'use background_portrait.png and background_landscape.png to fake transparency. Disable to use a solid background color'; +localizedText['settings.name.showCombinedDateTime'] = 'Show Combined Date/Time'; +localizedText['settings.info.showCombinedDateTime'] = 'only show the time for events happening today, otherwise just show the date'; +localizedText['settings.name.showLocation'] = 'Show Location'; +localizedText['settings.info.showLocation'] = 'show the location for meeting events'; +localizedText['settings.name.showTodayAsText'] = 'Show Today as Text'; +localizedText['settings.info.showTodayAsText'] = 'if enabled, the current date will be shown as "Today" instead of "31.12"'; +localizedText['settings.name.todayText'] = '"Today" Text'; +localizedText['settings.info.todayText'] = 'text to display for "Today"'; +localizedText['settings.default.todayText'] = 'Today'; +localizedText['settings.name.tomorrowText'] = '"Tomorrow" Text'; +localizedText['settings.info.tomorrowText'] = 'text to display for "Tomorrow"'; +localizedText['settings.default.tomorrowText'] = 'Tomorrow'; +localizedText['settings.name.showNowAsText'] = 'Show Now as Text'; +localizedText['settings.info.showNowAsText'] = 'if enabled, the appointment time will be shown as "Now" instead of "12:00"'; +localizedText['settings.name.nowText'] = '"Now" Text'; +localizedText['settings.info.nowText'] = 'text to display for "Now"'; +localizedText['settings.default.nowText'] = 'Now'; +localizedText['settings.name.dateSeparator'] = 'Date Separator'; +localizedText['settings.info.dateSeparator'] = 'separator for dates. e.g. "31.12" or "31/12"'; +localizedText['settings.default.dateSeparator'] = '.'; +localizedText['settings.name.dateFormat'] = 'Date Format'; +localizedText['settings.info.dateFormat'] = 'how dates will be displayed. \'auto\' will autodetect your phone\'s date format setting. \'MMDD\' will write month first, \'DDMM\' will write day first'; +localizedText['settings.name.weekDayLength'] = 'Weekday Length'; +localizedText['settings.info.weekDayLength'] = 'defines how many characters of the weekday will be shown. E.g. 2 will cut "Friday" to "Fr"'; +localizedText['settings.name.updateDataInterval'] = 'Update Data Interval'; +localizedText['settings.info.updateDataInterval'] = 'how many minutes to wait before updating the displayed data. The higher the number, the less battery is used'; +localizedText['settings.name.calendarApp'] = 'Calendar Application To Run'; +localizedText['settings.info.calendarApp'] = 'UID of the calendar app to run when clicking the widget. 0x10005901 = buildin calendar, 0x20004ec1 = Epocware Handy Calendar'; +localizedText['settings.name.eventsPerWidget'] = 'Events Per Widget'; +localizedText['settings.info.eventsPerWidget'] = 'number of events to show per widget. Default is 4'; +localizedText['settings.name.showNothingText'] = 'Show "Nothing" Text'; +localizedText['settings.info.showNothingText'] = 'if enabled, show a text if no events are in the list'; +localizedText['settings.name.nothingText'] = '"No further events..." Text'; +localizedText['settings.info.nothingText'] = 'text to show when no events are in the list'; +localizedText['settings.default.nothingText'] = 'No further events within %d months'; +localizedText['settings.name.enableDaylightSaving'] = 'Enable Daylight Saving (+1h)'; +localizedText['settings.info.enableDaylightSaving'] = 'enable this if you are in a timezone that has daylight saving time (+1h)'; +localizedText['settings.name.hideWidgetOnCalendarOpen'] = 'Hide Widget When Opening Calendar'; +localizedText['settings.info.hideWidgetOnCalendarOpen'] = 'enable this if the fullscreen widget should be hidden when clicking on the widget to open the calendar app'; +localizedText['settings.name.cssStyle_background'] = '.background'; +localizedText['settings.info.cssStyle_background'] = 'Defines the background of the widget. If you want to use a background image, set useBackgroundImage = true below. For the default themes, black, gray, and light blue, codes are #292029, #e7dfe7, #009aef'; +localizedText['settings.name.cssStyle_backgroundFullscreen'] = '.backgroundFullscreen'; +localizedText['settings.info.cssStyle_backgroundFullscreen'] = 'Same as background but for the fullscreen version of the widget'; +localizedText['settings.name.cssStyle_weekDay'] = '.weekDay'; +localizedText['settings.info.cssStyle_weekDay'] = 'Defines the appearance of all week day texts'; +localizedText['settings.name.cssStyle_date'] = '.date'; +localizedText['settings.info.cssStyle_date'] = 'Defines the appearance of all date texts'; +localizedText['settings.name.cssStyle_today'] = '.today'; +localizedText['settings.info.cssStyle_today'] = 'Defines the appearance of "Today" text'; +localizedText['settings.name.cssStyle_tomorrow'] = '.tomorrow'; +localizedText['settings.info.cssStyle_tomorrow'] = 'Defines the appearance of "Tomorrow" text'; +localizedText['settings.name.cssStyle_time'] = '.time'; +localizedText['settings.info.cssStyle_time'] = 'Defines the appearance of all time texts'; +localizedText['settings.name.cssStyle_now'] = '.now'; +localizedText['settings.info.cssStyle_now'] = 'Defines the appearance of "Now" text'; +localizedText['settings.name.cssStyle_description'] = '.description'; +localizedText['settings.info.cssStyle_description'] = 'Defines the appearance of all event descriptions'; +localizedText['settings.name.cssStyle_icon'] = '.icon'; +localizedText['settings.info.cssStyle_icon'] = 'Defines size and appearance of icons'; + diff --git a/comingNextB/Info.plist b/comingNextB/Info.plist index 9691f5a..9c51b6c 100644 --- a/comingNextB/Info.plist +++ b/comingNextB/Info.plist @@ -2,9 +2,9 @@ - DisplayName Coming Next B 1.23 + DisplayName Coming Next B 1.24 Identifier ar.com.cochambre.symbian.wrt.comingnextb - Version 1.23 + Version 1.24 MainHTML index.html AllowNetworkAccess MiniViewEnabled diff --git a/comingNextB/fr.lproj/localizedTextStrings.js b/comingNextB/fr.lproj/localizedTextStrings.js new file mode 100644 index 0000000..f8ee9ad --- /dev/null +++ b/comingNextB/fr.lproj/localizedTextStrings.js @@ -0,0 +1,77 @@ +var localizedText = new Array(); + +localizedText['menu.settings'] = "Parametres"; +localizedText['menu.openCalendarApp'] = "Ouvrir Calendrier"; +localizedText['menu.about'] = "A propos"; + +localizedText['settings.restoreDefaults'] = 'Restore Defaults'; +localizedText['settings.help'] = 'Aide'; +localizedText['settings.save'] = 'Sauver'; +localizedText['settings.cancel'] = 'Annuler'; + +localizedText['settings.name.monthRange'] = 'Nombre de mois'; +localizedText['settings.info.monthRange'] = 'Nombre de mois à inclure dans la liste d\'événements'; +localizedText['settings.name.includeTodos'] = 'Ajouter ToDos'; +localizedText['settings.info.includeTodos'] = 'Décocher pour ne pas afficher ToDos dans la liste d\'événements'; +localizedText['settings.name.useBackgroundImage'] = 'Utiliser Background Image'; +localizedText['settings.info.useBackgroundImage'] = 'Utiliser background_portrait.png et background_landscape.png pour simuler la transparence. Décocher pour utiliser une couleur de fond'; +localizedText['settings.name.showCombinedDateTime'] = 'Afficher date & heure'; +localizedText['settings.info.showCombinedDateTime'] = 'Afficher seulement l\'heure pour les événements de la journée, sinon seulement date'; +localizedText['settings.name.showLocation'] = 'Afficher le lieu'; +localizedText['settings.info.showLocation'] = 'Afficher les lieux pour les réunions'; +localizedText['settings.name.showTodayAsText'] = 'Afficher "Aujourd\'hui"'; +localizedText['settings.info.showTodayAsText'] = 'Si coché, la date du jour sera remplacé par "Aujourd\'hui" au lieu de "31.12"'; +localizedText['settings.name.todayText'] = 'Texte pour "Aujourd\'hui"'; +localizedText['settings.info.todayText'] = 'Texte à afficher pour "Aujourd\'hui"'; +localizedText['settings.default.todayText'] = 'Aujour.'; +localizedText['settings.name.tomorrowText'] = 'Texte pour "Demain"'; +localizedText['settings.info.tomorrowText'] = 'Texte à afficher pour "Demain"'; +localizedText['settings.default.tomorrowText'] = 'Demain'; +localizedText['settings.name.showNowAsText'] = 'Afficher "Maintenant"'; +localizedText['settings.info.showNowAsText'] = 'Si coché, l\'heure de rendez-vous affichera "Maintenant" au lieu de "12:00"'; +localizedText['settings.name.nowText'] = 'Texte pour "Maint."'; +localizedText['settings.info.nowText'] = 'Texte à afficher pour "Maintenant"'; +localizedText['settings.default.nowText'] = 'Maint.'; +localizedText['settings.name.dateSeparator'] = 'Séparateur pour les dates'; +localizedText['settings.info.dateSeparator'] = 'Séparateur pour les dates. cad "31.12" ou "31/12"'; +localizedText['settings.default.dateSeparator'] = '/'; +localizedText['settings.name.dateFormat'] = 'Format des dates'; +localizedText['settings.info.dateFormat'] = 'Comment les dates doivent être affichées. \'auto\' format de votre téléphone. \'MMDD\' mois en premier, \'DDMM\' jour en premier'; +localizedText['settings.name.weekDayLength'] = 'Nombre de caractère pour le jour'; +localizedText['settings.info.weekDayLength'] = 'Définit le nombre de caractères pour afficher le jour de la semaine : 2 coupera "Lundi" à "Lu"'; +localizedText['settings.name.updateDataInterval'] = 'Interval de mise à jour'; +localizedText['settings.info.updateDataInterval'] = 'Combien de minute avant de mettre à jour les informations. Plus le nombre est grand, moins la batterie sera utilisée'; +localizedText['settings.name.calendarApp'] = 'Calendar Application To Run'; +localizedText['settings.info.calendarApp'] = 'UID of the calendar app to run when clicking the widget. 0x10005901 = buildin calendar, 0x20004ec1 = Epocware Handy Calendar'; +localizedText['settings.name.eventsPerWidget'] = 'Evénément par Widget'; +localizedText['settings.info.eventsPerWidget'] = 'Nombre d\'événement à afficher par widget. Par défaut 4'; +localizedText['settings.name.showNothingText'] = 'Afficher un text si vide'; +localizedText['settings.info.showNothingText'] = 'Si coché, affiche un texte si aucun événement n\'est présent dans la liste'; +localizedText['settings.name.nothingText'] = 'Texte pour "Aucun événement"'; +localizedText['settings.info.nothingText'] = 'Texte à afficher quand il n\'y a aucun événement à afficher'; +localizedText['settings.default.nothingText'] = 'Pas d\'événements durant les prochains mois'; +localizedText['settings.name.enableDaylightSaving'] = 'Activé Daylight Saving'; +localizedText['settings.info.enableDaylightSaving'] = 'Permet d\'activer Daylight saving si vous êtes dans une fuseau horaire où il y a daylight saving time (+1h)'; +localizedText['settings.name.hideWidgetOnCalendarOpen'] = 'Hide Widget When Opening Calendar'; +localizedText['settings.info.hideWidgetOnCalendarOpen'] = 'enable this if the fullscreen widget should be hidden when clicking on the widget to open the calendar app'; +localizedText['settings.name.cssStyle_background'] = '.background'; +localizedText['settings.info.cssStyle_background'] = 'Definit le style CSS du fond du widget. Si vous voulez mettre une image de fond, cocher "Utiliser Background Image". Pour le thème par défaut, noir, gris, and bleu, les codes sont #292029, #e7dfe7, #009aef'; +localizedText['settings.name.cssStyle_backgroundFullscreen'] = '.backgroundFullscreen'; +localizedText['settings.info.cssStyle_backgroundFullscreen'] = 'Identique à background mais pour l\'affichage plein écran du widget'; +localizedText['settings.name.cssStyle_weekDay'] = '.weekDay'; +localizedText['settings.info.cssStyle_weekDay'] = 'Définit l\'apparence de l\'affichage des jours de la semaine'; +localizedText['settings.name.cssStyle_date'] = '.date'; +localizedText['settings.info.cssStyle_date'] = 'Définit l\'apparence de l\'affichage des dates'; +localizedText['settings.name.cssStyle_today'] = '.today'; +localizedText['settings.info.cssStyle_today'] = 'Définit l\'apparence de l\'affichage du texte "Aujourd\'hui"'; +localizedText['settings.name.cssStyle_tomorrow'] = '.tomorrow'; +localizedText['settings.info.cssStyle_tomorrow'] = 'Définit l\'apparence de l\'affichage du texte "Demain"'; +localizedText['settings.name.cssStyle_time'] = '.time'; +localizedText['settings.info.cssStyle_time'] = 'Définit l\'apparence de l\'affichage des heures'; +localizedText['settings.name.cssStyle_now'] = '.now'; +localizedText['settings.info.cssStyle_now'] = 'Définit l\'apparence de l\'affichage du texte "Maintenant"'; +localizedText['settings.name.cssStyle_description'] = '.description'; +localizedText['settings.info.cssStyle_description'] = 'Définit l\'apparence de l\'affichage du texte de description des événements'; +localizedText['settings.name.cssStyle_icon'] = '.icon'; +localizedText['settings.info.cssStyle_icon'] = 'Définit la taille des icones'; + diff --git a/comingNextB/index.html b/comingNextB/index.html index 7594a33..da592d0 100644 --- a/comingNextB/index.html +++ b/comingNextB/index.html @@ -19,197 +19,49 @@ .icon { } + @@ -1093,8 +956,12 @@ hr { color:#ffffff; background-color:#ffffff; height:1px; text-align:left; borde

Coming Next


Created by Dr. Cochambre and Michael Prager.

+

Contributions:

+

Paul Moore (bug fixes, new features and code cleanup)

+

Manfred Hanselmann (DST support)

+

Christophe Milsent (translation support & french translation

This software is open source and licensed under the GPLv3.

-

Visit https://sourceforge.net/projects/comingnext/ for free updates.

+

Visit sourceforge.net/projects/comingnext for free updates.


diff --git a/comingNextB/localizedTextStrings.js b/comingNextB/localizedTextStrings.js new file mode 100644 index 0000000..6a8c71c --- /dev/null +++ b/comingNextB/localizedTextStrings.js @@ -0,0 +1,77 @@ +var localizedText = new Array(); + +localizedText['menu.settings'] = "Settings"; +localizedText['menu.openCalendarApp'] = "Open Calendar App"; +localizedText['menu.about'] = "About"; + +localizedText['settings.restoreDefaults'] = 'Restore Defaults'; +localizedText['settings.help'] = 'Help'; +localizedText['settings.save'] = 'Save'; +localizedText['settings.cancel'] = 'Cancel'; + +localizedText['settings.name.monthRange'] = 'Month Range'; +localizedText['settings.info.monthRange'] = 'number of months to include in the event list'; +localizedText['settings.name.includeTodos'] = 'Include ToDos'; +localizedText['settings.info.includeTodos'] = 'disable to remove ToDos from event list'; +localizedText['settings.name.useBackgroundImage'] = 'Use Background Image'; +localizedText['settings.info.useBackgroundImage'] = 'use background_portrait.png and background_landscape.png to fake transparency. Disable to use a solid background color'; +localizedText['settings.name.showCombinedDateTime'] = 'Show Combined Date/Time'; +localizedText['settings.info.showCombinedDateTime'] = 'only show the time for events happening today, otherwise just show the date'; +localizedText['settings.name.showLocation'] = 'Show Location'; +localizedText['settings.info.showLocation'] = 'show the location for meeting events'; +localizedText['settings.name.showTodayAsText'] = 'Show Today as Text'; +localizedText['settings.info.showTodayAsText'] = 'if enabled, the current date will be shown as "Today" instead of "31.12"'; +localizedText['settings.name.todayText'] = '"Today" Text'; +localizedText['settings.info.todayText'] = 'text to display for "Today"'; +localizedText['settings.default.todayText'] = 'Today'; +localizedText['settings.name.tomorrowText'] = '"Tomorrow" Text'; +localizedText['settings.info.tomorrowText'] = 'text to display for "Tomorrow"'; +localizedText['settings.default.tomorrowText'] = 'Tomorrow'; +localizedText['settings.name.showNowAsText'] = 'Show Now as Text'; +localizedText['settings.info.showNowAsText'] = 'if enabled, the appointment time will be shown as "Now" instead of "12:00"'; +localizedText['settings.name.nowText'] = '"Now" Text'; +localizedText['settings.info.nowText'] = 'text to display for "Now"'; +localizedText['settings.default.nowText'] = 'Now'; +localizedText['settings.name.dateSeparator'] = 'Date Separator'; +localizedText['settings.info.dateSeparator'] = 'separator for dates. e.g. "31.12" or "31/12"'; +localizedText['settings.default.dateSeparator'] = '.'; +localizedText['settings.name.dateFormat'] = 'Date Format'; +localizedText['settings.info.dateFormat'] = 'how dates will be displayed. \'auto\' will autodetect your phone\'s date format setting. \'MMDD\' will write month first, \'DDMM\' will write day first'; +localizedText['settings.name.weekDayLength'] = 'Weekday Length'; +localizedText['settings.info.weekDayLength'] = 'defines how many characters of the weekday will be shown. E.g. 2 will cut "Friday" to "Fr"'; +localizedText['settings.name.updateDataInterval'] = 'Update Data Interval'; +localizedText['settings.info.updateDataInterval'] = 'how many minutes to wait before updating the displayed data. The higher the number, the less battery is used'; +localizedText['settings.name.calendarApp'] = 'Calendar Application To Run'; +localizedText['settings.info.calendarApp'] = 'UID of the calendar app to run when clicking the widget. 0x10005901 = buildin calendar, 0x20004ec1 = Epocware Handy Calendar'; +localizedText['settings.name.eventsPerWidget'] = 'Events Per Widget'; +localizedText['settings.info.eventsPerWidget'] = 'number of events to show per widget. Default is 4'; +localizedText['settings.name.showNothingText'] = 'Show "Nothing" Text'; +localizedText['settings.info.showNothingText'] = 'if enabled, show a text if no events are in the list'; +localizedText['settings.name.nothingText'] = '"No further events..." Text'; +localizedText['settings.info.nothingText'] = 'text to show when no events are in the list'; +localizedText['settings.default.nothingText'] = 'No further events within %d months'; +localizedText['settings.name.enableDaylightSaving'] = 'Enable Daylight Saving (+1h)'; +localizedText['settings.info.enableDaylightSaving'] = 'enable this if you are in a timezone that has daylight saving time (+1h)'; +localizedText['settings.name.hideWidgetOnCalendarOpen'] = 'Hide Widget When Opening Calendar'; +localizedText['settings.info.hideWidgetOnCalendarOpen'] = 'enable this if the fullscreen widget should be hidden when clicking on the widget to open the calendar app'; +localizedText['settings.name.cssStyle_background'] = '.background'; +localizedText['settings.info.cssStyle_background'] = 'Defines the background of the widget. If you want to use a background image, set useBackgroundImage = true below. For the default themes, black, gray, and light blue, codes are #292029, #e7dfe7, #009aef'; +localizedText['settings.name.cssStyle_backgroundFullscreen'] = '.backgroundFullscreen'; +localizedText['settings.info.cssStyle_backgroundFullscreen'] = 'Same as background but for the fullscreen version of the widget'; +localizedText['settings.name.cssStyle_weekDay'] = '.weekDay'; +localizedText['settings.info.cssStyle_weekDay'] = 'Defines the appearance of all week day texts'; +localizedText['settings.name.cssStyle_date'] = '.date'; +localizedText['settings.info.cssStyle_date'] = 'Defines the appearance of all date texts'; +localizedText['settings.name.cssStyle_today'] = '.today'; +localizedText['settings.info.cssStyle_today'] = 'Defines the appearance of "Today" text'; +localizedText['settings.name.cssStyle_tomorrow'] = '.tomorrow'; +localizedText['settings.info.cssStyle_tomorrow'] = 'Defines the appearance of "Tomorrow" text'; +localizedText['settings.name.cssStyle_time'] = '.time'; +localizedText['settings.info.cssStyle_time'] = 'Defines the appearance of all time texts'; +localizedText['settings.name.cssStyle_now'] = '.now'; +localizedText['settings.info.cssStyle_now'] = 'Defines the appearance of "Now" text'; +localizedText['settings.name.cssStyle_description'] = '.description'; +localizedText['settings.info.cssStyle_description'] = 'Defines the appearance of all event descriptions'; +localizedText['settings.name.cssStyle_icon'] = '.icon'; +localizedText['settings.info.cssStyle_icon'] = 'Defines size and appearance of icons'; + -- 2.39.2