Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
thunar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Reuben Green
thunar
Commits
2e7fc4dc
Commit
2e7fc4dc
authored
Aug 20, 2020
by
Reuben Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix translation strings in thunar-launcher.c
parent
82fc3299
Pipeline
#1760
passed with stages
in 5 minutes and 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
thunar/thunar-launcher.c
thunar/thunar-launcher.c
+4
-4
No files found.
thunar/thunar-launcher.c
View file @
2e7fc4dc
...
...
@@ -1252,8 +1252,8 @@ thunar_launcher_append_menu_item (ThunarLauncher *launcher,
action_entry
->
accel_path
,
action_entry
->
callback
,
G_OBJECT
(
launcher
),
action_entry
->
menu_item_icon_name
,
menu
);
case
THUNAR_LAUNCHER_ACTION_OPEN_IN_TAB
:
label_text
=
g_strdup_printf
(
ngettext
(
"Open in New _Tab"
,
"Open in %d New _Tabs"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
tooltip_text
=
g_strdup_printf
(
ngettext
(
"Open the selected directory in new tab"
,
label_text
=
g_strdup_printf
(
ngettext
(
"Open in
%d
New _Tab"
,
"Open in %d New _Tabs"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
tooltip_text
=
g_strdup_printf
(
ngettext
(
"Open the selected directory in
%d
new tab"
,
"Open the selected directories in %d new tabs"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
item
=
xfce_gtk_menu_item_new
(
label_text
,
tooltip_text
,
action_entry
->
accel_path
,
action_entry
->
callback
,
G_OBJECT
(
launcher
),
menu
);
g_free
(
tooltip_text
);
...
...
@@ -1261,8 +1261,8 @@ thunar_launcher_append_menu_item (ThunarLauncher *launcher,
return
item
;
case
THUNAR_LAUNCHER_ACTION_OPEN_IN_WINDOW
:
label_text
=
g_strdup_printf
(
ngettext
(
"Open in New _Window"
,
"Open in %d New _Windows"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
tooltip_text
=
g_strdup_printf
(
ngettext
(
"Open the selected directory in new window"
,
label_text
=
g_strdup_printf
(
ngettext
(
"Open in
%d
New _Window"
,
"Open in %d New _Windows"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
tooltip_text
=
g_strdup_printf
(
ngettext
(
"Open the selected directory in
%d
new window"
,
"Open the selected directories in %d new windows"
,
launcher
->
n_selected_files
),
launcher
->
n_selected_files
);
item
=
xfce_gtk_menu_item_new
(
label_text
,
tooltip_text
,
action_entry
->
accel_path
,
action_entry
->
callback
,
G_OBJECT
(
launcher
),
menu
);
g_free
(
tooltip_text
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment