# Version WIP
+- i18n: changer la langue dans les options fonctionne aussi quand $LANG existe
- gui: traduction en français
+- gui: ReDownloader ne supprimer plus le livre original
+- fix: corrections pour le visionneur interne
+- fix: quelques corrections pour les traductions
# Version 2.0.1
# Version WIP
+- i18n: setting the language in the option panel now works even with $LANG set
- gui: translated into French
+- gui: ReDownload does not delete the original book anymore
+- gui: internal viewer fixes
+- gui: some translation fixes
# Version 2.0.1
MENU_AUTHORS_UNKNOWN, //
// Progress names
- @Meta(def = "Removing old copy", format = Format.STRING, description = "progress bar caption for the 'removing old copy' step of 'redownload'")
- PROGRESS_REDOWNLOAD_REMOVE_OLD_COPY, //
@Meta(def = "Reload books", format = Format.STRING, description = "progress bar caption for the 'reload books' step of all outOfUi operations")
PROGRESS_OUT_OF_UI_RELOAD_BOOKS, //
+ @Meta(def = "Change the source of the book to %s", format = Format.STRING, description = "progress bar caption for the 'change source' step of the ReDownload operation", info = "%s = new source name")
+ PROGRESS_CHANGE_SOURCE, //
// Error messages
@Meta(def = "An error occured when contacting the library", format = Format.STRING, description = "default description if the error is not known")
# a special menu button to select the books without author
# (FORMAT: STRING)
MENU_AUTHORS_UNKNOWN = [unknown]
-# progress bar caption for the 'removing old copy' step of 'redownload'
-# (FORMAT: STRING)
-PROGRESS_REDOWNLOAD_REMOVE_OLD_COPY = Removing old copy
# progress bar caption for the 'reload books' step of all outOfUi operations
# (FORMAT: STRING)
PROGRESS_OUT_OF_UI_RELOAD_BOOKS = Reload books
+# progress bar caption for the 'change source' step of the ReDownload operation
+# (FORMAT: STRING) %s = new source name
+PROGRESS_CHANGE_SOURCE = Change the source of the book to %s
# default description if the error is not known
# (FORMAT: STRING)
ERROR_LIB_STATUS = An error occured when contacting the library
# a special menu button to select the books without author
# (FORMAT: STRING)
MENU_AUTHORS_UNKNOWN = [inconnu]
-# progress bar caption for the 'removing old copy' step of 'redownload'
-# (FORMAT: STRING)
-PROGRESS_REDOWNLOAD_REMOVE_OLD_COPY = Suppression de l'ancienne version
# progress bar caption for the 'reload books' step of all outOfUi operations
# (FORMAT: STRING)
PROGRESS_OUT_OF_UI_RELOAD_BOOKS = Recharger les livres
+# progress bar caption for the 'change source' step of the ReDownload operation
+# (FORMAT: STRING) %s = new source name
+PROGRESS_CHANGE_SOURCE = Change la source du livre en %s
# default description if the error is not known
# (FORMAT: STRING)
ERROR_LIB_STATUS = Une erreur est survenue en contactant la librairie
new StoryRunnable() {
@Override
public void run(Story story) {
- reader.delete(meta.getLuid());
- mainPanel.unsetSelectedBook();
MetaData newMeta = story.getMeta();
if (!newMeta.getSource().equals(
meta.getSource())) {
}
},
GuiReader
- .trans(StringIdGui.PROGRESS_REDOWNLOAD_REMOVE_OLD_COPY));
+ .trans(StringIdGui.PROGRESS_CHANGE_SOURCE));
}
}
});