Skip to content

Commit

Permalink
Another minor tweak to warning text (missing named workspace)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsalt committed Oct 18, 2024
1 parent 356b61a commit 078a260
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions po/devilspie2.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: devilspie2 0.45\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2024-10-18 20:15+0100\n"
"POT-Creation-Date: 2024-10-18 20:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -107,7 +107,7 @@ msgstr ""

#: script_functions.c:990 script_functions.c:1046
#, c-format
msgid "A Workspace with the name '%s' does not exist!"
msgid "A workspace with the name '%s' does not exist!"
msgstr ""

#: script_functions.c:1003 script_functions.c:1058
Expand Down
2 changes: 1 addition & 1 deletion src/script_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ int c_change_workspace(lua_State *lua)
workspace_name = (gchar*)lua_tostring(lua, 1);
workspace_idx0 = find_workspace_with_name(workspace_name, get_current_window());
if(workspace_idx0 == -1) {
g_warning(_("A Workspace with the name '%s' does not exist!"), workspace_name);
g_warning(_("A workspace with the name '%s' does not exist!"), workspace_name);
}
break;
default: break;
Expand Down

0 comments on commit 078a260

Please sign in to comment.