Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
Files
Commits
3a5a36ab
Commit
3a5a36ab
authored
Jan 18, 2000
by
John Sullivan
Browse files
Call selection "items" rather than "files"
parent
6e7ca6f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog-20000414
View file @
3a5a36ab
2000-01-18 John Sullivan <sullivan@eazel.com>
* src/file-manager/fm-directory-view.c:
(display_selection_info): Call selection "items" rather than
"files" because users distinguish directories from files.
2000-01-18 John Sullivan <sullivan@eazel.com>
* src/file-manager/fm-directory-view.h:
...
...
src/file-manager/fm-directory-view.c
View file @
3a5a36ab
...
...
@@ -257,9 +257,9 @@ display_selection_info (FMDirectoryView *view)
size_string
=
gnome_vfs_file_size_to_string
(
size
);
if
(
count
==
1
)
msg
=
g_strdup_printf
(
_
(
"1
file
selected -- %s"
),
size_string
);
msg
=
g_strdup_printf
(
_
(
"1
item
selected -- %s"
),
size_string
);
else
msg
=
g_strdup_printf
(
_
(
"%d
file
s selected -- %s"
),
count
,
size_string
);
msg
=
g_strdup_printf
(
_
(
"%d
item
s selected -- %s"
),
count
,
size_string
);
g_free
(
size_string
);
memset
(
&
sri
,
0
,
sizeof
(
sri
));
...
...
Write
Preview
Supports
Markdown
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