Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
gThumb
Commits
5ea6ddbc
Commit
5ea6ddbc
authored
Nov 16, 2019
by
Paolo Bacchilega
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slideshow: always use the term 'presentation' for consistency
parent
7a2bf177
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
12 deletions
+12
-12
extensions/slideshow/callbacks.c
extensions/slideshow/callbacks.c
+1
-1
extensions/slideshow/data/ui/slideshow-preferences.ui
extensions/slideshow/data/ui/slideshow-preferences.ui
+4
-4
extensions/slideshow/gth-slideshow.c
extensions/slideshow/gth-slideshow.c
+1
-1
extensions/slideshow/preferences.c
extensions/slideshow/preferences.c
+1
-1
extensions/slideshow/slideshow.extension.desktop.in.in
extensions/slideshow/slideshow.extension.desktop.in.in
+2
-2
gthumb/gth-application.c
gthumb/gth-application.c
+1
-1
gthumb/gth-main-default-types.c
gthumb/gth-main-default-types.c
+1
-1
gthumb/gth-shortcuts-window.c
gthumb/gth-shortcuts-window.c
+1
-1
No files found.
extensions/slideshow/callbacks.c
View file @
5ea6ddbc
...
...
@@ -354,7 +354,7 @@ ss__dlg_catalog_properties (GtkBuilder *builder,
gtk_widget_hide
(
gth_slideshow_preferences_get_widget
(
GTH_SLIDESHOW_PREFERENCES
(
slideshow_preferences
),
"transition_box"
));
#endif
/* ! HAVE_CLUTTER */
label
=
gtk_label_new
(
_
(
"
Slideshow
"
));
label
=
gtk_label_new
(
_
(
"
Presentation
"
));
gtk_widget_show
(
label
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
_gtk_builder_get_widget
(
builder
,
"properties_notebook"
)),
slideshow_preferences
,
label
);
...
...
extensions/slideshow/data/ui/slideshow-preferences.ui
View file @
5ea6ddbc
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.
18.3
-->
<!-- Generated with glade 3.
22.1
-->
<interface>
<requires
lib=
"gtk+"
version=
"3.0"
/>
<object
class=
"GtkAdjustment"
id=
"delay_adjustment"
>
...
...
@@ -42,9 +42,9 @@
<object
class=
"GtkLabel"
id=
"label3"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"label"
translatable=
"yes"
>
_Personalize
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"xalign"
>
0
</property>
<attributes>
<attribute
name=
"weight"
value=
"bold"
/>
</attributes>
...
...
@@ -61,8 +61,8 @@
<object
class=
"GtkLabel"
id=
"slideshow_label"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"label"
translatable=
"yes"
>
Presentation
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"label"
translatable=
"yes"
>
Slideshow
</property>
<attributes>
<attribute
name=
"weight"
value=
"bold"
/>
</attributes>
...
...
@@ -243,8 +243,8 @@
<object
class=
"GtkLabel"
id=
"label1"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"xalign"
>
0
</property>
<property
name=
"label"
translatable=
"yes"
>
Playlist
</property>
<property
name=
"xalign"
>
0
</property>
<attributes>
<attribute
name=
"weight"
value=
"bold"
/>
</attributes>
...
...
extensions/slideshow/gth-slideshow.c
View file @
5ea6ddbc
...
...
@@ -281,7 +281,7 @@ view_next_image_automatically (GthSlideshow *self)
if
(
self
->
priv
->
automatic
&&
!
self
->
priv
->
paused
)
gth_screensaver_inhibit
(
self
->
priv
->
screensaver
,
GTK_WINDOW
(
self
),
_
(
"Playing
slideshow
"
));
_
(
"Playing
a presentation
"
));
else
gth_screensaver_uninhibit
(
self
->
priv
->
screensaver
);
...
...
extensions/slideshow/preferences.c
View file @
5ea6ddbc
...
...
@@ -139,7 +139,7 @@ ss__dlg_preferences_construct_cb (GtkWidget *dialog,
G_CALLBACK
(
change_delay_spinbutton_value_changed_cb
),
data
);
label
=
gtk_label_new
(
_
(
"
Slideshow
"
));
label
=
gtk_label_new
(
_
(
"
Presentation
"
));
gtk_widget_show
(
label
);
gtk_notebook_append_page
(
GTK_NOTEBOOK
(
notebook
),
data
->
preferences_page
,
label
);
...
...
extensions/slideshow/slideshow.extension.desktop.in.in
View file @
5ea6ddbc
[Extension]
Name=
Slideshow
Comment=
View images as a slideshow
.
Name=
Presentation
Comment=
Play a presentation of images
.
Authors=gthumb development team
Copyright=Copyright © 2008-2013 The Free Software Foundation, Inc.
Version=@GTHUMB_VERSION@
...
...
gthumb/gth-application.c
View file @
5ea6ddbc
...
...
@@ -57,7 +57,7 @@ static const GOptionEntry options[] = {
0
},
{
"slideshow"
,
's'
,
0
,
G_OPTION_ARG_NONE
,
&
StartSlideshow
,
N_
(
"Automatically start a
slideshow
"
),
N_
(
"Automatically start a
presentation
"
),
0
},
{
"import-photos"
,
'i'
,
0
,
G_OPTION_ARG_NONE
,
&
ImportPhotos
,
...
...
gthumb/gth-main-default-types.c
View file @
5ea6ddbc
...
...
@@ -40,7 +40,7 @@ static GthShortcutCategory shortcut_categories[] = {
{
GTH_SHORTCUT_CATEGORY_NAVIGATION
,
N_
(
"Navigation"
),
15
},
{
GTH_SHORTCUT_CATEGORY_FILE_MANAGER
,
N_
(
"File Manager"
),
10
},
{
GTH_SHORTCUT_CATEGORY_VIEWER
,
N_
(
"Viewer"
),
20
},
{
GTH_SHORTCUT_CATEGORY_SLIDESHOW
,
N_
(
"
Slideshow
"
),
21
}
{
GTH_SHORTCUT_CATEGORY_SLIDESHOW
,
N_
(
"
Presentation
"
),
21
}
};
...
...
gthumb/gth-shortcuts-window.c
View file @
5ea6ddbc
...
...
@@ -38,7 +38,7 @@ typedef struct {
static
ContextInfo
contexts
[]
=
{
{
GTH_SHORTCUT_CONTEXT_BROWSER
,
"browser"
,
N_
(
"Browser"
)
},
{
GTH_SHORTCUT_CONTEXT_VIEWER
,
"viewer"
,
N_
(
"Viewer"
)
},
//{ GTH_SHORTCUT_CONTEXT_SLIDESHOW, "slideshow", N_("
Slideshow
") }
//{ GTH_SHORTCUT_CONTEXT_SLIDESHOW, "slideshow", N_("
Presentation
") }
};
...
...
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