]> source.dussan.org Git - tigervnc.git/commitdiff
Clean up some error strings
authorPierre Ossman <ossman@cendio.se>
Wed, 8 Sep 2021 07:18:57 +0000 (09:18 +0200)
committerPierre Ossman <ossman@cendio.se>
Wed, 8 Sep 2021 08:36:17 +0000 (10:36 +0200)
Try to reuse and split things so that it makes things easier for the
translators.

vncviewer/MonitorArrangement.cxx
vncviewer/MonitorIndicesParameter.cxx
vncviewer/ServerDialog.cxx
vncviewer/parameters.cxx
vncviewer/vncviewer.cxx

index 93227c5945a16c707bd76524a52cea5a1090774c..b1d30128e54992690067a1464e8928784fd11521 100644 (file)
@@ -406,7 +406,7 @@ int MonitorArrangement::get_monitor_name(int m, char name[], size_t name_len)
 
   XRRScreenResources *res = XRRGetScreenResources(fl_display, DefaultRootWindow(fl_display));
   if (!res) {
-    vlog.error(_("Failed to get XRRScreenResources for root window"));
+    vlog.error(_("Failed to get system monitor configuration"));
     return -1;
   }
 
@@ -414,7 +414,7 @@ int MonitorArrangement::get_monitor_name(int m, char name[], size_t name_len)
     XRRCrtcInfo *crtc = XRRGetCrtcInfo(fl_display, res, res->crtcs[i]);
 
     if (!crtc) {
-      vlog.error(_("Failed to get XRRCrtcInfo for crtc %d"), i);
+      vlog.error(_("Failed to get information about CRTC %d"), i);
       continue;
     }
 
@@ -427,7 +427,7 @@ int MonitorArrangement::get_monitor_name(int m, char name[], size_t name_len)
       if (monitor_found) {
         XRROutputInfo *output = XRRGetOutputInfo(fl_display, res, crtc->outputs[j]);
         if (!output) {
-          vlog.error(_("Failed to get XRROutputInfo for crtc %d, output %d"), i, j);
+          vlog.error(_("Failed to get information about output %d for CRTC %d"), j, i);
           continue;
         }
 
index b3ee4b19450f115a17d154b9c92a9ad329f62c9e..827687dce478271ace0000901cb742b78ad957a4 100644 (file)
@@ -44,7 +44,7 @@ std::set<int> MonitorIndicesParameter::getParam()
     std::vector<MonitorIndicesParameter::Monitor> monitors = fetchMonitors();
 
     if (monitors.size() <= 0) {
-        vlog.error(_("Failed to get monitors"));
+        vlog.error(_("Failed to get system monitor configuration"));
         return indices;
     }
 
@@ -97,7 +97,7 @@ bool MonitorIndicesParameter::setParam(std::set<int> indices)
     std::vector<MonitorIndicesParameter::Monitor> monitors = fetchMonitors();
 
     if (monitors.size() <=  0) {
-        vlog.error(_("Failed to get monitors"));
+        vlog.error(_("Failed to get system monitor configuration"));
         // Don't return, store the configuration anyways.
     }
 
index 1c20dd309a1c5da952c810e877be23ef5db6e660..ba0386ca6aaf2afe9f25d2d553f066d36a24a576 100644 (file)
@@ -306,10 +306,8 @@ void ServerDialog::loadServerHistory()
 #endif
 
   char* homeDir = NULL;
-  if (getvnchomedir(&homeDir) == -1) {
-    throw Exception(_("Failed to read server history file, "
-                     "can't obtain home directory path."));
-  }
+  if (getvnchomedir(&homeDir) == -1)
+    throw Exception(_("Could not obtain the home directory path"));
 
   char filepath[PATH_MAX];
   snprintf(filepath, sizeof(filepath), "%s%s", homeDir, SERVER_HISTORY);
@@ -371,10 +369,8 @@ void ServerDialog::saveServerHistory()
 #endif
 
   char* homeDir = NULL;
-  if (getvnchomedir(&homeDir) == -1) {
-    throw Exception(_("Failed to write server history file, "
-                     "can't obtain home directory path."));
-  }
+  if (getvnchomedir(&homeDir) == -1)
+    throw Exception(_("Could not obtain the home directory path"));
 
   char filepath[PATH_MAX];
   snprintf(filepath, sizeof(filepath), "%s%s", homeDir, SERVER_HISTORY);
index ab5d587267eeaf2fbaf2b7806236dd201594589b..18384f3a14601e82fb848941c8673c6cfe15d6a0 100644 (file)
@@ -636,9 +636,9 @@ void saveViewerParameters(const char *filename, const char *servername) {
   /* Write parameters to file */
   FILE* f = fopen(filepath, "w+");
   if (!f)
-    throw Exception(_("Failed to write configuration file, can't open %s: %s"),
+    throw Exception(_("Could not open \"%s\": %s"),
                     filepath, strerror(errno));
-  
+
   fprintf(f, "%s\n", IDENTIFIER_STRING);
   fprintf(f, "\n");
 
@@ -730,8 +730,7 @@ char* loadViewerParameters(const char *filename) {
 
     char* homeDir = NULL;
     if (getvnchomedir(&homeDir) == -1)
-      throw Exception(_("Failed to read configuration file, "
-                        "can't obtain home directory path."));
+      throw Exception(_("Could not obtain the home directory path"));
 
     snprintf(filepath, sizeof(filepath), "%sdefault.tigervnc", homeDir);
     delete[] homeDir;
@@ -744,7 +743,7 @@ char* loadViewerParameters(const char *filename) {
   if (!f) {
     if (!filename)
       return NULL; // Use defaults.
-    throw Exception(_("Failed to read configuration file, can't open %s: %s"),
+    throw Exception(_("Could not open \"%s\": %s"),
                     filepath, strerror(errno));
   }
   
@@ -830,8 +829,8 @@ char* loadViewerParameters(const char *filename) {
     }
 
     if (invalidParameterName)
-      vlog.info(_("Unknown parameter %s on line %d in file %s"),
-                line, lineNr, filepath);
+      vlog.error(_("Failed to read line %d in file %s: %s"),
+                 lineNr, filepath, _("Unknown parameter"));
   }
   fclose(f); f=0;
   
index 2a81ffd3dd2ee0d7a486c852073d9e00da3572e3..d5c2f2bb911904fd9cc7d797ea74c3a73c0e706c 100644 (file)
@@ -457,8 +457,7 @@ static void mkvnchomedir()
   char* homeDir = NULL;
 
   if (getvnchomedir(&homeDir) == -1) {
-    vlog.error(_("Could not create VNC home directory: can't obtain home "
-                 "directory path."));
+    vlog.error(_("Could not obtain the home directory path"));
   } else {
     int result = mkdir(homeDir, 0755);
     if (result == -1 && errno != EEXIST)
@@ -551,8 +550,8 @@ potentiallyLoadConfigurationFile(char *vncServerName)
       vncServerName[VNCSERVERNAMELEN-1] = '\0';
     } catch (rfb::Exception& e) {
       vlog.error("%s", e.str());
-      abort_vncviewer(_("Error reading configuration file \"%s\":\n\n%s"),
-                      vncServerName, e.str());
+      abort_vncviewer(_("Unable to load the specified configuration "
+                        "file:\n\n%s"), e.str());
     }
   }
 }