Skip to content

Commit

Permalink
Fixed merge between locale and master
Browse files Browse the repository at this point in the history
Creation option now also contains translations in DE,FR,NL.
  • Loading branch information
Roy Kokkelkoren committed Dec 8, 2015
1 parent 528b8d1 commit 234e8ba
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions chrome/content/options.xul
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@
<setting pref="extensions.todotxt.todo-txt" type="file" title="&todotxt.todofile;" />
<setting pref="extensions.todotxt.done-txt" type="file" title="&todotxt.donefile;" />
<setting pref="extensions.todotxt.thunderbird" type="bool" title="&todotxt.thunderbird;" />
<setting pref="extensions.todotxt.creation" type="bool" title="Use the Todo's creation timestamp. "/>

<setting pref="extensions.todotxt.creation" type="bool" title="&todotxt.creation;"/>
</vbox>
1 change: 1 addition & 0 deletions chrome/locale/de/options.dtd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!ENTITY todotxt.todofile "Lage von Todo.txt">
<!ENTITY todotxt.donefile "Lage von Done.txt">
<!ENTITY todotxt.thunderbird "Benutzen Thunderbird's Funktionalität">
<!ENTITY todotxt.creation "Benutzen die Todo's Schaffung Zeitstempel">
1 change: 1 addition & 0 deletions chrome/locale/en-US/options.dtd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!ENTITY todotxt.todofile "Location of Todo.txt">
<!ENTITY todotxt.donefile "Location of Done.txt">
<!ENTITY todotxt.thunderbird "Use Thunderbird's functionality">
<!ENTITY todotxt.creation "Use the Todo's creation timestamp">
1 change: 1 addition & 0 deletions chrome/locale/fr/options.dtd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!ENTITY todotxt.todofile "Lieu de Todo.txt">
<!ENTITY todotxt.donefile "Lieu de Done.txt">
<!ENTITY todotxt.thunderbird "Utilisez la fonctionnalité de Thunderbird">
<!ENTITY todotxt.creation "Utiliser l'horodatage de création de todo">
1 change: 1 addition & 0 deletions chrome/locale/nl/options.dtd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!ENTITY todotxt.todofile "Locatie van het Todo.txt bestand">
<!ENTITY todotxt.donefile "Locatie van het Done.txt bestand">
<!ENTITY todotxt.thunderbird "Gebruik de functionaliteit van Thunderbird">
<!ENTITY todotxt.creation "Gebruik de startdatum van de Todo's in Thunderbird">
2 changes: 1 addition & 1 deletion components/calTodotxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Components.utils.import("resource://todotxt/todo-txt-js/todotxt.js");
function calTodoTxt() {
this.initProviderBase();

todotxtLogger.debugMode = true;
todotxtLogger.debugMode = false;
todotxtLogger.debug("calTodoTxt", "Constructor");

myPrefObserver.register(this);
Expand Down
1 change: 0 additions & 1 deletion defaults/preferences/todo.txt-ext.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pref("extensions.todotxt.thunderbird", true);
pref("extensions.todotxt.creation", true);
pref("general.useragent.locale","en-US");

0 comments on commit 234e8ba

Please sign in to comment.