summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws+gnome@xs4all.nl>2006-08-22 08:34:10 +0000
committerWouter Bolsterlee <wbolster@src.gnome.org>2006-08-22 08:34:10 +0000
commitcf5262e65318def120ede295d3a94ddd1a569e5e (patch)
tree0d6571142ba1ad0ad6dd2ad7bc08d6c3e56cbf73
parent838fe140b4d46ac82592a2a4f4da329ed7f25f11 (diff)
downloadgnome-keyring-cf5262e65318def120ede295d3a94ddd1a569e5e.tar.gz
Fix ugly typo: s/unkown/unknown/
2006-08-22 Wouter Bolsterlee <uws+gnome@xs4all.nl> * gnome-keyring-ask.c: (ask_for_new_keyring_password), (ask_for_change_keyring_password): Fix ugly typo: s/unkown/unknown/ * po/*: Fix the same typo in all .po files and run "make update-po" to update all translations.
-rw-r--r--ChangeLog9
-rw-r--r--gnome-keyring-ask.c8
2 files changed, 13 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ead59cb..4e4756d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-08-22 Wouter Bolsterlee <uws+gnome@xs4all.nl>
+
+ * gnome-keyring-ask.c: (ask_for_new_keyring_password),
+ (ask_for_change_keyring_password): Fix ugly typo:
+ s/unkown/unknown/
+
+ * po/*: Fix the same typo in all .po files and run
+ "make update-po" to update all translations.
+
2006-08-21 Alexander Larsson <alexl@redhat.com>
* configure.in:
diff --git a/gnome-keyring-ask.c b/gnome-keyring-ask.c
index f2145cc1..47b09212 100644
--- a/gnome-keyring-ask.c
+++ b/gnome-keyring-ask.c
@@ -544,11 +544,11 @@ ask_for_new_keyring_password (void)
}
} else /* app == APPLICATION_NAME_UNKNOWN */ {
if (keyring == KEYRING_NAME_NORMAL) {
- message = g_strdup_printf (_("An unkown application wants to create a new keyring called '%s'. "
+ message = g_strdup_printf (_("An unknown application wants to create a new keyring called '%s'. "
"You have to choose the password you want to use for it."),
env_keyring_name);
} else if (keyring == KEYRING_NAME_DEFAULT) {
- message = g_strdup_printf (_("An unkown application wants to create a new default keyring. "
+ message = g_strdup_printf (_("An unknown application wants to create a new default keyring. "
"You have to choose the password you want to use for it."));
}
}
@@ -629,11 +629,11 @@ ask_for_change_keyring_password (gboolean need_original)
}
} else /* app == APPLICATION_NAME_UNKNOWN */ {
if (keyring == KEYRING_NAME_NORMAL) {
- message = g_strdup_printf (_("An unkown application wants to change the password for the '%s' keyring. "
+ message = g_strdup_printf (_("An unknown application wants to change the password for the '%s' keyring. "
"You have to choose the password you want to use for it."),
env_keyring_name);
} else if (keyring == KEYRING_NAME_DEFAULT) {
- message = g_strdup_printf (_("An unkown application wants to change the password for the default keyring. "
+ message = g_strdup_printf (_("An unknown application wants to change the password for the default keyring. "
"You have to choose the password you want to use for it."));
}
}