[evolution] Fix minor typos
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Fix minor typos
- Date: Tue, 19 May 2020 06:16:35 +0000 (UTC)
commit 8b5932f0221fa27a6884ff1815616840e087be4b
Author: Yuri Chornoivan <yurchor ukr net>
Date: Mon May 18 19:37:25 2020 +0300
Fix minor typos
help/C/intro-main-window.page | 2 +-
src/calendar/calendar.error.xml | 12 ++++++------
src/calendar/gui/e-calendar-view.c | 2 +-
src/e-util/e-attachment.c | 4 ++--
src/e-util/e-html-editor.c | 2 +-
src/e-util/e-misc-utils.c | 6 +++---
src/em-format/e-mail-formatter-headers.c | 2 +-
src/libemail-engine/mail-ops.c | 2 +-
src/mail/em-folder-tree.c | 2 +-
src/modules/itip-formatter/itip-view.c | 4 ++--
src/modules/mail/e-mail-shell-backend.c | 6 +++---
src/modules/settings/e-settings-name-selector-entry.c | 2 +-
src/shell/e-shell-view.h | 2 +-
src/shell/e-shell-window.c | 2 +-
14 files changed, 25 insertions(+), 25 deletions(-)
---
diff --git a/help/C/intro-main-window.page b/help/C/intro-main-window.page
index 373c061c85..bce0f292ae 100644
--- a/help/C/intro-main-window.page
+++ b/help/C/intro-main-window.page
@@ -91,7 +91,7 @@
<note style="tip"><p>You can disable the to do bar by toggling
<guiseq><gui>View</gui><gui>Layout</gui><gui>Show To Do Bar</gui></guiseq>.</p></note>
</item>
</terms>
-<note style="tip"><p>If you ever accidentially hide the menu bar, press <key>Alt</key> and re-enable it by
toggling <guiseq><gui>View</gui><gui>Layout</gui><gui>Show Menu Bar</gui></guiseq>.</p></note>
+<note style="tip"><p>If you ever accidentally hide the menu bar, press <key>Alt</key> and re-enable it by
toggling <guiseq><gui>View</gui><gui>Layout</gui><gui>Show Menu Bar</gui></guiseq>.</p></note>
</section>
<section id="calendar">
diff --git a/src/calendar/calendar.error.xml b/src/calendar/calendar.error.xml
index d9aeba10d8..2c360162b3 100644
--- a/src/calendar/calendar.error.xml
+++ b/src/calendar/calendar.error.xml
@@ -2,8 +2,8 @@
<error-list domain="calendar">
<error id="prompt-cancel-meeting" type="question" default="GTK_RESPONSE_YES">
- <_primary>Would you like to send all the participants a cancelation notice?</_primary>
- <_secondary>If you do not send a cancelation notice, the other participants may not know the meeting is
canceled.</_secondary>
+ <_primary>Would you like to send all the participants a cancellation notice?</_primary>
+ <_secondary>If you do not send a cancellation notice, the other participants may not know the meeting is
canceled.</_secondary>
<button _label="Do _not Send" response="GTK_RESPONSE_NO"/>
<button _label="_Send Notice" response="GTK_RESPONSE_YES"/>
</error>
@@ -16,8 +16,8 @@
</error>
<error id="prompt-cancel-task" type="question" default="GTK_RESPONSE_YES">
- <_primary>Would you like to send all the participants a cancelation notice?</_primary>
- <_secondary>If you do not send a cancelation notice, the other participants may not know the task has
been deleted.</_secondary>
+ <_primary>Would you like to send all the participants a cancellation notice?</_primary>
+ <_secondary>If you do not send a cancellation notice, the other participants may not know the task has
been deleted.</_secondary>
<button _label="Do _not Send" response="GTK_RESPONSE_NO"/>
<button _label="_Send Notice" response="GTK_RESPONSE_YES"/>
</error>
@@ -30,8 +30,8 @@
</error>
<error id="prompt-cancel-memo" type="question" default="GTK_RESPONSE_YES">
- <_primary>Would you like to send a cancelation notice for this memo?</_primary>
- <_secondary>If you do not send a cancelation notice, the other participants may not know the memo has
been deleted.</_secondary>
+ <_primary>Would you like to send a cancellation notice for this memo?</_primary>
+ <_secondary>If you do not send a cancellation notice, the other participants may not know the memo has
been deleted.</_secondary>
<button _label="Do _not Send" response="GTK_RESPONSE_NO"/>
<button _label="_Send Notice" response="GTK_RESPONSE_YES"/>
</error>
diff --git a/src/calendar/gui/e-calendar-view.c b/src/calendar/gui/e-calendar-view.c
index cc182884f6..c51d3f350b 100644
--- a/src/calendar/gui/e-calendar-view.c
+++ b/src/calendar/gui/e-calendar-view.c
@@ -1888,7 +1888,7 @@ e_calendar_view_get_tooltips (const ECalendarViewEventData *data)
/* To Translators: It will display "Organiser: NameOfTheUser <email ofuser com>" */
tmp = g_strdup_printf (_("Organizer: %s <%s>"), e_cal_component_organizer_get_cn
(organizer), email);
} else {
- /* With SunOne accouts, there may be no ':' in organiser.value*/
+ /* With SunOne accounts, there may be no ':' in organiser.value*/
tmp = g_strdup_printf (_("Organizer: %s"), e_cal_component_organizer_get_cn
(organizer));
}
diff --git a/src/e-util/e-attachment.c b/src/e-util/e-attachment.c
index ef2624ca3b..71d3c533cf 100644
--- a/src/e-util/e-attachment.c
+++ b/src/e-util/e-attachment.c
@@ -3171,7 +3171,7 @@ attachment_save_extracted_error_cb (AutoarExtractor *extractor,
}
static void
-attachament_save_write_archive_cb (GOutputStream *output_stream,
+attachment_save_write_archive_cb (GOutputStream *output_stream,
GAsyncResult *result,
SaveContext *save_context)
{
@@ -3238,7 +3238,7 @@ attachment_save_create_archive_cb (GFile *file,
save_context->input_buffer->len,
G_PRIORITY_DEFAULT,
save_context->attachment->priv->cancellable,
- (GAsyncReadyCallback) attachament_save_write_archive_cb,
+ (GAsyncReadyCallback) attachment_save_write_archive_cb,
save_context);
}
diff --git a/src/e-util/e-html-editor.c b/src/e-util/e-html-editor.c
index 14bdd19f36..6ec7c7d7d3 100644
--- a/src/e-util/e-html-editor.c
+++ b/src/e-util/e-html-editor.c
@@ -721,7 +721,7 @@ html_editor_parent_changed (GtkWidget *widget,
GtkWidget *top_level;
EHTMLEditor *editor = E_HTML_EDITOR (widget);
- /* If he now have a window, then install our accelators to it */
+ /* If we now have a window, then install our accelerators to it */
top_level = gtk_widget_get_toplevel (widget);
if (GTK_IS_WINDOW (top_level)) {
gtk_window_add_accel_group (
diff --git a/src/e-util/e-misc-utils.c b/src/e-util/e-misc-utils.c
index d6c9e2ecd5..7a178ef460 100644
--- a/src/e-util/e-misc-utils.c
+++ b/src/e-util/e-misc-utils.c
@@ -2530,15 +2530,15 @@ e_util_dup_searchable_categories (void)
* @alert_ident: (out) (transfer-full): an alert ident to use on failure
* @alert_arg_0: (out) (transfer-full): an alert argument 0 to use on failure
*
- * Populates @desription, @alert_ident and @alert_arg_0 to be used
+ * Populates @description, @alert_ident and @alert_arg_0 to be used
* to open an #ESource with extension @extension_name. The values
* can be used for functions like e_alert_sink_submit_thread_job().
*
* If #TRUE is returned, then the caller is responsible to free
- * all @desription, @alert_ident and @alert_arg_0 with g_free(),
+ * all @description, @alert_ident and @alert_arg_0 with g_free(),
* when no longer needed.
*
- * Returns: #TRUE, if the values for @desription, @alert_ident and @alert_arg_0
+ * Returns: #TRUE, if the values for @description, @alert_ident and @alert_arg_0
* were set for the given @extension_name; when #FALSE is returned, then
* none of these out variables are changed.
*
diff --git a/src/em-format/e-mail-formatter-headers.c b/src/em-format/e-mail-formatter-headers.c
index 7b796b73bb..31adc0e2a0 100644
--- a/src/em-format/e-mail-formatter-headers.c
+++ b/src/em-format/e-mail-formatter-headers.c
@@ -353,7 +353,7 @@ format_full_headers (EMailFormatter *formatter,
bold_from = g_strconcat ("<b>", header_from, "</b>", NULL);
g_string_append_printf (
buffer,
- /* Translators: This message suggests to the receipients
+ /* Translators: This message suggests to the recipients
* that the sender of the mail is different from the one
* listed in From field. */
_("This message was sent by %s on behalf of %s"),
diff --git a/src/libemail-engine/mail-ops.c b/src/libemail-engine/mail-ops.c
index dacffed3e1..e77ad8dcc5 100644
--- a/src/libemail-engine/mail-ops.c
+++ b/src/libemail-engine/mail-ops.c
@@ -1020,7 +1020,7 @@ send_queue_exec (struct _send_queue_msg *m,
camel_operation_push_message (cancellable, _("Sending message"));
/* NB: This code somewhat abuses the 'exception' stuff. Apart from
- * fatal problems, it is also used as a mechanism to accumualte
+ * fatal problems, it is also used as a mechanism to accumulate
* warning messages and present them back to the user. */
for (i = 0, j = 0; i < send_uids->len; i++) {
diff --git a/src/mail/em-folder-tree.c b/src/mail/em-folder-tree.c
index 3fca8b16d7..39871c6f1f 100644
--- a/src/mail/em-folder-tree.c
+++ b/src/mail/em-folder-tree.c
@@ -552,7 +552,7 @@ folder_tree_maybe_expand_row (EMFolderTreeModel *model,
if (u) {
gchar *c = strrchr (key, '/');
- /* 'c' cannot be NULL, because the above contructed 'key' has it there */
+ /* 'c' cannot be NULL, because the above constructed 'key' has it there */
/* coverity[dereference] */
*c = '\0';
folder_tree_expand_node (key, folder_tree);
diff --git a/src/modules/itip-formatter/itip-view.c b/src/modules/itip-formatter/itip-view.c
index a5d5ceeab4..2ff7a172cb 100644
--- a/src/modules/itip-formatter/itip-view.c
+++ b/src/modules/itip-formatter/itip-view.c
@@ -5226,11 +5226,11 @@ remove_delegate (ItipView *view,
if (status != 0) {
itip_view_add_lower_info_item (
view, ITIP_VIEW_INFO_ITEM_TYPE_INFO,
- _("Sent a cancelation notice to the delegate"));
+ _("Sent a cancellation notice to the delegate"));
} else {
itip_view_add_lower_info_item (
view, ITIP_VIEW_INFO_ITEM_TYPE_INFO,
- _("Could not send the cancelation notice to the delegate"));
+ _("Could not send the cancellation notice to the delegate"));
}
g_free (comment);
diff --git a/src/modules/mail/e-mail-shell-backend.c b/src/modules/mail/e-mail-shell-backend.c
index 12c38fe3ec..277e59b215 100644
--- a/src/modules/mail/e-mail-shell-backend.c
+++ b/src/modules/mail/e-mail-shell-backend.c
@@ -778,13 +778,13 @@ mail_shell_backend_create_network_page (EPreferencesWindow *window)
const gchar *known_gio_names[] = {
/* Translators: One of the known implementation names of the GNetworkMonitor. Either translate
- it to some user-frienly form, or keep it as is. */
+ it to some user-friendly form, or keep it as is. */
NC_("NetworkMonitor", "base"),
/* Translators: One of the known implementation names of the GNetworkMonitor. Either translate
- it to some user-frienly form, or keep it as is. */
+ it to some user-friendly form, or keep it as is. */
NC_("NetworkMonitor", "netlink"),
/* Translators: One of the known implementation names of the GNetworkMonitor. Either translate
- it to some user-frienly form, or keep it as is. */
+ it to some user-friendly form, or keep it as is. */
NC_("NetworkMonitor", "networkmanager")
};
diff --git a/src/modules/settings/e-settings-name-selector-entry.c
b/src/modules/settings/e-settings-name-selector-entry.c
index 281472e711..1f1c970017 100644
--- a/src/modules/settings/e-settings-name-selector-entry.c
+++ b/src/modules/settings/e-settings-name-selector-entry.c
@@ -60,7 +60,7 @@ settings_name_selector_entry_constructed (GObject *object)
extension = E_SETTINGS_NAME_SELECTOR_ENTRY (object);
extensible = e_extension_get_extensible (E_EXTENSION (extension));
- /* Chain up to parent's consturcted() method. */
+ /* Chain up to parent's constructed() method. */
G_OBJECT_CLASS (e_settings_name_selector_entry_parent_class)->constructed (object);
g_settings_bind (
diff --git a/src/shell/e-shell-view.h b/src/shell/e-shell-view.h
index 82d2970b92..b987e5739b 100644
--- a/src/shell/e-shell-view.h
+++ b/src/shell/e-shell-view.h
@@ -77,7 +77,7 @@ struct _EShellView {
* @icon_name: The initial value for the switcher action's
* #GtkAction:icon-name property. See
* e_shell_view_get_action().
- * @ui_definition: Base name of the UI definintion file to add
+ * @ui_definition: Base name of the UI definition file to add
* when the shell view is activated.
* @ui_manager_id: The #GtkUIManager ID for #EPluginUI. Plugins
* should use to this ID in their "eplug" files to
diff --git a/src/shell/e-shell-window.c b/src/shell/e-shell-window.c
index fcd843be0e..4194902949 100644
--- a/src/shell/e-shell-window.c
+++ b/src/shell/e-shell-window.c
@@ -1438,7 +1438,7 @@ e_shell_window_get_action_group (EShellWindow *shell_window,
/**
* e_shell_window_get_managed_widget:
* @shell_window: an #EShellWindow
- * @widget_path: path in the UI definintion
+ * @widget_path: path in the UI definition
*
* Looks up a widget in @shell_window<!-- -->'s user interface manager by
* following a path. See gtk_ui_manager_get_widget() for more information
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]