[nautilus/wip/antoniof/properties-followup: 27/29] file: Follow HIG in own username
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/antoniof/properties-followup: 27/29] file: Follow HIG in own username
- Date: Fri, 5 Aug 2022 13:02:36 +0000 (UTC)
commit 485f0a0a6f70e66d9e33d2ec54ea3d89fc162683
Author: António Fernandes <antoniof gnome org>
Date: Thu Aug 4 22:59:11 2022 +0100
file: Follow HIG in own username
"You" is preferrable to "Me"
https://developer.gnome.org/hig/guidelines/writing-style.html#guidelines
src/nautilus-file.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-file.c b/src/nautilus-file.c
index f680f6fba..4c16e3c09 100644
--- a/src/nautilus-file.c
+++ b/src/nautilus-file.c
@@ -6819,8 +6819,8 @@ nautilus_file_get_owner_as_string (NautilusFile *file,
if (include_real_name &&
file->details->uid == getuid ())
{
- /* Translators: "Me" is used to indicate the file is owned by me (the current user) */
- user_name = g_strdup (_("Me"));
+ /* Translators: This is a username followed by "(You)" to indicate the file is owned by the current
user */
+ user_name = g_strdup_printf (_("%s (You)"), file->details->owner);
}
else if (file->details->owner_real == NULL)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]