JAL-4001 Changed title+message to MessageManager
authorBen Soares <b.soares@dundee.ac.uk>
Thu, 1 Jun 2023 14:50:09 +0000 (15:50 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Thu, 1 Jun 2023 14:50:09 +0000 (15:50 +0100)
resources/lang/Messages.properties
resources/lang/Messages_es.properties
src/jalview/bin/Jalview.java

index 1a24ed1..7c68c3b 100644 (file)
@@ -1450,3 +1450,6 @@ label.optional = (optional)
 label.choose_tempfac_type = Choose Temperature Factor type
 label.add_pae_matrix_file = Add PAE matrix file
 label.nothing_selected = Nothing selected
+prompt.google_analytics_title = Jalview Usage Statistics
+prompt.google_analytics = Do you want to help make Jalview better by enabling the collection of usage statistics with Google Analytics ?\n(you can enable or disable usage tracking in the preferences)
+
index b3c6988..40b0541 100644 (file)
@@ -1434,3 +1434,5 @@ label.tftype_default = Default
 label.tftype_plddt = pLDDT
 label.add_pae_matrix_file = AƱadir un fichero de matriz PAE
 label.nothing_selected = Nada seleccionado
+prompt.google_analytics_title = Jalview Usage Statistics
+prompt.google_analytics = Do you want to help make Jalview better by enabling the collection of usage statistics with Google Analytics ?\n(you can enable or disable usage tracking in the preferences)
index dc97549..4a336ea 100755 (executable)
@@ -1558,10 +1558,9 @@ public class Jalview
      * start a User Config prompt asking if we can log usage statistics.
      */
     PromptUserConfig prompter = new PromptUserConfig(Desktop.desktop,
-            "USAGESTATS", "Jalview Usage Statistics",
-            "Do you want to help make Jalview better by enabling "
-                    + "the collection of usage statistics with Google Analytics ?"
-                    + "\n\n(you can enable or disable usage tracking in the preferences)",
+            "USAGESTATS",
+            MessageManager.getString("prompt.google_analytics_title"),
+            MessageManager.getString("prompt.google_analytics"),
             new Runnable()
             {
               @Override