Bug 753244 - Typos in translatable strings

This commit is contained in:
Milan Crha
2015-08-04 19:39:29 +02:00
parent 412916eed0
commit 901fee1ea0
4 changed files with 5 additions and 5 deletions

View File

@ -239,7 +239,7 @@ N_("Asia/Kabul");
N_("Asia/Kamchatka");
N_("Asia/Karachi");
N_("Asia/Kashgar");
N_("Asia/Katmandu");
N_("Asia/Kathmandu");
N_("Asia/Krasnoyarsk");
N_("Asia/Kuala_Lumpur");
N_("Asia/Kuching");

View File

@ -160,8 +160,8 @@ html_editor_replace_dialog_replace_all_cb (EHTMLEditorReplaceDialog *dialog)
e_html_editor_view_force_spell_check_in_viewport (view);
}
result = g_strdup_printf (ngettext("%d occurence replaced",
"%d occurences replaced",
result = g_strdup_printf (ngettext("%d occurrence replaced",
"%d occurrences replaced",
i),
i);
gtk_label_set_label (GTK_LABEL (dialog->priv->result_label), result);

View File

@ -370,7 +370,7 @@ html_editor_spell_check_dialog_replace_all (EHTMLEditorSpellCheckDialog *dialog)
gtk_tree_model_get (model, &iter, 0, &replacement, -1);
/* Repeatedly search for 'word', then replace selection by
* 'replacement'. Repeat until there's at least one occurence of
* 'replacement'. Repeat until there's at least one occurrence of
* 'word' in the document */
while (webkit_web_view_search_text (
WEBKIT_WEB_VIEW (view), dialog->priv->word,

View File

@ -73,7 +73,7 @@ e_html_editor_dom_node_find_parent_element (WebKitDOMNode *node,
* @node: Start node
* @tagname: Tag name of element to search.
*
* Recursively searches for first occurence of element with given @tagname that
* Recursively searches for first occurrence of element with given @tagname that
* is a child of @node.
*
* Returns: A #WebKitDOMElement with @tagname representing a child of @node or