From 8e506e962a154f08d44fe781684e24fd00cdb780 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Thu, 8 Jun 2023 19:38:19 +0200 Subject: [PATCH 01/23] When the screen size changes, let icewm-session check that icewmbg is running or start a new instance, for issue ice-wm/icewm#137. --- man/icewmbg.pod | 4 ++++ src/icesh.cc | 1 + src/icesm.cc | 5 +++++ src/wmaction.h | 2 ++ src/wmapp.cc | 10 ++++++++++ src/wmmgr.cc | 7 +++++-- 6 files changed, 27 insertions(+), 2 deletions(-) diff --git a/man/icewmbg.pod b/man/icewmbg.pod index f5a634e2..6730ffed 100644 --- a/man/icewmbg.pod +++ b/man/icewmbg.pod @@ -31,6 +31,10 @@ It will update the C<_ICEWMBG_IMAGE> property of the root window to the path of the background image whenever it changes the desktop background. B is started automatically by L. +If there is just a single background for all workspaces, icewmbg may +conclude that it can safely exit after setting the desktop background, +to free its system memory. If the screen size changes, icewm will then +attempt to restart icewmbg, preferably via icewm-session. =head2 OPTIONS diff --git a/src/icesh.cc b/src/icesh.cc index 8a07cc8b..05492438 100644 --- a/src/icesh.cc +++ b/src/icesh.cc @@ -2809,6 +2809,7 @@ bool IceSh::icewmAction() { "suspend", ICEWM_ACTION_SUSPEND }, { "winoptions", ICEWM_ACTION_WINOPTIONS }, { "keys", ICEWM_ACTION_RELOADKEYS }, + { "icewmbg", ICEWM_ACTION_ICEWMBG }, }; for (Symbol sym : sa) { if (0 == strcmp(*argp, sym.name)) { diff --git a/src/icesm.cc b/src/icesm.cc index 2bc0c74f..e33b953a 100644 --- a/src/icesm.cc +++ b/src/icesm.cc @@ -224,6 +224,7 @@ class SessionManager: public YApplication { catchSignal(SIGTERM); catchSignal(SIGINT); catchSignal(SIGUSR1); + catchSignal(SIGUSR2); } void loadEnv(const char *scriptName) { @@ -461,6 +462,10 @@ class SessionManager: public YApplication { } else if (sig == SIGUSR1) notified(); + else if (sig == SIGUSR2 && nobgArg == false) { + if (bg_pid == -1) + runIcewmbg(); + } } void checkWMExitStatus(int status) { diff --git a/src/wmaction.h b/src/wmaction.h index 7aeb6bd0..5eeaa79c 100644 --- a/src/wmaction.h +++ b/src/wmaction.h @@ -16,6 +16,7 @@ enum WMAction { ICEWM_ACTION_SUSPEND = 9, ICEWM_ACTION_WINOPTIONS = 10, ICEWM_ACTION_RELOADKEYS = 11, + ICEWM_ACTION_ICEWMBG = 12, }; enum RebootShutdown { @@ -119,6 +120,7 @@ enum EAction { actionUntab = 255, actionRename = 257, actionSysDialog = 259, + actionIcewmbg = 261, }; bool canShutdown(RebootShutdown reboot); diff --git a/src/wmapp.cc b/src/wmapp.cc index 6afd9df5..a2168fac 100644 --- a/src/wmapp.cc +++ b/src/wmapp.cc @@ -956,6 +956,15 @@ void YWMApp::actionPerformed(YAction action, unsigned int /*modifiers*/) { #endif restartClient(nullptr, nullptr); } + else if (action == actionIcewmbg) { + if (notifyParent && notifiedParent && kill(notifiedParent, SIGUSR2) == 0) + ; + else { + const char* bg[] = { ICEWMBGEXE, "-r", nullptr }; + int pid = runProgram(bg[0], bg); + waitProgram(pid); + } + } else if (action == actionRestartXterm) { delete fRestartMsgBox; fRestartMsgBox = new YMsgBox(YMsgBox::mbBoth, @@ -1956,6 +1965,7 @@ void YWMApp::handleSMAction(WMAction message) { { ICEWM_ACTION_SUSPEND, actionSuspend }, { ICEWM_ACTION_WINOPTIONS, actionWinOptions }, { ICEWM_ACTION_RELOADKEYS, actionReloadKeys }, + { ICEWM_ACTION_ICEWMBG, actionIcewmbg }, }; for (auto p : pairs) if (message == p.left) diff --git a/src/wmmgr.cc b/src/wmmgr.cc index 7ee9f96e..ab12f39e 100644 --- a/src/wmmgr.cc +++ b/src/wmmgr.cc @@ -952,6 +952,7 @@ void YWindowManager::handleClientMessage(const XClientMessageEvent &message) { case ICEWM_ACTION_ABOUT: case ICEWM_ACTION_WINOPTIONS: case ICEWM_ACTION_RELOADKEYS: + case ICEWM_ACTION_ICEWMBG: smActionListener->handleSMAction(action); break; } @@ -3849,8 +3850,10 @@ void YWindowManager::updateScreenSize(XEvent *event) { if (arrangeWindowsOnScreenSizeChange && resize) { wmActionListener->actionPerformed(actionArrange, 0); } - if (resize) - manager->arrangeIcons(); + if (resize) { + arrangeIcons(); + smActionListener->handleSMAction(ICEWM_ACTION_ICEWMBG); + } } refresh(); From c6286cc3b763950299992c008fb10bdf9d1d226f Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sun, 11 Jun 2023 21:13:38 +0200 Subject: [PATCH 02/23] Add a OutputFile preference and a -o,--output option to redirect all output to a file, which is truncated on startup if it exceeds 5 KB. --- man/icesound.pod | 7 ++++++- man/icewm-keys.pod | 3 ++- man/icewm-preferences.pod | 6 ++++++ man/icewm-session.pod | 1 + man/icewm.pod | 5 +++++ man/icewmbg.pod | 29 +++++++++++++++++------------ src/default.h | 2 ++ src/icesm.cc | 16 ++-------------- src/icesound.cc | 6 ++++++ src/icewmbg.cc | 6 ++++++ src/upath.cc | 26 ++++++++++++++++++++++++++ src/upath.h | 2 ++ src/wmapp.cc | 17 ++++++++++++++--- 13 files changed, 95 insertions(+), 31 deletions(-) diff --git a/man/icesound.pod b/man/icesound.pod index 75d27490..68e0689e 100644 --- a/man/icesound.pod +++ b/man/icesound.pod @@ -12,7 +12,7 @@ B [I] The L window manager generates so-called GUI events in response to interesting actions, like opening or closing of application -windows, switching of work space, etc. GUI events are a property of the +windows, switching of workspace, etc. GUI events are a property of the X root window. L changes this property whenever a new GUI event occurs. Interested applications can listen for changes to this property. There are nearly twenty GUI events defined. @@ -107,6 +107,11 @@ Lists the supported sound file names and exits. Lists the supported audio interfaces and exits. +=item B<-o>, B<--output=FILE> + +Redirect all output to I. +A leading tilde or environment variable is expanded. + =item B<-v>, B<--verbose> Be verbose and print some information when sound events occur. diff --git a/man/icewm-keys.pod b/man/icewm-keys.pod index ae150075..60957626 100644 --- a/man/icewm-keys.pod +++ b/man/icewm-keys.pod @@ -73,7 +73,8 @@ C and up, like C. =item I I I is the name of the executable or its full path. -The path may start with $HOME or a tilde, which will be expanded. +The path may start with a tilde or an environment variable, +which will be expanded. The I are passed as arguments to the I. =item B diff --git a/man/icewm-preferences.pod b/man/icewm-preferences.pod index 52d0e422..8258c63c 100644 --- a/man/icewm-preferences.pod +++ b/man/icewm-preferences.pod @@ -41,6 +41,12 @@ Synchronize X11 for debugging (slow) Enable event logging for debugging +=item B="" + +Redirect all output to I. +A leading tilde or environment variable is expanded. +This file is truncated on startup if it exceeds 5 KB. + =item B="" Splash image on startup (IceWM.jpg) diff --git a/man/icewm-session.pod b/man/icewm-session.pod index 95fc73fe..cb1aea0a 100644 --- a/man/icewm-session.pod +++ b/man/icewm-session.pod @@ -35,6 +35,7 @@ Use I as the IceWM window manager. =item B<-o>, B<--output=FILE> Redirect all output to I. +A leading tilde or environment variable is expanded. =item B<-a>, B<--alpha> diff --git a/man/icewm.pod b/man/icewm.pod index 2f9f9343..b18ef512 100644 --- a/man/icewm.pod +++ b/man/icewm.pod @@ -120,6 +120,11 @@ the look and feel of B, like colors, fonts and buttons. Connect to the X11 server on I. By default the environment variable C is used. +=item B<-o>, B<--output=FILE> + +Redirect all output to I. +A leading tilde or environment variable is expanded. + =item B<--sync> This option specifies to use a slower synchronous communication mode diff --git a/man/icewmbg.pod b/man/icewmbg.pod index 6730ffed..f9ef1526 100644 --- a/man/icewmbg.pod +++ b/man/icewmbg.pod @@ -11,11 +11,11 @@ B [I] =head2 DESCRIPTION B can assign a colour or image to the I desktop background. -Common image formats are supported. Each L work space can have +Common image formats are supported. Each L workspace can have its own background. When the background image changes, B can be notified to -update the background. When switching work spaces, it checks the image +update the background. When switching workspaces, it checks the image file modification time. If the file has changed, it reloads the image from file. @@ -122,6 +122,11 @@ This overrules the C preference. Cycle over the list of background images every I. This overrules the C preference. +=item B<-o>, B<--output=FILE> + +Redirect all output to I. +A leading tilde or environment variable is expanded. + =back =head2 GENERAL OPTIONS @@ -176,22 +181,22 @@ The settings read are: If these settings are set in the F file, they can be overridden by the theme in the theme defaults file. -To prevent this, set these preferences in F instead. +To enforce a certain setting, set it in the F file instead. See L. -=head2 WORK SPACES +=head2 WORKSPACES -Each work space can have a unique image. Specify multiple images to +Each workspace can have a unique image. Specify multiple images to B separated by comma's. Or give at least one -directory with images. The images are assigned to each work space in -the order given. When icewm changes work space, the running icewmbg +directory with images. The images are assigned to each workspace in +the order given. When icewm changes workspace, the running icewmbg will adapt the desktop background to the assigned image. -If you specify more images then there are work spaces, then +If you specify more images then there are workspaces, then B can set a period. When the period expires, icewmbg will switch to the next set of images. If you give less images -than there are work spaces, then icewmbg will reuse previous images -for the remaining work spaces. +than there are workspaces, then icewmbg will reuse previous images +for the remaining workspaces. =head2 IMAGE SCALING @@ -207,7 +212,7 @@ What happens for their combination is given by the following table: =head2 EXAMPLES - # For four unique desktop backgrounds for four work spaces do: + # For four unique desktop backgrounds for four workspaces do: icewmbg -p -i image0,image1,image2,image3 & @@ -234,7 +239,7 @@ B will terminate. =item B B will reshuffle the list of background images and -update the backgrounds of all work spaces. +update the backgrounds of all workspaces. =back diff --git a/src/default.h b/src/default.h index 281dc5e1..7bae6b56 100644 --- a/src/default.h +++ b/src/default.h @@ -573,6 +573,7 @@ cfoption icewm_preferences[] = { static bool alphaBlending; static bool synchronizeX11; +static const char* outputFile; static const char* splashFile(ICESPLASH); static const char* tracingModules; extern bool loggingEvents; @@ -581,6 +582,7 @@ cfoption wmapp_preferences[] = { OBV("Alpha", &alphaBlending, "Use a 32-bit visual for alpha blending"), OBV("Synchronize", &synchronizeX11, "Synchronize X11 for debugging (slow)"), OBV("LogEvents", &loggingEvents, "Enable event logging for debugging"), + OSV("OutputFile", &outputFile, "Redirect all icewm output to FILE"), OSV("Splash", &splashFile, "Splash image on startup (IceWM.jpg)"), OSV("Trace", &tracingModules, "Enable tracing for the given modules"), OSV("Theme", &themeName, "The name of the theme"), diff --git a/src/icesm.cc b/src/icesm.cc index e33b953a..9b8058dc 100644 --- a/src/icesm.cc +++ b/src/icesm.cc @@ -191,20 +191,8 @@ class SessionManager: public YApplication { } if (displayArg) setenv("DISPLAY", displayArg, 1); - if (outputArg) { - upath path(upath(outputArg).expand()); - int flags = O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY|O_APPEND; - int fd(path.open(flags, 0600)); - if (fd == -1) { - perror(path.string()); - } else { - dup2(fd, 1); - dup2(fd, 2); - if (fd > 2) { - close(fd); - } - } - } + if (outputArg) + upath::redirectOutput(outputArg); } public: diff --git a/src/icesound.cc b/src/icesound.cc index ed220ed5..2bdc2986 100644 --- a/src/icesound.cc +++ b/src/icesound.cc @@ -606,6 +606,7 @@ IceSound::IceSound() : void IceSound::parseArgs(int argc, char** argv) { + const char* outputArg = nullptr; for (char **arg = argv + 1; arg < argv + argc; ++arg) { if (**arg == '-') { char* value(nullptr); @@ -672,6 +673,9 @@ void IceSound::parseArgs(int argc, char** argv) playOnce(value); ::exit(0); } + else if (GetArgument(value, "o", "output", arg, argv + argc)) { + outputArg = value; + } else { warn(_("Unrecognized option: %s\n"), *arg); } @@ -679,6 +683,8 @@ void IceSound::parseArgs(int argc, char** argv) warn(_("Unrecognized argument: %s\n"), *arg); } } + if (outputArg) + upath::redirectOutput(outputArg); } /** diff --git a/src/icewmbg.cc b/src/icewmbg.cc index 75981069..a6889055 100644 --- a/src/icewmbg.cc +++ b/src/icewmbg.cc @@ -1059,6 +1059,7 @@ int main(int argc, char **argv) { const char* cycle = nullptr; const char* shuffleArg = nullptr; const char* displayArg = nullptr; + const char* outputArg = nullptr; for (char **arg = argv + 1; arg < argv + argc; ++arg) { if (**arg == '-') { @@ -1127,6 +1128,9 @@ int main(int argc, char **argv) { else if (GetArgument(value, "d", "display", arg, argv + argc)) { displayArg = value; } + else if (GetArgument(value, "o", "output", arg, argv + argc)) { + outputArg = value; + } else if (GetArgument(value, "C", "copying", arg, argv + argc)) { /*ignore*/; } @@ -1140,6 +1144,8 @@ int main(int argc, char **argv) { /*ignore*/; } } + if (outputArg) + upath::redirectOutput(outputArg); if (sendQuit) { sendMessage(displayArg, "_ICEWMBG_QUIT"); diff --git a/src/upath.cc b/src/upath.cc index 931c5281..c872cba0 100644 --- a/src/upath.cc +++ b/src/upath.cc @@ -261,4 +261,30 @@ bool upath::glob(mstring pattern, YStringArray& list, const char* flags) { return okay; } +void upath::redirectOutput(const char* outputFile) { + if (::nonempty(outputFile)) { + upath path(upath(outputFile).expand()); + int fd = path.open(O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY, 0600); + if (fd == -1) { + fail("open %s", path.string()); + } else { + struct stat st; + if (fstat(fd, &st) == -1) + fail("fstat %s", path.string()); + else if (S_ISREG(st.st_mode)) { + struct flock fl = { 0, 0, 0, 0, 0 }; + fl.l_type = F_WRLCK; + if (fcntl(fd, F_SETLK, &fl) == 0) { + if (st.st_size > 5*1024 && ftruncate(fd, 0L) == -1) + fail("ftruncate %s", path.string()); + } + } + dup2(fd, 1); + dup2(fd, 2); + if (fd > 2) + close(fd); + } + } +} + // vim: set sw=4 ts=4 et: diff --git a/src/upath.h b/src/upath.h index 4cac4d78..b55f73c6 100644 --- a/src/upath.h +++ b/src/upath.h @@ -89,6 +89,8 @@ class upath { return glob(path(), list, opt); } + static void redirectOutput(const char* outputFile); + private: mstring fPath; diff --git a/src/wmapp.cc b/src/wmapp.cc index a2168fac..07189220 100644 --- a/src/wmapp.cc +++ b/src/wmapp.cc @@ -1606,6 +1606,12 @@ static void print_usage(const char *argv0) { " --rewrite-preferences Update an existing preferences file.\n" " --trace=conf,icon Trace paths used to load configuration.\n" ); + const char* output_preferences = + _( + " -o, --output=FILE Redirect all output to FILE.\n" + ); + char* joint_preferences = cstrJoin(usage_preferences, output_preferences, + nullptr); printf(_("Usage: %s [OPTIONS]\n" "Starts the IceWM window manager.\n" @@ -1638,11 +1644,12 @@ static void print_usage(const char *argv0) { "%s\n\n"), argv0, usage_client_id, - usage_preferences, + joint_preferences, usage_debug, PACKAGE_BUGREPORT[0] ? PACKAGE_BUGREPORT : PACKAGE_URL[0] ? PACKAGE_URL : "https://ice-wm.org/"); + delete[] joint_preferences; exit(0); } @@ -1763,12 +1770,13 @@ static void print_configured(const char *argv0) { exit(0); } -static void loadStartup(const char* configFile) +static void loadStartup(const char* configFile, const char* outputArg) { rightToLeft = YLocale::RTL(); leftToRight = !rightToLeft; YConfig(wmapp_preferences).load(configFile); + upath::redirectOutput(Elvis(outputArg, outputFile)); YXApplication::alphaBlending |= alphaBlending; YXApplication::synchronizeX11 |= synchronizeX11; @@ -1787,6 +1795,7 @@ int main(int argc, char **argv) { bool rewrite_prefs(false); bool notify_parent(false); const char* configFile(nullptr); + const char* outputFile(nullptr); const char* displayName(nullptr); const char* overrideTheme(nullptr); @@ -1837,6 +1846,8 @@ int main(int argc, char **argv) { YXApplication::alphaBlending = true; else if (GetArgument(value, "d", "display", arg, argv+argc)) displayName = value; + else if (GetArgument(value, "o", "output", arg, argv+argc)) + outputFile = value; else if (GetArgument(value, "s", "splash", arg, argv+argc)) splashFile = value; else if (GetLongArgument(value, "trace", arg, argv+argc)) @@ -1858,7 +1869,7 @@ int main(int argc, char **argv) { if (isEmpty(configFile)) configFile = "preferences"; - loadStartup(configFile); + loadStartup(configFile, outputFile); if (nonempty(overrideTheme)) { unsigned last = ACOUNT(wmapp_preferences) - 2; From 11c0b34db6b24f5fbd9815d359e0b5ef1360517f Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Mon, 12 Jun 2023 20:54:23 +0200 Subject: [PATCH 03/23] Don't draw a border on quick switch when Look=flat for issue #736. --- src/wmswitch.cc | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/wmswitch.cc b/src/wmswitch.cc index 7155dfe5..c89d567c 100644 --- a/src/wmswitch.cc +++ b/src/wmswitch.cc @@ -585,24 +585,29 @@ void SwitchWindow::repaint() { } void SwitchWindow::paint(Graphics &g, const YRect &/*r*/) { + int b1 = (wmLook != lookFlat); + int b2 = b1 * 2; + int b3 = b2 + 1; + if (switchbackPixbuf != null && (fGradient == null || - fGradient->width() != width() - 2 || - fGradient->height() != height() - 2)) + fGradient->width() != width() - b2 || + fGradient->height() != height() - b2)) { - fGradient = switchbackPixbuf->scale(width() - 2, height() - 2); + fGradient = switchbackPixbuf->scale(width() - b2, height() - b2); } g.setColor(switchBg); - g.drawBorderW(0, 0, width() - 1, height() - 1, true); + if (b1) + g.drawBorderW(0, 0, width() - 1, height() - 1, true); if (fGradient != null) - g.drawImage(fGradient, 1, 1, width() - 2, height() - 2, 1, 1); + g.drawImage(fGradient, b1, b1, width() - b2, height() - b2, b1, b1); else if (switchbackPixmap != null) - g.fillPixmap(switchbackPixmap, 1, 1, width() - 3, height() - 3); + g.fillPixmap(switchbackPixmap, b1, b1, width() - b3, height() - b3); else - g.fillRect(1, 1, width() - 3, height() - 3); + g.fillRect(b1, b1, width() - b3, height() - b3); m_verticalStyle ? paintVertical(g) : paintHorizontal(g); } From 7815819a3058cd80b5527580deb5bf8b1a1282d6 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sat, 17 Jun 2023 08:18:17 +0200 Subject: [PATCH 04/23] Add title as placeholder text in rename title dialog for ice-wm/icewm#138. --- src/wmframe.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wmframe.cc b/src/wmframe.cc index b28e01ea..33c63700 100644 --- a/src/wmframe.cc +++ b/src/wmframe.cc @@ -1376,6 +1376,9 @@ void YFrameWindow::actionPerformed(YAction action, unsigned int modifiers) { _("Rename the window title"), this, "rename"); + if (fNameMsgBox) { + fNameMsgBox->input()->setText(getTitle(), false); + } break; case actionUntab: untab(fClient); From 148d90d9b612274e91e04805c3b2226570f367eb Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sun, 18 Jun 2023 21:39:03 +0200 Subject: [PATCH 05/23] Give logEvent a force option. --- src/logevent.cc | 6 +++--- src/logevent.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/logevent.cc b/src/logevent.cc index c42964db..ae1b7f3d 100644 --- a/src/logevent.cc +++ b/src/logevent.cc @@ -438,7 +438,7 @@ const char* eventName(int eventType) { #pragma GCC diagnostic ignored "-Wcast-function-type" #endif -void logEvent(const XEvent& xev) { +void logEvent(const XEvent& xev, bool force) { #if LOGEVENTS typedef void (*fun)(const XEvent&); static void (*const loggers[])(const XEvent&) = { @@ -479,8 +479,8 @@ void logEvent(const XEvent& xev) { (fun) logMapping, // 34 MappingNotify (fun) logAny, // 35 GenericEvent }; - if (loggingEvents && size_t(xev.type) < sizeof loggedEvents && - (loggedEventsInited || initLogEvents()) && loggedEvents[xev.type]) + if (inrange(xev.type, 2, 35) && (force || (loggingEvents && + (loggedEventsInited || initLogEvents()) && loggedEvents[xev.type]))) { loggers[xev.type](xev); } diff --git a/src/logevent.h b/src/logevent.h index aad76ede..f74fa62d 100644 --- a/src/logevent.h +++ b/src/logevent.h @@ -33,7 +33,7 @@ void logVisibility(const XVisibilityEvent& xev); const char* getAtomName(unsigned long atom); void setLogEvent(int evtype, bool enable); -void logEvent(const XEvent& xev); +void logEvent(const XEvent& xev, bool force = false); #ifdef CONFIG_SHAPE void logShape(const XEvent& xev); #endif From 9e43985eb672a11d2c99d091d68ba95715dd4469 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sun, 18 Jun 2023 21:40:08 +0200 Subject: [PATCH 06/23] Wider message box for rename title. --- src/ymsgbox.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ymsgbox.cc b/src/ymsgbox.cc index 0f0d12d4..f3f928c3 100644 --- a/src/ymsgbox.cc +++ b/src/ymsgbox.cc @@ -90,7 +90,8 @@ void YMsgBox::autoSize() { unsigned ph = (fPixmap != null) ? fPixmap->height() : 0; unsigned lw = fLabel ? fLabel->width() : 0; unsigned lh = fLabel ? fLabel->height() : 0; - unsigned w = clamp(lw + pw + 2*margin, 240U, desktop->width()); + unsigned mw = fInput ? 300U : 240U; + unsigned w = clamp(lw + pw + 2*margin, mw, desktop->width()); unsigned h = margin; if (fLabel) { From 41b5cffed6b7aaeb3edd5c57585ec2d47c745dbd Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sun, 18 Jun 2023 21:40:44 +0200 Subject: [PATCH 07/23] Add "refresh" command to icesh. Refresh desktop on icewm restart. --- man/icesh.pod | 4 ++++ src/icesh.cc | 1 + src/wmaction.h | 1 + src/wmapp.cc | 3 +++ src/wmmgr.cc | 1 + 5 files changed, 10 insertions(+) diff --git a/man/icesh.pod b/man/icesh.pod index 4de3773c..fe34a012 100644 --- a/man/icesh.pod +++ b/man/icesh.pod @@ -773,6 +773,10 @@ Let icewm reload the C. Let icewm reload the C file. +=item B + +Let icewm refresh the desktop background. + =item B Monitor the B property and report all changes. diff --git a/src/icesh.cc b/src/icesh.cc index 05492438..d8b1844b 100644 --- a/src/icesh.cc +++ b/src/icesh.cc @@ -2810,6 +2810,7 @@ bool IceSh::icewmAction() { "winoptions", ICEWM_ACTION_WINOPTIONS }, { "keys", ICEWM_ACTION_RELOADKEYS }, { "icewmbg", ICEWM_ACTION_ICEWMBG }, + { "refresh", ICEWM_ACTION_REFRESH }, }; for (Symbol sym : sa) { if (0 == strcmp(*argp, sym.name)) { diff --git a/src/wmaction.h b/src/wmaction.h index 5eeaa79c..5ef8dd47 100644 --- a/src/wmaction.h +++ b/src/wmaction.h @@ -17,6 +17,7 @@ enum WMAction { ICEWM_ACTION_WINOPTIONS = 10, ICEWM_ACTION_RELOADKEYS = 11, ICEWM_ACTION_ICEWMBG = 12, + ICEWM_ACTION_REFRESH = 13, }; enum RebootShutdown { diff --git a/src/wmapp.cc b/src/wmapp.cc index 07189220..a6474a0e 100644 --- a/src/wmapp.cc +++ b/src/wmapp.cc @@ -1475,6 +1475,8 @@ int YWMApp::mainLoop() { notifyParent = false; fail("notify parent"); } + else + kill(notifiedParent, SIGUSR2); } int rc = super::mainLoop(); @@ -1977,6 +1979,7 @@ void YWMApp::handleSMAction(WMAction message) { { ICEWM_ACTION_WINOPTIONS, actionWinOptions }, { ICEWM_ACTION_RELOADKEYS, actionReloadKeys }, { ICEWM_ACTION_ICEWMBG, actionIcewmbg }, + { ICEWM_ACTION_REFRESH, actionRefresh }, }; for (auto p : pairs) if (message == p.left) diff --git a/src/wmmgr.cc b/src/wmmgr.cc index ab12f39e..c0b30d20 100644 --- a/src/wmmgr.cc +++ b/src/wmmgr.cc @@ -953,6 +953,7 @@ void YWindowManager::handleClientMessage(const XClientMessageEvent &message) { case ICEWM_ACTION_WINOPTIONS: case ICEWM_ACTION_RELOADKEYS: case ICEWM_ACTION_ICEWMBG: + case ICEWM_ACTION_REFRESH: smActionListener->handleSMAction(action); break; } From ba6e026a066eebf53b22662784612460ee4dd3aa Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Mon, 26 Jun 2023 21:15:37 +0200 Subject: [PATCH 08/23] manpage details. --- man/icewm-keys.pod | 12 ++++++------ man/icewm-preferences.pod | 17 ++++++----------- man/icewm.pod | 2 +- man/icewmbg.pod | 3 ++- src/icewmbg_prefs.h | 4 ++-- 5 files changed, 17 insertions(+), 21 deletions(-) diff --git a/man/icewm-keys.pod b/man/icewm-keys.pod index 60957626..3fa5c273 100644 --- a/man/icewm-keys.pod +++ b/man/icewm-keys.pod @@ -15,8 +15,8 @@ =head2 DESCRIPTION The C file defines global keybindings to launch applications. -A keybinding has three parts. The word B, a double-quoted string -with an X11 key combination, and a program with its arguments. +A keybinding has three parts: the word B, a double-quoted string +with an X11 key combination and a program with its arguments. These are separated by one or more spaces. Empty lines are allowed. Comment lines start with a hash. @@ -27,9 +27,9 @@ For example, the following defines a hotkey to restart B: See the output of C for a list of the many keystroke names you can use in icewm key definitions. Since IceWM version 3.4.0, bindings can not only be defined by their keystroke name, but also by -their key label. In addition, the shifted key is available as well. +their key label. In addition, the shifted key is now definable as well. For example, the key with + and = can be bound in either of the -following four ways, which here are identical: +following four ways, which are identical: key "Ctrl+Shift+equal" xterm key "Ctrl+Shift+=" xterm @@ -72,8 +72,8 @@ C and up, like C. =item I I -I is the name of the executable or its full path. -The path may start with a tilde or an environment variable, +I is the name of the executable or its path. +It may start with a tilde or an environment variable, which will be expanded. The I are passed as arguments to the I. diff --git a/man/icewm-preferences.pod b/man/icewm-preferences.pod index 8258c63c..e9e9cfc4 100644 --- a/man/icewm-preferences.pod +++ b/man/icewm-preferences.pod @@ -1738,19 +1738,11 @@ Incoming load on the network monitor. Idle (non) load on the network monitor, leave empty to force transparency. -=item B="" - -Desktop background color(s). - -=item B="" - -Color(s) to announce for semitransparent windows. - =back =head3 DESKTOP BACKGROUND -The following preferences are read by L: +The following themeable preferences are read by L: =over @@ -1764,11 +1756,13 @@ Resize desktop background to full screen. =item B="" -Desktop background color(s). +A comma-separated list of zero or more desktop background colors. =item B="" -Desktop background image(s). +A comma-separated list of zero or more desktop background images. +Each image may be a path with a L pattern, or start with a +tilde or environment variable. =item B=0 0/1 @@ -1785,6 +1779,7 @@ Color(s) to announce for semitransparent windows. =item B="" Image(s) to announce for semitransparent windows. +This is a list similar to B. =item B=0 0/1 diff --git a/man/icewm.pod b/man/icewm.pod index b18ef512..7137176d 100644 --- a/man/icewm.pod +++ b/man/icewm.pod @@ -48,7 +48,7 @@ applications, and to a small set of monitoring applets. The background setting application. It can assign plain background color or images in different formats to the X background. Each workspace can -have its own background. It supports semi-transparency. Semitransparent +have its own background. It supports semitransparency. Semitransparent background image and colour can be configured. When the background image has changed then L can be notified to update the background. Multi-head monitor setups are fully supported. See the L. diff --git a/man/icewmbg.pod b/man/icewmbg.pod index f9ef1526..19dea5f5 100644 --- a/man/icewmbg.pod +++ b/man/icewmbg.pod @@ -19,7 +19,7 @@ update the background. When switching workspaces, it checks the image file modification time. If the file has changed, it reloads the image from file. -B supports semi-transparency. Semitransparent background +B supports semitransparency. Semitransparent background images and colours can be configured. It uses RandR or Xinerama to support backgrounds on all connected @@ -48,6 +48,7 @@ from that directory are used in sorted order. If the value starts with an exclamation mark, as in I, the images from the directory I are permuted randomly. Image file names or directory names may have L wildcards, +or they may start with a tilde or environment variable. =over diff --git a/src/icewmbg_prefs.h b/src/icewmbg_prefs.h index 099113cb..5d7d719c 100644 --- a/src/icewmbg_prefs.h +++ b/src/icewmbg_prefs.h @@ -30,10 +30,10 @@ cfoption icewmbg_prefs[] = { "Resize desktop background to full screen"), OKF("DesktopBackgroundImage", addBgImage, - "Desktop background image(s)"), + "Desktop background image(s), comma separated"), OKF("DesktopBackgroundColor", addBgImage, - "Desktop background color(s)"), + "Desktop background color(s), comma separated"), OKF("DesktopTransparencyImage", addBgImage, "Image(s) to announce for semitransparent windows"), From 2e3cc7af55f224ccda529334313026dacdf25599 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Tue, 27 Jun 2023 01:16:00 +0200 Subject: [PATCH 09/23] Prevent unlikely case of freeing the _XROOTPMAP_ID pixmap in icewmbg. --- src/icewmbg.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/icewmbg.cc b/src/icewmbg.cc index a6889055..df9bfa38 100644 --- a/src/icewmbg.cc +++ b/src/icewmbg.cc @@ -734,6 +734,9 @@ void Background::changeBackground(bool force) { (unsigned char *) &tPixmap); changeProperty(_XA_XROOTCOLOR_PIXEL, XA_CARDINAL, (unsigned char *) &tPixel); + + if (currentTransparencyPixmap == null && tPixmap == bPixmap) + currentTransparencyPixmap = back; } } XClearWindow(display(), window()); From 5322d83065e52265de9ecbe7d04dff1cd4e386c9 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Tue, 27 Jun 2023 08:34:12 +0200 Subject: [PATCH 10/23] When canceling the quick switch, check if a focused fullscreen is in the right layer. --- src/wmswitch.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wmswitch.cc b/src/wmswitch.cc index c89d567c..fae3e4ca 100644 --- a/src/wmswitch.cc +++ b/src/wmswitch.cc @@ -476,6 +476,10 @@ void SwitchWindow::close() { void SwitchWindow::cancel() { close(); zItems->cancel(); + + YFrameWindow* f = manager->getFocus(); + if (f && f->isFullscreen() && f->getActiveLayer() != WinLayerFullscreen) + f->updateLayer(); } void SwitchWindow::accept() { From 0abfb8fecea41078af1a1edffb6ebdbf8af67e4e Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Sat, 1 Jul 2023 14:08:25 +0200 Subject: [PATCH 11/23] Don't use OutputFile when printing information. --- src/wmapp.cc | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/wmapp.cc b/src/wmapp.cc index a6474a0e..204759db 100644 --- a/src/wmapp.cc +++ b/src/wmapp.cc @@ -1289,6 +1289,12 @@ YWMApp::YWMApp(int *argc, char ***argv, const char *displayName, WMConfig::loadConfiguration("prefoverride"); if (focusMode != FocusCustom) initFocusMode(); + + if (post_preferences) + WMConfig::printPrefs(focusMode, wmapp_preferences); + if (show_extensions) + showExtensions(); + fixupPreferences(); DEPRECATE(xrrDisable == true); @@ -1317,11 +1323,6 @@ YWMApp::YWMApp(int *argc, char ***argv, const char *displayName, initPointers(); - if (post_preferences) - WMConfig::printPrefs(focusMode, wmapp_preferences); - if (show_extensions) - showExtensions(); - delete desktop; managerWindow = registerProtocols1(*argv, *argc); @@ -1778,7 +1779,10 @@ static void loadStartup(const char* configFile, const char* outputArg) leftToRight = !rightToLeft; YConfig(wmapp_preferences).load(configFile); - upath::redirectOutput(Elvis(outputArg, outputFile)); + if (nonempty(outputArg)) + upath::redirectOutput(outputArg); + else if (nonempty(outputFile) && !(post_preferences | show_extensions)) + upath::redirectOutput(outputFile); YXApplication::alphaBlending |= alphaBlending; YXApplication::synchronizeX11 |= synchronizeX11; From 5b7d5b9e037ec4c0e28a95eec861b175aaccf146 Mon Sep 17 00:00:00 2001 From: ItzSelenux <74371741+ItzSelenux@users.noreply.github.com> Date: Mon, 17 Jul 2023 14:47:10 -0600 Subject: [PATCH 12/23] Add a "Hibernate" option as a possible workaround for nosystemd systems (#737) --- man/icewm-preferences.pod | 10 +++++++--- src/default.h | 9 ++++++--- src/icesh.cc | 1 + src/wmaction.h | 3 +++ src/wmapp.cc | 6 +++++- src/wmdialog.cc | 7 +++++++ src/wmdialog.h | 2 +- src/wmmgr.cc | 1 + 8 files changed, 31 insertions(+), 8 deletions(-) diff --git a/man/icewm-preferences.pod b/man/icewm-preferences.pod index e9e9cfc4..c49fbd81 100644 --- a/man/icewm-preferences.pod +++ b/man/icewm-preferences.pod @@ -1032,15 +1032,19 @@ Command to start logout. Command to cancel logout. -=item B="/bin/sh -c "{ test -e /run/systemd/system && systemctl poweroff; } ||:"" +=item B="/bin/sh -c "{ test -e /run/systemd/system && systemctl poweroff || loginctl poweroff; } ||:"" Command to shutdown the system. -=item B="/bin/sh -c "{ test -e /run/systemd/system && systemctl reboot; } ||:"" +=item B="/bin/sh -c "{ test -e /run/systemd/system && systemctl reboot || loginctl reboot; } ||:"" Command to reboot the system. -=item B="test -e /run/systemd/system && systemctl suspend" +=item B="test -e /run/systemd/system && systemctl suspend || loginctl suspend" + +Command to hibernate the system. + +=item B="test -e /run/systemd/system && systemctl suspend || loginctl suspend" Command to send the system to standby mode diff --git a/src/default.h b/src/default.h index 7bae6b56..329d04da 100644 --- a/src/default.h +++ b/src/default.h @@ -188,13 +188,15 @@ XSV(const char *, terminalCommand, TERM " -hold") XSV(const char *, logoutCommand, 0) XSV(const char *, logoutCancelCommand, 0) #if __linux__ -XSV(const char *, shutdownCommand, "test -e /run/systemd/system && systemctl poweroff") -XSV(const char *, rebootCommand, "test -e /run/systemd/system && systemctl reboot") -XSV(const char *, suspendCommand, "test -e /run/systemd/system && systemctl suspend") +XSV(const char *, shutdownCommand, "test -e /run/systemd/system && systemctl poweroff || loginctl poweroff") +XSV(const char *, rebootCommand, "test -e /run/systemd/system && systemctl reboot || loginctl reboot") +XSV(const char *, suspendCommand, "test -e /run/systemd/system && systemctl suspend || loginctl suspend") +XSV(const char *, hibernateCommand, "test -e /run/systemd/system && systemctl hibernate || loginctl suspend") #else XSV(const char *, shutdownCommand, 0) XSV(const char *, rebootCommand, 0) XSV(const char *, suspendCommand, 0) +XSV(const char *, hibernateCommand, 0) #endif XIV(int, taskBarCPUDelay, 500) XIV(int, taskBarMEMDelay, 500) @@ -449,6 +451,7 @@ cfoption icewm_preferences[] = { OSV("ShutdownCommand", &shutdownCommand, "Command to shutdown the system"), OSV("RebootCommand", &rebootCommand, "Command to reboot the system"), OSV("SuspendCommand", &suspendCommand, "Command to send the system to standby mode"), + OSV("HibernateCommand", &hibernateCommand, "Command to hibernate the system"), OSV("CPUStatusCommand", &cpuCommand, "Command to run on CPU status"), OSV("CPUStatusClassHint", &cpuClassHint, "WM_CLASS to allow runonce for CPUStatusCommand"), OBV("CPUStatusCombine", &cpuCombine, "Combine all CPUs to one"), diff --git a/src/icesh.cc b/src/icesh.cc index d8b1844b..fec61e80 100644 --- a/src/icesh.cc +++ b/src/icesh.cc @@ -2807,6 +2807,7 @@ bool IceSh::icewmAction() { "windowlist", ICEWM_ACTION_WINDOWLIST }, { "restart", ICEWM_ACTION_RESTARTWM }, { "suspend", ICEWM_ACTION_SUSPEND }, + { "hibernate", ICEWM_ACTION_HIBERNATE }, { "winoptions", ICEWM_ACTION_WINOPTIONS }, { "keys", ICEWM_ACTION_RELOADKEYS }, { "icewmbg", ICEWM_ACTION_ICEWMBG }, diff --git a/src/wmaction.h b/src/wmaction.h index 5ef8dd47..5e93adcd 100644 --- a/src/wmaction.h +++ b/src/wmaction.h @@ -18,6 +18,7 @@ enum WMAction { ICEWM_ACTION_RELOADKEYS = 11, ICEWM_ACTION_ICEWMBG = 12, ICEWM_ACTION_REFRESH = 13, + ICEWM_ACTION_HIBERNATE = 14, }; enum RebootShutdown { @@ -122,10 +123,12 @@ enum EAction { actionRename = 257, actionSysDialog = 259, actionIcewmbg = 261, + actionHibernate = 263, }; bool canShutdown(RebootShutdown reboot); bool canSuspend(); +bool canHibernate(); bool canLock(); /** * Basic check whether a shell command could possibly be run. diff --git a/src/wmapp.cc b/src/wmapp.cc index 204759db..86f3d1f4 100644 --- a/src/wmapp.cc +++ b/src/wmapp.cc @@ -524,7 +524,8 @@ void LogoutMenu::updatePopup() { addItem(_("Shut_down"), -2, null, actionShutdown, "shutdown"); if (canSuspend()) addItem(_("_Sleep mode"), -2, null, actionSuspend, "suspend"); - + if (canHibernate()) + addItem(_("_Hibernate"), -2, null, actionHibernate, "hibernate"); if (itemCount() != oldItemCount) addSeparator(); @@ -945,6 +946,8 @@ void YWMApp::actionPerformed(YAction action, unsigned int /*modifiers*/) { doLogout(Shutdown); } else if (action == actionSuspend) { runCommand(suspendCommand); + } else if (action == actionHibernate) { + runCommand(hibernateCommand); } else if (action == actionReboot) { doLogout(Reboot); } else if (action == actionRestart) { @@ -1980,6 +1983,7 @@ void YWMApp::handleSMAction(WMAction message) { { ICEWM_ACTION_WINDOWLIST, actionWindowList }, { ICEWM_ACTION_RESTARTWM, actionRestart }, { ICEWM_ACTION_SUSPEND, actionSuspend }, + { ICEWM_ACTION_HIBERNATE, actionHibernate }, { ICEWM_ACTION_WINOPTIONS, actionWinOptions }, { ICEWM_ACTION_RELOADKEYS, actionReloadKeys }, { ICEWM_ACTION_ICEWMBG, actionIcewmbg }, diff --git a/src/wmdialog.cc b/src/wmdialog.cc index 9ae4fb58..9174cb9d 100644 --- a/src/wmdialog.cc +++ b/src/wmdialog.cc @@ -48,6 +48,10 @@ bool canSuspend() { return couldRunCommand(suspendCommand); } +bool canHibernate() { + return couldRunCommand(hibernateCommand); +} + bool canShutdown(RebootShutdown reboot) { if (reboot == Shutdown && isEmpty(shutdownCommand)) return false; @@ -84,6 +88,7 @@ CtrlAltDelete::CtrlAltDelete(IApp* app, YWindow* parent) { _("_Logout..."), actionLogout, ICEWM_ACTION_LOGOUT }, { _("Re_boot"), actionReboot, ICEWM_ACTION_REBOOT }, { _("Shut_down"), actionShutdown, ICEWM_ACTION_SHUTDOWN }, + { _("Hibernate"), actionHibernate, ICEWM_ACTION_HIBERNATE }, { _("_Window list"), actionWindowList, ICEWM_ACTION_WINDOWLIST }, { _("_Restart icewm"), actionRestart, ICEWM_ACTION_RESTARTWM }, { _("_About"), actionAbout, ICEWM_ACTION_ABOUT }, @@ -108,6 +113,8 @@ CtrlAltDelete::CtrlAltDelete(IApp* app, YWindow* parent) buttons[4]->setEnabled(false); if (!canShutdown(Shutdown)) buttons[5]->setEnabled(false); + if (!canHibernate()) + buttons[6]->setEnabled(false); setSize(HORZ + w + MIDH + w + MIDH + w + HORZ, VERT + (h + MIDV) * (Count / 3) - MIDV + VERT); diff --git a/src/wmdialog.h b/src/wmdialog.h index b2e8446b..16181d92 100644 --- a/src/wmdialog.h +++ b/src/wmdialog.h @@ -26,7 +26,7 @@ class CtrlAltDelete: public YWindow, public YActionListener { int indexFocus(); IApp *app; - enum { Count = 12, }; + enum { Count = 13, }; YActionButton* buttons[Count]; }; diff --git a/src/wmmgr.cc b/src/wmmgr.cc index c0b30d20..32ef92e8 100644 --- a/src/wmmgr.cc +++ b/src/wmmgr.cc @@ -946,6 +946,7 @@ void YWindowManager::handleClientMessage(const XClientMessageEvent &message) { case ICEWM_ACTION_CANCEL_LOGOUT: case ICEWM_ACTION_SHUTDOWN: case ICEWM_ACTION_SUSPEND: + case ICEWM_ACTION_HIBERNATE: case ICEWM_ACTION_REBOOT: case ICEWM_ACTION_RESTARTWM: case ICEWM_ACTION_WINDOWLIST: From 4b16d98f916ce94b5b61c8337daa893d51477cec Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Mon, 17 Jul 2023 23:04:56 +0200 Subject: [PATCH 13/23] Hide the Close button in the System Dialog. --- src/wmdialog.cc | 6 +++--- src/wmdialog.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wmdialog.cc b/src/wmdialog.cc index 9174cb9d..336ad2ed 100644 --- a/src/wmdialog.cc +++ b/src/wmdialog.cc @@ -94,7 +94,7 @@ CtrlAltDelete::CtrlAltDelete(IApp* app, YWindow* parent) { _("_About"), actionAbout, ICEWM_ACTION_ABOUT }, { _("Reload win_options"), actionWinOptions, ICEWM_ACTION_WINOPTIONS }, { _("Reload ke_ys"), actionReloadKeys, ICEWM_ACTION_RELOADKEYS }, - { _("Clos_e"), actionClose, ICEWM_ACTION_NOP }, + // { _("Clos_e"), actionClose, ICEWM_ACTION_NOP }, }; for (int i = 0; i < Count; ++i) { buttons[i] = new YActionButton(this, data[i].text, -2, @@ -117,7 +117,7 @@ CtrlAltDelete::CtrlAltDelete(IApp* app, YWindow* parent) buttons[6]->setEnabled(false); setSize(HORZ + w + MIDH + w + MIDH + w + HORZ, - VERT + (h + MIDV) * (Count / 3) - MIDV + VERT); + VERT + (h + MIDV) * ((Count + 2) / 3) - MIDV + VERT); for (int i = 0; i < Count; ++i) { int x = HORZ + (i % 3) * (w + MIDH); @@ -156,7 +156,7 @@ void CtrlAltDelete::actionPerformed(YAction action, unsigned int /*modifiers*/) deactivate(); for (int i = 0; i < Count; ++i) { if (action == *buttons[i]) { - if (inrange(buttons[i]->wmAction, 2, 11)) + if (inrange(buttons[i]->wmAction, 2, 14)) manager->doWMAction(buttons[i]->wmAction); else if (action == actionLock && canLock()) app->runCommand(lockCommand); diff --git a/src/wmdialog.h b/src/wmdialog.h index 16181d92..b2e8446b 100644 --- a/src/wmdialog.h +++ b/src/wmdialog.h @@ -26,7 +26,7 @@ class CtrlAltDelete: public YWindow, public YActionListener { int indexFocus(); IApp *app; - enum { Count = 13, }; + enum { Count = 12, }; YActionButton* buttons[Count]; }; From 0eb0db8694ae5591d58b2ac2b2577a1bc0c37895 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Wed, 19 Jul 2023 12:02:12 +0200 Subject: [PATCH 14/23] Deactivate the system dialog on a click outside of the window. --- man/icesh.pod | 4 ++++ src/wmdialog.cc | 11 ++++++++++- src/wmdialog.h | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/man/icesh.pod b/man/icesh.pod index fe34a012..d6390606 100644 --- a/man/icesh.pod +++ b/man/icesh.pod @@ -765,6 +765,10 @@ Let icewm restart itself. Let icewm execute the C. +=item B + +Let icewm execute the C. + =item B Let icewm reload the C. diff --git a/src/wmdialog.cc b/src/wmdialog.cc index 336ad2ed..76acc33d 100644 --- a/src/wmdialog.cc +++ b/src/wmdialog.cc @@ -88,7 +88,7 @@ CtrlAltDelete::CtrlAltDelete(IApp* app, YWindow* parent) { _("_Logout..."), actionLogout, ICEWM_ACTION_LOGOUT }, { _("Re_boot"), actionReboot, ICEWM_ACTION_REBOOT }, { _("Shut_down"), actionShutdown, ICEWM_ACTION_SHUTDOWN }, - { _("Hibernate"), actionHibernate, ICEWM_ACTION_HIBERNATE }, + { _("_Hibernate"), actionHibernate, ICEWM_ACTION_HIBERNATE }, { _("_Window list"), actionWindowList, ICEWM_ACTION_WINDOWLIST }, { _("_Restart icewm"), actionRestart, ICEWM_ACTION_RESTARTWM }, { _("_About"), actionAbout, ICEWM_ACTION_ABOUT }, @@ -277,6 +277,15 @@ void CtrlAltDelete::handleVisibility(const XVisibilityEvent& vis) { } } +void CtrlAltDelete::handleButton(const XButtonEvent &button) { + if (button.type == ButtonPress && + button.button == Button1 && + xapp->grabWindow() == this && + geometry().contains(button.x, button.y) == false) { + deactivate(); + } +} + YActionButton::YActionButton(YWindow* parent, const mstring& text, int hotkey, YActionListener* listener, EAction action, WMAction wmAction): diff --git a/src/wmdialog.h b/src/wmdialog.h index b2e8446b..d3943152 100644 --- a/src/wmdialog.h +++ b/src/wmdialog.h @@ -18,6 +18,7 @@ class CtrlAltDelete: public YWindow, public YActionListener { virtual void configure(const YRect2& rect); virtual void repaint(); virtual void handleVisibility(const XVisibilityEvent&); + virtual void handleButton(const XButtonEvent &button); void activate(); void deactivate(); From 175662415d646370be82539597447153f8f0ad76 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Wed, 19 Jul 2023 19:52:03 +0200 Subject: [PATCH 15/23] Two .pod typos. --- man/icewm-menu-fdo.pod | 2 ++ man/icewm-winoptions.pod | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/man/icewm-menu-fdo.pod b/man/icewm-menu-fdo.pod index 735a65b1..3cd78d03 100644 --- a/man/icewm-menu-fdo.pod +++ b/man/icewm-menu-fdo.pod @@ -99,6 +99,8 @@ Print the program version to F and exit. Print copying permissions to F for the program and exit. +=back + =head2 USAGE This utility is not normally used directly. It is used as the diff --git a/man/icewm-winoptions.pod b/man/icewm-winoptions.pod index 1b83a905..2291983c 100644 --- a/man/icewm-winoptions.pod +++ b/man/icewm-winoptions.pod @@ -66,8 +66,6 @@ Lastly, the I pair refer to the options and values described below. A line with just a dot, followed by an option/value pair, applies to all windows. -=back - =head2 OPTIONS There are four categories: I, I, I and From 275d88fe848cc91bb8e0e2b47b908ac3855c2d9a Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Wed, 19 Jul 2023 22:53:37 +0200 Subject: [PATCH 16/23] Make geometry zero-based. --- src/wmdialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wmdialog.cc b/src/wmdialog.cc index 76acc33d..1de65b51 100644 --- a/src/wmdialog.cc +++ b/src/wmdialog.cc @@ -281,7 +281,7 @@ void CtrlAltDelete::handleButton(const XButtonEvent &button) { if (button.type == ButtonPress && button.button == Button1 && xapp->grabWindow() == this && - geometry().contains(button.x, button.y) == false) { + YRect(0, 0, width(), height()).contains(button.x, button.y) == false) { deactivate(); } } From 616a004dbaf157c1cb0e90eeca98ac70814e483b Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Thu, 20 Jul 2023 23:04:41 +0200 Subject: [PATCH 17/23] When WM_NORMAL_HINTS changes, only update the normalized dimensions, if the increments have changed, for issue ice-wm/icewm#141. --- src/wmframe.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/wmframe.cc b/src/wmframe.cc index 33c63700..0a2d592d 100644 --- a/src/wmframe.cc +++ b/src/wmframe.cc @@ -3575,9 +3575,7 @@ void YFrameWindow::updateMwmHints(XSizeHints* sh) { xs->max_aspect.x * h >= xs->max_aspect.y * w))) { if (xs->width_inc != sh->width_inc || - xs->height_inc != sh->height_inc || - xs->base_width != sh->base_width || - xs->base_height != sh->base_height) + xs->height_inc != sh->height_inc) { int onw = posW - 2 * borderXN(); int onh = posH - (2 * borderYN() + titleYN()); From 8a8e31b1b9404aeea58c01bcdc3dfbc3ab3c0139 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Fri, 21 Jul 2023 01:44:23 +0200 Subject: [PATCH 18/23] Update potfiles. --- po/ar.po | 235 ++--- po/ast.po | 2624 ++++++++++++++++++++++++++++++++++++++------------ po/be.po | 235 ++--- po/bg.po | 235 ++--- po/ca.po | 231 ++--- po/cs.po | 231 ++--- po/da.po | 235 ++--- po/de.po | 235 ++--- po/el.po | 235 ++--- po/en.po | 228 ++--- po/eo.po | 228 ++--- po/es.po | 235 ++--- po/fa.po | 235 ++--- po/fi.po | 235 ++--- po/fr.po | 231 ++--- po/he.po | 235 ++--- po/hi.po | 235 ++--- po/hr.po | 235 ++--- po/hu.po | 235 ++--- po/icewm.pot | 230 ++--- po/id.po | 231 ++--- po/ie.po | 235 ++--- po/it.po | 235 ++--- po/ja.po | 231 ++--- po/ka.po | 231 ++--- po/kk.po | 235 ++--- po/ko.po | 235 ++--- po/lt.po | 235 ++--- po/lv.po | 235 ++--- po/mk.po | 235 ++--- po/nb.po | 235 ++--- po/nl.po | 231 ++--- po/nn.po | 235 ++--- po/no.po | 235 ++--- po/pl.po | 235 ++--- po/pt.po | 231 ++--- po/pt_BR.po | 231 ++--- po/ro.po | 235 ++--- po/ru.po | 231 ++--- po/si.po | 228 ++--- po/sk.po | 231 ++--- po/sl.po | 235 ++--- po/sv.po | 231 ++--- po/tr.po | 231 ++--- po/uk.po | 235 ++--- po/vi.po | 235 ++--- po/zh_CN.po | 235 ++--- po/zh_TW.po | 235 ++--- 48 files changed, 7666 insertions(+), 5925 deletions(-) diff --git a/po/ar.po b/po/ar.po index fabb7848..168ad219 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.12.52\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2022-01-01 23:12+0000\n" "Last-Translator: Ghassan \n" "Language-Team: Arabic " msgstr "<لا شيئ>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID معرف العميل المطلوب استخدامه عند الاتصال بمدير " "الجلسة.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2249,7 +2253,7 @@ msgstr "" "الجلسة.\n" " --debug-z طباعة رسائل تصحيح الأخطاء المتعلقة بتراص النوافذ.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2266,7 +2270,11 @@ msgstr "" "تحميل السمة من FILE.اعرض الصورة لفترة وجيزة عند بدء التشغيل طباعة التفضيلات " "بعد كل عمليات المعالجة.رمز ، مسارات التتبع أيقونة المستخدمة لتحميل الاعداد.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2325,21 +2333,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "دلائل إعداد %s:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s خيارات تمت إعدادها:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "تأكيد تسجيل الخروج" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2404,45 +2412,39 @@ msgstr "تعذر إنشاء الدليل %s" msgid "Unable to rename %s to %s" msgstr "تعذرت إعادة تسمية %s إلى %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "غلق محطة العمل" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "الغاء" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "تسجيل الخروج..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_إعادة تشغيل icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "حول" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "إعادة تحميل" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "إغلاق" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2451,7 +2453,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2459,7 +2461,7 @@ msgstr "" "تحذير! سيتم فقدان جميع التغييرات غير المحفوظة عند\n" "قتل هذا العميل. هل ترغب في المتابعة؟" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "إنهاء العميل: " @@ -2530,11 +2532,11 @@ msgstr "نفد وقته : '%s'" msgid "'%s' produces no output" msgstr "لم يصدر عن '%s' أية مخرجات" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "البرنامج مفقود" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "لتبديل لوحة المفاتيح ، يرجى تثبيتsetxkbmap" @@ -2895,6 +2897,11 @@ msgstr "واجهة غير مدعومة: %s." msgid "Could not load image \"%s\"" msgstr "لا يمكن العثور على الصورة %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "إغلاق" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "فشل تحميل الخط الاحتياطي %s." diff --git a/po/ast.po b/po/ast.po index c4c2cedb..382b6dc7 100644 --- a/po/ast.po +++ b/po/ast.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.12.56\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2016-07-09 21:33-0600\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2016-09-13 18:33+0000\n" "Last-Translator: Enol P \n" -"Language-Team: Asturian " -"\n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,94 +19,297 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 2.6\n" -#: src/aapm.cc:191 src/aapm.cc:524 src/aapm.cc:754 src/aapm.cc:875 +#: src/aapm.cc:66 +#, fuzzy, c-format +#| msgid "Can't connect to YIFF server: %s" +msgid "Can't open the APM device %s" +msgstr "Nun pue coneutase al sirvidor YIFF: %s" + +#: src/aapm.cc:74 src/aapm.cc:92 +#, fuzzy, c-format +#| msgid "Can't connect to YIFF server: %s" +msgid "Can't ioctl the APM device %s" +msgstr "Nun pue coneutase al sirvidor YIFF: %s" + +#: src/aapm.cc:122 +#, c-format +msgid "Unknown format used by APM device %s (%d)." +msgstr "" + +#: src/aapm.cc:154 src/aapm.cc:426 src/aapm.cc:636 src/aapm.cc:762 msgid " - Power" msgstr "" -#: src/aapm.cc:193 src/aapm.cc:527 src/aapm.cc:757 +#: src/aapm.cc:156 src/aapm.cc:429 src/aapm.cc:639 msgid "P" msgstr "" -#: src/aapm.cc:197 src/aapm.cc:498 src/aapm.cc:734 src/aapm.cc:846 -#, c-format +#: src/aapm.cc:160 src/aapm.cc:403 src/aapm.cc:619 src/aapm.cc:730 msgid " - Charging" msgstr "" -#: src/aapm.cc:199 src/aapm.cc:500 src/aapm.cc:736 +#: src/aapm.cc:162 src/aapm.cc:405 src/aapm.cc:621 msgid "C" msgstr "" -#: src/aapm.cc:502 +#: src/aapm.cc:407 msgid " - Full" msgstr "" -#: src/acpustatus.cc:234 +#: src/aapm.cc:944 #, c-format -msgid "CPU Load: %3.2f %3.2f %3.2f, %u" +msgid "power:\t%s" +msgstr "" + +#: src/aclock.cc:192 +msgid "CLOCK" +msgstr "" + +#: src/aclock.cc:198 +msgid "Date" +msgstr "" + +#: src/aclock.cc:199 src/themes.cc:82 +msgid "Default" +msgstr "" + +#: src/aclock.cc:200 src/acpustatus.cc:912 src/amailbox.cc:964 +#: src/amemstatus.cc:264 +msgid "_Disable" +msgstr "" + +#: src/aclock.cc:201 +msgid "_UTC" +msgstr "" + +#. TRANSLATORS: Please translate the string "C" into "Celsius Temperature" in your language. +#. TRANSLATORS: Please make sure the translated string could be shown in your non-utf8 locale. +#: src/acpustatus.cc:348 +msgid "°C" +msgstr "" + +#: src/acpustatus.cc:552 +#, fuzzy, c-format +#| msgid "CPU Load: %3.2f %3.2f %3.2f, %u" +msgid "CPU %s Load: %3.2f %3.2f %3.2f, %u" msgstr "Carga de CPU: %3.2f %3.2f %3.2f, %u" -#: src/acpustatus.cc:239 +#: src/acpustatus.cc:558 #, c-format msgid "" "\n" -"Ram (free): %5.2f (%.2f) M" +"Ram (free): %5.3f (%.3f) G" msgstr "" -#: src/acpustatus.cc:244 +#: src/acpustatus.cc:563 #, c-format msgid "" "\n" -"Swap (free): %.2f (%.2f) M" +"Swap (free): %.3f (%.3f) G" msgstr "" -#: src/acpustatus.cc:250 +#: src/acpustatus.cc:571 #, c-format msgid "" "\n" "ACPI Temp: " msgstr "" -#: src/acpustatus.cc:261 +#: src/acpustatus.cc:592 src/acpustatus.cc:630 #, c-format msgid "" "\n" "CPU Freq: %.3fGHz" msgstr "" -#: src/acpustatus.cc:274 -msgid "CPU Load: " +#: src/acpustatus.cc:607 src/acpustatus.cc:907 +msgid "CPU" +msgstr "" + +#: src/acpustatus.cc:607 +msgid "Load: " +msgstr "" + +#: src/acpustatus.cc:622 +#, c-format +msgid "" +"\n" +"Ram (user): %5.3f (%.3f) G" +msgstr "" + +#: src/acpustatus.cc:908 +#, c-format +msgid "CPU%d" +msgstr "" + +#: src/acpustatus.cc:914 +msgid "_Combine" +msgstr "" + +#: src/acpustatus.cc:916 +msgid "_Separate" +msgstr "" + +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 +#, c-format +msgid "%s exited with status %d." +msgstr "" + +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 +#, c-format +msgid "%s was killed by signal %d." +msgstr "" + +#: src/akeyboard.cc:98 +msgid "rules:" +msgstr "" + +#: src/akeyboard.cc:99 +msgid "model:" +msgstr "" + +#: src/akeyboard.cc:100 +msgid "layout:" msgstr "" -#: src/amailbox.cc:77 +#: src/akeyboard.cc:101 +msgid "options:" +msgstr "" + +#: src/akeyboard.cc:157 +msgid "Keyboard" +msgstr "" + +#: src/amailbox.cc:64 #, c-format msgid "Invalid mailbox protocol: \"%s\"" msgstr "" -#: src/amailbox.cc:79 +#: src/amailbox.cc:66 #, c-format msgid "Invalid mailbox path: \"%s\"" msgstr "" -#: src/amailbox.cc:343 +#: src/amailbox.cc:140 +#, c-format +msgid "DNS name lookup failed for %s" +msgstr "" + +#: src/amailbox.cc:156 +#, fuzzy, c-format +#| msgid "Invalid path: %s\n" +msgid "Invalid mailbox port: \"%s\"" +msgstr "Camín non váldu: %s\n" + +#: src/amailbox.cc:314 +#, fuzzy, c-format +#| msgid "Can't connect to YIFF server: %s" +msgid "Could not connect to %s: %s" +msgstr "Nun pue coneutase al sirvidor YIFF: %s" + +#: src/amailbox.cc:334 +#, c-format +msgid "Failed to find %s command" +msgstr "" + +#: src/amailbox.cc:363 src/wmmenu.cc:471 src/wmmenu.cc:488 src/yapp.cc:433 +#, c-format +msgid "Failed to execute %s" +msgstr "" + +#: src/amailbox.cc:447 +#, c-format +msgid "Write to socket failed: %s" +msgstr "" + +#: src/amailbox.cc:694 #, c-format msgid "Using MailBox \"%s\"\n" msgstr "" -#: src/amailbox.cc:451 +#: src/amailbox.cc:801 +msgid "Suspended" +msgstr "" + +#: src/amailbox.cc:805 msgid "Error checking mailbox." msgstr "" -#: src/amailbox.cc:457 +#: src/amailbox.cc:812 +#, fuzzy, c-format +#| msgid "%ld mail message." +msgid "%ld mail message, %ld unread." +msgstr "%ld mensaxe de corréu." + +#: src/amailbox.cc:813 +#, fuzzy, c-format +#| msgid "%ld mail messages." +msgid "%ld mail messages, %ld unread." +msgstr "%ld mensaxes de corréu." + +#: src/amailbox.cc:819 #, c-format msgid "%ld mail message." msgstr "%ld mensaxe de corréu." -#: src/amailbox.cc:458 +#: src/amailbox.cc:820 #, c-format msgid "%ld mail messages." msgstr "%ld mensaxes de corréu." -#: src/apppstatus.cc:204 +#: src/amailbox.cc:961 +msgid "MAIL" +msgstr "" + +#: src/amailbox.cc:963 +msgid "_Check" +msgstr "" + +#: src/amailbox.cc:965 +msgid "_Suspend" +msgstr "" + +#: src/amemstatus.cc:144 +msgid "GB" +msgstr "" + +#: src/amemstatus.cc:148 +msgid "MB" +msgstr "" + +#: src/amemstatus.cc:152 +msgid "kB" +msgstr "" + +#: src/amemstatus.cc:156 +msgid "bytes" +msgstr "" + +#: src/amemstatus.cc:176 +msgid "Memory Total: " +msgstr "" + +#: src/amemstatus.cc:177 +msgid "Free: " +msgstr "" + +#: src/amemstatus.cc:178 +msgid "Cached: " +msgstr "" + +#: src/amemstatus.cc:179 +msgid "Buffers: " +msgstr "" + +#: src/amemstatus.cc:180 +msgid "User: " +msgstr "" + +#: src/amemstatus.cc:262 +msgid "MEM" +msgstr "" + +#: src/apppstatus.cc:268 #, c-format msgid "" "Interface %s:\n" @@ -116,1181 +319,2402 @@ msgid "" " Online time:\t%ld:%02ld:%02ld%s%s" msgstr "" -#: src/apppstatus.cc:216 -msgid "" -"\n" -" Caller id:\t" +#: src/apppstatus.cc:284 +msgid "disconnected" +msgstr "" + +#: src/apppstatus.cc:284 +msgid "down" msgstr "" -#: src/aworkspaces.cc:155 src/aworkspaces.cc:220 src/aworkspaces.cc:276 -#: src/wmstatus.cc:178 +#: src/apppstatus.cc:705 +msgid "NET" +msgstr "" + +#: src/aworkspaces.cc:673 src/wmstatus.cc:204 msgid "Workspace: " msgstr "Estaya de trabayu: " -#: src/fdomenu.cc:74 -msgid "Settings" +#: src/decorate.cc:132 +msgid "Tabs" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics +#: src/fdospecgen.h:43 +#, fuzzy +#| msgid "Graphics" +msgid "2DGraphics" +msgstr "Gráficos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics +#: src/fdospecgen.h:45 +#, fuzzy +#| msgid "Graphics" +msgid "3DGraphics" +msgstr "Gráficos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings or Utility +#: src/fdospecgen.h:47 src/fdospecgen.h:49 +msgid "Accessibility" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:51 +msgid "Accessories" +msgstr "Accesorios" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:53 +msgid "ActionGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:55 +msgid "Adult" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:57 +msgid "AdventureGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:59 +msgid "Amusement" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:61 +msgid "ArcadeGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:63 +msgid "Archiving" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:65 +msgid "Art" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:67 +msgid "ArtificialIntelligence" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:69 +msgid "Astronomy" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:71 +msgid "Audio" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:73 +msgid "AudioVideo" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Audio or Video or AudioVideo +#: src/fdospecgen.h:75 +msgid "AudioVideoEditing" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:77 +msgid "Biology" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:79 +msgid "BlocksGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:81 +msgid "BoardGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:83 +msgid "Building" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:85 +msgid "Calculator" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:87 +msgid "Calendar" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:89 +#, fuzzy +#| msgid "Games" +msgid "CardGame" +msgstr "Xuegos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:91 +msgid "Chart" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:93 +msgid "Chat" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:95 +msgid "Chemistry" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:97 +msgid "Clock" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility;Archiving +#: src/fdospecgen.h:99 +msgid "Compression" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:101 +msgid "ComputerScience" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:103 +msgid "Construction" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:105 +msgid "ContactManagement" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:107 +msgid "Core" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:109 +msgid "DataVisualization" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office or Development or AudioVideo +#: src/fdospecgen.h:111 +msgid "Database" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:113 +msgid "Debugger" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings +#: src/fdospecgen.h:115 +#, fuzzy +#| msgid "Settings" +msgid "DesktopSettings" +msgstr "Axustes" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:117 +msgid "Development" +msgstr "Desendolcu" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:119 +msgid "Dialup" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office or TextTools +#: src/fdospecgen.h:121 +msgid "Dictionary" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo +#: src/fdospecgen.h:123 +msgid "DiscBurning" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:125 +msgid "Documentation" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:127 +msgid "Economy" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:129 +msgid "Editors" +msgstr "Editores" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:131 +msgid "Education" +msgstr "Educación" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:133 +msgid "Electricity" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:135 +msgid "Electronics" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office or Network +#: src/fdospecgen.h:137 +msgid "Email" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: System or Game +#: src/fdospecgen.h:139 +msgid "Emulator" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:141 +msgid "Engineering" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:143 +msgid "Feed" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: System;FileTools +#: src/fdospecgen.h:145 +msgid "FileManager" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility or System +#: src/fdospecgen.h:147 +msgid "FileTools" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:149 +msgid "FileTransfer" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: System +#: src/fdospecgen.h:151 +#, fuzzy +#| msgid "System" +msgid "Filesystem" +msgstr "Sistema" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:153 +msgid "Finance" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:155 +msgid "FlowChart" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:157 +msgid "GUIDesigner" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:159 +#, fuzzy +#| msgid "Games" +msgid "Game" +msgstr "Xuegos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:161 +msgid "Geography" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:163 +msgid "Geology" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:165 +msgid "Geoscience" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:167 +msgid "Graphics" +msgstr "Gráficos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network or Audio +#: src/fdospecgen.h:169 +msgid "HamRadio" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings +#: src/fdospecgen.h:171 +#, fuzzy +#| msgid "Settings" +msgid "HardwareSettings" msgstr "Axustes" -#: src/fdomenu.cc:75 +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:173 +msgid "History" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:175 +msgid "Humanities" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:177 +msgid "IDE" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:179 +msgid "IRCClient" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:181 +msgid "ImageProcessing" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:183 +msgid "InstantMessaging" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:185 +#, fuzzy +#| msgid "Games" +msgid "KidsGame" +msgstr "Xuegos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:187 +msgid "Languages" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:189 +msgid "Literature" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:191 +msgid "LogicGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science or Utility +#: src/fdospecgen.h:193 +msgid "Maps" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:195 +msgid "Math" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:197 +msgid "MedicalSoftware" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo;Audio +#: src/fdospecgen.h:199 +msgid "Midi" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo;Audio +#: src/fdospecgen.h:201 +msgid "Mixer" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: System or Network +#: src/fdospecgen.h:203 +msgid "Monitor" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:205 +msgid "Motif" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:207 +msgid "Multimedia" +msgstr "Multimedia" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo or Education +#: src/fdospecgen.h:209 +msgid "Music" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:211 +msgid "Network" +msgstr "Rede" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:213 +msgid "News" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education;Math or Science;Math +#: src/fdospecgen.h:215 +msgid "NumericalAnalysis" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics;Scanning +#: src/fdospecgen.h:217 +msgid "OCR" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:219 +msgid "Office" +msgstr "Oficina" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:221 +msgid "Other" +msgstr "Otro" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:223 +msgid "P2P" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:225 +msgid "PDA" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings +#: src/fdospecgen.h:227 +msgid "PackageManager" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education;ComputerScience or Science;ComputerScience +#: src/fdospecgen.h:229 +msgid "ParallelComputing" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics or Office +#: src/fdospecgen.h:231 +msgid "Photography" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:233 +msgid "Physics" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Audio or Video or AudioVideo +#: src/fdospecgen.h:235 +msgid "Player" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:237 +msgid "Presentation" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings;HardwareSettings +#: src/fdospecgen.h:239 +msgid "Printing" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:241 +msgid "Profiling" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office or Development +#: src/fdospecgen.h:243 +msgid "ProjectManagement" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics or Office +#: src/fdospecgen.h:245 +msgid "Publishing" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics;2DGraphics +#: src/fdospecgen.h:247 +#, fuzzy +#| msgid "Graphics" +msgid "RasterGraphics" +msgstr "Gráficos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Audio or Video or AudioVideo +#: src/fdospecgen.h:249 +msgid "Recorder" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:251 +msgid "RemoteAccess" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:253 +msgid "RevisionControl" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:255 +msgid "Robotics" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:257 +msgid "RolePlaying" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics +#: src/fdospecgen.h:259 +msgid "Scanning" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:261 +msgid "Science" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:263 msgid "Screensavers" msgstr "Curiapantalles" -#: src/fdomenu.cc:76 -msgid "Accessories" -msgstr "Accesorios" +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Settings or System +#: src/fdospecgen.h:265 +msgid "Security" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo;Audio +#: src/fdospecgen.h:267 +msgid "Sequencer" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:269 +msgid "Settings" +msgstr "Axustes" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:271 +msgid "Shooter" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:273 +#, fuzzy +#| msgid "Education" +msgid "Simulation" +msgstr "Educación" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science or Utility +#: src/fdospecgen.h:275 +msgid "Spirituality" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Education or Science +#: src/fdospecgen.h:277 +msgid "Sports" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:279 +msgid "SportsGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:281 +msgid "Spreadsheet" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Game +#: src/fdospecgen.h:283 +msgid "StrategyGame" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:285 +msgid "System" +msgstr "Sistema" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo;Video +#: src/fdospecgen.h:287 +msgid "TV" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:289 +msgid "Telephony" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:291 +msgid "TelephonyTools" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: System +#: src/fdospecgen.h:293 +msgid "TerminalEmulator" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:295 +#, fuzzy +#| msgid "Editors" +msgid "TextEditor" +msgstr "Editores" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Utility +#: src/fdospecgen.h:297 +msgid "TextTools" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Development +#: src/fdospecgen.h:299 +msgid "Translation" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: AudioVideo;Audio +#: src/fdospecgen.h:301 +msgid "Tuner" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:303 +msgid "Utility" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics;2DGraphics +#: src/fdospecgen.h:305 +#, fuzzy +#| msgid "Graphics" +msgid "VectorGraphics" +msgstr "Gráficos" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:307 +msgid "Video" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:309 +msgid "VideoConference" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Graphics or Office +#: src/fdospecgen.h:311 +msgid "Viewer" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. +#: src/fdospecgen.h:313 +msgid "WINE" +msgstr "WINE" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network +#: src/fdospecgen.h:315 +msgid "WebBrowser" +msgstr "" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Network or Development +#: src/fdospecgen.h:317 +#, fuzzy +#| msgid "Development" +msgid "WebDevelopment" +msgstr "Desendolcu" + +#. TRANSLATORS: This is a menu category name from freedesktop.org. Please add spaces as needed but no double-quotes. Context: Office +#: src/fdospecgen.h:319 +msgid "WordProcessor" +msgstr "" + +#: src/icehelp.cc:1348 +msgid "Back" +msgstr "Atrás" + +#: src/icehelp.cc:1348 +msgid "Alt+Left" +msgstr "" + +#: src/icehelp.cc:1350 +msgid "Forward" +msgstr "Alantre" + +#: src/icehelp.cc:1350 +msgid "Alt+Right" +msgstr "" + +#: src/icehelp.cc:1353 +msgid "Previous" +msgstr "Previo" + +#: src/icehelp.cc:1354 +msgid "Next" +msgstr "Siguiente" + +#: src/icehelp.cc:1356 +msgid "Contents" +msgstr "Conteníos" + +#: src/icehelp.cc:1357 +msgid "Index" +msgstr "Índiz" + +#: src/icehelp.cc:1359 +msgid "Find..." +msgstr "" + +#: src/icehelp.cc:1359 +#, fuzzy +#| msgid "Ctrl+Q" +msgid "Ctrl+F" +msgstr "Ctrl+Q" + +#: src/icehelp.cc:1360 +msgid "Find next" +msgstr "" + +#: src/icehelp.cc:1360 +msgid "F3" +msgstr "" + +#: src/icehelp.cc:1362 +msgid "Open in Browser" +msgstr "" + +#: src/icehelp.cc:1362 +#, fuzzy +#| msgid "Ctrl+Q" +msgid "Ctrl+B" +msgstr "Ctrl+Q" + +#: src/icehelp.cc:1364 +msgid "Reload" +msgstr "" + +#: src/icehelp.cc:1364 src/icesame.cc:60 +msgid "Ctrl+R" +msgstr "Ctrl+R" + +#: src/icehelp.cc:1365 src/icesame.cc:62 src/iceview.cc:63 src/wmbutton.cc:147 +msgid "Close" +msgstr "Zarrar" + +#: src/icehelp.cc:1365 src/icesame.cc:62 src/iceview.cc:63 +msgid "Ctrl+Q" +msgstr "Ctrl+Q" + +#: src/icehelp.cc:1370 +msgid "Icewm(1)" +msgstr "" + +#: src/icehelp.cc:1370 +#, fuzzy +#| msgid "Ctrl+Q" +msgid "Ctrl+I" +msgstr "Ctrl+Q" -#: src/fdomenu.cc:77 -msgid "Development" -msgstr "Desendolcu" +#: src/icehelp.cc:1372 +msgid "Icewmbg(1)" +msgstr "" -#: src/fdomenu.cc:78 -msgid "Education" -msgstr "Educación" +#: src/icehelp.cc:1374 +msgid "Icesound(1)" +msgstr "" -#: src/fdomenu.cc:79 -msgid "Games" -msgstr "Xuegos" +#: src/icehelp.cc:1376 +msgid "FAQ" +msgstr "" -#: src/fdomenu.cc:80 -msgid "Graphics" -msgstr "Gráficos" +#: src/icehelp.cc:1378 +msgid "Manual" +msgstr "" -#: src/fdomenu.cc:81 -msgid "Multimedia" -msgstr "Multimedia" +#: src/icehelp.cc:1378 +#, fuzzy +#| msgid "Ctrl+Q" +msgid "Ctrl+M" +msgstr "Ctrl+Q" -#: src/fdomenu.cc:82 -msgid "Network" -msgstr "Rede" +#: src/icehelp.cc:1380 +msgid "Support" +msgstr "" -#: src/fdomenu.cc:83 -msgid "Office" -msgstr "Oficina" +#: src/icehelp.cc:1382 +msgid "Theme Howto" +msgstr "" -#: src/fdomenu.cc:84 -msgid "System" -msgstr "Sistema" +#: src/icehelp.cc:1382 src/iceview.cc:60 +msgid "Ctrl+T" +msgstr "Ctrl+T" -#: src/fdomenu.cc:85 -msgid "WINE" -msgstr "WINE" +#: src/icehelp.cc:1384 +msgid "Website" +msgstr "" -#: src/fdomenu.cc:86 -msgid "Editors" -msgstr "Editores" +#: src/icehelp.cc:1384 src/iceview.cc:61 +msgid "Ctrl+W" +msgstr "Ctrl+W" -#: src/fdomenu.cc:87 -msgid "Other" -msgstr "Otro" +#: src/icehelp.cc:1386 +msgid "Github" +msgstr "" -#: src/icehelp.cc:715 -msgid "Back" -msgstr "Atrás" +#: src/icehelp.cc:1390 src/yinputline.cc:19 +msgid "Ctrl+X" +msgstr "" -#: src/icehelp.cc:715 -msgid "Alt+Left" +#: src/icehelp.cc:1395 src/yinputline.cc:20 +msgid "Ctrl+V" msgstr "" -#: src/icehelp.cc:716 -msgid "Forward" -msgstr "Alantre" +#: src/icehelp.cc:2204 +#, fuzzy +#| msgid "Unsupported interface: %s." +msgid "Unsupported protocol." +msgstr "Interfaz non sofitada: %s." -#: src/icehelp.cc:716 -msgid "Alt+Right" +#: src/icehelp.cc:2283 +#, c-format +msgid "Invalid path: %s\n" +msgstr "Camín non váldu: %s\n" + +#: src/icehelp.cc:2307 +msgid "Path does not refer to a file." msgstr "" -#: src/icehelp.cc:718 -msgid "Previous" -msgstr "Previo" +#: src/icehelp.cc:2312 +msgid "Failed to open file for reading." +msgstr "" -#: src/icehelp.cc:719 -msgid "Next" -msgstr "Siguiente" +#: src/icehelp.cc:2341 +msgid "Failed to create a temporary file" +msgstr "" -#: src/icehelp.cc:721 -msgid "Contents" -msgstr "Conteníos" +#: src/icehelp.cc:2434 +#, c-format +msgid "Failed to execute system(%s) (%d)" +msgstr "" -#: src/icehelp.cc:722 -msgid "Index" -msgstr "Índiz" +#: src/icehelp.cc:2457 +#, c-format +msgid "Failed to decompress %s" +msgstr "" -#: src/icehelp.cc:724 src/icesame.cc:63 src/iceview.cc:76 src/wmframe.cc:187 -msgid "Close" -msgstr "Zarrar" +#: src/icehelp.cc:2465 +msgid "Could not locate curl or wget in PATH" +msgstr "" -#: src/icehelp.cc:724 src/icesame.cc:63 src/iceview.cc:76 -msgid "Ctrl+Q" -msgstr "Ctrl+Q" +#: src/icehelp.cc:2469 +msgid "Unsafe characters in URL" +msgstr "" -#: src/icehelp.cc:1327 +#: src/icehelp.cc:2506 #, c-format msgid "" -"Usage: %s FILENAME\n" +"Usage: %s [OPTIONS] [ FILENAME | URL ]\n" +"\n" +"IceHelp is a very simple HTML browser for the IceWM window manager.\n" +"It can display a HTML document from file, or browse a website.\n" +"It remembers visited pages in a history, which is navigable\n" +"by key bindings and a context menu (right mouse click).\n" +"It neither supports rendering of images nor JavaScript.\n" +"If no file or URL is given it will display the IceWM Manual\n" +"from %s.\n" +"\n" +"Options:\n" +" -d, --display=NAME NAME of the X server to use.\n" +" --sync Synchronize X11 commands.\n" +"\n" +" -B Display the IceWM icewmbg manpage.\n" +" -b, --bugs Display the IceWM bug reports (primitively).\n" +" -f, --faq Display the IceWM FAQ and Howto.\n" +" -g Display the IceWM Github website.\n" +" -i, --icewm Display the IceWM icewm manpage.\n" +" -m, --manual Display the IceWM Manual (default).\n" +" -s Display the IceWM icesound manpage.\n" +" -t, --theme Display the IceWM themes Howto.\n" +" -w, --website Display the IceWM website.\n" "\n" -"A very simple HTML browser displaying the document specified by FILENAME.\n" +" -V, --version Prints version information and exits.\n" +" -h, --help Prints this usage screen and exits.\n" +"\n" +"Environment variables:\n" +" DISPLAY=NAME Name of the X server to use.\n" +"\n" +"To report bugs, support requests, comments please visit:\n" +"%s\n" "\n" msgstr "" -#: src/icehelp.cc:1337 -#, c-format -msgid "Invalid path: %s\n" -msgstr "Camín non váldu: %s\n" - -#: src/icehelp.cc:1342 -msgid "Invalid path: " -msgstr "Camín non váldu: " +#: src/icehelp.cc:2596 +#, fuzzy, c-format +#| msgid "Unknown action: `%s'" +msgid "Ignoring option '%s'" +msgstr "Aición desconocida: «%s»" -#: src/icelist.cc:84 +#: src/icelist.cc:60 msgid "List View" msgstr "" -#: src/icelist.cc:85 +#: src/icelist.cc:61 msgid "Icon View" msgstr "" -#: src/icelist.cc:89 +#: src/icelist.cc:65 msgid "Open" msgstr "Abrir" -#: src/icesame.cc:58 +#: src/icesame.cc:57 msgid "Undo" msgstr "Desfacer" -#: src/icesame.cc:58 +#: src/icesame.cc:57 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: src/icesame.cc:60 +#: src/icesame.cc:59 msgid "New" msgstr "Nuevu" -#: src/icesame.cc:60 +#: src/icesame.cc:59 msgid "Ctrl+N" msgstr "Ctrl+N" -#: src/icesame.cc:61 +#: src/icesame.cc:60 msgid "Restart" msgstr "Reaniciar" -#: src/icesame.cc:61 -msgid "Ctrl+R" -msgstr "Ctrl+R" - -#: src/icesame.cc:66 +#: src/icesame.cc:65 msgid "Same Game" msgstr "" -#: src/icesh.cc:187 -#, c-format -msgid "Action `%s' requires at least %d arguments." -msgstr "L'aición «%s» rique polo menos %d argumentos." - -#: src/icesh.cc:194 -#, c-format -msgid "Invalid expression: `%s'" -msgstr "Espresión non válida: «%s»" +#: src/icesh.cc:76 +msgid "For help please consult the man page icesh(1).\n" +msgstr "" -#: src/icesh.cc:316 +#: src/icesh.cc:1667 #, c-format msgid "Named symbols of the domain `%s' (numeric range: %ld-%ld):\n" msgstr "" -#: src/icesh.cc:429 +#: src/icesh.cc:1736 +#, fuzzy, c-format +#| msgid "Workspace out of range: %d" +msgid "Workspace out of range: %ld" +msgstr "Estaya de trabayu fuera de rangu: %d" + +#: src/icesh.cc:1757 #, c-format msgid "Invalid workspace name: `%s'" msgstr "" -#: src/icesh.cc:435 -#, c-format -msgid "Workspace out of range: %d" -msgstr "Estaya de trabayu fuera de rangu: %d" +#: src/icesh.cc:2204 +msgid "GNOME window layer" +msgstr "" -#: src/icesh.cc:569 -#, c-format -msgid "" -"Usage: %s [OPTIONS] ACTIONS\n" -"\n" -"Options:\n" -" -display DISPLAY Connects to the X server specified by " -"DISPLAY.\n" -" Default: $DISPLAY or :0.0 when not set.\n" -" -window WINDOW_ID Specifies the window to manipulate. Special\n" -" identifiers are `root' for the root window " -"and\n" -" `focus' for the currently focused window.\n" -" -class WM_CLASS Window management class of the window(s) to\n" -" manipulate. If WM_CLASS contains a period, " -"only\n" -" windows with exactly the same WM_CLASS " -"property\n" -" are matched. If there is no period, windows " -"of\n" -" the same class and windows of the same " -"instance\n" -" (aka. `-name') are selected.\n" -"\n" -"Actions:\n" -" setIconTitle TITLE Set the icon title.\n" -" setWindowTitle TITLE Set the window title.\n" -" setGeometry geometry Set the window geometry\n" -" setState MASK STATE Set the GNOME window state to STATE.\n" -" Only the bits selected by MASK are affected.\n" -" STATE and MASK are expressions of the domain\n" -" `GNOME window state'.\n" -" toggleState STATE Toggle the GNOME window state bits specified " -"by\n" -" the STATE expression.\n" -" setHints HINTS Set the GNOME window hints to HINTS.\n" -" setLayer LAYER Moves the window to another GNOME window " -"layer.\n" -" setWorkspace WORKSPACE Moves the window to another workspace. Select\n" -" the root window to change the current " -"workspace.\n" -" listWorkspaces Lists the names of all workspaces.\n" -" setTrayOption TRAYOPTION Set the IceWM tray option hint.\n" -"\n" -"Expressions:\n" -" Expressions are list of symbols of one domain concatenated by `+' or `|':\n" -"\n" -" EXPRESSION ::= SYMBOL | EXPRESSION ( `+' | `|' ) SYMBOL\n" -"\n" +#: src/icesh.cc:2205 +msgid "IceWM tray option" msgstr "" -#: src/icesh.cc:608 -msgid "GNOME window state" +#: src/icesh.cc:2206 +msgid "Gravity symbols" msgstr "" -#: src/icesh.cc:609 -msgid "GNOME window hint" +#: src/icesh.cc:2207 +msgid "Motif functions" msgstr "" -#: src/icesh.cc:610 -msgid "GNOME window layer" +#: src/icesh.cc:2208 +msgid "Motif decorations" msgstr "" -#: src/icesh.cc:611 -msgid "IceWM tray option" +#: src/icesh.cc:2209 +msgid "EWMH window state" msgstr "" -#: src/icesh.cc:616 -msgid "Usage error: " -msgstr "Fallu d'usu: " +#: src/icesh.cc:2291 src/icesh.cc:2364 +#, c-format +msgid "workspace #%d: `%s'\n" +msgstr "" + +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 +#, fuzzy, c-format +#| msgid "Invalid argument: `%s'." +msgid "Invalid state: `%s'." +msgstr "Argumentu non válidu: «%s»." + +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 +#, fuzzy, c-format +#| msgid "Invalid argument: `%s'." +msgid "Invalid argument: `%s'" +msgstr "Argumentu non válidu: «%s»." -#: src/icesh.cc:687 +#: src/icesh.cc:3642 #, c-format -msgid "Invalid argument: `%s'." +msgid "Cannot get geometry of window 0x%lx" +msgstr "" + +#: src/icesh.cc:3667 +#, fuzzy, c-format +#| msgid "Invalid argument: `%s'." +msgid "Invalid Xinerama: `%s'." msgstr "Argumentu non válidu: «%s»." -#: src/icesh.cc:696 -msgid "No actions specified." -msgstr "Nun s'especificaron aiciones." +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/wmsave.cc:298 src/wmsave.cc:301 +#, c-format +msgid "Unable to write to %s" +msgstr "" + +#: src/icesh.cc:4028 +#, c-format +msgid "Action `%s' requires at least %d arguments." +msgstr "L'aición «%s» rique polo menos %d argumentos." + +#: src/icesh.cc:4037 +#, c-format +msgid "Invalid expression: `%s'" +msgstr "Espresión non válida: «%s»" -#: src/icesh.cc:703 src/icesound.cc:1050 src/icewmhint.cc:76 src/yxapp.cc:975 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" -#: src/icesh.cc:743 +#: src/icesh.cc:4164 #, c-format -msgid "Invalid window identifier: `%s'" +msgid "Unexpected: `%s'." +msgstr "" + +#: src/icesh.cc:4196 +msgid "No windows found." msgstr "" -#: src/icesh.cc:896 +#: src/icesh.cc:4212 +msgid "No actions specified." +msgstr "Nun s'especificaron aiciones." + +#: src/icesh.cc:4357 #, c-format -msgid "workspace #%d: `%s'\n" +msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:914 +#: src/icesh.cc:4373 +#, fuzzy, c-format +#| msgid "Invalid path: %s\n" +msgid "Invalid PID: `%s'" +msgstr "Camín non váldu: %s\n" + +#: src/icesh.cc:4406 +#, fuzzy, c-format +#| msgid "Invalid argument: `%s'." +msgid "Invalid layer: `%s'." +msgstr "Argumentu non válidu: «%s»." + +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Aición desconocida: «%s»" -#: src/iceskt.cc:36 +#: src/iceskt.cc:41 #, c-format msgid "Socket error: %d" msgstr "" -#: src/icesound.cc:256 src/icesound.cc:424 src/icesound.cc:792 +#: src/icesm.cc:69 +msgid "" +" -c, --config=FILE Let IceWM load preferences from FILE.\n" +" -t, --theme=FILE Let IceWM load the theme from FILE.\n" +"\n" +" -d, --display=NAME Use NAME to connect to the X server.\n" +" -a, --alpha Use a 32-bit visual for translucency.\n" +" --sync Synchronize communication with X11 server.\n" +"\n" +" -i, --icewm=FILE Use FILE as the IceWM window manager.\n" +" -o, --output=FILE Redirect all output to FILE.\n" +"\n" +" -b, --nobg Do not start icewmbg.\n" +" -n, --notray Do not start icewmtray.\n" +" -s, --sound Also start icesound.\n" +msgstr "" + +#: src/icesm.cc:85 +msgid "" +"\n" +"Debugging options:\n" +" -v, --valgrind Let \"/usr/bin/valgrind\" run icewm.\n" +" Thoroughly examines the execution of icewm.\n" +" -g, --catchsegv Let \"/usr/bin/catchsegv\" run icewm.\n" +" Gives a backtrace if icewm segfaults.\n" +msgstr "" + +#: src/icesm.cc:188 +#, fuzzy, c-format +#| msgid "Unknown action: `%s'" +msgid "Unknown option '%s'" +msgstr "Aición desconocida: «%s»" + +#: src/icesm.cc:462 src/icesm.cc:622 +#, fuzzy, c-format +#| msgid "Restart" +msgid "restart %s." +msgstr "Reaniciar" + +#: src/icesm.cc:513 +msgid "" +" IceWM crashed for the second time in 10 seconds. \n" +" Do you wish to:\n" +"\n" +"\t1: Restart IceWM?\n" +"\t2: Abort this session?\n" +"\t3: Run a terminal?\n" +msgstr "" + +#: src/icesm.cc:519 +msgid "IceWM crash response" +msgstr "" + +#: src/icesound.cc:211 src/icesound.cc:319 src/icesound.cc:479 #, c-format msgid "Playing sample #%d (%s)" msgstr "" -#: src/icesound.cc:468 +#: src/icesound.cc:329 #, c-format -msgid "No such device: %s" +msgid "%s: Invalid number of channels" msgstr "" -#: src/icesound.cc:561 -#, c-format -msgid "Can't connect to ESound daemon: %s" -msgstr "Nun pue coneutase col degorriu d'ESound: %s" +#: src/icesound.cc:335 src/icesound.cc:340 +msgid "Could not set OSS channels" +msgstr "" -#: src/icesound.cc:562 src/icesound.cc:739 src/icesound.cc:780 -#: src/icewmhint.cc:78 src/yxapp.cc:976 -msgid "" +#: src/icesound.cc:345 src/icesound.cc:373 +msgid "Could not sync OSS" msgstr "" -#: src/icesound.cc:582 -#, c-format -msgid "Error <%d> while uploading `%s:%s'" +#: src/icesound.cc:357 +msgid "OSS write failed" msgstr "" -#: src/icesound.cc:588 +#: src/icesound.cc:361 #, c-format -msgid "Sample <%d> uploaded as `%s:%s'" +msgid "OSS incomplete write (%d/%d)" msgstr "" -#: src/icesound.cc:647 -#, c-format -msgid "Playing sample #%d" +#: src/icesound.cc:368 +msgid "Could not post OSS" msgstr "" -#: src/icesound.cc:738 src/icesound.cc:779 -#, c-format -msgid "Can't connect to YIFF server: %s" -msgstr "Nun pue coneutase al sirvidor YIFF: %s" +#: src/icesound.cc:397 +#, fuzzy, c-format +#| msgid "Could not find image %s" +msgid "Could not open OSS device %s" +msgstr "Nun pudo alcontrase la imaxe %s" -#: src/icesound.cc:744 -#, c-format -msgid "Can't change to audio mode `%s'." -msgstr "Nun pue camudase'l mou d'audiu «%s»." +#: src/icesound.cc:402 +msgid "Could not set OSS stereo" +msgstr "" + +#: src/icesound.cc:407 +msgid "Could not reset OSS DSP" +msgstr "" + +#: src/icesound.cc:412 +msgid "Could not set OSS format" +msgstr "" -#: src/icesound.cc:886 +#: src/icesound.cc:499 #, c-format -msgid "" -"Audio mode switch detected, initial audio mode `%s' no longer in effect." +msgid "ao_open_live failed with %d" msgstr "" -#: src/icesound.cc:893 -msgid "Audio mode switch detected, automatic audio mode changing disabled." +#: src/icesound.cc:510 +msgid "ao_play failed" +msgstr "" + +#: src/icesound.cc:680 +#, c-format +msgid "Unrecognized option: %s\n" msgstr "" -#: src/icesound.cc:939 src/icesound.cc:952 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format -msgid "Overriding previous audio mode `%s'." +msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:978 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" "\n" "Plays audio files on GUI events raised by IceWM.\n" +"The currently configured sound interfaces are: %s.\n" +"Icesound will choose the first of these which is usable.\n" "\n" "Options:\n" "\n" -"-d, --display=DISPLAY Display used by IceWM (default: $DISPLAY).\n" -"-s, --sample-dir=DIR Specifies the directory which contains\n" -" the sound files (ie ~/.icewm/sounds).\n" -"-i, --interface=TARGET Specifies the sound output target\n" -" interface, one of OSS, YIFF, ESD, ALSA\n" -"-D, --device=DEVICE (ALSA & OSS only) specifies the device to use\n" -" (OSS default: /dev/dsp; ALSA: default).\n" -"-S, --server=ADDR:PORT (ESD and YIFF) specifies server address and\n" -" port number (default localhost:16001 for ESD\n" -" and localhost:9433 for YIFF).\n" -"-m, --audio-mode[=MODE] (YIFF only) specifies the Audio mode (leave\n" -" blank to get a list).\n" -"--audio-mode-auto (YIFF only) change Audio mode on the fly to\n" -" best match sample's Audio (can cause\n" -" problems with other Y clients, overrides\n" -" --audio-mode).\n" +" -d, --display=DISPLAY X11 display used by IceWM (default: $DISPLAY).\n" +"\n" +" -s, --sample-dir=DIR Specifies a directory with sound files.\n" +" Default is $HOME/.config/icewm/sounds.\n" +"\n" +" -i, --interface=LIST Specifies audio output interfaces. One or more of:\n" +" %s separated by commas.\n" +"\n" +" -D, --device=DEVICE Backwards compatibility only: the default device. \n" +" Please prefer one of the -A/-O/-S options.\n" +"\n" +" -O, --oss=DEVICE Specifies the OSS device (default: \"%s\").\n" +"\n" +" -A, --alsa=DEVICE Specifies the ALSA device (default: \"%s\").\n" +"\n" +" -z, --snooze=millisecs Specifies the snooze interval between sound events\n" +" in milliseconds. Default is 500 milliseconds.\n" +"\n" +" -p, --play=sound Plays the given sound (name or number) and exits.\n" "\n" -"-v, --verbose Be verbose (prints out each sound event to\n" -" stdout).\n" -"-V, --version Prints version information and exits.\n" -"-h, --help Prints (this) help screen and exits.\n" +" -l, --list-files Lists the available sound file paths and exits.\n" +"\n" +" --list-sounds Lists the supported sound filenames and exits.\n" +"\n" +" --list-interfaces Lists the supported audio interfaces and exits.\n" +"\n" +" -v, --verbose Be verbose and print out each sound event.\n" +"\n" +" -V, --version Prints version information and exits.\n" +"\n" +" -h, --help Prints this help screen and exits.\n" "\n" "Return values:\n" "\n" -"0 Success.\n" -"1 General error.\n" -"2 Command line error.\n" -"3 Subsystems error (ie cannot connect to server).\n" +" 0 Success.\n" +" 1 General error.\n" +" 2 Command line error.\n" +" 3 Subsystems error (ie cannot connect to server).\n" "\n" msgstr "" -#: src/icesound.cc:1175 -msgid "Multiple sound interfaces given." +#: src/icesound.cc:785 +#, c-format +msgid "No audio for %s" +msgstr "" + +#: src/icesound.cc:862 +msgid "Could not get GUI event property" +msgstr "" + +#: src/icesound.cc:866 +#, c-format +msgid "Received invalid GUI event %d" +msgstr "" + +#: src/icesound.cc:870 +#, c-format +msgid "Received GUI event %s" +msgstr "" + +#: src/icesound.cc:884 +#, c-format +msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:1187 src/icesound.cc:1199 src/icesound.cc:1212 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:1216 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Interfaz non sofitada: %s." -#: src/icesound.cc:1233 +#: src/icesound.cc:930 +#, c-format +msgid "Using %s audio." +msgstr "" + +#: src/icesound.cc:934 #, c-format -msgid "Received signal %d: Terminating..." +msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:1242 +#: src/icesound.cc:946 #, c-format -msgid "Received signal %d: Reloading samples..." +msgid "Received signal %s: Terminating..." +msgstr "" + +#: src/icetray.cc:220 +msgid "" +" -n, --notify Notify parent process by sending signal USR1.\n" +" --display=NAME Use NAME to connect to the X server.\n" +" --sync Synchronize communication with X11 server.\n" +"\n" +" -c, --config=FILE Load preferences from FILE.\n" +" -t, --theme=FILE Load the theme from FILE.\n" msgstr "" -#: src/iceview.cc:72 +#: src/iceview.cc:59 msgid "Hex View" msgstr "" -#: src/iceview.cc:72 +#: src/iceview.cc:59 msgid "Ctrl+H" msgstr "Ctrl+H" -#: src/iceview.cc:73 +#: src/iceview.cc:60 msgid "Expand Tabs" msgstr "" -#: src/iceview.cc:73 -msgid "Ctrl+T" -msgstr "Ctrl+T" - -#: src/iceview.cc:74 +#: src/iceview.cc:61 msgid "Wrap Lines" msgstr "" -#: src/iceview.cc:74 -msgid "Ctrl+W" -msgstr "Ctrl+W" +#: src/icewmbg.cc:34 src/icewmbg.cc:351 +#, fuzzy, c-format +#| msgid "Could not find image %s" +msgid "Failed to load image '%s'." +msgstr "Nun pudo alcontrase la imaxe %s" -#: src/icewmbg.cc:410 +#: src/icewmbg.cc:901 msgid "" -"Usage: icewmbg [ -r | -q ]\n" -" -r Restart icewmbg\n" -" -q Quit icewmbg\n" -"Loads desktop background according to preferences file\n" +"Usage: icewmbg [OPTIONS]\n" +"Where multiple values can be given they are separated by commas.\n" +"When image is a directory then all images from that directory are used.\n" +"\n" +"Options:\n" +" -p, --replace Replace an existing icewmbg.\n" +" -q, --quit Tell the running icewmbg to quit.\n" +" -r, --restart Tell the running icewmbg to restart itself.\n" +" -u, --shuffle Shuffle/reshuffle the list of background images.\n" +"\n" +" -c, --config=FILE Load preferences from FILE.\n" +" -t, --theme=NAME Load the theme with name NAME.\n" +"\n" +" -i, --image=FILE(S) Load background image(s) from FILE(S).\n" +" -k, --color=NAME(S) Use background color(s) from NAME(S).\n" +"\n" +" -s, --semis=FILE(S) Load transparency image(s) from FILE(S).\n" +" -x, --trans=NAME(S) Use transparency color(s) from NAME(S).\n" +"\n" +" -e, --center=0/1 Disable/Enable centering background.\n" +" -a, --scaled=0/1 Disable/Enable scaling background.\n" +" -m, --multi=0/1 Disable/Enable multihead background.\n" +" -y, --cycle=SECONDS Cycle backgrounds every SECONDS.\n" +"\n" +" --display=NAME Use NAME to connect to the X server.\n" +" --sync Synchronize communication with X11 server.\n" +"\n" +" -h, --help Print this usage screen and exit.\n" +" -V, --version Prints version information and exits.\n" +"\n" +"Loads desktop background according to preferences file:\n" " DesktopBackgroundCenter - Display desktop background centered\n" " DesktopBackgroundScaled - Display desktop background scaled\n" +" DesktopBackgroundColor - Desktop background color(s)\n" +" DesktopBackgroundImage - Desktop background image(s)\n" +" ShuffleBackgroundImages - Shuffle the list of background images\n" " SupportSemitransparency - Support for semitransparent terminals\n" -" DesktopBackgroundColor - Desktop background color\n" -" DesktopBackgroundImage - Desktop background image\n" -" DesktopTransparencyColor - Color to announce for semi-transparent windows\n" -" DesktopTransparencyImage - Image to announce for semi-transparent windows\n" +" DesktopTransparencyColor - Semitransparency background color(s)\n" +" DesktopTransparencyImage - Semitransparency background image(s)\n" +" DesktopBackgroundMultihead - One background over all monitors\n" +" CycleBackgroundsPeriod - Seconds between cycling over backgrounds\n" "\n" " center:0 scaled:0 = tiled\n" -" center:1 scaled:1 = keep aspect ratio\n" -msgstr "" - -#: src/icewmbg.cc:428 -#, c-format -msgid "" -"%s: unrecognized option `%s'\n" -"Try `%s --help' for more information.\n" +" center:1 scaled:0 = centered\n" +" center:1 scaled:1 = fill one dimension and keep aspect ratio\n" +" center:0 scaled:1 = fill both dimensions and keep aspect ratio\n" +"\n" msgstr "" -#: src/icewmbg.cc:557 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, c-format -msgid "Loading image %s failed" +msgid "Unrecognized option '%s'." msgstr "" -#: src/icewmbg.cc:571 src/ycursor.cc:102 src/yimage.cc:81 src/ypixbuf.cc:879 -#, c-format -msgid "Loading of pixmap \"%s\" failed: %s" +#: src/icewmbg.cc:1173 +msgid "Cannot start, because another icewmbg is still running." msgstr "" -#: src/icewmhint.cc:49 -msgid "Usage: icewmhint [class.instance] option arg\n" +#: src/icewmhint.cc:20 +msgid "Usage: icewmhint class.instance option arg\n" msgstr "" -#: src/icewmhint.cc:65 +#: src/icewmhint.cc:57 #, c-format msgid "Out of memory (len=%d)." msgstr "" -#: src/misc.cc:330 +#: src/misc.cc:70 src/misc.cc:82 msgid "Warning: " msgstr "" -#: src/movesize.cc:903 +#: src/misc.cc:392 #, c-format -msgid "Unknown direction in move/resize request: %d" +msgid "" +"Usage: %s [OPTIONS]\n" +"Options:\n" +"%s\n" +" -C, --copying Prints license information and exits.\n" +" -V, --version Prints version information and exits.\n" +" -h, --help Prints this usage screen and exits.\n" +"\n" msgstr "" -#: src/themes.cc:100 -msgid "Default" +#: src/movesize.cc:905 +#, c-format +msgid "Unknown direction in move/resize request: %d" msgstr "" -#: src/wmabout.cc:29 src/wmabout.cc:31 +#: src/wmabout.cc:29 src/wmabout.cc:30 msgid "(C)" msgstr "" -#: src/wmabout.cc:37 +#: src/wmabout.cc:40 msgid "Theme:" msgstr "" -#: src/wmabout.cc:38 +#: src/wmabout.cc:41 msgid "Theme Description:" msgstr "" -#: src/wmabout.cc:39 +#: src/wmabout.cc:42 msgid "Theme Author:" msgstr "" -#: src/wmabout.cc:43 +#: src/wmabout.cc:51 msgid "CodeSet:" msgstr "" -#: src/wmabout.cc:44 +#: src/wmabout.cc:52 msgid "Language:" msgstr "" -#: src/wmabout.cc:69 -msgid "icewm - About" +#: src/wmabout.cc:56 +msgid "DoubleBuffer" +msgstr "" + +#: src/wmabout.cc:57 +msgid "AlphaBlending" +msgstr "" + +#: src/wmabout.cc:58 +msgid "Renderer:" msgstr "" -#: src/wmapp.cc:444 -msgid "Unable to get current font path." +#: src/wmabout.cc:66 +msgid "icewm - About" msgstr "" -#: src/wmapp.cc:471 -msgid "Unexpected format of ICEWM_FONT_PATH property" +#: src/wmapp.cc:90 +msgid "A window manager is already running, use --replace to replace it" msgstr "" -#: src/wmapp.cc:528 +#: src/wmapp.cc:106 #, c-format -msgid "Multiple references for gradient \"%s\"" +msgid "Failed to become the owner of the %s selection" +msgstr "" + +#: src/wmapp.cc:110 +msgid "Waiting to replace the old window manager" msgstr "" -#: src/wmapp.cc:603 -#, c-format -msgid "Unknown gradient name: %s" +#: src/wmapp.cc:115 +msgid "done." msgstr "" -#: src/wmapp.cc:866 +#: src/wmapp.cc:513 msgid "_Logout" msgstr "" -#: src/wmapp.cc:867 +#: src/wmapp.cc:514 msgid "_Cancel logout" msgstr "" -#: src/wmapp.cc:879 +#: src/wmapp.cc:520 msgid "Lock _Workstation" msgstr "" -#: src/wmapp.cc:881 src/wmdialog.cc:111 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "" -#: src/wmapp.cc:883 src/wmdialog.cc:118 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "" -#: src/wmapp.cc:887 +#: src/wmapp.cc:526 src/wmdialog.cc:86 +msgid "_Sleep mode" +msgstr "" + +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "" -#: src/wmapp.cc:890 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "" -#: src/wmapp.cc:906 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "" -#: src/wmapp.cc:907 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "" -#: src/wmapp.cc:908 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "" -#: src/wmapp.cc:909 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "" -#: src/wmapp.cc:910 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "" -#: src/wmapp.cc:911 +#: src/wmapp.cc:549 msgid "_Below" msgstr "" -#: src/wmapp.cc:912 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "" -#: src/wmapp.cc:924 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 +msgid "Move to New _Window" +msgstr "" + +#: src/wmapp.cc:604 +msgid "Left Half" +msgstr "" + +#: src/wmapp.cc:605 +msgid "Right Half" +msgstr "" + +#: src/wmapp.cc:606 +msgid "Top Half" +msgstr "" + +#: src/wmapp.cc:607 +msgid "Bottom Half" +msgstr "" + +#: src/wmapp.cc:609 +msgid "Top Left" +msgstr "" + +#: src/wmapp.cc:610 +msgid "Top Right" +msgstr "" + +#: src/wmapp.cc:611 +msgid "Bottom Left" +msgstr "" + +#: src/wmapp.cc:612 +msgid "Bottom Right" +msgstr "" + +#: src/wmapp.cc:613 +msgid "Center" +msgstr "" + +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmwinlist.cc:501 +msgid "T_ile Horizontally" +msgstr "" + +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmwinlist.cc:500 +msgid "Tile _Vertically" +msgstr "" + +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "" -#: src/wmapp.cc:926 +#: src/wmapp.cc:631 msgid "_Move" msgstr "" -#: src/wmapp.cc:928 +#: src/wmapp.cc:633 msgid "_Size" msgstr "" -#: src/wmapp.cc:930 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "" -#: src/wmapp.cc:932 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "" -#: src/wmapp.cc:934 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 +msgid "Maximize_Vert" +msgstr "" + +#: src/wmapp.cc:639 src/wmwinlist.cc:452 +msgid "MaximizeHori_z" +msgstr "" + +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:938 src/wmwinlist.cc:307 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "" -#: src/wmapp.cc:941 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "" -#: src/wmapp.cc:948 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "" -#: src/wmapp.cc:950 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "" -#: src/wmapp.cc:952 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "" -#: src/wmapp.cc:956 src/wmwinlist.cc:310 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 +msgid "Tile" +msgstr "" + +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "" -#: src/wmapp.cc:957 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "" -#: src/wmapp.cc:968 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:974 src/wmwinlist.cc:295 src/wmwinlist.cc:321 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 +msgid "R_ename title" +msgstr "" + +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "" -#: src/wmapp.cc:976 src/wmwinlist.cc:297 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "" -#: src/wmapp.cc:980 src/wmdialog.cc:132 src/wmwinmenu.cc:137 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "" -#: src/wmapp.cc:996 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "" -#: src/wmapp.cc:1062 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "" -#: src/wmapp.cc:1636 +#: src/wmapp.cc:974 +msgid "Confirm Restart as Terminal" +msgstr "" + +#: src/wmapp.cc:975 +msgid "" +"Unmanage all applications and restart\n" +"as a terminal. Proceed?" +msgstr "" + +#: src/wmapp.cc:1262 src/yxapp.cc:1047 +msgid "" +msgstr "" + +#: src/wmapp.cc:1592 +msgid "" +" --client-id=ID Client id to use when contacting session manager.\n" +msgstr "" + +#: src/wmapp.cc:1598 +msgid "" +"\n" +" --debug Print generic debug messages.\n" +" --debug-z Print debug messages regarding window stacking.\n" +msgstr "" + +#: src/wmapp.cc:1606 +msgid "" +"\n" +" -a, --alpha Use a 32-bit visual for translucency.\n" +" -c, --config=FILE Load preferences from FILE.\n" +" -t, --theme=FILE Load theme from FILE.\n" +" -s, --splash=IMAGE Briefly show IMAGE on startup.\n" +" -p, --postpreferences Print preferences after all processing.\n" +" --rewrite-preferences Update an existing preferences file.\n" +" --trace=conf,icon Trace paths used to load configuration.\n" +msgstr "" + +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" "Starts the IceWM window manager.\n" "\n" "Options:\n" -" --display=NAME NAME of the X server to use.\n" +" -d, --display=NAME NAME of the X server to use.\n" "%s --sync Synchronize X11 commands.\n" -"\n" -" -c, --config=FILE Load preferences from FILE.\n" -" -t, --theme=FILE Load theme from FILE.\n" -" -n, --no-configure Ignore preferences file.\n" -"\n" -" -v, --version Prints version information and exits.\n" +"%s\n" +" -V, --version Prints version information and exits.\n" " -h, --help Prints this usage screen and exits.\n" -"%s --replace Replace an existing window manager.\n" -" --restart Don't use this: It's an internal flag.\n" +"%s\n" +" --replace Replace an existing window manager.\n" +" -r, --restart Tell the running icewm to restart itself.\n" +"\n" +" --configured Print the compile time configuration.\n" +" --directories Print the configuration directories.\n" +" -l, --list-themes Print a list of all available themes.\n" "\n" "Environment variables:\n" -" ICEWM_PRIVCFG=PATH Directory to use for user private configuration " -"files,\n" -" \"$HOME/.icewm/\" by default.\n" -" DISPLAY=NAME Name of the X server to use, depends on Xlib by " -"default.\n" -" MAIL=URL Location of your mailbox. If the schema is omitted\n" -" the local \"file\" schema is assumed.\n" +" ICEWM_PRIVCFG=PATH Directory for user configuration files,\n" +" \"$XDG_CONFIG_HOME/icewm\" if exists or\n" +" \"$HOME/.icewm\" by default.\n" +" DISPLAY=NAME Name of the X server to use.\n" +" MAIL=URL Location of your mailbox.\n" +"\n" +"To report bugs, support requests, comments please visit:\n" +"%s\n" "\n" -"Visit https://ice-wm.org/ for report bugs, support requests, comments...\n" msgstr "" -#: src/wmapp.cc:1747 +#: src/wmapp.cc:1689 +#, c-format +msgid "%s configuration directories:\n" +msgstr "" + +#: src/wmapp.cc:1774 +#, c-format +msgid "%s configured options:%s\n" +msgstr "" + +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1748 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" msgstr "" -#: src/wmconfig.cc:116 -msgid "Bad Look name" +#: src/wmbutton.cc:124 +msgid "Raise/Lower" msgstr "" -#: src/wmdialog.cc:83 -msgid "Loc_k Workstation" +#: src/wmbutton.cc:127 +msgid "Hide" msgstr "" -#: src/wmdialog.cc:90 src/wmprog.cc:948 src/wmprog.cc:950 src/wmtaskbar.cc:434 -#: src/wmtaskbar.cc:436 -msgid "_Logout..." +#: src/wmbutton.cc:131 +msgid "Restore" +msgstr "" + +#: src/wmbutton.cc:133 +msgid "Maximize" +msgstr "" + +#: src/wmbutton.cc:137 +msgid "Minimize" +msgstr "" + +#: src/wmbutton.cc:141 +msgid "Rolldown" +msgstr "" + +#: src/wmbutton.cc:143 +msgid "Rollup" +msgstr "" + +#: src/wmclient.cc:470 +#, c-format +msgid "" +"Client %s with PID %ld fails to respond.\n" +"Do you wish to terminate this client?\n" +msgstr "" + +#: src/wmconfig.cc:35 src/wmconfig.cc:40 src/wmconfig.cc:46 +#, c-format +msgid "Failed to load theme %s" +msgstr "" + +#: src/wmconfig.cc:113 +#, fuzzy, c-format +#| msgid "Unknown action: `%s'" +msgid "Unknown value '%s' for option '%s'." +msgstr "Aición desconocida: «%s»" + +#: src/wmconfig.cc:121 +#, c-format +msgid "Unable to create directory %s" +msgstr "" + +#: src/wmconfig.cc:184 src/wmsave.cc:306 +#, c-format +msgid "Unable to rename %s to %s" +msgstr "" + +#: src/wmdialog.cc:85 +msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:97 src/ymsgbox.cc:46 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" -#: src/wmdialog.cc:104 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmtaskbar.cc:245 +msgid "_Logout..." +msgstr "" + +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" -#: src/wmdialog.cc:125 src/wmprog.cc:886 src/wmtaskbar.cc:426 -#: src/wmtaskbar.cc:429 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmframe.cc:165 src/wmframe.cc:3437 -msgid "Maximize" +#: src/wmdialog.cc:95 +msgid "Reload win_options" msgstr "" -#: src/wmframe.cc:178 -msgid "Minimize" +#: src/wmdialog.cc:96 +msgid "Reload ke_ys" msgstr "" -#: src/wmframe.cc:199 -msgid "Hide" +#: src/wmframe.cc:1375 +msgid "Rename" msgstr "" -#: src/wmframe.cc:209 src/wmframe.cc:3470 -msgid "Rollup" +#: src/wmframe.cc:1376 +msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:218 -msgid "Raise/Lower" +#: src/wmframe.cc:1857 +msgid "" +"WARNING! All unsaved changes will be lost when\n" +"this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1727 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" -#: src/wmframe.cc:1731 -msgid "" -"WARNING! All unsaved changes will be lost when\n" -"this client is killed. Do you wish to proceed?" +#: src/wmmenu.cc:37 +msgid "Missing command argument" msgstr "" -#: src/wmframe.cc:3434 -msgid "Restore" +#: src/wmmenu.cc:55 +#, c-format +msgid "Bad argument %d to command '%s'" msgstr "" -#: src/wmframe.cc:3468 -msgid "Rolldown" +#: src/wmmenu.cc:110 +#, c-format +msgid "Error at keyword '%s' for %s" msgstr "" -#: src/wmoption.cc:240 +#: src/wmmenu.cc:156 #, c-format -msgid "Error in window option: %s" +msgid "Error at %s '%s'" msgstr "" -#: src/wmoption.cc:257 +#: src/wmmenu.cc:222 #, c-format -msgid "Unknown window option: %s" +msgid "Unexepected menu keyword: '%s'" msgstr "" -#: src/wmoption.cc:340 -msgid "Syntax error in window options" +#: src/wmmenu.cc:276 +#, c-format +msgid "Error at menuprog '%s'" msgstr "" -#: src/wmoption.cc:387 -msgid "Out of memory for window options" +#: src/wmmenu.cc:320 +#, c-format +msgid "Error at menuprogreload: '%s'" msgstr "" -#: src/wmprog.cc:192 -msgid "Missing command argument" +#: src/wmmenu.cc:347 +msgid "Missing filename argument to include statement" msgstr "" -#: src/wmprog.cc:210 +#: src/wmmenu.cc:365 #, c-format -msgid "Bad argument %d" +msgid "Error at includeprog '%s'" msgstr "" -#: src/wmprog.cc:296 src/wmprog.cc:400 src/wmprog.cc:442 +#: src/wmmenu.cc:408 +#, fuzzy, c-format +#| msgid "Unknown action: `%s'" +msgid "Unknown keyword '%s'" +msgstr "Aición desconocida: «%s»" + +#: src/wmmenu.cc:419 #, c-format -msgid "Error at prog %s" +msgid "" +"Unknown keyword for a non-container: '%s'.\n" +"Expected either 'key' or 'runonce' here.\n" msgstr "" -#: src/wmprog.cc:351 +#: src/wmmenu.cc:498 #, c-format -msgid "Unexepected keyword: %s" +msgid "'%s' timed out!" msgstr "" -#: src/wmprog.cc:490 +#: src/wmmenu.cc:512 #, c-format -msgid "Error at key %s" +msgid "'%s' produces no output" msgstr "" -#: src/wmprog.cc:850 -msgid "Programs" +#: src/wmmgr.cc:3636 +msgid "Missing program setxkbmap" msgstr "" -#: src/wmprog.cc:855 -msgid "_Run..." +#: src/wmmgr.cc:3637 +msgid "For keyboard switching, please install setxkbmap." msgstr "" -#: src/wmprog.cc:862 src/wmtaskbar.cc:414 -msgid "_Windows" +#: src/wmoption.cc:284 +#, c-format +msgid "Unknown window option: %s" msgstr "" -#: src/wmprog.cc:899 -msgid "_Help" +#: src/wmoption.cc:356 +#, c-format +msgid "Syntax error in window options on line %d of %s" +msgstr "" + +#: src/wmpref.cc:101 +msgid "Save Modifications" msgstr "" -#: src/wmprog.cc:917 +#: src/wmpref.cc:179 +#, c-format +msgid "Enter a new value for %s: " +msgstr "" + +#: src/wmprog.cc:341 msgid "_Click to focus" msgstr "" -#: src/wmprog.cc:922 +#: src/wmprog.cc:342 +msgid "_Explicit focus" +msgstr "" + +#: src/wmprog.cc:343 msgid "_Sloppy mouse focus" msgstr "" -#: src/wmprog.cc:927 +#: src/wmprog.cc:344 +msgid "S_trict mouse focus" +msgstr "" + +#: src/wmprog.cc:345 +msgid "_Quiet sloppy focus" +msgstr "" + +#: src/wmprog.cc:346 msgid "Custo_m" msgstr "" -#: src/wmprog.cc:933 -msgid "_Focus" +#: src/wmprog.cc:368 +msgid "_Manual" msgstr "" -#: src/wmprog.cc:940 -msgid "_Themes" +#: src/wmprog.cc:369 +msgid "_Icewm(1)" msgstr "" -#: src/wmprog.cc:942 -msgid "Se_ttings" +#: src/wmprog.cc:370 +msgid "Icewm_Bg(1)" msgstr "" -#: src/wmsession.cc:239 src/wmsession.cc:255 src/wmsession.cc:265 -#, c-format -msgid "Session Manager: Unknown line %s" +#: src/wmprog.cc:371 +msgid "Ice_Sound(1)" msgstr "" -#: src/wmtaskbar.cc:257 src/wmtaskbar.cc:258 -msgid "Task Bar" +#: src/wmprog.cc:420 +msgid "Programs" msgstr "" -#: src/wmtaskbar.cc:403 src/wmwinlist.cc:312 src/wmwinlist.cc:325 -msgid "Tile _Vertically" +#: src/wmprog.cc:424 +msgid "_Run..." msgstr "" -#: src/wmtaskbar.cc:404 src/wmwinlist.cc:313 src/wmwinlist.cc:326 -msgid "T_ile Horizontally" +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmprog.cc:428 src/wmtaskbar.cc:233 +msgid "_Windows" +msgstr "" + +#: src/wmprog.cc:439 +msgid "_Help" +msgstr "" + +#: src/wmprog.cc:444 +msgid "_Focus" +msgstr "" + +#: src/wmprog.cc:449 +msgid "_Preferences" +msgstr "" + +#: src/wmprog.cc:454 +msgid "_Themes" +msgstr "" + +#: src/wmprog.cc:458 +msgid "Se_ttings" +msgstr "" + +#: src/wmsession.cc:214 src/wmsession.cc:230 src/wmsession.cc:240 +#, c-format +msgid "Session Manager: Unknown line %s" msgstr "" -#: src/wmtaskbar.cc:405 src/wmwinlist.cc:314 src/wmwinlist.cc:327 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:219 src/wmwinlist.cc:469 src/wmwinlist.cc:502 msgid "Ca_scade" msgstr "" -#: src/wmtaskbar.cc:406 src/wmwinlist.cc:315 src/wmwinlist.cc:328 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:221 src/wmwinlist.cc:470 src/wmwinlist.cc:503 msgid "_Arrange" msgstr "" -#: src/wmtaskbar.cc:407 src/wmwinlist.cc:317 src/wmwinlist.cc:329 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:223 src/wmwinlist.cc:472 src/wmwinlist.cc:504 msgid "_Minimize All" msgstr "" -#: src/wmtaskbar.cc:408 src/wmwinlist.cc:318 src/wmwinlist.cc:330 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:225 src/wmwinlist.cc:473 src/wmwinlist.cc:505 msgid "_Hide All" msgstr "" -#: src/wmtaskbar.cc:409 src/wmwinlist.cc:319 src/wmwinlist.cc:331 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:227 src/wmwinlist.cc:474 src/wmwinlist.cc:506 msgid "_Undo" msgstr "" -#: src/wmtaskbar.cc:411 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:230 msgid "Arrange _Icons" msgstr "" -#: src/wmtaskbar.cc:417 +#. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout +#: src/wmtaskbar.cc:236 msgid "_Refresh" msgstr "" -#: src/wmtaskbar.cc:424 -msgid "_License" +#: src/wmtaskbar.cc:314 src/wmtaskbar.cc:1025 +msgid "Hide Taskbar" msgstr "" -#: src/wmtaskbar.cc:562 -msgid "Favorite applications" +#: src/wmtaskbar.cc:337 +msgid "Favorite Applications" msgstr "" -#: src/wmtaskbar.cc:579 -msgid "Window list menu" +#: src/wmtaskbar.cc:363 +msgid "Window List Menu" msgstr "" -#: src/wmtaskbar.cc:588 +#: src/wmtaskbar.cc:373 msgid "Show Desktop" msgstr "" -#: src/wmwinlist.cc:61 +#: src/wmtaskbar.cc:1025 +msgid "Show Taskbar" +msgstr "" + +#: src/wmwinlist.cc:83 msgid "All Workspaces" msgstr "" -#: src/wmwinlist.cc:295 -msgid "Del" +#: src/wmwinlist.cc:454 +msgid "_Show" msgstr "" -#: src/wmwinlist.cc:299 -msgid "_Terminate Process" +#: src/wmwinlist.cc:457 +msgid "_Raise" msgstr "" -#: src/wmwinlist.cc:300 -msgid "Kill _Process" +#: src/wmwinlist.cc:480 +msgid "Del" msgstr "" -#: src/wmwinlist.cc:305 -msgid "_Show" +#: src/wmwinlist.cc:484 +msgid "_Terminate Process" msgstr "" -#: src/wmwinlist.cc:309 -msgid "_Minimize" +#: src/wmwinlist.cc:485 +msgid "Kill _Process" msgstr "" -#: src/wmwinlist.cc:342 src/wmwinlist.cc:343 +#: src/wmwinlist.cc:520 src/wmwinlist.cc:521 msgid "Window list" msgstr "" -#: src/wmwinmenu.cc:127 +#: src/wmwinmenu.cc:96 #, c-format msgid "%lu. Workspace %-.32s" msgstr "" -#: src/yapp.cc:483 -#, c-format -msgid "Message Loop: select failed (errno=%d)" -msgstr "" - -#: src/ycmdline.cc:43 +#: src/wpixres.cc:93 src/wpixres.cc:100 #, c-format -msgid "Unrecognized option: %s\n" -msgstr "" +msgid "Image not readable: %s" +msgstr "Imaxe non lleíble: %s" -#: src/ycmdline.cc:48 +#: src/yapp.cc:296 #, c-format -msgid "Unrecognized argument: %s\n" +msgid "%s: select failed" msgstr "" -#: src/ycmdline.cc:64 -#, c-format -msgid "Argument required for %s switch" -msgstr "" +#: src/ycolor.cc:229 src/ycolor.cc:240 +#, fuzzy, c-format +#| msgid "Could not find image %s" +msgid "Could not parse color \"%s\"" +msgstr "Nun pudo alcontrase la imaxe %s" -#: src/yconfig.cc:186 +#: src/yconfig.cc:84 #, c-format msgid "Unknown key name %s in %s" msgstr "" -#: src/yconfig.cc:211 src/yconfig.cc:224 +#: src/yconfig.cc:160 src/yconfig.cc:171 src/yconfig.cc:183 #, c-format -msgid "Bad argument: %s for %s" +msgid "Bad argument: %s for %s [%d,%d]" msgstr "" -#: src/yconfig.cc:259 +#: src/ycursor.cc:110 #, c-format -msgid "Bad option: %s" +msgid "Loading of pixmap \"%s\" failed: %s" msgstr "" -#: src/ycursor.cc:127 +#: src/ycursor.cc:135 #, c-format msgid "Loading of pixmap \"%s\" failed" msgstr "" -#: src/ycursor.cc:160 -#, c-format -msgid "Invalid cursor pixmap: \"%s\" contains too much unique colors" -msgstr "" - -#: src/ycursor.cc:182 +#: src/ycursor.cc:179 #, c-format msgid "BUG? Imlib was able to read \"%s\"" msgstr "" -#: src/ycursor.cc:208 +#: src/ycursor.cc:204 #, c-format msgid "BUG? Malformed XPM header but Imlib was able to parse \"%s\"" msgstr "" -#: src/ycursor.cc:216 +#: src/ycursor.cc:212 #, c-format msgid "BUG? Unexpected end of XPM file but Imlib was able to parse \"%s\"" msgstr "" -#: src/ycursor.cc:219 +#: src/ycursor.cc:215 #, c-format -msgid "BUG? Unexpected characted but Imlib was able to parse \"%s\"" +msgid "BUG? Unexpected character but Imlib was able to parse \"%s\"" msgstr "" -#: src/yfontcore.cc:71 src/yfontxft.cc:174 +#: src/yfontcore.cc:121 src/yfontxft.cc:117 #, c-format msgid "Could not load font \"%s\"." msgstr "" -#: src/yfontcore.cc:74 src/yfontcore.cc:121 src/yfontxft.cc:197 -#, c-format -msgid "Loading of fallback font \"%s\" failed." -msgstr "" - -#: src/yfontcore.cc:114 -#, c-format -msgid "Could not load fontset \"%s\"." -msgstr "" - -#: src/yfontcore.cc:126 +#: src/yfontcore.cc:233 #, c-format msgid "Missing codesets for fontset \"%s\":" msgstr "" -#: src/yicon.cc:167 -#, c-format -msgid "Out of memory for pixmap \"%s\"" -msgstr "" - -#: src/yimage.cc:61 src/yimage.cc:109 src/ypixbuf.cc:1063 +#: src/yfontcore.cc:261 #, c-format -msgid "Loading of image \"%s\" failed" -msgstr "" - -#: src/yimage.cc:141 src/yimage.cc:159 -msgid "Imlib: Acquisition of X pixmap failed" -msgstr "" - -#: src/yimage.cc:150 -msgid "Imlib: Imlib image to X pixmap mapping failed" -msgstr "" - -#: src/yinput.cc:55 -msgid "Cu_t" -msgstr "" - -#: src/yinput.cc:55 -msgid "Ctrl+X" +msgid "Could not load fontset \"%s\"." msgstr "" -#: src/yinput.cc:56 +#: src/yinputline.cc:18 msgid "_Copy" msgstr "" -#: src/yinput.cc:56 +#: src/yinputline.cc:18 msgid "Ctrl+C" msgstr "" -#: src/yinput.cc:57 -msgid "_Paste" +#: src/yinputline.cc:19 +msgid "Cu_t" msgstr "" -#: src/yinput.cc:57 -msgid "Ctrl+V" +#: src/yinputline.cc:20 +msgid "_Paste" msgstr "" -#: src/yinput.cc:58 +#: src/yinputline.cc:21 msgid "Paste _Selection" msgstr "" -#: src/yinput.cc:60 +#: src/yinputline.cc:21 +#, fuzzy +#| msgid "Ctrl+Q" +msgid "Ctrl+P" +msgstr "Ctrl+Q" + +#: src/yinputline.cc:23 msgid "Select _All" msgstr "" -#: src/yinput.cc:60 +#: src/yinputline.cc:23 msgid "Ctrl+A" msgstr "" -#: src/ylocale.cc:46 -msgid "Locale not supported by C library. Falling back to 'C' locale'." +#: src/ylocale.cc:60 +msgid "Locale not supported by C library or Xlib. Falling back to 'C' locale'." msgstr "" -#: src/ylocale.cc:68 +#: src/ylocale.cc:95 msgid "" "Failed to determinate the current locale's codeset. Assuming ISO-8859-1.\n" msgstr "" -#: src/ylocale.cc:100 src/ylocale.cc:107 +#: src/ylocale.cc:128 src/ylocale.cc:136 #, c-format msgid "iconv doesn't supply (sufficient) %s to %s converters." msgstr "" -#: src/ylocale.cc:161 +#: src/ylocale.cc:247 #, c-format msgid "Invalid multibyte string \"%s\": %s" msgstr "" -#: src/ymsgbox.cc:38 +#: src/ymsgbox.cc:48 msgid "_OK" msgstr "_Aceutar" -#: src/ypaths.cc:144 src/ypaths.cc:171 -#, c-format -msgid "Image not readable: %s" -msgstr "Imaxe non lleíble: %s" - -#: src/ypaths.cc:149 -#, c-format -msgid "Out of memory for image %s" +#: src/ysmapp.cc:98 +msgid "$USER or $LOGNAME not set?" msgstr "" -#: src/ypaths.cc:156 +#: src/yurl.cc:145 #, c-format -msgid "Could not find image %s" -msgstr "Nun pudo alcontrase la imaxe %s" +msgid "Failed to parse URL \"%s\"." +msgstr "" -#: src/ypaths.cc:175 +#: src/yurl.cc:161 #, c-format -msgid "Out of memory for image: %s" +msgid "Incomplete hex escape in URL at position %d." msgstr "" -#: src/ypaths.cc:182 +#: src/yurl.cc:168 #, c-format -msgid "Could not find image: %s" -msgstr "Nun pudo alcontrase la imaxe: %s" +msgid "Invalid hex escape in URL at position %d." +msgstr "" -#: src/ypixbuf.cc:482 src/ypixbuf.cc:668 -#, c-format +#: src/yxapp.cc:1005 msgid "" -"Using fallback mechanism to convert pixels (depth: %d; masks (red/green/" -"blue): %0*x/%0*x/%0*x)" +" -d, --display=NAME NAME of the X server to use.\n" +" --sync Synchronize X11 commands.\n" msgstr "" -#: src/ypixbuf.cc:576 src/ypixbuf.cc:725 -#, c-format -msgid "%s:%d: %d bit visuals are not supported (yet)" +#: src/yximage.cc:157 +msgid "Support for PNG images was not enabled" msgstr "" -#: src/ysmapp.cc:106 -msgid "$USER or $LOGNAME not set?" +#: src/yximage.cc:165 +msgid "Support for JPEG images was not enabled" msgstr "" -#: src/yurl.cc:82 +#: src/yximage.cc:171 +#, fuzzy, c-format +#| msgid "Unsupported interface: %s." +msgid "Unsupported file format: %s" +msgstr "Interfaz non sofitada: %s." + +#: src/yximage.cc:175 src/yximage.cc:198 +#, fuzzy, c-format +#| msgid "Could not find image %s" +msgid "Could not load image \"%s\"" +msgstr "Nun pudo alcontrase la imaxe %s" + +#~ msgid "Invalid path: " +#~ msgstr "Camín non váldu: " + +#~ msgid "Usage error: " +#~ msgstr "Fallu d'usu: " + #, c-format -msgid "\"%s\" doesn't describe a common internet scheme" -msgstr "«%s» nun describe un esquema común d'internet" +#~ msgid "Can't connect to ESound daemon: %s" +#~ msgstr "Nun pue coneutase col degorriu d'ESound: %s" -#: src/yurl.cc:85 #, c-format -msgid "\"%s\" contains no scheme description" -msgstr "" +#~ msgid "Can't change to audio mode `%s'." +#~ msgstr "Nun pue camudase'l mou d'audiu «%s»." + +#, c-format +#~ msgid "Could not find image: %s" +#~ msgstr "Nun pudo alcontrase la imaxe: %s" + +#, c-format +#~ msgid "\"%s\" doesn't describe a common internet scheme" +#~ msgstr "«%s» nun describe un esquema común d'internet" diff --git a/po/be.po b/po/be.po index 6286191c..1a1f523d 100644 --- a/po/be.po +++ b/po/be.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.2.2\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2003-01-27 22:26+0300\n" "Last-Translator: Hleb Valoska \n" "Language-Team: Belarusian \n" @@ -143,12 +143,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1377,83 +1377,83 @@ msgstr "Стан вакна GNOME'а" msgid "workspace #%d: `%s'\n" msgstr "Працоўнае поле #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Дрэнны парамэтар: `%s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Дрэнны парамэтар: `%s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Дрэнны парамэтар: `%s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "Дзеяньне `%s' патрабуе прынамсі %d парамэтраў." -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "Няправільны выраз: `%s'" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Немагчыма адкрыць дысплей: %s. Патрэбна запусьціць X і ўстанавіць $DISPLAY." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, fuzzy, c-format msgid "Unexpected: `%s'." msgstr "Нечаканае ключавое слова: %s" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Ня вызначана дзеяньняў." -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Дрэнны вызначнік вакна: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Дрэнны парамэтар: `%s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Дрэнны парамэтар: `%s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Невядомае дзеяньне: `%s'" @@ -1495,13 +1495,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Невядомае дзеяньне: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Перазапуск" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1511,7 +1511,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1576,17 +1576,17 @@ msgid "ao_play failed" msgstr "" # fixme -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Нераспазнаная опцыя: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Нераспазнаны парамэтар: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1676,51 +1676,51 @@ msgstr "" " 3 Памылка падсыстэмы (г.зн. немагчыма злучыцца з сэрвэрам).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "Падтрымка для інтэрфэйсу %s ня ўлучаная." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Інтэрфэйс %s не падтрымліваецца." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, fuzzy, c-format msgid "Failed to connect to audio interfaces %s." msgstr "Няўдалае адкрыцьцё %s: %s" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Атрыманы сыгнал %d: Сканчэньне працы..." @@ -1756,7 +1756,7 @@ msgstr "Пераносіць радкі" msgid "Failed to load image '%s'." msgstr "Няўдалае адкрыцьцё %s: %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1808,12 +1808,12 @@ msgid "" msgstr "" # fixme -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Нераспазнаная опцыя: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1918,205 +1918,209 @@ msgstr "_Адмена выхаду" msgid "Lock _Workstation" msgstr "_Заблякаваць Станцыю" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Перазагрузіць _кампутар" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "_Выключыць кампутар" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Перазапуск _Icewm" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Перазапуск _Xterm" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "На ўзроўні _мэню" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "Па-над _докам" # fixme -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "На _ўзроўні доку" # fixme -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "Над усімі _вокнамі" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Нармальнае разьмяшчэньне" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Пад усімі вокнамі" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "На ўзроўні _стальца" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Побач па _гарызанталі" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Побач па _вэртыкалі" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "Вернуць ранейшы _стан" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Перасунуць вакно" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "Зьмяніць па_мер" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "З_гарнуць" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "_Разгарнуць" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Разгарнуць" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Разгарнуць" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "На поўны _экран" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "С_хаваць" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "С_круціць угору" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "Уз_ьняць над усімі вокнамі" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "Ап_усьціць пад усе вокны" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "Узровень разьмя_шчэньня" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Перамесьціць на _варштат" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Хай займае _ўсе варштаты" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "_Абмежаваць вобласьць" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "Значка _панэлі" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "За_крыць" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "Заб_іць кліент" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Сьпіс вакон" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "Іншы кіраўнік вакон запушчаны, выходжу..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2125,33 +2129,33 @@ msgstr "" "Немагчыма перазапусьціца: %s\n" "Ці спасылаецца $PATH на %s?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "<няма>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2163,7 +2167,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2220,22 +2228,22 @@ msgstr "" "Наведай https://ice-wm.org/ каб паведаміць пра памылкі, запатрабаваць\n" "падтрымкі, ці проста выказацца пра IceWM...\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" # fixme -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Нераспазнаная опцыя: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Пацьвердзі выйсьце" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2299,44 +2307,38 @@ msgstr "Няўдалае стварэньне дзіцячага працэсу: msgid "Unable to rename %s to %s" msgstr "Няўдалае адкрыцьцё %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "_Заблякаваць Станцыю" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Адмена" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Скончыць сэанс" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Перазапусьціць icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Пр_а" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Закрыць" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2345,7 +2347,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2353,7 +2355,7 @@ msgstr "" "УВАГА! Усе незахаваныя зьмены будуць згубленыя,\n" "калі забіць гэты кліент. Працягваць?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Забіць кліент: " @@ -2424,11 +2426,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2810,6 +2812,11 @@ msgstr "Інтэрфэйс %s не падтрымліваецца." msgid "Could not load image \"%s\"" msgstr "Немагчыма знайсьці мапу піксаляў %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Закрыць" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "няўдалая загрузка даўнятага шрыфту \"%s\"." diff --git a/po/bg.po b/po/bg.po index 588f8025..8f7b7fed 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.10\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2017-02-26 21:51+0000\n" "Last-Translator: Shyukri Shyukriev \n" "Language-Team: Bulgarian " msgstr "<нищо>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2201,7 +2205,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2259,21 +2267,21 @@ msgstr "" "Посетете https://ice-wm.org/ за съобщения за грешки,предложения и " "коментари...\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Неразпозната опция: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Потвърди Изход" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2336,43 +2344,37 @@ msgstr "Failed to create child process: %s" msgid "Unable to rename %s to %s" msgstr "Не мога да отворя %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Заключи Работната станция" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Отмени" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Изход..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Рестартира IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_За" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Затвори" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2381,7 +2383,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2389,7 +2391,7 @@ msgstr "" "ВНИМАНИЕ! Всички незапазени промени ще бъдат изгубени, когато този клиент " "бъде убит. Искате ли да продължите?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Убий Клиент: " @@ -2458,11 +2460,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2839,6 +2841,11 @@ msgstr "Неподдържан интерфейс: %s." msgid "Could not load image \"%s\"" msgstr "Could not find pixel map %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Затвори" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Зареждането на резервния шрифт \"%s\" се провали." diff --git a/po/ca.po b/po/ca.po index 4feba643..b30d8810 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.9\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-28 16:14+0000\n" "Last-Translator: David Medina \n" "Language-Team: Catalan " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Id de client per usar quan es contacti amb el gestor " "de sessions.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2239,7 +2243,7 @@ msgstr "" " --debug-z Imprimeix els missatges de depuració sobre l'apilament " "de finestres.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2260,7 +2264,11 @@ msgstr "" " --rewrite-preferences Actualitza un fitxer de preferències existent.\n" " --trace=conf,icon Traça els camins usats per carregar la configuració.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2320,21 +2328,21 @@ msgstr "" "%s.\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s directoris de configuració:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s opcions configurades:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmació de la sortida" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2399,41 +2407,37 @@ msgstr "No es pot crear el directori %s" msgid "Unable to rename %s to %s" msgstr "No es pot canviar el nom \"%s\" a \"%s\"" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Bloque_ja l'estació de treball" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Cancel·la" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Surt..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Reinicia l'icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Quant a" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Torna a carregar les opcions de la finestra" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Torna a carregar les claus" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Tan_ca" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Canvia'n el nom" @@ -2442,7 +2446,7 @@ msgstr "Canvia'n el nom" msgid "Rename the window title" msgstr "Canvia de nom el títol de la finestra" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2450,7 +2454,7 @@ msgstr "" "ATENCIÓ! Tots els canvis no desats es perdran en\n" "matar el client. Encara voleu continuar?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Mata el client: " @@ -2521,11 +2525,11 @@ msgstr "%s ha assolit el temps d'espera!" msgid "'%s' produces no output" msgstr "\"%s\" no produeix cap sortida" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Manca el programa setxkbmap." -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Per canviar el teclat, si us plau, instal·leu setxkbmap." @@ -2888,6 +2892,9 @@ msgstr "Format de fitxer no admès: %s" msgid "Could not load image \"%s\"" msgstr "No s'ha pogut carregar la imatge %s." +#~ msgid "Clos_e" +#~ msgstr "Tan_ca" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Ha fallat la càrrega de la lletra \"%s\"." diff --git a/po/cs.po b/po/cs.po index c57ff0de..6a5c47c4 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm-1.2.30\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-05-11 22:14+0000\n" "Last-Translator: Jan Papež \n" "Language-Team: Czech " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID ID klienta, který bude použit při kontaktování správce " "sezení.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2234,7 +2238,7 @@ msgstr "" " --debug Vypíše všeobecné ladicí zprávy.\n" " --debug-z Vypíše ladicí zprávy ohledně seskládání oken.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2254,7 +2258,11 @@ msgstr "" " --rewrite-preferences Aktualizovat soubor s nastavením.\n" " --trace=conf,icon K zavedení konfigurace použity cesty pro sledování.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2313,21 +2321,21 @@ msgstr "" "%s.\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s konfigurační adresáře:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s zkonfigurované voľby: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Potvrdit odhlášení" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2392,41 +2400,37 @@ msgstr "Selhalo vytvoření adresáře %s" msgid "Unable to rename %s to %s" msgstr "Nezdařilo se přejmenování %s na %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Zamknout pracovní _stanici" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Zrušit" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Odhlášení…" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Restartovat _icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "O _Aplikaci" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Znovu načíst volby _oken" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Znovu načíst kláves_y" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Zavří_t" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Přejmenovat" @@ -2435,7 +2439,7 @@ msgstr "Přejmenovat" msgid "Rename the window title" msgstr "Přejmenovat nadpis okna" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2443,7 +2447,7 @@ msgstr "" "VAROVÁNÍ! Pokud bude tento klient zabit, budou\n" "veškerá neuložená data ztracena. Přejete si pokračovat?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Zabít Klienta: " @@ -2514,11 +2518,11 @@ msgstr "'%s' vypršel!" msgid "'%s' produces no output" msgstr "'%s' nevytváří žádný výstup" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Chybí program setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Instalujte setxkbmap pro přepínání klávesnic." @@ -2883,6 +2887,9 @@ msgstr "Nepodporovaný formát souboru: %s" msgid "Could not load image \"%s\"" msgstr "Nemohu zavést obrázek \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "Zavří_t" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Nahrání nouzového fontu „%s“ selhalo." diff --git a/po/da.po b/po/da.po index 6f56c5aa..761c3877 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.4.2.1038\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2022-03-23 19:12+0000\n" "Last-Translator: Alexander Mortensen \n" "Language-Team: Danish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Klient-id som skal bruges når sessionshåndteringen " "kontaktes.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2239,7 +2243,7 @@ msgstr "" " --debug-z Udskriv fejlsøgningsmeddelelser vedrørende " "vinduesstakning.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2260,7 +2264,11 @@ msgstr "" " --trace=konf,ikon Spor stier som blev brugt til at indlæse " "konfiguration.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2321,21 +2329,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s konfigurationsmapper:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s konfigurerede tilvalg:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Bekræft udlogning" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2400,45 +2408,39 @@ msgstr "Kan ikke oprette mappe %s" msgid "Unable to rename %s to %s" msgstr "Kan ikke omdøbe %s til %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Lås _arbejdsstation" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Annuller" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Log _ud..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Gensta_rt icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "O_m" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Genindlæs" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Luk" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2447,7 +2449,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2455,7 +2457,7 @@ msgstr "" "ADVARSEL! Alle ændringer som ikke er gemt, vil gå tabt, når\n" "denne klient dræbes. Vil du fortsætte?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Dræb klient: " @@ -2526,11 +2528,11 @@ msgstr "'%s' udløb!" msgid "'%s' produces no output" msgstr "\"%s\" producerer intet output" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Manglende program setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "For tastatur skift, installer setxkbmap." @@ -2895,6 +2897,11 @@ msgstr "Ikke-understøttet fil-format: %s" msgid "Could not load image \"%s\"" msgstr "Kunne ikke indlæse billede \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Luk" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Indlæsning af standardskrifttype \"%s\" mislykkedes." diff --git a/po/de.po b/po/de.po index ce3b9115..9da59426 100644 --- a/po/de.po +++ b/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.26\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-09 15:14+0000\n" "Last-Translator: Gemineo \n" "Language-Team: German " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID zu verwendende Client-ID, wenn der Sitzungs-Manager " "kontaktiert wird.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2256,7 +2260,7 @@ msgstr "" " --debug-z Gibt Debug-Nachrichten mit dem Blick auf window " "stacking aus.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2278,7 +2282,11 @@ msgstr "" " --trace=conf,icon Pfade zeichnen, die zum Laden der Konfiguration " "verwendet werden.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2339,21 +2347,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s Konfigurationsverzeichnisse:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s konfigurierte Optionen: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Abmelden bestätigen" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2419,45 +2427,39 @@ msgstr "Kann Verzeichnis %s nicht erstellen" msgid "Unable to rename %s to %s" msgstr "Kann %s nicht in %s umbenennen" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Arbeitsplatz _sperren" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Ab_brechen" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Abmelden..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_IceWM neu starten" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Über" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Neu laden" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Schließen" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Umbenennen" @@ -2466,7 +2468,7 @@ msgstr "Umbenennen" msgid "Rename the window title" msgstr "Fenstertitel umbenennen" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2475,7 +2477,7 @@ msgstr "" "Töten der Anwendung verloren gehen! Wünschen Sie trotzdem fortzufahren?" # -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Client töten: " @@ -2546,11 +2548,11 @@ msgstr "Zeitüberschreitung bei '%s'!" msgid "'%s' produces no output" msgstr "'%s' produziert keine Ausgabe" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Fehlendes Program: 'setxkbmap'" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Um die Tastatur zu ändern, installieren Sie bitte setxkbmap." @@ -2916,6 +2918,11 @@ msgstr "Nicht unterstütztes Dateiformat: %s" msgid "Could not load image \"%s\"" msgstr "Bild \"%s\" konnte nicht geladen werden" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Schließen" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Rückgriff auf die Schriftart \"%s\" ist fehlgeschlagen." diff --git a/po/el.po b/po/el.po index 72f2a9c8..8cbefbcf 100644 --- a/po/el.po +++ b/po/el.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2021-09-21 08:11+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek " msgstr "<κανένα>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ΤΑΥΤΟΤΗΤΑ Ταυτότητα του πελάτη που θα χρησιμοποιηθεί όταν " "γίνεται επαφή με το διαχειριστή συνεδρίας.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2304,7 +2308,7 @@ msgstr "" " --debug-z Εκτύπωση μηνυμάτων αποσφαλμάτωσης σχετικά με το " "στοίβαγμα των παράθυρων.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 #, fuzzy #| msgid "" #| "\n" @@ -2334,7 +2338,11 @@ msgstr "" " --trace=conf,icon Ίχνη διαδρομών που χρησιμοποιούνται για τη φόρτωση " "ρυθμίσεων.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2401,21 +2409,21 @@ msgstr "" "\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s κατάλογοι ρυθμίσεων:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s ρυθμισμένες επιλογές:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Επιβεβαίωση αποσύνδεσης" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2479,45 +2487,39 @@ msgstr "Αδυναμία δημιουργία του κατάλογου %s" msgid "Unable to rename %s to %s" msgstr "Αδυναμία μετονομασίας του %s σε %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Κλείδωμα του _Σταθμού Εργασίας" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Ακύρωση" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Αποσύνδεση..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Επανεκκίνηση του icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Περί" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Επαναφόρτωση" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Κλείσιμο" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2526,7 +2528,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2536,7 +2538,7 @@ msgstr "" "\n" "Επιθυμείς να συνεχίσεις;" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Σκότωμα του Πελάτη: " @@ -2605,11 +2607,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Λείπει το πρόγραμμα setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2983,6 +2985,11 @@ msgstr "Μη υποστηριζόμενη διεπαφή: %s ." msgid "Could not load image \"%s\"" msgstr "Αδυναμία εύρεσης της εικόνας %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Κλείσιμο" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Η φόρτωση της εφεδρικής γραμματοσειράς \"%s\" απέτυχε." diff --git a/po/en.po b/po/en.po index 75055864..1edff603 100644 --- a/po/en.po +++ b/po/en.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.9\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2000-10-21 12:13+2000\n" "Last-Translator: Mathias Hasselmann \n" "Language-Team: English\n" @@ -143,12 +143,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1316,77 +1316,77 @@ msgstr "" msgid "workspace #%d: `%s'\n" msgstr "" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, c-format msgid "Invalid state: `%s'." msgstr "" -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, c-format msgid "Invalid argument: `%s'" msgstr "" -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, c-format msgid "Invalid Xinerama: `%s'." msgstr "" -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, c-format msgid "Invalid PID: `%s'" msgstr "" -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, c-format msgid "Invalid layer: `%s'." msgstr "" -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "" @@ -1428,12 +1428,12 @@ msgstr "" msgid "Unknown option '%s'" msgstr "" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, c-format msgid "restart %s." msgstr "" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1443,7 +1443,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 msgid "IceWM crash response" msgstr "" @@ -1504,17 +1504,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1566,51 +1566,51 @@ msgid "" "\n" msgstr "" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "" -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, c-format msgid "Received signal %s: Terminating..." msgstr "" @@ -1646,7 +1646,7 @@ msgstr "" msgid "Failed to load image '%s'." msgstr "" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1697,12 +1697,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, c-format msgid "Unrecognized option '%s'." msgstr "" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1805,232 +1805,236 @@ msgstr "" msgid "Lock _Workstation" msgstr "" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 msgid "Maximize_Vert" msgstr "" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 msgid "MaximizeHori_z" msgstr "" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "" -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2042,7 +2046,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2074,21 +2082,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2149,41 +2157,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2192,13 +2196,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2267,11 +2271,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" diff --git a/po/eo.po b/po/eo.po index 7346a405..a4f97169 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.12.144\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2017-01-27 05:44+0000\n" "Last-Translator: Reedych \n" "Language-Team: Esperanto " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2054,7 +2058,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2086,21 +2094,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2161,41 +2169,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2204,13 +2208,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2279,11 +2283,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" diff --git a/po/es.po b/po/es.po index e3870b40..397c2d06 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.26\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-08 22:14+0000\n" "Last-Translator: Antonio Simón \n" "Language-Team: Spanish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Identificador de cliente a usar al contactar con el " "administrador de sesiones.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2250,7 +2254,7 @@ msgstr "" " --debug-z Muestra mensajes de depuración relacionados con la " "pila de ventanas.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2272,7 +2276,11 @@ msgstr "" " --trace=conf,icon Rastrea las rutas usadas para cargar la " "configuración.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2333,21 +2341,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s directorios de configuración:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s opciones configuradas:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmar el cierre de sesión" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2412,45 +2420,39 @@ msgstr "No se puede crear el directorio %s" msgid "Unable to rename %s to %s" msgstr "No se puede cambiar el nombre %s por %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Bloquear la sesión" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Cancelar" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Cerrar la _sesión..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Reiniciar _icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Acerca de" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Volver a cargar" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Cerrar" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Renombrar" @@ -2459,7 +2461,7 @@ msgstr "Renombrar" msgid "Rename the window title" msgstr "Renombrar el título de la ventana" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2467,7 +2469,7 @@ msgstr "" "¡AVISO! Todos los cambios sin guardar se perderán\n" "cuando este cliente sea terminado. ¿Desea continuar?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Matar el cliente: " @@ -2538,11 +2540,11 @@ msgstr "Se ha agotado el tiempo de %s." msgid "'%s' produces no output" msgstr "'%s' no produce ninguna salida" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Falta el programa setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Instale setxkbmap para cambiar de teclados." @@ -2910,6 +2912,11 @@ msgstr "Formato de archivo no admitido: %s" msgid "Could not load image \"%s\"" msgstr "No se ha podido cargar la imagen %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Cerrar" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "No se ha podido cargar el tipo de letra de respaldo «%s»." diff --git a/po/fa.po b/po/fa.po index 815a8e01..3db8bb83 100644 --- a/po/fa.po +++ b/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.12.56\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-04 15:14+0000\n" "Last-Translator: Mohammad Rezaei Seresht \n" "Language-Team: Persian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2078,7 +2082,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2110,21 +2118,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2185,43 +2193,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "بستن" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2230,13 +2232,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2305,11 +2307,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2667,3 +2669,8 @@ msgstr "" #, c-format msgid "Could not load image \"%s\"" msgstr "" + +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "بستن" diff --git a/po/fi.po b/po/fi.po index de494a04..dde68b0a 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.14\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2022-03-10 16:12+0000\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2183,7 +2187,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2242,21 +2250,21 @@ msgstr "" "Käy osoitteessa https://ice-wm.org/ kun haluat ilmoittaa virheestä, kaipaat\n" "apua tai jos haluat vain antaa kommenttisi.\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s määritetyt asetukset:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Varmista uloskirjautuminen" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2319,45 +2327,39 @@ msgstr "Hakemistoa ei voi luoda %s" msgid "Unable to rename %s to %s" msgstr "Ei voida nimetä %s / %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Lu_kitse työasema" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Peruuta" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Kirjaudu ulos..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Uudelleenkäynnistä _IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Tietoja" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Lataa uudelleen" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Sulje" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2366,7 +2368,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2374,7 +2376,7 @@ msgstr "" "VAROITUS! Kaikki tallentamattomat muutokset tässä\n" "asiakkaassa menetetään kun se tapetaan. Haluatko jatkaa?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Tapa asiakasohjelma: " @@ -2443,11 +2445,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2815,6 +2817,11 @@ msgstr "Liitäntää ei tueta: %s." msgid "Could not load image \"%s\"" msgstr "Kuvaa %s ei löydy" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Sulje" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Varakirjasimen \"%s\" lataaminen epäonnistui." diff --git a/po/fr.po b/po/fr.po index ff3f20a4..dd7a6912 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.15pre3\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-04-21 11:14+0000\n" "Last-Translator: Wallon \n" "Language-Team: French " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID ID de client à utiliser lors du contact avec le " "gestionnaire de session.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2275,7 +2279,7 @@ msgstr "" " --debug-z Imprimer les messages de débogage concernant la pile " "de fenêtres.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2297,7 +2301,11 @@ msgstr "" " --trace=conf,icon Trace les chemins utilisés pour charger la " "configuration.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2360,21 +2368,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "Répertoires de configuration de %s :\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s options configurées : %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmer la déconnexion" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2440,41 +2448,37 @@ msgstr "Impossible de créer le répertoire %s" msgid "Unable to rename %s to %s" msgstr "Impossible de renommer %s en %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Verrouiller l’écran" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "A_nnuler" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Déconnexion ..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Redémarrer IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "À _propos" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Recharger win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Recharger ke_ys" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Quitt_er" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Renommer" @@ -2483,7 +2487,7 @@ msgstr "Renommer" msgid "Rename the window title" msgstr "Renommer le titre de la fenêtre" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2492,7 +2496,7 @@ msgstr "" "perdus quand ce processus sera clos. Souhaitez-vous continuer ?" # -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Fermer le client : " @@ -2563,11 +2567,11 @@ msgstr "'%s' a expiré !" msgid "'%s' produces no output" msgstr "'%s' ne produit aucune sortie" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Programme setxkbmap manquant" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Pour le changement de clavier, installez setxkbmap." @@ -2932,6 +2936,9 @@ msgstr "Format de fichier non pris en charge : %s" msgid "Could not load image \"%s\"" msgstr "Impossible de charger l’image \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "Quitt_er" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Échec de chargement de la police par défaut \"%s\"." diff --git a/po/he.po b/po/he.po index 98d418d8..0b24c402 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm VERSION\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-20 11:14+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2146,7 +2150,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2178,21 +2186,21 @@ msgid "" "\n" msgstr "CLI" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "אפשרות לא מוכרת: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "אימות התנתקות" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2256,43 +2264,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "שם מקש לא מוכר %s בתוך %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_נעל תחנת עבודה" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_ביטול" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_התנתק..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_אתחל את icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_אודות" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "סגור" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2302,7 +2304,7 @@ msgid "Rename the window title" msgstr "" # הינו הרוג -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2310,7 +2312,7 @@ msgstr "" "אזהרה! כל השינויים שלא נשמרו יאבדו כאשר\n" "לקוח זה הרוג. האם ברצונך להמשיך?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "הרוג לקוח: " @@ -2379,11 +2381,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2766,6 +2768,11 @@ msgstr "ממשק לא נתמך: %s." msgid "Could not load image \"%s\"" msgstr "לא היה ניתן למצוא תמונה %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "סגור" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "טעינה של גופן מפלט \"%s\" נכשלה." diff --git a/po/hi.po b/po/hi.po index 2e192ba6..b79a604c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.4.2.1301\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2021-04-22 16:57+0000\n" "Last-Translator: Panwar \n" "Language-Team: Hindi " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2111,7 +2115,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2143,21 +2151,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2218,43 +2226,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "बंद करें" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2263,13 +2265,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2338,11 +2340,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2700,6 +2702,11 @@ msgstr "" msgid "Could not load image \"%s\"" msgstr "" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "बंद करें" + #, c-format #~ msgid "" #~ "stat:\tuser = %llu, nice = %llu, sys = %llu, idle = %llu, iowait = %llu, " diff --git a/po/hr.po b/po/hr.po index 039f96f7..9bf00bcb 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.7\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2001-03-25 17:00+GMT1\n" "Last-Translator: Vlatko Kosturjak \n" "Language-Team: Croatian \n" @@ -144,12 +144,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1363,78 +1363,78 @@ msgstr "Popis prozora" msgid "workspace #%d: `%s'\n" msgstr "Radni prostor: " -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format msgid "Invalid state: `%s'." msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format msgid "Invalid argument: `%s'" msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format msgid "Invalid Xinerama: `%s'." msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, fuzzy, c-format msgid "Invalid expression: `%s'" msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Ne mogu otvoriti zaslon: %s. X-i moraju biti pokrenuti i $DISPLAY postavljen." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format msgid "Invalid PID: `%s'" msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format msgid "Invalid layer: `%s'." msgstr "Nepravilna putanja: %s\n" -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, fuzzy, c-format msgid "Unknown action: `%s'" msgstr "Nepoznata opcija prozora: %s" @@ -1476,13 +1476,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Nepoznata opcija prozora: %s" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Ponovno pokreni" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1492,7 +1492,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 msgid "IceWM crash response" msgstr "" @@ -1554,17 +1554,17 @@ msgstr "Učitavanje pixmap-e %s nije uspjelo sa rc=%d" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, fuzzy, c-format msgid "Unrecognized option: %s\n" msgstr "Nepoznata opcija prozora: %s" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1616,51 +1616,51 @@ msgid "" "\n" msgstr "" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "" -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, c-format msgid "Received signal %s: Terminating..." msgstr "" @@ -1696,7 +1696,7 @@ msgstr "Odsjeci Linije" msgid "Failed to load image '%s'." msgstr "Ne mogu pronaći pixmap-u %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1747,12 +1747,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Nepoznata opcija prozora: %s" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1857,236 +1857,240 @@ msgstr "_Odustani od odjavljivanja" msgid "Lock _Workstation" msgstr "Zaključaj _Radnu stanicu" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Ponovno pokreni _računalo" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "_Ugasi računalo" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Ponovno pokreni _Icewm" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Ponovno pokreni _Xterm" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Meni" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "_Gornje spajanje" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Spoji" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "Na_Vrhu" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Normalno" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Ispod" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Radno Okružje" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Posloži _Horizontalno" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Posloži _Vertikalno" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "Pov_rati" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Pomakni" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "_Veličina" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimiziraj" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ksimiziraj" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maksimiziraj" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maksimiziraj" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "_Sakrij" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "Zarola_j" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "Po_digni" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "Spus_ti" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "Ra_zina" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Pomakni _Na" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Z_auzmi sve" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "_Zatvori" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "_Ubij klijent" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "Popi_s prozora" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "Neki drugi upravitelj prozorima je već pokrenut, izlazim..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, fuzzy, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "Ne mogu ponovno pokrenuti %s, nije u $PATH-u?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2098,7 +2102,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2130,21 +2138,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Nepoznata opcija prozora: %s" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Potvrdite odjavljivanje" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2207,44 +2215,38 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "Nepoznato ime ključa %s u %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "Zaključaj _Radnu stanicu" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Odustani" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Odjavi" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Ponovno pokreni icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_O programu" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Zatvori" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2253,13 +2255,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Ubij klijent: " @@ -2328,11 +2330,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2702,6 +2704,11 @@ msgstr "" msgid "Could not load image \"%s\"" msgstr "Ne mogu pronaći pixmap-u %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Zatvori" + #, fuzzy #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Učitavanje pixmap-e %s neuspjelo" diff --git a/po/hu.po b/po/hu.po index 7cee41f7..e0eba49d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.7\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-28 22:14+0000\n" "Last-Translator: Kempelen \n" "Language-Team: Hungarian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID A munkamenet-kezelőhöz való csatlakozáskor használandó " "ügyfélazonosító.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2378,7 +2382,7 @@ msgstr "" " --debug-z Ablaksorrenddel kapcsolatos hibakeresési üzenetek " "nyomtatása.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2399,7 +2403,11 @@ msgstr "" " --trace=conf,icon A beállítások betöltéséhez használt útvonalak " "követése.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2460,24 +2468,24 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s konfigurációs könyvtárai:\n" # ../src/wmoption.cc:209 -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s konfigurált beállítás: %s\n" # ../src/wmapp.cc:676 -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Kilépés megerősítése" # ../src/wmapp.cc:677 -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2552,47 +2560,41 @@ msgid "Unable to rename %s to %s" msgstr "A(z) %s nem nevezhető át %s nevűre" # ../src/wmdialog.cc:59 -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Munkaállomás le_zárása" # ../src/wmdialog.cc:73 -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Mégsem" # ../src/wmdialog.cc:66 ../src/wmprog.cc:629 ../src/wmtaskbar.cc:236 #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Kilépés..." # ../src/wmapp.cc:468 -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Az _IceWM újraindítása" # ../src/wmprog.cc:633 ../src/wmtaskbar.cc:230 ../src/wmtaskbar.cc:233 #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "N_évjegy" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "_Ablakbeállítások újratöltése" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "_Billentyűk újratöltése" -# ../src/icehelp.cc:548 ../src/icesame.cc:59 ../src/iceview.cc:69 -# ../src/wmframe.cc:127 -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Be_zárás" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Átnevezés" @@ -2601,7 +2603,7 @@ msgstr "Átnevezés" msgid "Rename the window title" msgstr "Az ablak címének átszerkesztése" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2611,7 +2613,7 @@ msgstr "" # # ../src/wmframe.cc:1183 -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Kliens kilövése: " @@ -2691,11 +2693,11 @@ msgstr "'%s' időtúllépésre futott!" msgid "'%s' produces no output" msgstr "A(z) '%s' nem hoz létre kimenetet" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Hiányzó program: setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "A billentyűzet váltásához telepítse a setxkbmap programot." @@ -3114,6 +3116,11 @@ msgstr "Nem támogatott fájlformátum: %s" msgid "Could not load image \"%s\"" msgstr "A kép betöltése nem sikerült: \"%s\"" +# ../src/icehelp.cc:548 ../src/icesame.cc:59 ../src/iceview.cc:69 +# ../src/wmframe.cc:127 +#~ msgid "Clos_e" +#~ msgstr "Be_zárás" + # ../src/ycursor.cc:110 #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Nem sikerült a(z) \"%s\" tartalék betűkészlet betöltése." diff --git a/po/icewm.pot b/po/icewm.pot index 5e647941..4427c76c 100644 --- a/po/icewm.pot +++ b/po/icewm.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: icewm 3.3.5.5\n" +"Project-Id-Version: icewm 3.4.0.11\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -145,12 +145,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1318,77 +1318,77 @@ msgstr "" msgid "workspace #%d: `%s'\n" msgstr "" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, c-format msgid "Invalid state: `%s'." msgstr "" -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, c-format msgid "Invalid argument: `%s'" msgstr "" -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, c-format msgid "Invalid Xinerama: `%s'." msgstr "" -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, c-format msgid "Invalid PID: `%s'" msgstr "" -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, c-format msgid "Invalid layer: `%s'." msgstr "" -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "" @@ -1430,12 +1430,12 @@ msgstr "" msgid "Unknown option '%s'" msgstr "" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, c-format msgid "restart %s." msgstr "" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1445,7 +1445,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 msgid "IceWM crash response" msgstr "" @@ -1506,17 +1506,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1568,51 +1568,51 @@ msgid "" "\n" msgstr "" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "" -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, c-format msgid "Received signal %s: Terminating..." msgstr "" @@ -1648,7 +1648,7 @@ msgstr "" msgid "Failed to load image '%s'." msgstr "" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1699,12 +1699,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, c-format msgid "Unrecognized option '%s'." msgstr "" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1807,232 +1807,236 @@ msgstr "" msgid "Lock _Workstation" msgstr "" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 msgid "Maximize_Vert" msgstr "" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 msgid "MaximizeHori_z" msgstr "" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "" -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2044,7 +2048,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2076,21 +2084,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2151,41 +2159,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2194,13 +2198,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2269,11 +2273,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" diff --git a/po/id.po b/po/id.po index a36f530e..d1247973 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.9\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-05-31 16:15+0000\n" "Last-Translator: Kukuh Syafaat \n" "Language-Team: Indonesian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Klien id yang digunakan saat menghubungi pengelola " "sesi.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2236,7 +2240,7 @@ msgstr "" " --debug Cetak pesan awakutu umum.\n" " --debug-z Cetak pesan awakutu tentang penumpukan jendela.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2256,7 +2260,11 @@ msgstr "" " --rewrite-preferences Mutakhirkan berkas preferensi yang ada.\n" " --trace=conf,icon Path jejak yang digunakan untuk memuat konfigurasi.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2316,21 +2324,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "Direktori konfigurasi %s:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "Opsi %s yang dikonfigurasi: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Konfirmasi Log Keluar" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2395,41 +2403,37 @@ msgstr "Tidak dapat membuat direktori %s" msgid "Unable to rename %s to %s" msgstr "Tidak dapat mengganti nama %s menjadi %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Kunci Workstation" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Batal" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Keluar..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Mu_lai ulang icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Tent_ang" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Muat ulang win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Muat ulang tombo_l" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Tut_up" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Ganti nama" @@ -2438,7 +2442,7 @@ msgstr "Ganti nama" msgid "Rename the window title" msgstr "Ganti nama judul jendela" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2446,7 +2450,7 @@ msgstr "" "PERINGATAN! Semua perubahan yang belum disimpan akan hilang saat\n" "klien ini terbunuh. Apakah Anda ingin melanjutkan?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Bunuh Klien: " @@ -2517,11 +2521,11 @@ msgstr "'%s' waktunya habis!" msgid "'%s' produces no output" msgstr "'%s' tidak menghasilkan keluaran" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Tak ada program setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Untuk mengubah papan tik, silakan instal setxkbmap." @@ -2883,6 +2887,9 @@ msgstr "Format berkas yang tidak didukung: %s" msgid "Could not load image \"%s\"" msgstr "Tidak dapat memuat gambar “%s”." +#~ msgid "Clos_e" +#~ msgstr "Tut_up" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Gagal memuat fonta fallback \"%s\"." diff --git a/po/ie.po b/po/ie.po index e5c22fe1..5c7208f3 100644 --- a/po/ie.po +++ b/po/ie.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.4.2.1830\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2019-06-15 19:49+0000\n" "Last-Translator: Olga Smirnova \n" "Language-Team: Occidental " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2115,7 +2119,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2147,21 +2155,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmar li clusion" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2222,45 +2230,39 @@ msgstr "Ne successat crear un directoria %s" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "S_errar li ecran" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Anullar" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Cluder li session..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Restartar IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Pri" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 #, fuzzy #| msgid "Bad option: %s" msgid "Reload win_options" msgstr "Ínvalid option: %s" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Cluder" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2269,13 +2271,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Terminar li client: " @@ -2345,11 +2347,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2708,6 +2710,11 @@ msgstr "" msgid "Could not load image \"%s\"" msgstr "Ne successat cargar li image '%s'." +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Cluder" + #, c-format #~ msgid "CPU: %llu %llu %llu %llu %llu %llu %llu %llu" #~ msgstr "CPU: %llu %llu %llu %llu %llu %llu %llu %llu" diff --git a/po/it.po b/po/it.po index a35c355f..852638ed 100644 --- a/po/it.po +++ b/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.31\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-07 14:14+0000\n" "Last-Translator: Davide Aiello \n" "Language-Team: Italian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID ID del client da usare quando si contatta il gestore " "delle sessioni.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2255,7 +2259,7 @@ msgstr "" " --debug-z Stampa messaggi di debug riguardanti la pila delle " "finestre.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2276,7 +2280,11 @@ msgstr "" " --trace=conf,icon Traccia i percorsi utilizzati per caricare la " "configurazione.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2335,21 +2343,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "Directory di configurazione di %s:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "Opzioni configurate di %s: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Conferma uscita" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2414,45 +2422,39 @@ msgstr "Impossibile creare la directory %s" msgid "Unable to rename %s to %s" msgstr "Impossibile rinominare %s come %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Blocca postazione di lavoro" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Annulla" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Esci..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Riavvia icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Informazioni" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Ricarica" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Chiudi" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Rinomina" @@ -2461,7 +2463,7 @@ msgstr "Rinomina" msgid "Rename the window title" msgstr "Rinomina titolo finestra" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2469,7 +2471,7 @@ msgstr "" "Attenzione: la terminazione del client comporta\n" "la perdita delle modifiche non salvate. Procedere?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Termina client: " @@ -2540,11 +2542,11 @@ msgstr "Time out di '%s'." msgid "'%s' produces no output" msgstr "'%s' non produce alcun risultato" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Programma mancante setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Per cambiare tastiera, installare setxkbmap." @@ -2911,6 +2913,11 @@ msgstr "Formato di file non supportato: %s" msgid "Could not load image \"%s\"" msgstr "Impossibile caricare l'immagine \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Chiudi" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Caricamento del tipo di carattere di riserva \"%s\" non riuscito." diff --git a/po/ja.po b/po/ja.po index 5c77248b..720e3749 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.6\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-28 00:14+0000\n" "Last-Translator: Yasuhiko Kamata \n" "Language-Team: Japanese " msgstr "<なし>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID セッションマネージャに接続する際のクライアント ID を指" "定します。\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2250,7 +2254,7 @@ msgstr "" " --debug-z ウインドウのスタック処理に関連するデバッグメッセージを" "表示します。\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2270,7 +2274,11 @@ msgstr "" " --rewrite-preferences 既存の設定ファイルを更新します。\n" " --trace=conf,icon 設定の読み込み時に使用するパスをトレースします。\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2330,21 +2338,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s の設定ディレクトリ:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s の設定済みオプション: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "ログアウトの確認" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2409,41 +2417,37 @@ msgstr "ディレクトリ %s を作成できません" msgid "Unable to rename %s to %s" msgstr "%s を %s に名前変更できません" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "ワークステーションをロック (_K)" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "キャンセル (_C)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "ログアウト (_L)..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "icewm を再起動 (_R)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "情報 (_A)" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "winoptions の再読み込み (_O)" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "キーの再読み込み (_Y)" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "閉じる (_E)" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "名前変更" @@ -2452,7 +2456,7 @@ msgstr "名前変更" msgid "Rename the window title" msgstr "ウインドウタイトルの名前変更" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2460,7 +2464,7 @@ msgstr "" "このクライアントを強制終了すると、保存されて\n" "いない変更点が失われてしまいます。処理を続けてよろしいですか?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "クライアント強制終了: " @@ -2531,11 +2535,11 @@ msgstr "'%s' が時間切れになりました!" msgid "'%s' produces no output" msgstr "'%s' は何も出力しませんでした" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "プログラム setxkbmap がありません" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" "キーボードの切り替えを行なうため、 setxkbmap をインストールしてください。" @@ -2905,6 +2909,9 @@ msgstr "未対応のファイル形式です: %s" msgid "Could not load image \"%s\"" msgstr "画像 \"%s\" を読み込めませんでした" +#~ msgid "Clos_e" +#~ msgstr "閉じる (_E)" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "フォールバックフォント \"%s\" の読み込みに失敗しました。" diff --git a/po/ka.po b/po/ka.po index 4543b260..ece7dc19 100644 --- a/po/ka.po +++ b/po/ka.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 3.3.2.22\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-05-30 09:14+0000\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2050,7 +2054,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2082,21 +2090,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2157,41 +2165,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "&გაუქმება" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_შესახებ" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "_დახურვა" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "გადარქმევა" @@ -2200,13 +2204,13 @@ msgstr "გადარქმევა" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2275,11 +2279,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2635,3 +2639,6 @@ msgstr "" #, c-format msgid "Could not load image \"%s\"" msgstr "" + +#~ msgid "Clos_e" +#~ msgstr "_დახურვა" diff --git a/po/kk.po b/po/kk.po index f610c949..e155b5e8 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 3.2.1.17\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2022-12-23 17:13+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh " msgstr "<жоқ>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2046,7 +2050,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2078,21 +2086,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2153,45 +2161,39 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Ба_с тарту" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Осы тур_алы" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Қайта жүктеу" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Жабу" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Атын өзгерту" @@ -2200,13 +2202,13 @@ msgstr "Атын өзгерту" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2275,11 +2277,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2635,3 +2637,8 @@ msgstr "" #, c-format msgid "Could not load image \"%s\"" msgstr "" + +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Жабу" diff --git a/po/ko.po b/po/ko.po index a03e2437..c7e470db 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.35\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2019-02-07 06:32+0000\n" "Last-Translator: Hwajin Kim \n" "Language-Team: Korean " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID 세션 관리자에게 문의할 때 사용할 클라이언트 ID입니다.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2324,7 +2328,7 @@ msgstr "" " --debug 일반 디버그 메시지를 인쇄합니다.\n" " --debug-z 창 스택 관련 디버그 메시지를 인쇄합니다.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 #, fuzzy #| msgid "" #| "\n" @@ -2346,7 +2350,11 @@ msgstr "" " -t, --theme=FILE FILE에서 테마를 로드합니다.\n" " --postpreferences 모든 처리 후 기본 설정을 인쇄합니다.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2405,21 +2413,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s 구성 디렉터리:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s 구성된 옵션: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "종료 확인" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2482,43 +2490,37 @@ msgstr "디렉토리 %s을(를) 만들 수 없음" msgid "Unable to rename %s to %s" msgstr "이름을 %s에서 %s(으)로 바꿀 수 없음" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "작업공간 잠금(_k)" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "취소(_C)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "로그아웃(_L)..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "icewm 다시 시작(_R)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "정보(_A)" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "닫기" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2527,7 +2529,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2535,7 +2537,7 @@ msgstr "" "경고! 이 클라이언트를 죽이면 저장되지 않은\n" "변경 사항을 모두 잃어버립니다. 계속할까요?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "클라이언트 죽이기: " @@ -2609,11 +2611,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "'%s'은(는) 출력이 없습니다." -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2979,6 +2981,11 @@ msgstr "%s: 인터페이스 지원 안 됨." msgid "Could not load image \"%s\"" msgstr "%s 이미지를 찾을 수 없음" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "닫기" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "기본 폰트 \"%s\" 읽기 실패." diff --git a/po/lt.po b/po/lt.po index 2cefaba6..2b14801e 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.1\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-09 14:14+0000\n" "Last-Translator: Moo oo \n" "Language-Team: Lithuanian " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2170,7 +2174,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2202,21 +2210,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Neatpažinta parinktis: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Patvirtink atsijungimą" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2279,43 +2287,37 @@ msgstr "Nepavyko įrašyti istorijos bylos %s: %s" msgid "Unable to rename %s to %s" msgstr "Nepavyko įrašyti istorijos bylos %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Už_rakinti darbalaukį" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "A_tsisakyti" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Atsijungti..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Iš naujo paleisti IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Api_e" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Užverti" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2324,7 +2326,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2332,7 +2334,7 @@ msgstr "" "DĖMESIO! Nužudę šį klientą prarasite visus \n" "neišsaugotus pakeitimus. Ar nori tęsti?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Nužudyti klientą: " @@ -2401,11 +2403,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2787,6 +2789,11 @@ msgstr "Nepalaikoma sąsaja: %s." msgid "Could not load image \"%s\"" msgstr "Nepavyksta rasti paveikslėlio %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Užverti" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Nepavyko įkelti atsarginio šrifto „%s“." diff --git a/po/lv.po b/po/lv.po index fa2185d0..783dc31f 100644 --- a/po/lv.po +++ b/po/lv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2005-06-12 12:59+0300\n" "Last-Translator: Kristaps Kaupe \n" "Language-Team: Latvian\n" @@ -148,12 +148,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1377,83 +1377,83 @@ msgstr "GNOMEs loga stāvoklis" msgid "workspace #%d: `%s'\n" msgstr "darba vide #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Kļūdains arguments: `%s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Kļūdains arguments: `%s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Kļūdains arguments: `%s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "Darbībai `%s' vajag vismaz %d argumentus." -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "Kļūdaina izteiksme: `%s'" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Nevaru atvērt displeju: %s. X ir jābūt palaistam un $DISPLEY uzstādītam." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, fuzzy, c-format msgid "Unexpected: `%s'." msgstr "Negaidīts atslēgvārds: %s" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Nav norādītu darbību." -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Kļūdains loga identifikators: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Kļūdains arguments: `%s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Kļūdains arguments: `%s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Nezināma darbība: `%s'" @@ -1495,13 +1495,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Nezināma darbība: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Pārstartēt" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1511,7 +1511,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1575,17 +1575,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Nezināma opcija: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Nezināms arguments: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1674,51 +1674,51 @@ msgstr "" "3 Apakšsistēmas kļūda (piemēram, nevar pieslēgties serverim).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "%s interfeisa atbalsts nav iekompilēts." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Neatbalstīts interfeiss: %s." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, fuzzy, c-format msgid "Failed to connect to audio interfaces %s." msgstr "Nevarēju atvērt %s: %s" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Saņēmts signāls %d: beidzu..." @@ -1754,7 +1754,7 @@ msgstr "Pārnest rindas" msgid "Failed to load image '%s'." msgstr "Nevarēju atvērt %s: %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 #, fuzzy msgid "" "Usage: icewmbg [OPTIONS]\n" @@ -1816,12 +1816,12 @@ msgstr "" " DesktopTransparencyColor - Logu caurspīdīguma krāsa\n" " DesktopTransparencyImage - Logu caurspīdīguma attēls\n" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Nezināma opcija: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1926,203 +1926,207 @@ msgstr "At_celt izlogošanos" msgid "Lock _Workstation" msgstr "_Noslēgt darbstaciju" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "_Pārstartēt datoru" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "Izslēgt _datoru" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Pārstartēt _Icewm" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Pārstartēt _Xterm" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Izvēlne" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "Virs dok_a" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Doks" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "_Virs" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Normālais" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Zem" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Darbavirsma" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Kārtot blakus hor_izontāli" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Kārtot blakus _vertikāli" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "At_jaunot" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "Pā_rvietot" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "Izmēr_s" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimizēt" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ksimizēt" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maksimizēt" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maksimizēt" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "_Pilnekrānā" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "N_oslēpt" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "Sar_itināt" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "P_aaugstināt" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "Pa_zemināt" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "S_lānis" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Pārvie_tot uz" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "_Aizņemt visas" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "Ierobežot _darba apgabalu" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "Paplātes _ikona" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "Aiz_vērt" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "Nogalināt _klientu" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Logu saraksts" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "Cits logu pārvaldnieks jau ir palaists, beidzu..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2131,33 +2135,33 @@ msgstr "" "Nevaru pārstartēt: %s\n" "Vai $PATH ved pie %s?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2169,7 +2173,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2227,21 +2235,21 @@ msgstr "" "Apmeklējiet https://ice-wm.org/, lai ziņotu par kļūdām, prasītu atbalstu vai " "atstātu komentārus...\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Nezināma opcija: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Apstiprināt izlogošanos" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2304,44 +2312,38 @@ msgstr "Neizdevās izveidot bērnprocesu: %s" msgid "Unable to rename %s to %s" msgstr "Nevarēju atvērt %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "_Noslēgt darbstaciju" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "At_celt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Iz_logoties..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Pā_rstartēt icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "P_ar" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Aizvērt" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2350,7 +2352,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2358,7 +2360,7 @@ msgstr "" "UZMANĪBU! Visas nesaglabātās izmaiņas tiks zaudētas, kad\n" "šis klients tiks nogalināts. Vai jūs vēlaties turpināt?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Nogalināt klientu:" @@ -2427,11 +2429,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2808,6 +2810,11 @@ msgstr "Neatbalstīts interfeiss: %s." msgid "Could not load image \"%s\"" msgstr "Nevaru atrast pikseļu karti %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Aizvērt" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Atkrišanas fonta \"%s\" ielāde neizdevās." diff --git a/po/mk.po b/po/mk.po index 2e63b436..542bb8ba 100644 --- a/po/mk.po +++ b/po/mk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-27 07:14+0000\n" "Last-Translator: Kristijan Fremen Velkovski \n" "Language-Team: Macedonian " msgstr "<нема>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2172,7 +2176,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2231,21 +2239,21 @@ msgstr "" "Посете ја страницата https://ice-wm.org/ за да известите за бубачки,\n" "за барања за поддршка, коментари итн...\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s подесени опции: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Потврда на одјавувањето" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2308,44 +2316,38 @@ msgstr "Не успеав да креирам процес-дете: %s" msgid "Unable to rename %s to %s" msgstr "Не успеав да отворам %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "Заклучи _работна станица" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Откажи" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Одја_ви се..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Рестартирај го icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "З_а" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Затвори" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2354,7 +2356,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2362,7 +2364,7 @@ msgstr "" "ВНИМАНИЕ! Сите неснимени промени ќе бидат изгубени кога\n" "овој клиент ќе биде прекинат. Дали сакате да продолжите?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Прекини клиент: " @@ -2431,11 +2433,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2816,6 +2818,11 @@ msgstr "Неподдржан интерфејс: %s." msgid "Could not load image \"%s\"" msgstr "Не можев да ја најдам пиксел-мапата %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Затвори" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Вчитувањето на стандардниот фонт „%s“ не успеа." diff --git a/po/nb.po b/po/nb.po index 9866a76a..40cdce8f 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.2\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2002-09-22 22:00+0200\n" "Last-Translator: Petter Johan Olsen \n" "Language-Team: Norwegian\n" @@ -146,12 +146,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1378,84 +1378,84 @@ msgstr "GNOME vindustilstand" msgid "workspace #%d: `%s'\n" msgstr "skrivebordsområde #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "Kommandoen `%s' krever minst %d argumenter." -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "Ugyldig uttrykk: `%s'" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Kan ikke koble til display: %s. X må være startet og variabelen $DISPLAY må " "være satt." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, fuzzy, c-format msgid "Unexpected: `%s'." msgstr "Uventet nøkkelord: `%s'" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Ingen kommandoer spesifisert." -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Ugyldig vindus-identifikator: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Ukjent kommando: `%s'" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Ukjent kommando: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Starte på nytt" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1513,7 +1513,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1577,17 +1577,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Ukjent opsjon: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Ukjent argument: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1681,51 +1681,51 @@ msgstr "" "3 Subsystem-feil (dvs. kan ikke koble til server).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "Støtte for enheten %s er ikke kompilert." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Enheten %s er ikke støttet." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, fuzzy, c-format msgid "Failed to connect to audio interfaces %s." msgstr "Kunne ikke åpne %s: %s" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Mottok signal %d, avslutter..." @@ -1761,7 +1761,7 @@ msgstr "Del lange linjer" msgid "Failed to load image '%s'." msgstr "Kunne ikke åpne %s: %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1812,12 +1812,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Ukjent opsjon: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1922,203 +1922,207 @@ msgstr "_Avbryt avlogging" msgid "Lock _Workstation" msgstr "Lås _arbeidsstasjon" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Start _maskinen på nytt" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "S_lå av maskinen" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Start _Icewm på nytt" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Start _Xterm på nytt" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Meny" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "_Over dock" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Dock" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "_Øverst" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Normal" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Under" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Skrivebord" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Flislegg _horisontalt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Flislegg _vertikalt" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "_Gjenopprett" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Flytt" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "_Endre størrelse" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimer" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ksimer" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maksimer" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maksimer" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "_Fullskjerm" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "G_jem" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "_Rull opp" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "_Hev" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "_Senk" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "_Lag" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Fl_ytt til" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Finnes på _alle" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "_Begrens område" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "_Trayikon" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "L_ukk" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "_Drep klient" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Vindusliste" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "En annen vindusbehandler kjører allerede, avslutter..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2127,33 +2131,33 @@ msgstr "" "Kunne ikke starte `%s' på nytt\n" "Finnes `%s' i $PATH?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2165,7 +2169,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2224,21 +2232,21 @@ msgstr "" "Se https://ice-wm.org/ for å rapportere feil, få hjelp, og gi kommentarer.\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Ukjent opsjon: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Bekreft avlogging" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2301,44 +2309,38 @@ msgstr "Kunne ikke lage barnprosess: %s" msgid "Unable to rename %s to %s" msgstr "Kunne ikke åpne %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "Lås _arbeidsstasjon" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "A_vbryt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Logg av" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Start Icewm på nytt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Om" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Lukk" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2347,7 +2349,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2355,7 +2357,7 @@ msgstr "" "ADVARSEL! Alle ulagrede data vil gå tapt hvis\n" "denne klienten blir drept. Vil du fortsette?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Drep klient: " @@ -2424,11 +2426,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2810,6 +2812,11 @@ msgstr "Enheten %s er ikke støttet." msgid "Could not load image \"%s\"" msgstr "Kunne ikke finne bildet %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Lukk" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Kunne ikke laste reservetegnsett `%s'." diff --git a/po/nl.po b/po/nl.po index f70adece..b06573a2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.23\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-28 10:14+0000\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Te gebruiken client-id bij contact maken met de " "sessiemanager.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2246,7 +2250,7 @@ msgstr "" " --debug Algemene debugberichten afdrukken.\n" " --debug-z Debugberichten over stapelen van vensters afdrukken.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2266,7 +2270,11 @@ msgstr "" "--rewrite-preferences Een bestaand bestand met voorkeuren bijwerken.\n" " --trace=conf,icon Paden volgen gebruiken om configuratie te laden.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2325,21 +2333,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s configuratiemappen:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s geconfigureerde opties:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Afmelden bevestigen" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2405,41 +2413,37 @@ msgstr "Aanmaken van map %s lukte niet" msgid "Unable to rename %s to %s" msgstr "Hernoemen van %s naar %s lukt niet" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Werkstation blo_kkeren" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Af_breken" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Afmelden..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "IceWM _herstarten" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Over" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Win_opties opnieuw laden" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Sleutel_s opnieuw laden" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Sluit_en" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Hernoemen" @@ -2448,7 +2452,7 @@ msgstr "Hernoemen" msgid "Rename the window title" msgstr "De venstertitel hernoemen" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2457,7 +2461,7 @@ msgstr "" "als u dit programma stopt! Wilt u doorgaan?" # -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Stoppen van: " @@ -2528,11 +2532,11 @@ msgstr "Tijdoverschrijding met '%s'!" msgid "'%s' produces no output" msgstr "'%s' produceert geen uitvoer" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Programma setxkbmap ontbreekt" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Om van toetsenbord te wisselen, installeer setxkbmap." @@ -2895,6 +2899,9 @@ msgstr "Niet ondersteund bestandsformaat: %s" msgid "Could not load image \"%s\"" msgstr "Afbeelding \"%s\" laden lukt niet" +#~ msgid "Clos_e" +#~ msgstr "Sluit_en" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Terugval op lettertype »%s« is mislukt." diff --git a/po/nn.po b/po/nn.po index 5871e9a5..4a048e8d 100644 --- a/po/nn.po +++ b/po/nn.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.12.459\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2017-07-22 13:47+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: NorwegianNynorsk \n" @@ -144,12 +144,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1355,77 +1355,77 @@ msgstr "Vindaugsliste" msgid "workspace #%d: `%s'\n" msgstr "" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, c-format msgid "Invalid state: `%s'." msgstr "" -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, c-format msgid "Invalid argument: `%s'" msgstr "" -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, c-format msgid "Invalid Xinerama: `%s'." msgstr "" -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, c-format msgid "Invalid PID: `%s'" msgstr "" -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, c-format msgid "Invalid layer: `%s'." msgstr "" -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "" @@ -1467,12 +1467,12 @@ msgstr "" msgid "Unknown option '%s'" msgstr "" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, c-format msgid "restart %s." msgstr "" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1482,7 +1482,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 msgid "IceWM crash response" msgstr "" @@ -1543,17 +1543,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1605,51 +1605,51 @@ msgid "" "\n" msgstr "" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "" -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, c-format msgid "Received signal %s: Terminating..." msgstr "" @@ -1685,7 +1685,7 @@ msgstr "Del lange linjer" msgid "Failed to load image '%s'." msgstr "" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1736,12 +1736,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, c-format msgid "Unrecognized option '%s'." msgstr "" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1844,236 +1844,240 @@ msgstr "_Avbryt utlogging" msgid "Lock _Workstation" msgstr "Lås _maskina" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Start maskina på _nytt" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "_Slå av maskina" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Start _Icewm på nytt" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Start _Xterm på nytt" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Meny" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "_Over dokk" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Dokk" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "_Øvst" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Vanleg" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Under" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Skrivebord" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "_Gjenopprett" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Flytt" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "_Storleik" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimer" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ksimer" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maksimer" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maksimer" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "_Fullskjerm" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "_Gøym" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "Rull _opp" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "_Hev" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "_Senk" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "_Lag" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Flytt _til" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Vis på _alle" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "A&vgrens område" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "Systemtrau-_ikon" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "_Lukk" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "_Avslutt klient" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Vindaugsliste" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "" -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2085,7 +2089,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2117,21 +2125,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Stadfest utlogging" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2192,45 +2200,39 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Lås systemet" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Avbryt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Logg ut …" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Start icewm på nytt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Om" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 #, fuzzy #| msgid "Bad option: %s" msgid "Reload win_options" msgstr "Ugyldig val: %s" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Lukk" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2239,13 +2241,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Avslutt klient: " @@ -2314,11 +2316,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2683,6 +2685,11 @@ msgstr "" msgid "Could not load image \"%s\"" msgstr "" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Lukk" + #, c-format #~ msgid "%s: %llu %llu %llu %llu %llu %llu %llu %llu" #~ msgstr "%s: %llu %llu %llu %llu %llu %llu %llu %llu" diff --git a/po/no.po b/po/no.po index 7ab51164..c1a601c7 100644 --- a/po/no.po +++ b/po/no.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.2\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2002-09-22 22:00+0200\n" "Last-Translator: Petter Johan Olsen \n" "Language-Team: Norwegian\n" @@ -145,12 +145,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1377,84 +1377,84 @@ msgstr "GNOME vindustilstand" msgid "workspace #%d: `%s'\n" msgstr "skrivebordsområde #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "Kommandoen `%s' krever minst %d argumenter." -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "Ugyldig uttrykk: `%s'" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Kan ikke koble til display: %s. X må være startet og variabelen $DISPLAY må " "være satt." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, fuzzy, c-format msgid "Unexpected: `%s'." msgstr "Uventet nøkkelord: `%s'" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Ingen kommandoer spesifisert." -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Ugyldig vindus-identifikator: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Ugyldig argument: `%s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Ukjent kommando: `%s'" @@ -1496,13 +1496,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Ukjent kommando: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Starte på nytt" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1512,7 +1512,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1576,17 +1576,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Ukjent opsjon: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Ukjent argument: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1680,51 +1680,51 @@ msgstr "" "3 Subsystem-feil (dvs. kan ikke koble til server).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "Støtte for enheten %s er ikke kompilert." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Enheten %s er ikke støttet." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, fuzzy, c-format msgid "Failed to connect to audio interfaces %s." msgstr "Kunne ikke åpne %s: %s" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Mottok signal %d, avslutter..." @@ -1760,7 +1760,7 @@ msgstr "Del lange linjer" msgid "Failed to load image '%s'." msgstr "Kunne ikke åpne %s: %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1811,12 +1811,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Ukjent opsjon: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1921,203 +1921,207 @@ msgstr "_Avbryt avlogging" msgid "Lock _Workstation" msgstr "Lås _arbeidsstasjon" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Start _maskinen på nytt" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "S_lå av maskinen" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Start _Icewm på nytt" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Start _Xterm på nytt" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Meny" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "_Over dock" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Dock" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "_Øverst" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Normal" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Under" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Skrivebord" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Flislegg _horisontalt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Flislegg _vertikalt" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "_Gjenopprett" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Flytt" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "_Endre størrelse" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimer" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ksimer" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maksimer" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maksimer" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "_Fullskjerm" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "G_jem" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "_Rull opp" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "_Hev" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "_Senk" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "_Lag" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Fl_ytt til" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Finnes på _alle" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "_Begrens område" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "_Trayikon" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "L_ukk" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "_Drep klient" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Vindusliste" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "En annen vindusbehandler kjører allerede, avslutter..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2126,33 +2130,33 @@ msgstr "" "Kunne ikke starte `%s' på nytt\n" "Finnes `%s' i $PATH?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2164,7 +2168,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2223,21 +2231,21 @@ msgstr "" "Se https://ice-wm.org/ for å rapportere feil, få hjelp, og gi kommentarer.\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Ukjent opsjon: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Bekreft avlogging" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2300,44 +2308,38 @@ msgstr "Kunne ikke lage barnprosess: %s" msgid "Unable to rename %s to %s" msgstr "Kunne ikke åpne %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "Lås _arbeidsstasjon" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "A_vbryt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Logg av" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Start Icewm på nytt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Om" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Lukk" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2346,7 +2348,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2354,7 +2356,7 @@ msgstr "" "ADVARSEL! Alle ulagrede data vil gå tapt hvis\n" "denne klienten blir drept. Vil du fortsette?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Drep klient: " @@ -2423,11 +2425,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2809,6 +2811,11 @@ msgstr "Enheten %s er ikke støttet." msgid "Could not load image \"%s\"" msgstr "Kunne ikke finne bildet %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Lukk" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Kunne ikke laste reservetegnsett `%s'." diff --git a/po/pl.po b/po/pl.po index 75886c4f..1d877c41 100644 --- a/po/pl.po +++ b/po/pl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.2.15\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-12 23:14+0000\n" "Last-Translator: neome \n" "Language-Team: Polish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Identyfikator klienta używany do kontaktu z menedżerem " "sesji.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2257,7 +2261,7 @@ msgstr "" " --debug-z Wyświetlenie komunikatów debugowania dotyczących " "układania okien.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 #, fuzzy #| msgid "" #| "\n" @@ -2283,7 +2287,11 @@ msgstr "" " --rewrite-preferences Zaktualizuj istniejący plik preferencji.\n" " --trace=conf,icon Śledź ścieżki używane do ładowania konfiguracji.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2343,21 +2351,21 @@ msgstr "" "↵\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "Katalogi konfiguracji %s:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "Skonfigurowane opcje %s: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Potwierdź wyjście" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2422,44 +2430,38 @@ msgstr "Nie można utworzyć katalogu %s" msgid "Unable to rename %s to %s" msgstr "Nie można zmienić nazwy %s na %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Zablo_kuj stację roboczą" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Anuluj" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Wy_loguj..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "U_ruchom ponownie IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Inform_acje" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy msgid "Reload ke_ys" msgstr "Przeładuj" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Zamknij" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Zmień nazwę" @@ -2468,7 +2470,7 @@ msgstr "Zmień nazwę" msgid "Rename the window title" msgstr "Zmień nazwę tytułu okna" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2476,7 +2478,7 @@ msgstr "" "UWAGA! Wszystkie niezapisane zmiany zostaną utracone\n" "gdy ten klient zostanie zamknięty. Czy chcesz kontynuować?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Zamknij klienta: " @@ -2547,11 +2549,11 @@ msgstr "'%s' przekroczył limit czasu!" msgid "'%s' produces no output" msgstr "%s nie generuje wyniku" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Brak programu setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Aby przełączać klawiaturę, zainstaluj setxkbmap." @@ -2915,6 +2917,11 @@ msgstr "Nieobsługiwany format pliku: %s" msgid "Could not load image \"%s\"" msgstr "Nie udało się załadować obrazu \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Zamknij" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Ładowanie fontu \"%s\" nie powiodło się." diff --git a/po/pt.po b/po/pt.po index 64278cbb..387c90da 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.6.6.83\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-05-03 22:14+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID ID do cliente a usar ao contatar o gerenciador de " "sessão.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2238,7 +2242,7 @@ msgstr "" " --debug-z Mostrar mensagens de depuração sobre a pilha das " "janelas.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2258,7 +2262,11 @@ msgstr "" " --rewrite-preferences Atualiza um ficheiro de preferências existente.\n" " --trace=conf,icon Caminho do trace usado para carregar a configuração.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2318,21 +2326,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s Diretórios de configuração:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s opções configuradas: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmar saída" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2397,41 +2405,37 @@ msgstr "Não foi possível criar o diretório %s" msgid "Unable to rename %s to %s" msgstr "Não foi possível renomear %s para %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Blo_quear estação de trabalho" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Cancelar" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Sair..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Reiniciar o icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Acerca" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Recarregar win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Recarregar tec_las" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Fe_char" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Renomear" @@ -2440,7 +2444,7 @@ msgstr "Renomear" msgid "Rename the window title" msgstr "Renomear o título da janela" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2448,7 +2452,7 @@ msgstr "" "ATENÇÃO! Qualquer alteração não guardada será perdida\n" "ao interromper este cliente. Deseja continuar?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Interromper cliente: " @@ -2519,11 +2523,11 @@ msgstr "'%s' expirou!" msgid "'%s' produces no output" msgstr "'%s' não produz resultado" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Programa setxkbmap em falta" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Para alternar o teclado, instale o setxkbmap." @@ -2885,6 +2889,9 @@ msgstr "Formato de ficheiro não suportado: %s" msgid "Could not load image \"%s\"" msgstr "Não foi possível carregar a imagem \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "Fe_char" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Carregamento da fonte alternativa \"%s\" falhou." diff --git a/po/pt_BR.po b/po/pt_BR.po index c20b2ff1..fabdeb2c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.3.4pre2\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-04-27 02:14+0000\n" "Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Portuguese (Brazil) " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID O ID do cliente a ser utilizado ao entrar em contato " "com o gerenciador de sessão.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2265,7 +2269,7 @@ msgstr "" " --debug-z Exibe as mensagens de depuração relacionadas ao\n" " empilhamento das janelas.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2287,7 +2291,11 @@ msgstr "" " --trace=conf,icon Caminho de rastreamento utilizado para carregar\n" " as configurações.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2347,21 +2355,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s diretórios de configurações:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s opções estão configuradas: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmar a Saída" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2426,41 +2434,37 @@ msgstr "Não foi possível criar o diretório %s" msgid "Unable to rename %s to %s" msgstr "Não foi possível renomear %s para %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Blo_quear a Área de Trabalho" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Cancelar" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Sair..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Reiniciar o IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "So_bre" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Recarregar win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Recarregar c_haves" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "F_echar" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Renomear" @@ -2469,7 +2473,7 @@ msgstr "Renomear" msgid "Rename the window title" msgstr "Renomear o título da janela" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2479,7 +2483,7 @@ msgstr "" "perdidas quando este cliente for finalizado.\n" "Você quer continuar?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Interromper o Cliente: " @@ -2550,11 +2554,11 @@ msgstr "'%s' esgotou o tempo!" msgid "'%s' produces no output" msgstr "'%s' não produz uma saída." -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "O programa setxkbmap não está disponível." -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Para alternar o teclado, por favor, instale o setxkbmap." @@ -2928,6 +2932,9 @@ msgstr "O formato do arquivo %s não é suportado." msgid "Could not load image \"%s\"" msgstr "Não foi possível carregar a imagem \"%s\"." +#~ msgid "Clos_e" +#~ msgstr "F_echar" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "O carregamento da fonte alternativa \"%s\" falhou." diff --git a/po/ro.po b/po/ro.po index f6f12aa4..7d36c606 100644 --- a/po/ro.po +++ b/po/ro.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.0.9\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2002-10-04 12:30+0200\n" "Last-Translator: Tiberiu Micu \n" "Language-Team: Romanian \n" @@ -144,12 +144,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1373,82 +1373,82 @@ msgstr "Fereastra de stare GNOME" msgid "workspace #%d: `%s'\n" msgstr "spaţiu de lucru #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Argument invalid: `%s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Argument invalid: `%s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Argument invalid: `%s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, fuzzy, c-format msgid "Invalid expression: `%s'" msgstr "Argument invalid: `%s'." -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "Nu pot porni afişarea: %s. Trebuie să ruleze X şi setat $DISPLAY." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Nici o acţiune specificată" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Identificator de ferestră invalid: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Argument invalid: `%s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Argument invalid: `%s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Acţiune necunoscută: `%s'" @@ -1490,13 +1490,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Acţiune necunoscută: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Repornire" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1506,7 +1506,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1570,17 +1570,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Opţiune nerecunoscută: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Argument nerecunoscut: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1672,51 +1672,51 @@ msgstr "" "3 Eroare subsisteme (de ex: conectare nereuşită la server).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "Suportul pentru interfaţa %s necompilat." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Interfaţă nesuportată: %s." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Semnal primit %d: Terminare..." @@ -1752,7 +1752,7 @@ msgstr "Împachetează liniile" msgid "Failed to load image '%s'." msgstr "Nu pot găsi harta de pixeli %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1803,12 +1803,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Opţiune nerecunoscută: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1913,203 +1913,207 @@ msgstr "Renunţare ieşire" msgid "Lock _Workstation" msgstr "Blochează staţia de lucru" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Reporneşte" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "Opreşte" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Repornire _Icewm" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Repornire _Xterm" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Meniu" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "Dochează de_asupra" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Dochează" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "Deasupra" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Normal" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "Dedesu_bt" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "D_esktop" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Alăturare or_izontală" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Alăturare _verticală" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "_Restaurează" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "_Mută" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "Mărime" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Mi_nimizează" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "Ma_ximizează" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Maximizează" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Maximizează" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "Ascunde" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "Rulează" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "Ridică" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "_Coboară" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "Strat" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Mută în" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Ocupă tot" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "Limitează spaţiul de lucru" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "Închide" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "Închide clientul" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "Lista ferestre" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "Un alt manager de ferestre rulează, ies..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2118,33 +2122,33 @@ msgstr "" "Nu pot reporni: %s\n" "Conduce calea $PATH către %s?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2156,7 +2160,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2188,21 +2196,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Opţiune nerecunoscută: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Confirmă ieşirea" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2265,44 +2273,38 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "Numele tastei %s necunoscut în %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "Blochează staţia de lucru" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Renunţă" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Ieşire..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Reporneşte icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "Despre" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Închide" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2311,7 +2313,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2319,7 +2321,7 @@ msgstr "" "AVERTISMENT! Toate schimbările nesalvate vor fi pierdute\n" "când acest client este închis. Doriţi sa continuaţi?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Închide client: " @@ -2388,11 +2390,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2771,6 +2773,11 @@ msgstr "Interfaţă nesuportată: %s." msgid "Could not load image \"%s\"" msgstr "Nu pot găsi harta de pixeli %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Închide" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Încărcarea fontului de rezervă \"%s\" a eşuat." diff --git a/po/ru.po b/po/ru.po index e33e10ca..439b07ed 100644 --- a/po/ru.po +++ b/po/ru.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.4.2\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-04-19 07:14+0000\n" "Last-Translator: Dmitriy Khanzhin \n" "Language-Team: Russian " msgstr "<пусто>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Идентификатор клиента для связи с менеджером сеансов.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2249,7 +2253,7 @@ msgstr "" " --debug-z Печатать отладочные сообщения, относящиеся к стеку " "окон.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2270,7 +2274,11 @@ msgstr "" " --trace=conf,icon Отслеживание путей, используемых для загрузки " "конфигурации.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2332,21 +2340,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "Каталоги конфигурации %s:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "Настроенные параметры %s: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Подтверждение выхода" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2412,41 +2420,37 @@ msgstr "Не удается создать каталог %s" msgid "Unable to rename %s to %s" msgstr "Не удается переименовать %s в %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Заблокировать _станцию" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Отмена" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Выход..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Перезапуск IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_О программе" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Перечитать win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Перечитать ke_ys" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "За_крыть" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Переименовать" @@ -2455,7 +2459,7 @@ msgstr "Переименовать" msgid "Rename the window title" msgstr "Переименовать заголовок окна" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2464,7 +2468,7 @@ msgstr "" "при закрытии этого окна. Вы согласны его закрыть?" # -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Убить Окно: " @@ -2535,11 +2539,11 @@ msgstr "У '%s' вышло время!" msgid "'%s' produces no output" msgstr "%s не возвращает выходных данных" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Отсутствует программа setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Для переключения клавиатуры установите setxkbmap." @@ -2900,6 +2904,9 @@ msgstr "Неподдерживаемый формат файла: %s" msgid "Could not load image \"%s\"" msgstr "Не удалось загрузить изображение \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "За_крыть" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Ошибка загрузки резервного шрифта \"%s\"." diff --git a/po/si.po b/po/si.po index e28bb712..0aa68a3f 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.9.2.42\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -144,12 +144,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1317,77 +1317,77 @@ msgstr "" msgid "workspace #%d: `%s'\n" msgstr "" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, c-format msgid "Invalid state: `%s'." msgstr "" -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, c-format msgid "Invalid argument: `%s'" msgstr "" -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, c-format msgid "Invalid Xinerama: `%s'." msgstr "" -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "" -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, c-format msgid "Unexpected: `%s'." msgstr "" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "" -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, c-format msgid "Invalid PID: `%s'" msgstr "" -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, c-format msgid "Invalid layer: `%s'." msgstr "" -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "" @@ -1429,12 +1429,12 @@ msgstr "" msgid "Unknown option '%s'" msgstr "" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, c-format msgid "restart %s." msgstr "" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1444,7 +1444,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 msgid "IceWM crash response" msgstr "" @@ -1505,17 +1505,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1567,51 +1567,51 @@ msgid "" "\n" msgstr "" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "" -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "" -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, c-format msgid "Failed to connect to audio interfaces %s." msgstr "" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, c-format msgid "Received signal %s: Terminating..." msgstr "" @@ -1647,7 +1647,7 @@ msgstr "" msgid "Failed to load image '%s'." msgstr "" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 msgid "" "Usage: icewmbg [OPTIONS]\n" "Where multiple values can be given they are separated by commas.\n" @@ -1698,12 +1698,12 @@ msgid "" "\n" msgstr "" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, c-format msgid "Unrecognized option '%s'." msgstr "" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1806,232 +1806,236 @@ msgstr "" msgid "Lock _Workstation" msgstr "" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 msgid "Maximize_Vert" msgstr "" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 msgid "MaximizeHori_z" msgstr "" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "" -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" "Does $PATH lead to %s?" msgstr "" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2043,7 +2047,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2075,21 +2083,21 @@ msgid "" "\n" msgstr "" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2150,41 +2158,37 @@ msgstr "" msgid "Unable to rename %s to %s" msgstr "" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "" -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2193,13 +2197,13 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" msgstr "" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "" @@ -2268,11 +2272,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" diff --git a/po/sk.po b/po/sk.po index e9336dd1..20e92cc2 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm-1.2.22\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-03-28 16:14+0000\n" "Last-Translator: Ferdinand Galko \n" "Language-Team: Slovak " msgstr "<žiadny>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID ID klienta, ktoré bude použité pri kontaktovaní " "správcu sedenia.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2234,7 +2238,7 @@ msgstr "" " --debug Vypíše všeobecné ladiace správy.\n" " --debug-z Vypíše ladiace správy týkajúce naskladania okien.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2254,7 +2258,11 @@ msgstr "" " --rewrite-preferences Aktualizuje existujúci súbor predvolieb.\n" " --trace=conf,icon Stopové cesty použité na načítanie konfigurácie.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2314,21 +2322,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s konfiguračné adresáre:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s nakonfigurované voľby: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Potvrdiť odhlásenie" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2393,41 +2401,37 @@ msgstr "Nepodarilo sa vytvoriť adresár %s" msgid "Unable to rename %s to %s" msgstr "Nepodarilo sa premenovať %s na %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "Zamknúť pracovnú _stanicu" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Zrušiť" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Odh_lásenie..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Reštartovať icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "O _aplikacii" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Znovu načítať m_ožnosti okna" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Znovu načítať kláves_y" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Zavri_eť" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Premenovať" @@ -2436,7 +2440,7 @@ msgstr "Premenovať" msgid "Rename the window title" msgstr "Premenovať názov okna" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2444,7 +2448,7 @@ msgstr "" "VAROVANIE! Ak bude tento klient zabitý, budú\n" "všetky neuložené dáta stratené. Chcete pokračovať?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Zabiť klienta: " @@ -2515,11 +2519,11 @@ msgstr "'%s' vypršal!" msgid "'%s' produces no output" msgstr "'%s' nevytára žiadny výstup" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Chýba program setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Pre prepínanie klávesníc nainštalujte setxkbmap." @@ -2883,6 +2887,9 @@ msgstr "Nepodporovaný formát súboru: %s" msgid "Could not load image \"%s\"" msgstr "Nepodarilo sa načítať obrázok \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "Zavri_eť" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Nahranie núdzového písma \"%s\" zlyhalo." diff --git a/po/sl.po b/po/sl.po index 5c993008..0a7533a0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: sl\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2004-10-03 21:56+0200\n" "Last-Translator: Jernej Kovacic \n" "Language-Team: Slovenian \n" @@ -158,12 +158,12 @@ msgstr "" msgid "_Separate" msgstr "" -#: src/akeyboard.cc:83 src/icesm.cc:475 src/wmmenu.cc:503 +#: src/akeyboard.cc:83 src/icesm.cc:468 src/wmmenu.cc:503 #, c-format msgid "%s exited with status %d." msgstr "" -#: src/akeyboard.cc:86 src/icesm.cc:481 src/icesm.cc:635 src/wmmenu.cc:506 +#: src/akeyboard.cc:86 src/icesm.cc:474 src/icesm.cc:628 src/wmmenu.cc:506 #, c-format msgid "%s was killed by signal %d." msgstr "" @@ -1390,83 +1390,83 @@ msgstr "stanje Gnomovega okna" msgid "workspace #%d: `%s'\n" msgstr "delovna površina #%d: `%s'\n" -#: src/icesh.cc:2615 src/icesh.cc:4430 src/icesh.cc:5059 +#: src/icesh.cc:2615 src/icesh.cc:4433 src/icesh.cc:5062 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid state: `%s'." msgstr "Neveljaven argument %s'." -#: src/icesh.cc:2644 src/icesh.cc:4009 src/icesh.cc:4059 src/icesh.cc:5374 +#: src/icesh.cc:2644 src/icesh.cc:4012 src/icesh.cc:4062 src/icesh.cc:5377 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid argument: `%s'" msgstr "Neveljaven argument %s'." -#: src/icesh.cc:3639 +#: src/icesh.cc:3642 #, c-format msgid "Cannot get geometry of window 0x%lx" msgstr "" -#: src/icesh.cc:3664 +#: src/icesh.cc:3667 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid Xinerama: `%s'." msgstr "Neveljaven argument %s'." -#: src/icesh.cc:3786 src/icesh.cc:3794 src/wmconfig.cc:148 src/wmsave.cc:65 +#: src/icesh.cc:3789 src/icesh.cc:3797 src/wmconfig.cc:148 src/wmsave.cc:65 #: src/wmsave.cc:298 src/wmsave.cc:301 #, c-format msgid "Unable to write to %s" msgstr "" -#: src/icesh.cc:4025 +#: src/icesh.cc:4028 #, c-format msgid "Action `%s' requires at least %d arguments." msgstr "Dejanje `%s' zahteva vsaj %d argumentov." -#: src/icesh.cc:4034 +#: src/icesh.cc:4037 #, c-format msgid "Invalid expression: `%s'" msgstr "Neveljaven izraz: `%s'" -#: src/icesh.cc:4045 src/icesound.cc:794 src/icewmbg.cc:1003 -#: src/icewmhint.cc:37 src/wmapp.cc:1249 src/yxapp.cc:1046 +#: src/icesh.cc:4048 src/icesound.cc:800 src/icewmbg.cc:1006 +#: src/icewmhint.cc:37 src/wmapp.cc:1261 src/yxapp.cc:1046 #, c-format msgid "Can't open display: %s. X must be running and $DISPLAY set." msgstr "" "Ne morem odpreti prikaza: %s. X mora teči in $DISPLAY mora biti nastavljen." -#: src/icesh.cc:4161 +#: src/icesh.cc:4164 #, fuzzy, c-format msgid "Unexpected: `%s'." msgstr "Nepričakovana ključna beseda: %s" -#: src/icesh.cc:4193 +#: src/icesh.cc:4196 msgid "No windows found." msgstr "" -#: src/icesh.cc:4209 +#: src/icesh.cc:4212 msgid "No actions specified." msgstr "Nobeno dejanje ni določeno." -#: src/icesh.cc:4354 +#: src/icesh.cc:4357 #, c-format msgid "Invalid window identifier: `%s'" msgstr "Neveljaven identifikator okna: `%s'" -#: src/icesh.cc:4370 +#: src/icesh.cc:4373 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid PID: `%s'" msgstr "Neveljaven argument %s'." -#: src/icesh.cc:4403 +#: src/icesh.cc:4406 #, fuzzy, c-format #| msgid "Invalid argument: `%s'." msgid "Invalid layer: `%s'." msgstr "Neveljaven argument %s'." -#: src/icesh.cc:5505 +#: src/icesh.cc:5508 #, c-format msgid "Unknown action: `%s'" msgstr "Neznano dejanje: `%s'" @@ -1508,13 +1508,13 @@ msgstr "" msgid "Unknown option '%s'" msgstr "Neznano dejanje: `%s'" -#: src/icesm.cc:469 src/icesm.cc:629 +#: src/icesm.cc:462 src/icesm.cc:622 #, fuzzy, c-format #| msgid "Restart" msgid "restart %s." msgstr "Zaženi znova" -#: src/icesm.cc:520 +#: src/icesm.cc:513 msgid "" " IceWM crashed for the second time in 10 seconds. \n" " Do you wish to:\n" @@ -1524,7 +1524,7 @@ msgid "" "\t3: Run a terminal?\n" msgstr "" -#: src/icesm.cc:526 +#: src/icesm.cc:519 #, fuzzy #| msgid "IceWM tray option" msgid "IceWM crash response" @@ -1588,17 +1588,17 @@ msgstr "" msgid "ao_play failed" msgstr "" -#: src/icesound.cc:676 +#: src/icesound.cc:680 #, c-format msgid "Unrecognized option: %s\n" msgstr "Neprepoznana izbira: %s\n" -#: src/icesound.cc:679 src/icesound.cc:972 +#: src/icesound.cc:683 src/icesound.cc:978 #, c-format msgid "Unrecognized argument: %s\n" msgstr "Neprepoznan argument: %s\n" -#: src/icesound.cc:688 +#: src/icesound.cc:694 #, fuzzy, c-format msgid "" "Usage: %s [OPTION]...\n" @@ -1691,51 +1691,51 @@ msgstr "" "3 Napaka podsistema (npr. neuspešna povezava s strežnikom).\n" "\n" -#: src/icesound.cc:779 +#: src/icesound.cc:785 #, c-format msgid "No audio for %s" msgstr "" -#: src/icesound.cc:856 +#: src/icesound.cc:862 msgid "Could not get GUI event property" msgstr "" -#: src/icesound.cc:860 +#: src/icesound.cc:866 #, c-format msgid "Received invalid GUI event %d" msgstr "" -#: src/icesound.cc:864 +#: src/icesound.cc:870 #, c-format msgid "Received GUI event %s" msgstr "" -#: src/icesound.cc:878 +#: src/icesound.cc:884 #, c-format msgid "Too quick; ignoring %s." msgstr "" -#: src/icesound.cc:882 +#: src/icesound.cc:888 #, c-format msgid "Support for the %s interface not compiled." msgstr "Podpora za vmesnik %s ni prevedena." -#: src/icesound.cc:915 +#: src/icesound.cc:921 #, c-format msgid "Unsupported interface: %s." msgstr "Nepodprt vmesnik: %s." -#: src/icesound.cc:924 +#: src/icesound.cc:930 #, c-format msgid "Using %s audio." msgstr "" -#: src/icesound.cc:928 +#: src/icesound.cc:934 #, fuzzy, c-format msgid "Failed to connect to audio interfaces %s." msgstr "Neuspešno odpiranje %s: %s" -#: src/icesound.cc:940 +#: src/icesound.cc:946 #, fuzzy, c-format msgid "Received signal %s: Terminating..." msgstr "Prejel signal %d: končujem..." @@ -1771,7 +1771,7 @@ msgstr "Prelom vrstic" msgid "Failed to load image '%s'." msgstr "Neuspešno odpiranje %s: %s" -#: src/icewmbg.cc:898 +#: src/icewmbg.cc:901 #, fuzzy msgid "" "Usage: icewmbg [OPTIONS]\n" @@ -1833,12 +1833,12 @@ msgstr "" " DesktopTransparencyColor - Barva oznanitve polprosojnih oken\n" " DesktopTransparencyImage - Slika oznanitve polprosojnih oken\n" -#: src/icewmbg.cc:1134 src/wmapp.cc:1836 +#: src/icewmbg.cc:1141 src/wmapp.cc:1865 #, fuzzy, c-format msgid "Unrecognized option '%s'." msgstr "Neprepoznana izbira: %s\n" -#: src/icewmbg.cc:1164 +#: src/icewmbg.cc:1173 msgid "Cannot start, because another icewmbg is still running." msgstr "" @@ -1943,203 +1943,207 @@ msgstr "Prekli_c odjave" msgid "Lock _Workstation" msgstr "_Zakleni delovno postajo" -#: src/wmapp.cc:522 src/wmdialog.cc:85 +#: src/wmapp.cc:522 src/wmdialog.cc:89 msgid "Re_boot" msgstr "Ponoven _zagon sistema" -#: src/wmapp.cc:524 src/wmdialog.cc:86 +#: src/wmapp.cc:524 src/wmdialog.cc:90 msgid "Shut_down" msgstr "Zaustavitev _sistema" -#: src/wmapp.cc:526 src/wmdialog.cc:82 +#: src/wmapp.cc:526 src/wmdialog.cc:86 msgid "_Sleep mode" msgstr "" -#: src/wmapp.cc:531 +#: src/wmapp.cc:528 src/wmdialog.cc:91 +msgid "_Hibernate" +msgstr "" + +#: src/wmapp.cc:532 msgid "Restart _Icewm" msgstr "Ponoven zagon _IceWM" -#: src/wmapp.cc:533 +#: src/wmapp.cc:534 msgid "Restart _Xterm" msgstr "Ponoven zagon _Xterma" -#: src/wmapp.cc:543 +#: src/wmapp.cc:544 msgid "_Menu" msgstr "_Menu" -#: src/wmapp.cc:544 +#: src/wmapp.cc:545 msgid "_Above Dock" msgstr "Nad sid_rom" -#: src/wmapp.cc:545 +#: src/wmapp.cc:546 msgid "_Dock" msgstr "_Zasidraj" -#: src/wmapp.cc:546 +#: src/wmapp.cc:547 msgid "_OnTop" msgstr "Na _vrh" -#: src/wmapp.cc:547 +#: src/wmapp.cc:548 msgid "_Normal" msgstr "_Običajno" -#: src/wmapp.cc:548 +#: src/wmapp.cc:549 msgid "_Below" msgstr "_Spodaj" -#: src/wmapp.cc:549 +#: src/wmapp.cc:550 msgid "D_esktop" msgstr "_Namizje" -#: src/wmapp.cc:593 src/wmwinlist.cc:381 +#: src/wmapp.cc:594 src/wmwinlist.cc:381 msgid "Move to New _Window" msgstr "" -#: src/wmapp.cc:603 +#: src/wmapp.cc:604 msgid "Left Half" msgstr "" -#: src/wmapp.cc:604 +#: src/wmapp.cc:605 msgid "Right Half" msgstr "" -#: src/wmapp.cc:605 +#: src/wmapp.cc:606 msgid "Top Half" msgstr "" -#: src/wmapp.cc:606 +#: src/wmapp.cc:607 msgid "Bottom Half" msgstr "" -#: src/wmapp.cc:608 +#: src/wmapp.cc:609 msgid "Top Left" msgstr "" -#: src/wmapp.cc:609 +#: src/wmapp.cc:610 msgid "Top Right" msgstr "" -#: src/wmapp.cc:610 +#: src/wmapp.cc:611 msgid "Bottom Left" msgstr "" -#: src/wmapp.cc:611 +#: src/wmapp.cc:612 msgid "Bottom Right" msgstr "" -#: src/wmapp.cc:612 +#: src/wmapp.cc:613 msgid "Center" msgstr "" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:614 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 +#: src/wmapp.cc:615 src/wmtaskbar.cc:217 src/wmwinlist.cc:468 #: src/wmwinlist.cc:501 msgid "T_ile Horizontally" msgstr "Zlož_i vodoravno" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmapp.cc:616 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 +#: src/wmapp.cc:617 src/wmtaskbar.cc:215 src/wmwinlist.cc:467 #: src/wmwinlist.cc:500 msgid "Tile _Vertically" msgstr "Zloži na_vpično" -#: src/wmapp.cc:628 src/wmwinlist.cc:448 +#: src/wmapp.cc:629 src/wmwinlist.cc:448 msgid "_Restore" msgstr "O_bnovi" -#: src/wmapp.cc:630 +#: src/wmapp.cc:631 msgid "_Move" msgstr "P_restavi" -#: src/wmapp.cc:632 +#: src/wmapp.cc:633 msgid "_Size" msgstr "Velikos_t" -#: src/wmapp.cc:634 src/wmwinlist.cc:449 +#: src/wmapp.cc:635 src/wmwinlist.cc:449 msgid "Mi_nimize" msgstr "Poma_njšaj" -#: src/wmapp.cc:636 src/wmwinlist.cc:450 +#: src/wmapp.cc:637 src/wmwinlist.cc:450 msgid "Ma_ximize" msgstr "R_azpni" -#: src/wmapp.cc:637 src/wmwinlist.cc:451 +#: src/wmapp.cc:638 src/wmwinlist.cc:451 #, fuzzy #| msgid "Maximize" msgid "Maximize_Vert" msgstr "Razpni" -#: src/wmapp.cc:638 src/wmwinlist.cc:452 +#: src/wmapp.cc:639 src/wmwinlist.cc:452 #, fuzzy #| msgid "Maximize" msgid "MaximizeHori_z" msgstr "Razpni" -#: src/wmapp.cc:641 src/wmwinlist.cc:453 +#: src/wmapp.cc:642 src/wmwinlist.cc:453 msgid "_Fullscreen" msgstr "_Celoten zaslon" -#: src/wmapp.cc:644 src/wmwinlist.cc:455 +#: src/wmapp.cc:645 src/wmwinlist.cc:455 msgid "_Hide" msgstr "S_krij" -#: src/wmapp.cc:646 src/wmwinlist.cc:456 +#: src/wmapp.cc:647 src/wmwinlist.cc:456 msgid "Roll_up" msgstr "Navz_gor" -#: src/wmapp.cc:653 +#: src/wmapp.cc:654 msgid "R_aise" msgstr "_Dvigni" -#: src/wmapp.cc:655 src/wmwinlist.cc:458 +#: src/wmapp.cc:656 src/wmwinlist.cc:458 msgid "_Lower" msgstr "_Spusti" -#: src/wmapp.cc:657 src/wmwinlist.cc:459 +#: src/wmapp.cc:658 src/wmwinlist.cc:459 msgid "La_yer" msgstr "S_loj" -#: src/wmapp.cc:660 src/wmwinlist.cc:460 +#: src/wmapp.cc:661 src/wmwinlist.cc:460 msgid "Tile" msgstr "" -#: src/wmapp.cc:664 src/wmwinlist.cc:462 +#: src/wmapp.cc:665 src/wmwinlist.cc:462 msgid "Move _To" msgstr "Prestavi _v" -#: src/wmapp.cc:665 src/wmwinlist.cc:463 +#: src/wmapp.cc:666 src/wmwinlist.cc:463 msgid "Occupy _All" msgstr "Za_sedi vse" -#: src/wmapp.cc:671 +#: src/wmapp.cc:672 msgid "Limit _Workarea" msgstr "_Omeji delovno površino" -#: src/wmapp.cc:675 src/wmwinlist.cc:464 +#: src/wmapp.cc:676 src/wmwinlist.cc:464 msgid "Tray _icon" msgstr "Pladenj z _ikonami" -#: src/wmapp.cc:677 src/wmwinlist.cc:465 +#: src/wmapp.cc:678 src/wmwinlist.cc:465 msgid "R_ename title" msgstr "" -#: src/wmapp.cc:682 src/wmwinlist.cc:480 src/wmwinlist.cc:488 +#: src/wmapp.cc:683 src/wmwinlist.cc:480 src/wmwinlist.cc:488 msgid "_Close" msgstr "_Zapri" -#: src/wmapp.cc:684 src/wmwinlist.cc:482 +#: src/wmapp.cc:685 src/wmwinlist.cc:482 msgid "_Kill Client" msgstr "_Ubij odjemalca" -#: src/wmapp.cc:687 src/wmdialog.cc:87 src/wmwinmenu.cc:134 +#: src/wmapp.cc:688 src/wmdialog.cc:92 src/wmwinmenu.cc:134 msgid "_Window list" msgstr "_Seznam oken" -#: src/wmapp.cc:726 +#: src/wmapp.cc:727 msgid "Another window manager already running, exiting..." msgstr "Drug upravljalnik oken že teče, končujem..." -#: src/wmapp.cc:801 +#: src/wmapp.cc:802 #, c-format msgid "" "Could not restart: %s\n" @@ -2148,33 +2152,33 @@ msgstr "" "Ne morem ponovno zagnati: %s\n" "Ali je %s v spremenljivki $PATH?" -#: src/wmapp.cc:962 +#: src/wmapp.cc:974 msgid "Confirm Restart as Terminal" msgstr "" -#: src/wmapp.cc:963 +#: src/wmapp.cc:975 msgid "" "Unmanage all applications and restart\n" "as a terminal. Proceed?" msgstr "" -#: src/wmapp.cc:1250 src/yxapp.cc:1047 +#: src/wmapp.cc:1262 src/yxapp.cc:1047 msgid "" msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2186,7 +2190,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2244,21 +2252,21 @@ msgstr "" "Sporočanje hroščev, zahteve za podporo, komentarji, ... na https://ice-wm." "org/\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Neprepoznana izbira: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Potrdi odjavo" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2321,44 +2329,38 @@ msgstr "Neuspešna izdelava procesa potomca: %s" msgid "Unable to rename %s to %s" msgstr "Neuspešno odpiranje %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 #, fuzzy msgid "Loc_k Workstation" msgstr "_Zakleni delovno postajo" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Prekliči" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Odjava..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "Po_noven zagon IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "O pro_gramu" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Zapri" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2367,7 +2369,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2375,7 +2377,7 @@ msgstr "" "OPOZORILO! Vse neshranjene spremebe se bodo ob prekinitvi\n" "tega odjemalca izgubile. Ali želite nadaljevati?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Prekini odjemalca: " @@ -2444,11 +2446,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2828,6 +2830,11 @@ msgstr "Nepodprt vmesnik: %s." msgid "Could not load image \"%s\"" msgstr "Ne najdem zemljevida točk %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Zapri" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Nalaganje nadomestne pisave \"%s\" ni uspelo." diff --git a/po/sv.po b/po/sv.po index f3ebbee8..0255cb27 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Icewm 1.2.0-beta1\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-04-10 07:14+0000\n" "Last-Translator: Luna Jernberg \n" "Language-Team: Swedish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Klient-ID som ska användas vid kontakt med " "sessionshanteraren.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2225,7 +2229,7 @@ msgstr "" " --debug Skriv ut allmänna felsökningsmeddelanden.\n" " --debug-z Skriv ut felsökningsmeddelanden om fönsterstackning.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2245,7 +2249,11 @@ msgstr "" " --rewrite-preferences Uppdatera en befintlig inställningsfil\n" " --trace=conf, icon Sökvägar som används för att ladda konfiguration.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2304,21 +2312,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s konfigureringskataloger:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s konfigurerade väljare:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Bekräfta utloggning" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2383,41 +2391,37 @@ msgstr "Kan inte skapa katalog %s" msgid "Unable to rename %s to %s" msgstr "Kan inte byta namn på %s till %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Lås arbetsstationen" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Avbryt" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "Avsl_uta..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Starta om icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Om" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Ladda om fönster_alternativ" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "Ladda om ta_ngenter" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "Stän_g" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Byt namn" @@ -2426,7 +2430,7 @@ msgstr "Byt namn" msgid "Rename the window title" msgstr "Byt namn på fönster titel" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2435,7 +2439,7 @@ msgstr "" "att gå förlorade när den här klienten dödas.\n" "Vill du fortsätta?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Döda klient: " @@ -2506,11 +2510,11 @@ msgstr "'%s' tog en timeout!" msgid "'%s' produces no output" msgstr "'%s' genererar inga utdata" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Saknar program setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "För att byta tangentbordslayout, vänligen installera setxkbmap." @@ -2873,6 +2877,9 @@ msgstr "Filformat som inte stöds: %s" msgid "Could not load image \"%s\"" msgstr "Kunde inte ladda bild \"%s\"" +#~ msgid "Clos_e" +#~ msgstr "Stän_g" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Inläsning av reservfont \"%s\" misslyckades." diff --git a/po/tr.po b/po/tr.po index 86a59ad6..b939cfe7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.2.12\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-04-22 08:14+0000\n" "Last-Translator: Mehmet Akif 9oglu \n" "Language-Team: Turkish " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Oturum yöneticisiyle iletişim kurarken kullanılacak " "istemci kimliği.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2244,7 +2248,7 @@ msgstr "" " --debug-z Pencere yığınlaması ile ilgili hata ayıklama " "mesajlarını yazdırın.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2265,7 +2269,11 @@ msgstr "" " --trace=conf,icon Yapılandırmayı yüklemek için kullanılan yolları " "izleyin.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2325,21 +2333,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s yapılandırma dizinleri:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s yapılandırılmış seçenekler:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Oturum Kapatma Onayı" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2404,41 +2412,37 @@ msgstr "%s dizini oluşturulamadı" msgid "Unable to rename %s to %s" msgstr "%s, %s olarak yeniden adlandırılamıyor" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Bilgisayarı Kilitle" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Vazgeç" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Oturumu Kapat..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "I_ceWM'i Yeniden Başlat" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Hakkında" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "Yenile win_options" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "_Tuşları yükle" -#: src/wmdialog.cc:92 -msgid "Clos_e" -msgstr "_Kapat" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "Yeniden adlandır" @@ -2447,7 +2451,7 @@ msgstr "Yeniden adlandır" msgid "Rename the window title" msgstr "Pencere başlığını yeniden adlandır" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2455,7 +2459,7 @@ msgstr "" "DİKKAT!! Bu istemci kapatıldığında tüm kaydedilmemiş\n" "değişiklikler kaybedilecektir. Emin misiniz?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "İstemciyi öldür: " @@ -2526,11 +2530,11 @@ msgstr "'%s' zaman aşımına uğradı!" msgid "'%s' produces no output" msgstr "'%s' çıktı üretmiyor" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "setxkbmap programı eksik" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Klavye geçişi için lütfen setxkbmap yükleyin." @@ -2896,6 +2900,9 @@ msgstr "Desteklenmeyen dosya biçimi: %s" msgid "Could not load image \"%s\"" msgstr "\"%s\" resmi yüklenemedi" +#~ msgid "Clos_e" +#~ msgstr "_Kapat" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "\"%s\" fallback fontu yüklenemedi." diff --git a/po/uk.po b/po/uk.po index cdd28006..db362023 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: IceWM 1.0.6\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2021-12-18 21:14+0000\n" "Last-Translator: Taras Panchenko \n" "Language-Team: Ukrainian " msgstr "<немає>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" " --client-id=ID Ідентифікатор клієнта для зв'язку із менеджером " "сеансів.\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2237,7 +2241,7 @@ msgstr "" " --debug-z Друкує зневаджувальні повідомлення, які стосуються " "стеку вікон.\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2258,7 +2262,11 @@ msgstr "" " --trace=conf,icon Відстеження шляхів, що використовуються для " "завантаження конфігурації.\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2319,21 +2327,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s теки конфігурацій:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s налаштовані параметри:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Підтвердження виходу" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2398,45 +2406,39 @@ msgstr "Не вдалося створити теку %s" msgid "Unable to rename %s to %s" msgstr "Неможливо перейменувати %s на %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "За_мкнути станцію" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "_Скасувати" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Вихід..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Перезапустити IceWM" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Про" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "Перезавантажити" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Закрити" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2445,7 +2447,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2453,7 +2455,7 @@ msgstr "" "УВАГА! Всі незбережені дані будуть втрачені\n" "при знищенні цього клієнта. Бажаєте продовжити?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Знищити клієнта: " @@ -2524,11 +2526,11 @@ msgstr "У '%s' вийшов час!" msgid "'%s' produces no output" msgstr "'%s' не створює виводу" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "Застосунок setxkbmap відсутній" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "Для перемикання клавіатури потрібно встановити setxkbmap." @@ -2889,6 +2891,11 @@ msgstr "Формат файлу не підтримується: %s" msgid "Could not load image \"%s\"" msgstr "Не можу завантажити малюнок \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Закрити" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Помилка завантаження резервного шрифту \"%s\"." diff --git a/po/vi.po b/po/vi.po index 744aed30..488f0f79 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.21pre1\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2016-08-25 08:19+0000\n" "Last-Translator: Hoàng Phạm \n" "Language-Team: Vietnamese " msgstr "" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr "" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" " --debug-z Print debug messages regarding window stacking.\n" msgstr "" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2212,7 +2216,11 @@ msgid "" " --trace=conf,icon Trace paths used to load configuration.\n" msgstr "" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, fuzzy, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2269,21 +2277,21 @@ msgstr "" "\n" "Để báo cáo lỗi, yêu cầu hỗ trợ, nhận xét,... hãy lên https://ice-wm.org/\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, fuzzy, c-format msgid "%s configured options:%s\n" msgstr "Tuỳ chọn không xác định: %s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "Xác nhận việc thoát" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2346,43 +2354,37 @@ msgstr "Lỗi khi tạo tiến trình con: %s" msgid "Unable to rename %s to %s" msgstr "Lỗi khi mở %s: %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "_Khóa Màn hình" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "Đón_g hộp thoại" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "_Thoát..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "_Chạy lại icewm" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "_Giới thiệu về icewm" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 msgid "Reload ke_ys" msgstr "" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "Đóng" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "" @@ -2391,7 +2393,7 @@ msgstr "" msgid "Rename the window title" msgstr "" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2399,7 +2401,7 @@ msgstr "" "CẢNH BÁO! Tất cả những thay đổi chưa ghi nhớ sẽ bị mất khi\n" "chương trình con này bị diệt. Bạn có muốn tiếp tục diệt?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "Diệt chương trình con: " @@ -2468,11 +2470,11 @@ msgstr "" msgid "'%s' produces no output" msgstr "" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "" @@ -2854,6 +2856,11 @@ msgstr "Không hỗ trợ giao diện: %s." msgid "Could not load image \"%s\"" msgstr "Không tìm thấy ảnh %s" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "Đóng" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "Lỗi khi nạp phông chữ dự phòng \"%s\"" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4d658f25..07d2f9ff 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Chinese (China) (icewm)\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-07 14:14+0000\n" "Last-Translator: Grace Yu \n" "Language-Team: Chinese (China) " msgstr "<无>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr " --client-id=ID 与会话管理器通信时使用客户端 ID\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2218,7 +2222,7 @@ msgstr "" " --debug 打印通用调试信息。\n" " --debug-z 窗口层叠时打印调试信息。\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2238,7 +2242,11 @@ msgstr "" " --rewrite-preferences 更新现有配置选项文件。\n" " --trace=conf,icon 跟踪用于加载配置的路径。\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2297,21 +2305,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s 配置选项目录:\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s 配置选项:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "确认退出" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2376,45 +2384,39 @@ msgstr "无法创建目录 %s" msgid "Unable to rename %s to %s" msgstr "无法将 %s 重命名为 %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "锁定工作站(_k)" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "取消(_C)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "退出(_L)..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "重启 icewm(_R)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "关于(_A)" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "重载" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "关闭" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "重命名" @@ -2423,7 +2425,7 @@ msgstr "重命名" msgid "Rename the window title" msgstr "重命名窗口标题" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2431,7 +2433,7 @@ msgstr "" "警告!当这个客户程序被杀死时,所有\n" "没有保存的修改将丢失。你想继续吗?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "杀死客户端: " @@ -2502,11 +2504,11 @@ msgstr "\"%s\" 已超时!" msgid "'%s' produces no output" msgstr "'%s' 无输出" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "缺少程序 setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "要使用键盘切换,请安装 setxkbmap。" @@ -2865,6 +2867,11 @@ msgstr "不支持的文件格式:%s" msgid "Could not load image \"%s\"" msgstr "无法加载图像 \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "关闭" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "装载备用字体“%s”失败。" diff --git a/po/zh_TW.po b/po/zh_TW.po index 0f7e1219..a4393bca 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: icewm 1.2.30\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" -"POT-Creation-Date: 2023-06-05 16:14+0200\n" +"POT-Creation-Date: 2023-07-21 01:44+0200\n" "PO-Revision-Date: 2023-02-08 09:14+0000\n" "Last-Translator: Grace Yu \n" "Language-Team: Chinese (Taiwan) " msgstr "<無>" -#: src/wmapp.cc:1577 +#: src/wmapp.cc:1592 msgid "" " --client-id=ID Client id to use when contacting session manager.\n" msgstr " --client-id=ID 聯絡工作階段管理程式時要使用的用戶端 ID。\n" -#: src/wmapp.cc:1583 +#: src/wmapp.cc:1598 msgid "" "\n" " --debug Print generic debug messages.\n" @@ -2222,7 +2226,7 @@ msgstr "" " --debug 列印一般除錯訊息。\n" " --debug-z 列印有關視窗堆疊的除錯訊息。\n" -#: src/wmapp.cc:1591 +#: src/wmapp.cc:1606 msgid "" "\n" " -a, --alpha Use a 32-bit visual for translucency.\n" @@ -2242,7 +2246,11 @@ msgstr "" " --rewrite-preferences 更新現有優先設定檔案。\n" " --trace=conf,icon 追蹤用於載入組態的路徑。\n" -#: src/wmapp.cc:1601 +#: src/wmapp.cc:1617 +msgid " -o, --output=FILE Redirect all output to FILE.\n" +msgstr "" + +#: src/wmapp.cc:1622 #, c-format msgid "" "Usage: %s [OPTIONS]\n" @@ -2301,21 +2309,21 @@ msgstr "" "%s\n" "\n" -#: src/wmapp.cc:1667 +#: src/wmapp.cc:1689 #, c-format msgid "%s configuration directories:\n" msgstr "%s 組態目錄︰\n" -#: src/wmapp.cc:1752 +#: src/wmapp.cc:1774 #, c-format msgid "%s configured options:%s\n" msgstr "%s 設定的選項:%s\n" -#: src/wmapp.cc:1886 +#: src/wmapp.cc:1915 msgid "Confirm Logout" msgstr "確定登出" -#: src/wmapp.cc:1887 +#: src/wmapp.cc:1916 msgid "" "Logout will close all active applications.\n" "Proceed?" @@ -2380,45 +2388,39 @@ msgstr "無法建立目錄 %s" msgid "Unable to rename %s to %s" msgstr "無法將 %s 重新命名為 %s" -#: src/wmdialog.cc:81 +#: src/wmdialog.cc:85 msgid "Loc_k Workstation" msgstr "鎖定工作站(_K)" -#: src/wmdialog.cc:83 src/ymsgbox.cc:51 +#: src/wmdialog.cc:87 src/ymsgbox.cc:51 msgid "_Cancel" msgstr "取消(_C)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:84 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 +#: src/wmdialog.cc:88 src/wmprog.cc:466 src/wmprog.cc:468 src/wmtaskbar.cc:243 #: src/wmtaskbar.cc:245 msgid "_Logout..." msgstr "登出(_L)..." -#: src/wmdialog.cc:88 +#: src/wmdialog.cc:93 msgid "_Restart icewm" msgstr "重新啟動 icewm(_R)" #. TRANSLATORS: This appears in a group with others items, so please make the hotkeys unique in the set: # T_ile Horizontally, Ca_scade, _Arrange, _Minimize All, _Hide All, _Undo, Arrange _Icons, _Windows, _Refresh, _About, _Logout -#: src/wmdialog.cc:89 src/wmprog.cc:434 src/wmtaskbar.cc:238 +#: src/wmdialog.cc:94 src/wmprog.cc:434 src/wmtaskbar.cc:238 msgid "_About" msgstr "關於(_A)" -#: src/wmdialog.cc:90 +#: src/wmdialog.cc:95 msgid "Reload win_options" msgstr "" -#: src/wmdialog.cc:91 +#: src/wmdialog.cc:96 #, fuzzy #| msgid "Reload" msgid "Reload ke_ys" msgstr "重新載入" -#: src/wmdialog.cc:92 -#, fuzzy -#| msgid "Close" -msgid "Clos_e" -msgstr "關閉" - #: src/wmframe.cc:1375 msgid "Rename" msgstr "重新命名" @@ -2427,7 +2429,7 @@ msgstr "重新命名" msgid "Rename the window title" msgstr "重新命名視窗標題" -#: src/wmframe.cc:1854 +#: src/wmframe.cc:1857 msgid "" "WARNING! All unsaved changes will be lost when\n" "this client is killed. Do you wish to proceed?" @@ -2435,7 +2437,7 @@ msgstr "" "【警告】!當這個客戶端程式被砍掉時,將會失去所有未儲存的變更。\n" "您希望繼續進行嗎?" -#: src/wmframe.cc:1859 +#: src/wmframe.cc:1862 msgid "Kill Client: " msgstr "砍掉客戶端:" @@ -2506,11 +2508,11 @@ msgstr "\"%s\" 已逾時!" msgid "'%s' produces no output" msgstr "「%s」未產生任何輸出" -#: src/wmmgr.cc:3633 +#: src/wmmgr.cc:3636 msgid "Missing program setxkbmap" msgstr "缺少程式 setxkbmap" -#: src/wmmgr.cc:3634 +#: src/wmmgr.cc:3637 msgid "For keyboard switching, please install setxkbmap." msgstr "若要進行鍵盤切換,請安裝 setxkbmap。" @@ -2869,6 +2871,11 @@ msgstr "不受支援的檔案格式:%s" msgid "Could not load image \"%s\"" msgstr "無法載入影像 \"%s\"" +#, fuzzy +#~| msgid "Close" +#~ msgid "Clos_e" +#~ msgstr "關閉" + #~ msgid "Loading of fallback font \"%s\" failed." #~ msgstr "載入後備字型 \"%s\" 失敗。" From 3597ac6d48c91a9859d02dd813bd95bedc9169e9 Mon Sep 17 00:00:00 2001 From: David Medina Date: Fri, 21 Jul 2023 07:34:37 +0000 Subject: [PATCH 19/23] Translated using Weblate (Catalan) Currently translated at 100.0% (526 of 526 strings) --- po/ca.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/ca.po b/po/ca.po index b30d8810..c4d06eb9 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: icewm 1.0.9\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" "POT-Creation-Date: 2023-07-21 01:44+0200\n" -"PO-Revision-Date: 2023-03-28 16:14+0000\n" +"PO-Revision-Date: 2023-07-21 10:15+0000\n" "Last-Translator: David Medina \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2018,7 +2018,7 @@ msgstr "Mode de _suspensió" #: src/wmapp.cc:528 src/wmdialog.cc:91 msgid "_Hibernate" -msgstr "" +msgstr "_Hiberna" #: src/wmapp.cc:532 msgid "Restart _Icewm" @@ -2266,7 +2266,7 @@ msgstr "" #: src/wmapp.cc:1617 msgid " -o, --output=FILE Redirect all output to FILE.\n" -msgstr "" +msgstr " -o, --output=FITXER Redirigeix tota la sortida al FITXER.\n" #: src/wmapp.cc:1622 #, c-format From 9ff35e7e93912a485b04c4984c5b2a56ca11de82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Kastner?= Date: Fri, 21 Jul 2023 07:34:51 +0000 Subject: [PATCH 20/23] Translated using Weblate (Czech) Currently translated at 100.0% (526 of 526 strings) --- po/cs.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/cs.po b/po/cs.po index 6a5c47c4..3b405ed6 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9,10 +9,10 @@ msgstr "" "Project-Id-Version: icewm-1.2.30\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" "POT-Creation-Date: 2023-07-21 01:44+0200\n" -"PO-Revision-Date: 2023-05-11 22:14+0000\n" -"Last-Translator: Jan Papež \n" -"Language-Team: Czech \n" +"PO-Revision-Date: 2023-07-21 10:15+0000\n" +"Last-Translator: Aleš Kastner \n" +"Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2014,7 +2014,7 @@ msgstr "_Režim spánku" #: src/wmapp.cc:528 src/wmdialog.cc:91 msgid "_Hibernate" -msgstr "" +msgstr "_Hibernovat" #: src/wmapp.cc:532 msgid "Restart _Icewm" @@ -2260,7 +2260,7 @@ msgstr "" #: src/wmapp.cc:1617 msgid " -o, --output=FILE Redirect all output to FILE.\n" -msgstr "" +msgstr " -o, --output=FILE Přesměrovat všechen výstup do souboru FILE.\n" #: src/wmapp.cc:1622 #, c-format From 07dbcc71ff05b1d7733b6d7aa8865e5358cd293e Mon Sep 17 00:00:00 2001 From: Yasuhiko Kamata Date: Fri, 21 Jul 2023 05:17:55 +0000 Subject: [PATCH 21/23] Translated using Weblate (Japanese) Currently translated at 100.0% (526 of 526 strings) --- po/ja.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/ja.po b/po/ja.po index 720e3749..8f5fc1d3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,10 +7,10 @@ msgstr "" "Project-Id-Version: icewm 1.0.6\n" "Report-Msgid-Bugs-To: https://github.com/bbidulock/icewm/issues\n" "POT-Creation-Date: 2023-07-21 01:44+0200\n" -"PO-Revision-Date: 2023-03-28 00:14+0000\n" +"PO-Revision-Date: 2023-07-21 10:15+0000\n" "Last-Translator: Yasuhiko Kamata \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2029,7 +2029,7 @@ msgstr "スリープモード (_S)" #: src/wmapp.cc:528 src/wmdialog.cc:91 msgid "_Hibernate" -msgstr "" +msgstr "ハイバネート (_H)" #: src/wmapp.cc:532 msgid "Restart _Icewm" @@ -2276,7 +2276,7 @@ msgstr "" #: src/wmapp.cc:1617 msgid " -o, --output=FILE Redirect all output to FILE.\n" -msgstr "" +msgstr " -o, --output=FILE 全ての出力を FILE で指定したファイルに転送します。\n" #: src/wmapp.cc:1622 #, c-format From 2890bfd56863eeeae32eb6dd91e7cafcd3ab751c Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Fri, 21 Jul 2023 12:37:09 +0200 Subject: [PATCH 22/23] Include algorithm first for portability to GCC-4.8.2. --- src/yicon.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yicon.cc b/src/yicon.cc index 509b3ec4..90549646 100644 --- a/src/yicon.cc +++ b/src/yicon.cc @@ -3,6 +3,7 @@ * * Copyright (C) 1997-2001 Marko Macek */ +#include #include "config.h" #include "ypaint.h" #include "yicon.h" @@ -12,7 +13,6 @@ #include "ypointer.h" #include "ywordexp.h" #include "ascii.h" -#include #include #include #include "intl.h" From cc2ca3710152eb721f53711c33a44dc1d44c1806 Mon Sep 17 00:00:00 2001 From: Bert Gijsbers Date: Fri, 21 Jul 2023 14:45:15 +0200 Subject: [PATCH 23/23] Fix constness for object arrays in begin+end member functions. --- src/aclock.h | 4 ++-- src/yarray.h | 14 ++++++++++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/aclock.h b/src/aclock.h index 973c2145..558a4a58 100644 --- a/src/aclock.h +++ b/src/aclock.h @@ -83,8 +83,8 @@ class ClockSet { public: ClockSet(YSMListener* sml, IAppletContainer* iapp, YWindow* parent); ~ClockSet(); - YClock** begin() const { return clocks.begin(); } - YClock** end() const { return clocks.end(); } + YClock* const* begin() const { return clocks.begin(); } + YClock* const* end() const { return clocks.end(); } int count() const { return clocks.getCount(); } YClock* operator[](int index) const { return clocks[index]; } private: diff --git a/src/yarray.h b/src/yarray.h index 5b7f7c70..5d5015a0 100644 --- a/src/yarray.h +++ b/src/yarray.h @@ -218,11 +218,17 @@ class YObjectArray: public YArray { BaseType::append(item); return *this; } - DataType** begin() const { - return (DataType**) YBaseArray::begin(); + DataType* const* begin() const { + return (DataType* const*) BaseType::begin(); } - DataType** end() const { - return (DataType**) YBaseArray::end(); + DataType* const* end() const { + return (DataType* const*) BaseType::end(); + } + DataType* const* begin() { + return (DataType* const*) BaseType::begin(); + } + DataType* const* end() { + return (DataType* const*) BaseType::end(); } private: