aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/component/addressbook-component.c1
-rw-r--r--art/ChangeLog9
-rw-r--r--art/Makefile.am2
-rw-r--r--art/offline.pngbin640 -> 0 bytes
-rw-r--r--art/online.pngbin547 -> 0 bytes
-rw-r--r--calendar/ChangeLog30
-rw-r--r--calendar/gui/calendar-component.c3
-rw-r--r--calendar/gui/gnome-cal.c3
-rw-r--r--calendar/gui/memos-component.c1
-rw-r--r--calendar/gui/tasks-component.c1
-rw-r--r--composer/ChangeLog7
-rw-r--r--composer/e-composer-private.c7
-rw-r--r--data/icons/Makefile.am14
-rw-r--r--e-util/ChangeLog11
-rw-r--r--e-util/e-icon-factory.c74
-rw-r--r--help/C/evolution.xml6
-rw-r--r--help/ChangeLog5
-rw-r--r--mail/ChangeLog27
-rw-r--r--mail/default/C/Inbox33
-rw-r--r--mail/em-folder-browser.c33
-rw-r--r--mail/em-folder-browser.h2
-rw-r--r--mail/mail-component.c5
-rw-r--r--po/ChangeLog28
-rw-r--r--po/POTFILES.in1
-rw-r--r--po/es.po780
-rw-r--r--po/et.po2287
-rw-r--r--po/gl.po439
-rw-r--r--po/ja.po8995
-rw-r--r--po/kn.po1981
-rw-r--r--po/nb.po3420
-rw-r--r--shell/ChangeLog35
-rw-r--r--shell/apps_evolution_shell.schemas.in25
-rw-r--r--shell/e-shell-window-private.h1
-rw-r--r--shell/e-shell-window.c259
-rw-r--r--shell/e-shell-window.h5
-rw-r--r--shell/e-shell.c7
-rw-r--r--shell/e-user-creatable-items-handler.c13
-rw-r--r--shell/main.c98
-rw-r--r--widgets/misc/ChangeLog8
-rw-r--r--widgets/misc/e-online-button.c20
42 files changed, 9642 insertions, 9052 deletions
diff --git a/ChangeLog b/ChangeLog
index 18d0f98f44..6525b02813 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2008-08-14 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #547411
+
+ * data/icons/hicolor_status_32x32_online.png:
+ * data/icons/hicolor_status_32x32_online.svg:
+ * data/icons/hicolor_status_32x32_offline.png:
+ * data/icons/hicolor_status_32x32_offline.svg:
+ New, Tangoized versions of the old "art" images.
+
2008-08-12 Matthew Barnes <mbarnes@redhat.com>
* configure.in:
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index f634649050..6e42ffec29 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #508732
+
+ * gui/component/addressbook-component.c (impl_createView):
+ Add a "select_item" argument for crash recovery, which the
+ addressbook component does not use.
+
2008-08-14 Matthew Barnes <mbarnes@redhat.com>
* gui/contact-editor/e-contact-editor.c:
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index 82f00f00c3..cc4d2d9ffa 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -193,6 +193,7 @@ view_destroyed_cb (gpointer data, GObject *where_the_object_was)
static GNOME_Evolution_ComponentView
impl_createView (PortableServer_Servant servant,
GNOME_Evolution_ShellView parent,
+ CORBA_boolean select_item,
CORBA_Environment *ev)
{
AddressbookComponent *addressbook_component = ADDRESSBOOK_COMPONENT (bonobo_object_from_servant (servant));
diff --git a/art/ChangeLog b/art/ChangeLog
index 71bc919db2..5548a03715 100644
--- a/art/ChangeLog
+++ b/art/ChangeLog
@@ -1,3 +1,12 @@
+2008-08-14 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #547411
+
+ * online.png:
+ * offline.png:
+ New, Tangoized versions of these images now live in data/icons.
+ Remove them from here.
+
2008-07-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #542125
diff --git a/art/Makefile.am b/art/Makefile.am
index 193be3576c..2a22e6bf8b 100644
--- a/art/Makefile.am
+++ b/art/Makefile.am
@@ -1,6 +1,4 @@
images_DATA = \
- offline.png \
- online.png \
world_map-960.png \
plus.png \
minus.png
diff --git a/art/offline.png b/art/offline.png
deleted file mode 100644
index 57bdd27be2..0000000000
--- a/art/offline.png
+++ /dev/null
Binary files differ
diff --git a/art/online.png b/art/online.png
deleted file mode 100644
index 9a6a3980c2..0000000000
--- a/art/online.png
+++ /dev/null
Binary files differ
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index a98600a82b..8d1deed13d 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,33 @@
+2008-08-18 Milan Crha <mcrha@redhat.com>
+
+ ** Part of fix for bug #462242
+
+ * gui/gnome-cal.c: (default_client_cal_opened_cb):
+ Do not unref NULL pointers.
+
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #508732
+
+ * gui/calendar-component.c (impl_createView):
+ * gui/memos-component.c (impl_createView):
+ * gui/tasks-component.c (impl_createView):
+ Add a "select_item" argument for crash recovery, which these
+ components do not use.
+
+2008-08-04 Paul Bolle <pebolle@tiscali.nl>
+
+ * gui/gui/calendar-component.c: (set_info):
+ Use "Calendars" as label for component, not "Calendar", for
+ consistency.
+
+2008-08-14 Sebastien Bacher <seb128@ubuntu.com>
+
+ ** Fix for bug #547805
+
+ * gui/e-cal-popup.c: (ecalp_standard_menu_factory):
+ don't filter applications using g_app_info_should_show()
+
2008-08-14 Matthew Barnes <mbarnes@redhat.com>
* gui/dialogs/comp-editor.c:
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c
index 4dff00825c..5ba3b11e96 100644
--- a/calendar/gui/calendar-component.c
+++ b/calendar/gui/calendar-component.c
@@ -802,7 +802,7 @@ set_info (CalendarComponentView *component_view)
g_return_if_reached ();
}
- e_info_label_set_info (component_view->info_label, _("Calendar"), buffer);
+ e_info_label_set_info (component_view->info_label, _("Calendars"), buffer);
}
static void
@@ -1550,6 +1550,7 @@ view_destroyed_cb (gpointer data, GObject *where_the_object_was)
static GNOME_Evolution_ComponentView
impl_createView (PortableServer_Servant servant,
GNOME_Evolution_ShellView parent,
+ CORBA_boolean select_item,
CORBA_Environment *ev)
{
CalendarComponent *calendar_component = CALENDAR_COMPONENT (bonobo_object_from_servant (servant));
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index d2fd8f551b..4d65f094b8 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -2870,7 +2870,8 @@ default_client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar
g_hash_table_remove (priv->clients[source_type], e_source_peek_uid (source));
/* FIXME Is there a better way to handle this? */
- g_object_unref (priv->default_client[source_type]);
+ if (priv->default_client[source_type])
+ g_object_unref (priv->default_client[source_type]);
priv->default_client[source_type] = NULL;
g_signal_emit (gcal, gnome_calendar_signals[SOURCE_REMOVED], 0, source_type, source);
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index 31280d52cb..adf54c5c2d 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -1215,6 +1215,7 @@ view_destroyed_cb (gpointer data, GObject *where_the_object_was)
static GNOME_Evolution_ComponentView
impl_createView (PortableServer_Servant servant,
GNOME_Evolution_ShellView parent,
+ CORBA_boolean select_item,
CORBA_Environment *ev)
{
MemosComponent *component = MEMOS_COMPONENT (bonobo_object_from_servant (servant));
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c
index d976202a8c..ac272c83d1 100644
--- a/calendar/gui/tasks-component.c
+++ b/calendar/gui/tasks-component.c
@@ -1207,6 +1207,7 @@ view_destroyed_cb (gpointer data, GObject *where_the_object_was)
static GNOME_Evolution_ComponentView
impl_createView (PortableServer_Servant servant,
GNOME_Evolution_ShellView parent,
+ CORBA_boolean select_item,
CORBA_Environment *ev)
{
TasksComponent *component = TASKS_COMPONENT (bonobo_object_from_servant (servant));
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 56e33a762b..32c38183f4 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,10 @@
+2008-08-18 Baptiste Mille-Mathias <bmm80@free.fr>
+
+ ** Fixes bug #546867
+
+ * e-composer-private.c (e_composer_private_init): Set the 'Send' button
+ as important to have a label.
+
2008-08-01 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #428384
diff --git a/composer/e-composer-private.c b/composer/e-composer-private.c
index 4935dac5d4..30cdbfab75 100644
--- a/composer/e-composer-private.c
+++ b/composer/e-composer-private.c
@@ -87,6 +87,8 @@ e_composer_private_init (EMsgComposer *composer)
GtkWidget *widget;
GtkWidget *expander;
GtkWidget *container;
+ GtkWidget *send_widget;
+ const gchar *path;
gchar *filename;
GError *error = NULL;
@@ -120,6 +122,11 @@ e_composer_private_init (EMsgComposer *composer)
gtk_ui_manager_add_ui_from_file (manager, filename, &error);
g_free (filename);
+ /* We set the send button as important to have a label */
+ path = "/main-toolbar/pre-main-toolbar/send";
+ send_widget = gtk_ui_manager_get_widget (manager, path);
+ gtk_tool_item_set_is_important (GTK_TOOL_ITEM (send_widget), TRUE);
+
composer_setup_charset_menu (composer);
if (error != NULL) {
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index b78d0c1510..2035d151bb 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -25,11 +25,11 @@ public_icons = \
$(NULL)
private_icons = \
- hicolor_apps_16x16_contact-editor.png \
- hicolor_apps_22x22_contact-editor.png \
- hicolor_apps_24x24_contact-editor.png \
- hicolor_apps_32x32_contact-editor.png \
- hicolor_apps_48x48_contact-editor.png \
+ hicolor_apps_16x16_contact-editor.png \
+ hicolor_apps_22x22_contact-editor.png \
+ hicolor_apps_24x24_contact-editor.png \
+ hicolor_apps_32x32_contact-editor.png \
+ hicolor_apps_48x48_contact-editor.png \
hicolor_actions_16x16_folder-copy.png \
hicolor_actions_16x16_folder-move.png \
hicolor_actions_16x16_mail-copy.png \
@@ -79,6 +79,8 @@ private_icons = \
hicolor_places_24x24_mail-inbox.png \
hicolor_places_24x24_mail-outbox.png \
hicolor_places_24x24_mail-sent.png \
+ hicolor_status_32x32_offline.png \
+ hicolor_status_32x32_online.png \
$(NULL)
noinst_DATA = \
@@ -105,6 +107,8 @@ noinst_DATA = \
hicolor_places_22x22_mail-inbox.svg \
hicolor_places_22x22_mail-outbox.svg \
hicolor_places_22x22_mail-sent.svg \
+ hicolor_status_32x32_offline.svg \
+ hicolor_status_32x32_online.svg \
$(NULL)
EXTRA_DIST = \
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 0c80024a22..b227df58fe 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,14 @@
+2008-08-18 Bharath Acharya <abharath@novell.com>
+
+ * e-icon-factory.c: (e_icon_factory_get_icon_filename),
+ (e_icon_factory_get_icon): Added a debug macro and turned it off.
+
+2008-08-16 Gilles Dartiguelongue <gdartigu@svn.gnome.org>
+
+ * e-icon-factory.c: (e_icon_size_to_gtk_icon_size),
+ (e_icon_factory_get_icon_filename), (e_icon_factory_get_icon):
+ Make evolution respect GTK_ICON_SIZE changes, part of bug #416258.
+
2008-08-14 Matthew Barnes <mbarnes@redhat.com>
* e-util.c (e_display_help):
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c
index 2ca724c5f2..aa053001c5 100644
--- a/e-util/e-icon-factory.c
+++ b/e-util/e-icon-factory.c
@@ -34,21 +34,14 @@
#include <libgnomeui/gnome-thumbnail.h>
#endif
+#include <gtk/gtkiconfactory.h>
+
#include "e-icon-factory.h"
#include "e-util-private.h"
#include "art/broken-image-16.xpm"
#include "art/broken-image-24.xpm"
-
-static int sizes[E_ICON_NUM_SIZES] = {
- 16, /* menu */
- 20, /* button */
- 18, /* small toolbar */
- 24, /* large toolbar */
- 32, /* dnd */
- 48, /* dialog */
-};
-
+#define d(x)
typedef struct {
char *name;
@@ -173,21 +166,25 @@ load_icon (const char *icon_key, const char *icon_name, int size, int scale)
return icon_new (icon_key, pixbuf);
}
-
-/* temporary workaround for code that has not yet been ported to the new icon_size API */
-static int
-pixel_size_to_icon_size (int pixel_size)
+static GtkIconSize
+e_icon_size_to_gtk_icon_size (guint size)
{
- int i, icon_size = -1;
-
- for (i = 0; i < E_ICON_NUM_SIZES; i++) {
- if (pixel_size == sizes[i]) {
- icon_size = i;
- break;
- }
+ switch (size) {
+ case E_ICON_SIZE_MENU:
+ return GTK_ICON_SIZE_MENU;
+ case E_ICON_SIZE_BUTTON:
+ return GTK_ICON_SIZE_BUTTON;
+ case E_ICON_SIZE_SMALL_TOOLBAR:
+ return GTK_ICON_SIZE_SMALL_TOOLBAR;
+ case E_ICON_SIZE_LARGE_TOOLBAR:
+ return GTK_ICON_SIZE_LARGE_TOOLBAR;
+ case E_ICON_SIZE_DND:
+ return GTK_ICON_SIZE_DND;
+ case E_ICON_SIZE_DIALOG:
+ return GTK_ICON_SIZE_DIALOG;
+ default:
+ g_assert_not_reached ();
}
-
- return icon_size;
}
static void
@@ -264,21 +261,30 @@ e_icon_factory_get_icon_filename (const char *icon_name, int icon_size)
{
GtkIconInfo *icon_info;
char *filename;
+ gint width, height;
g_return_val_if_fail (icon_name != NULL, NULL);
g_return_val_if_fail (strcmp (icon_name, ""), NULL);
if (icon_size >= E_ICON_NUM_SIZES) {
- g_warning (
+ g_critical (
"calling %s with unknown icon_size value (%d)",
G_STRFUNC, icon_size);
- if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1)
+ /* if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1)*/
return NULL;
}
+ if (! gtk_icon_size_lookup_for_settings (gtk_settings_get_default (),
+ e_icon_size_to_gtk_icon_size (icon_size),
+ &width, &height))
+ return NULL;
+
+ d(g_message ("Size is %d", icon_size));
+ d(g_message ("looking up %s at %dx%d", icon_name, width, height));
+
g_static_mutex_lock (&mutex);
icon_info = gtk_icon_theme_lookup_icon (
- icon_theme, icon_name, sizes[icon_size], 0);
+ icon_theme, icon_name, height, 0);
if (icon_info != NULL) {
filename = g_strdup (
gtk_icon_info_get_filename (icon_info));
@@ -310,17 +316,25 @@ e_icon_factory_get_icon (const char *icon_name, int icon_size)
GdkPixbuf *pixbuf;
char *icon_key;
Icon *icon;
- int size;
+ int size, width, height;
if (icon_size >= E_ICON_NUM_SIZES) {
- g_warning (
+ g_critical (
"calling %s with unknown icon_size value (%d)",
G_STRFUNC, icon_size);
- if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1)
+ /*if ((icon_size = pixel_size_to_icon_size (icon_size)) == -1) */
return NULL;
}
- size = sizes[icon_size];
+ if (! gtk_icon_size_lookup_for_settings (gtk_settings_get_default (),
+ e_icon_size_to_gtk_icon_size (icon_size),
+ &width, &height))
+ return NULL;
+
+ d(g_message ("Size is %d", icon_size));
+ d(g_message ("looking up %s at %dx%d", icon_name, width, height));
+
+ size = height;
if (icon_name == NULL || !strcmp (icon_name, "")) {
if (size >= 24)
diff --git a/help/C/evolution.xml b/help/C/evolution.xml
index b133201602..0cc18b54ba 100644
--- a/help/C/evolution.xml
+++ b/help/C/evolution.xml
@@ -1013,12 +1013,6 @@
</section>
</section>
- <section id="b1a5acwx">
- <title>Crash Recovery</title>
- <para>Evolution displays a crash detection message when you restart it after a crash.</para>
- <mediaobject id="b1a5aezg"><imageobject><imagedata format="PNG" fileref="figures/evo_crash_recovery.png"/></imageobject></mediaobject>
- <para>Click Ignore to restore the preview pane displayed when Evolution crashed. If you click Recover, Evolution opens with all preview panes hidden.</para>
- </section>
<section id="bsekq8r">
<title>Command Line Options</title>
<para>Evolution has a number of command line options that you can use. For more information about command line options, open a terminal window and type <command>evolution --help</command>.</para>
diff --git a/help/ChangeLog b/help/ChangeLog
index e19f019ca2..45e464a2d7 100644
--- a/help/ChangeLog
+++ b/help/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ * C/evolution.xml:
+ Remove the bit about crash recovery.
+
2008-08-14 Jorge Gonzalez <jorgegonz@svn.gnome.org>
* es/es.po: Updated Spanish translation
diff --git a/mail/ChangeLog b/mail/ChangeLog
index df3c3b1f60..64a817c749 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,30 @@
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #508732
+
+ * mail-component.c (impl_createView):
+ Add a "select_item" argument for crash recovery, which we forward
+ to EMFolderBrowser as a "suppress_message_selection" flag.
+
+ * em-folder-browser.c (emfb_set_folder):
+ Suppress automatic message selection if we are recovering from a
+ crash.
+
+2008-08-16 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes bug #513363
+
+ * default/C/Inbox:
+ Remove the outdated "New Features" list, and well as the incorrect
+ "Evolution team" email address.
+
+2008-08-14 Sebastien Bacher <seb128@ubuntu.com>
+
+ ** Fix for bug #547805
+
+ * em-popup.c: (emp_standard_menu_factory):
+ don't filter applications using g_app_info_should_show()
+
2008-08-13 Moritz Mertinkat <moritz@mertinkat.net>
* em-format-html.c: Added meaningful user agent for HTTP requests
diff --git a/mail/default/C/Inbox b/mail/default/C/Inbox
index cfa231a7f7..920914c2cb 100644
--- a/mail/default/C/Inbox
+++ b/mail/default/C/Inbox
@@ -12,7 +12,7 @@ Received: from smtp.novell.com (HELO localhost) (141.154.95.10) by
From: "The Evolution Team" <evolution@novell.com>
To: Evolution Users <evolution@novell.com>
Content-Type: multipart/related; type="multipart/alternative"; boundary="=-t4dRE6cqcdSBHOrMdTQ1"
-X-Mailer: Evolution 2.10.0
+X-Mailer: Evolution 2.24.0
Date: 14 March 2007 12:00:00 +0000
Message-Id: <1001418302.27070.20.camel@spectrolite>
Mime-Version: 1.0
@@ -47,15 +47,6 @@ Getting Started
For a complete guide to Evolution, select "Table of
Contents" from the "Help" menu, or press the F1 key.
-New Features
-
- Evolution 2.10 brings you
-
- # Integration with gtk-print
- # Customizable fetching of IMAP headers.
- # Faster Performance, lots of Memory Fixes and Memory Reduction
- # Lots of Bug fixes and lots of other Improvements
-
Bug Reporting
Bugs should be reported to http://bugzilla.gnome.org.
@@ -71,7 +62,6 @@ More Information
Yours Sincerely,
The Evolution Team
-evolution@novell.com
--=-2gZ1roA/HoYrlRDVGyiM
@@ -129,26 +119,6 @@ Getting Started
</blockquote>
<h2>
-New Features
-</h2>
-
-<blockquote>
- Evolution 2.10 brings you
- <ul>
- <li>
- Integration with gtk-print
- </li><li>
- Customizable fetching of IMAP headers
- </li><li>
- Faster Performance, lots of Memory Fixes and Memory Reduction
- </li><li>
- Lots of Bug fixes and lots of other Improvements
- </li>
- </ul>
-<br>
-</blockquote>
-
-<h2>
Bug Reporting
</h2>
<blockquote>
@@ -176,7 +146,6 @@ More Information
Yours Sincerely,
<br>
The Evolution Team
-<br><a href="mailto:evolution@novell.com">evolution@novell.com</a>
</BODY>
</HTML>
diff --git a/mail/em-folder-browser.c b/mail/em-folder-browser.c
index 4b25b560f7..a427c0f03e 100644
--- a/mail/em-folder-browser.c
+++ b/mail/em-folder-browser.c
@@ -122,6 +122,7 @@ struct _EMFolderBrowserPrivate {
guint folder_changed_id;
guint show_wide:1;
+ guint suppress_message_selection:1;
gboolean scope_restricted;
EMMenu *menu; /* toplevel menu manager */
@@ -2001,6 +2002,7 @@ emfb_set_folder(EMFolderView *emfv, CamelFolder *folder, const char *uri)
{
EMFolderBrowser *emfb = (EMFolderBrowser *) emfv;
struct _EMFolderBrowserPrivate *p = emfb->priv;
+ gboolean different_folder;
message_list_freeze(emfv->list);
@@ -2019,6 +2021,10 @@ emfb_set_folder(EMFolderView *emfv, CamelFolder *folder, const char *uri)
emfb->priv->folder_changed_id = 0;
}
+ different_folder =
+ emfb->view.folder != NULL &&
+ folder != emfb->view.folder;
+
emfb_parent->set_folder(emfv, folder, uri);
/* This is required since we get activated the first time
@@ -2102,15 +2108,20 @@ emfb_set_folder(EMFolderView *emfv, CamelFolder *folder, const char *uri)
e_search_bar_paint ((ESearchBar *)emfb->search);
}
- /* set the query manually, so we dont pop up advanced or saved search stuff */
+ /* This function gets triggered several times at startup,
+ * so we don't want to reset the message suppression state
+ * unless we're actually switching to a different folder. */
+ if (different_folder)
+ p->suppress_message_selection = FALSE;
- if ((sstate = camel_object_meta_get (folder, "evolution:selected_uid"))) {
- g_free (emfb->priv->select_uid);
- emfb->priv->select_uid = sstate;
- } else {
- g_free(p->select_uid);
- p->select_uid = NULL;
- }
+ if (!p->suppress_message_selection)
+ sstate = camel_object_meta_get (
+ folder, "evolution:selected_uid");
+ else
+ sstate = NULL;
+
+ g_free (p->select_uid);
+ p->select_uid = sstate;
if (emfv->list->cursor_uid == NULL && emfb->priv->list_built_id == 0)
p->list_built_id = g_signal_connect(emfv->list, "message_list_built", G_CALLBACK (emfb_list_built), emfv);
@@ -2222,3 +2233,9 @@ emfb_activate(EMFolderView *emfv, BonoboUIComponent *uic, int act)
emfb_parent->activate(emfv, uic, act);
}
}
+
+void
+em_folder_browser_suppress_message_selection (EMFolderBrowser *emfb)
+{
+ emfb->priv->suppress_message_selection = TRUE;
+}
diff --git a/mail/em-folder-browser.h b/mail/em-folder-browser.h
index 4d501b04b6..0af0355799 100644
--- a/mail/em-folder-browser.h
+++ b/mail/em-folder-browser.h
@@ -57,6 +57,8 @@ GtkWidget *em_folder_browser_new(void);
void em_folder_browser_show_preview(EMFolderBrowser *emfv, gboolean state);
void em_folder_browser_show_wide(EMFolderBrowser *emfv, gboolean state);
gboolean em_folder_browser_get_wide(EMFolderBrowser *emfv);
+void em_folder_browser_suppress_message_selection(EMFolderBrowser *emfb);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */
diff --git a/mail/mail-component.c b/mail/mail-component.c
index f18ccb08d0..86a3388b1f 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -711,6 +711,7 @@ enable_folder_tree (GtkWidget *emfb, GtkWidget *emft)
static GNOME_Evolution_ComponentView
impl_createView (PortableServer_Servant servant,
GNOME_Evolution_ShellView parent,
+ CORBA_boolean select_item,
CORBA_Environment *ev)
{
MailComponent *mail_component = MAIL_COMPONENT (bonobo_object_from_servant (servant));
@@ -726,6 +727,10 @@ impl_createView (PortableServer_Servant servant,
view_widget = em_folder_browser_new ();
+ if (!select_item)
+ em_folder_browser_suppress_message_selection (
+ (EMFolderBrowser *) view_widget);
+
tree_widget = (GtkWidget *) em_folder_tree_new_with_model (priv->model);
em_folder_tree_set_excluded ((EMFolderTree *) tree_widget, 0);
em_folder_tree_enable_drag_and_drop ((EMFolderTree *) tree_widget);
diff --git a/po/ChangeLog b/po/ChangeLog
index 34eeeaaa98..478241a1a4 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,31 @@
+2008-08-18 Shankar Prasad <svenkate@redhat.com>
+
+ * kn.po: Updated Kannada translation
+
+2008-08-17 Jorge Gonzalez <jorgegonz@svn.gnome.org>
+
+ * es.po: Updated Spanish translation
+
+2008-08-17 Takeshi AIHANA <takeshi.aihana@gmail.com>
+
+ * ja.po: Updated Japanese translation.
+
+2008-08-16 Priit Laes <plaes at svn dot gnome dot org>
+
+ * et.po: Translation updated by Ivar Smolin
+
+2008-08-15 Ignacio Casal Quinteiro <nacho.resa@gmail.com>
+
+ gl.po: Updated Galician translation
+
+2008-08-15 Kjartan Maraas <kmaraas@gnome.org>
+
+ * nb.po: Updated Norwegian bokmål translation.
+
+2008-08-15 Milan Crha <mcrha@redhat.com>
+
+ * POTFILES.in: Added e-util/e-util.c there.
+
2008-08-14 Shankar Prasad <svenkate@redhat.com>
* kn.po: Updated Kannada Translation.
diff --git a/po/POTFILES.in b/po/POTFILES.in
index c9704dbb75..2226745497 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -191,6 +191,7 @@ e-util/e-logger.c
e-util/e-plugin.c
e-util/e-print.c
e-util/e-system.error.xml
+e-util/e-util.c
e-util/e-util-labels.c
e-util/gconf-bridge.c
filter/filter-datespec.c
diff --git a/po/es.po b/po/es.po
index aaf50c1e30..dc8ce2f33c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -2,6 +2,7 @@
# Copyright © 2000-2002, 2006, 2007, 2008 Free Software Foundation, Inc.
# This file is distributed under the same license as the evolution package.
#
+#: ../shell/main.c:683
# Carlos Perelló Marín <carlos@gnome-db.org>, 2000-2001.
# Héctor García Álvarez <hector@scouts-es.org>, 2000-2002.
# Ismael Olea <ismael@olea.org>, 2001, (revisiones) 2003.
@@ -10,17 +11,16 @@
# Pablo Gonzalo del Campo <pablodc@bigfoot.com>,2003 (revisión).
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2003, 2004, 2005, 2006.
# Jorge González <jorgegonz@svn.gnome.org>, 2007, 2008.
-#: ../shell/main.c:683
msgid ""
msgstr ""
"Project-Id-Version: evolution.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-12 10:37+0000\n"
-"PO-Revision-Date: 2008-08-12 14:52+0200\n"
+"POT-Creation-Date: 2008-08-15 11:18+0000\n"
+"PO-Revision-Date: 2008-08-17 23:36+0200\n"
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
"Language-Team: Español <gnome-es-list@gnome.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.11.4\n"
@@ -170,7 +170,7 @@ msgstr "%A, %e de %b de %Y"
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
#: ../calendar/gui/calendar-component.c:760
-#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1540
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%a, %e de %b"
@@ -202,7 +202,7 @@ msgstr "%e de %B de %Y"
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
#: ../calendar/gui/calendar-component.c:786
-#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1556
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%e de %b"
@@ -450,8 +450,7 @@ msgid "The Evolution addressbook has quit unexpectedly."
msgstr "La libreta de direcciones de Evolution ha terminado inesperadamente."
#: ../addressbook/addressbook.error.xml.h:22
-msgid ""
-"The image you have selected is large. Do you want to resize and store it?"
+msgid "The image you have selected is large. Do you want to resize and store it?"
msgstr ""
"La imagen que ha seleccionado es grande. ¿Quiere redimensionarla y "
"almacenarla?"
@@ -529,8 +528,7 @@ msgstr ""
#: ../addressbook/addressbook.error.xml.h:35
msgid "You do not have permission to delete contacts in this address book."
-msgstr ""
-"No tiene permisos para borrar este contacto en esta Libreta de direcciones."
+msgstr "No tiene permisos para borrar este contacto en esta Libreta de direcciones."
#: ../addressbook/addressbook.error.xml.h:36
msgid ""
@@ -539,8 +537,7 @@ msgid ""
msgstr "Ha modificado este contacto. ¿Desea guardar estos cambios?"
#: ../addressbook/addressbook.error.xml.h:37
-msgid ""
-"Your contacts for {0} will not be available until Evolution is restarted."
+msgid "Your contacts for {0} will not be available until Evolution is restarted."
msgstr ""
"Los contactos para {0} no estarán disponibles hasta que Evolution se "
"reinicie."
@@ -872,7 +869,7 @@ msgstr "Guardar como vCard…"
#: ../addressbook/gui/widgets/e-addressbook-view.c:955
#: ../calendar/gui/calendar-component.c:619
#: ../calendar/gui/e-calendar-table.c:1596
-#: ../calendar/gui/e-calendar-view.c:1696 ../calendar/gui/e-memo-table.c:941
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
@@ -883,7 +880,7 @@ msgstr "_Borrar"
#: ../addressbook/gui/component/addressbook-view.c:949
#: ../calendar/gui/calendar-component.c:622
-#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/comp-editor.c:2035
#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
@@ -1037,10 +1034,8 @@ msgid "Email address"
msgstr "Dirección de correo-e"
#: ../addressbook/gui/component/ldap-config.glade.h:20
-msgid ""
-"Evolution will use this email address to authenticate you with the server."
-msgstr ""
-"Evolution usará esta dirección de correo-e para autenticarle con el servidor."
+msgid "Evolution will use this email address to authenticate you with the server."
+msgstr "Evolution usará esta dirección de correo-e para autenticarle con el servidor."
#: ../addressbook/gui/component/ldap-config.glade.h:21
msgid "Find Possible Search Bases"
@@ -1277,6 +1272,7 @@ msgstr "tarjetas"
#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "minutos"
@@ -1317,7 +1313,7 @@ msgid "<b>Work</b>"
msgstr "<b>Trabajo</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1329,16 +1325,16 @@ msgid "Ca_tegories..."
msgstr "Ca_tegorías…"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "Contacto"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:542
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:557
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2422
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "Editor de contactos"
@@ -1379,7 +1375,7 @@ msgstr "Teléfono"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
#: ../mail/em-migrate.c:1057
@@ -1503,7 +1499,7 @@ msgstr "Dirección"
#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
@@ -2502,7 +2498,7 @@ msgid "AOL Instant Messenger"
msgstr "Mensajería AOL"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "Jabber"
@@ -2516,7 +2512,7 @@ msgid "Gadu-Gadu Messenger"
msgstr "Mensajería Gadu-Gadu"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
@@ -2538,77 +2534,77 @@ msgid "Username"
msgstr "Usuario"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "Domicilio"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "Otro"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "Yahoo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "GroupWise"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "Libro origen"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "Libro destino"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "Es un contacto nuevo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "Campos editables"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "Campos requeridos"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "Modificados"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:552
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2417
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "Editor de contactos: %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2813
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "Seleccione una imagen para este contacto"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2814
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "_Sin imagen"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3087
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2616,23 +2612,23 @@ msgstr ""
"Los datos del contacto son inválidos:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3091
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "«%s» tiene un formato inválido"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3098
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s«%s» tiene un formato inválido"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3113
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3124
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s«%s» está vacío"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3139
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "Contacto inválido."
@@ -2818,8 +2814,7 @@ msgstr "_Nombre de la lista:"
#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:6
msgid "_Type an email address or drag a contact into the list below:"
-msgstr ""
-"_Teclee una dirección de correo o arrastre un contacto a la lista inferior:"
+msgstr "_Teclee una dirección de correo o arrastre un contacto a la lista inferior:"
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:759
msgid "Contact List Members"
@@ -2973,9 +2968,9 @@ msgid "Save as vCard..."
msgstr "Guardar como vCard…"
#: ../addressbook/gui/widgets/e-addressbook-view.c:933
-#: ../calendar/gui/dialogs/comp-editor.c:2032
+#: ../calendar/gui/dialogs/comp-editor.c:2033
#: ../calendar/gui/e-calendar-table.c:1574
-#: ../calendar/gui/e-calendar-view.c:1674 ../calendar/gui/e-memo-table.c:924
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "_Abrir"
@@ -3029,9 +3024,9 @@ msgid "Cu_t"
msgstr "Cor_tar"
#: ../addressbook/gui/widgets/e-addressbook-view.c:953
-#: ../calendar/gui/dialogs/comp-editor.c:479
+#: ../calendar/gui/dialogs/comp-editor.c:480
#: ../calendar/gui/e-calendar-table.c:1582
-#: ../calendar/gui/e-calendar-view.c:1681 ../calendar/gui/e-memo-table.c:932
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
@@ -3418,9 +3413,8 @@ msgstr "Charla por vídeo"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
#: ../calendar/gui/calendar-commands.c:92
-#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/dialogs/calendar-setup.c:367
-#: ../calendar/gui/gnome-cal.c:2376
+#: ../calendar/gui/gnome-cal.c:2451
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:574
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
@@ -3456,13 +3450,13 @@ msgid "Web Log"
msgstr "Diario web"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2346
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "Cumpleaños"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2347
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "Aniversario"
@@ -3659,13 +3653,11 @@ msgstr ""
#: ../addressbook/gui/widgets/eab-gui-util.c:173
msgid "The backend for this addressbook was unable to parse this query."
-msgstr ""
-"El backend de esta libreta de direcciones no pudo analizar esta consulta."
+msgstr "El backend de esta libreta de direcciones no pudo analizar esta consulta."
#: ../addressbook/gui/widgets/eab-gui-util.c:176
msgid "The backend for this addressbook refused to perform this query."
-msgstr ""
-"El backend para esta libreta de direcciones rehusó a efectuar esta consulta."
+msgstr "El backend para esta libreta de direcciones rehusó a efectuar esta consulta."
#: ../addressbook/gui/widgets/eab-gui-util.c:179
msgid "This query did not complete successfully."
@@ -4120,8 +4112,7 @@ msgid "NUMBER"
msgstr "NÚMERO"
#: ../addressbook/tools/evolution-addressbook-export.c:102
-msgid ""
-"Command line arguments error, please use --help option to see the usage."
+msgid "Command line arguments error, please use --help option to see the usage."
msgstr ""
"Error en los argumentos de la línea de comandos, use la opción --help para "
"ver el uso."
@@ -4192,30 +4183,25 @@ msgstr "Toda la información de estas citas se borrará y no se podrá recuperar
#: ../calendar/calendar.error.xml.h:10
msgid "All information on these tasks will be deleted and can not be restored."
-msgstr ""
-"Toda la información de estas tareas se borrará y no se podrá recuperar."
+msgstr "Toda la información de estas tareas se borrará y no se podrá recuperar."
#: ../calendar/calendar.error.xml.h:11
-msgid ""
-"All information on this appointment will be deleted and can not be restored."
+msgid "All information on this appointment will be deleted and can not be restored."
msgstr "Toda la información de esta cita se borrará y no se podrá recuperar."
#: ../calendar/calendar.error.xml.h:12
-msgid ""
-"All information on this meeting will be deleted and can not be restored."
+msgid "All information on this meeting will be deleted and can not be restored."
msgstr ""
"Toda la información acerca de esta reunión se borrará y no se podrá "
"recuperar."
#: ../calendar/calendar.error.xml.h:13
msgid "All information on this memo will be deleted and can not be restored."
-msgstr ""
-"Toda la información acerca de esta nota se borrará y no se podrá recuperar."
+msgstr "Toda la información acerca de esta nota se borrará y no se podrá recuperar."
#: ../calendar/calendar.error.xml.h:14
msgid "All information on this task will be deleted and can not be restored."
-msgstr ""
-"Toda la información acerca de esta tarea se borrará y no se podrá recuperar."
+msgstr "Toda la información acerca de esta tarea se borrará y no se podrá recuperar."
#: ../calendar/calendar.error.xml.h:15
msgid "Are you sure you want to delete the '{0}' task?"
@@ -4320,8 +4306,7 @@ msgstr ""
"permitirá aceptar esta tarea."
#: ../calendar/calendar.error.xml.h:38
-msgid ""
-"Email invitations will be sent to all participants and allow them to reply."
+msgid "Email invitations will be sent to all participants and allow them to reply."
msgstr ""
"Se enviarán invitaciones por correo-e a todos los participantes y se les "
"permitirá responder."
@@ -4454,8 +4439,7 @@ msgstr "¿Quiere enviar una notificación de cancelación para esta nota?"
#: ../calendar/calendar.error.xml.h:63
msgid "Would you like to send all the participants a cancelation notice?"
-msgstr ""
-"¿Quiere enviar a todos los participantes una notificación de cancelación?"
+msgstr "¿Quiere enviar a todos los participantes una notificación de cancelación?"
#: ../calendar/calendar.error.xml.h:64
msgid "Would you like to send meeting invitations to participants?"
@@ -4467,13 +4451,11 @@ msgstr "¿Quiere enviar esta tarea a los participantes?"
#: ../calendar/calendar.error.xml.h:66
msgid "Would you like to send updated meeting information to participants?"
-msgstr ""
-"¿Quiere enviar información de la reunión actualizada a los participantes?"
+msgstr "¿Quiere enviar información de la reunión actualizada a los participantes?"
#: ../calendar/calendar.error.xml.h:67
msgid "Would you like to send updated task information to participants?"
-msgstr ""
-"¿Quiere enviar información actualizada de las tareas a los participantes?"
+msgstr "¿Quiere enviar información actualizada de las tareas a los participantes?"
#: ../calendar/calendar.error.xml.h:68
msgid ""
@@ -4552,8 +4534,7 @@ msgstr "No se ha podido iniciar el servidor evolution-data-server"
#: ../calendar/conduits/calendar/calendar-conduit.c:1629
#: ../calendar/conduits/calendar/calendar-conduit.c:1632
msgid "Could not read pilot's Calendar application block"
-msgstr ""
-"No es posible leer información de la aplicación de calendario del Pilot"
+msgstr "No es posible leer información de la aplicación de calendario del Pilot"
#: ../calendar/conduits/memo/memo-conduit.c:914
#: ../calendar/conduits/memo/memo-conduit.c:917
@@ -4585,6 +4566,7 @@ msgid "Calendar and Tasks"
msgstr "Calendario y tareas"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
+#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "Calendarios"
@@ -4627,7 +4609,7 @@ msgstr "_Notas"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
-#: ../calendar/gui/gnome-cal.c:1702 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
#: ../calendar/gui/memos-control.c:369
msgid "Memos"
@@ -4635,7 +4617,7 @@ msgstr "Notas"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
-#: ../calendar/gui/gnome-cal.c:1574 ../calendar/gui/print.c:1982
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
#: ../calendar/gui/tasks-component.c:539
#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
#: ../calendar/gui/tasks-control.c:508
@@ -4675,6 +4657,7 @@ msgstr[1] "minutos"
#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "hora"
@@ -4703,7 +4686,7 @@ msgid "Snooze _time:"
msgstr "_Posponer durante:"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
-#: ../calendar/gui/dialogs/comp-editor.c:1331
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
@@ -4840,16 +4823,14 @@ msgstr "Color de fondo para las tareas que vencen hoy, en formato «#rrggbb»."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:4
msgid "Background color of tasks that are overdue, in \"#rrggbb\" format."
-msgstr ""
-"Color de fondo para las tareas que están retrasadas, en formato «#rrggbb»."
+msgstr "Color de fondo para las tareas que están retrasadas, en formato «#rrggbb»."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:5
msgid "Calendars to run alarms for"
msgstr "Los calendarios ejecutarán alertas durante"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:6
-msgid ""
-"Color to draw the Marcus Bains Line in the Time bar (empty for default)."
+msgid "Color to draw the Marcus Bains Line in the Time bar (empty for default)."
msgstr ""
"Color para dibujar la línea de Marcus Bains en la barra de Tiempo (vacía por "
"omisión)."
@@ -4868,8 +4849,7 @@ msgstr "Confirmar compactación"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:10
msgid "Days on which the start and end of work hours should be indicated."
-msgstr ""
-"Días en los cuales debe indicarse el inicio y fin de las horas de trabajo."
+msgstr "Días en los cuales debe indicarse el inicio y fin de las horas de trabajo."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:11
msgid "Default appointment reminder"
@@ -5048,8 +5028,7 @@ msgstr "Directorio donde guardar los sonidos de las alertas"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:47
msgid "Show RSVP field in the event/task/meeting editor"
-msgstr ""
-"Mostrar el campo «Confirmar» en el editor de acontecimientos/tareas/reuniones"
+msgstr "Mostrar el campo «Confirmar» en el editor de acontecimientos/tareas/reuniones"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:48
msgid "Show Role field in the event/task/meeting editor"
@@ -5073,8 +5052,7 @@ msgstr "Mostrar el visor de la alerta en una bandeja de notificación"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:52
msgid "Show status field in the event/task/meeting editor"
-msgstr ""
-"Mostrar el campo de estado en el editor de acontecimientos/tareas/reuniones"
+msgstr "Mostrar el campo de estado en el editor de acontecimientos/tareas/reuniones"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:53
#: ../mail/evolution-mail.schemas.in.h:124
@@ -5088,13 +5066,11 @@ msgstr "Mostrar el panel de vista previa."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:55
msgid "Show timezone field in the event/meeting editor"
-msgstr ""
-"Mostrar el campo de zona horaria en el editor de acontecimientos/reuniones"
+msgstr "Mostrar el campo de zona horaria en el editor de acontecimientos/reuniones"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:56
msgid "Show type field in the event/task/meeting editor"
-msgstr ""
-"Mostrar el campo de tipo en el editor de acontecimientos/tareas/reuniones"
+msgstr "Mostrar el campo de tipo en el editor de acontecimientos/tareas/reuniones"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:57
msgid "Show week numbers in date navigator"
@@ -5159,8 +5135,7 @@ msgstr ""
"\"."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:69
-msgid ""
-"Units for determining when to hide tasks, \"minutes\", \"hours\" or \"days\"."
+msgid "Units for determining when to hide tasks, \"minutes\", \"hours\" or \"days\"."
msgstr ""
"Unidades para determinar cuándo ocultar tareas, \"minutes\", \"hours\" o "
"\"days\"."
@@ -5171,13 +5146,11 @@ msgstr "Comienzo de la semana"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:72
msgid "Weekday the week starts on, from Sunday (0) to Saturday (6)."
-msgstr ""
-"El día en que empieza la semana, desde el domingo (0) hasta el sábado (6)."
+msgstr "El día en que empieza la semana, desde el domingo (0) hasta el sábado (6)."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:73
msgid "Whether or not to use the notification tray for display alarms."
-msgstr ""
-"Indica si se debe usar o no la bandeja de notificación para mostrar alertas."
+msgstr "Indica si se debe usar o no la bandeja de notificación para mostrar alertas."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:74
msgid "Whether to ask for confirmation when deleting an appointment or task."
@@ -5202,8 +5175,7 @@ msgstr ""
"vistas semanales y mensuales."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:78
-msgid ""
-"Whether to draw the Marcus Bains Line (line at current time) in the calendar."
+msgid "Whether to draw the Marcus Bains Line (line at current time) in the calendar."
msgstr ""
"Indica si debe dibujar la línea Marcus Bains (línea a la hora actual) en el "
"calendario."
@@ -5214,8 +5186,7 @@ msgstr "Indica si debe ocultar las tareas terminadas en la vista de tareas."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:80
msgid "Whether to set a default reminder for appointments."
-msgstr ""
-"Indica si debe establecer un recordatorio predeterminado para las citas."
+msgstr "Indica si debe establecer un recordatorio predeterminado para las citas."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:81
msgid "Whether to show RSVP field in the event/task/meeting editor"
@@ -5242,8 +5213,7 @@ msgstr ""
"tareas/reuniones"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:85
-msgid ""
-"Whether to show times in twenty four hour format instead of using am/pm."
+msgid "Whether to show times in twenty four hour format instead of using am/pm."
msgstr ""
"Indica si debe mostrar las horas en formato de veinticuatro horas en vez de "
"usar am/pm."
@@ -5262,13 +5232,11 @@ msgstr ""
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:88
msgid "Whether to show week numbers in the date navigator."
-msgstr ""
-"Indica si debe mostrar los números de la semana en el navegador de fechas."
+msgstr "Indica si debe mostrar los números de la semana en el navegador de fechas."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:89
msgid "Whether to use daylight savings time while displaying events."
-msgstr ""
-"Indica si se deben usar la hora del horario de verano al mostrar eventos."
+msgstr "Indica si se deben usar la hora del horario de verano al mostrar eventos."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:90
msgid "Work days"
@@ -5372,6 +5340,7 @@ msgstr "Purgar acontecimientos anteriores a"
#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "días"
@@ -5414,8 +5383,7 @@ msgstr "Falló al actualizar calendarios."
#: ../calendar/gui/calendar-component.c:1248
#, c-format
msgid "Unable to open the calendar '%s' for creating events and meetings"
-msgstr ""
-"No es posible abrir el calendario «%s» para crear acontecimientos y reuniones"
+msgstr "No es posible abrir el calendario «%s» para crear acontecimientos y reuniones"
#: ../calendar/gui/calendar-component.c:1264
msgid "There is no calendar available for creating events and meetings"
@@ -5530,7 +5498,7 @@ msgid "Competition"
msgstr "Completado"
#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
-#: ../calendar/gui/e-cal-model.c:329 ../calendar/gui/e-calendar-table.c:547
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
#: ../calendar/gui/memotypes.xml.h:10
msgid "Confidential"
msgstr "Confidencial"
@@ -5623,13 +5591,13 @@ msgid "Phone Calls"
msgstr "Llamadas de teléfono"
#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
-#: ../calendar/gui/e-cal-model.c:327 ../calendar/gui/e-calendar-table.c:546
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
#: ../calendar/gui/memotypes.xml.h:29
msgid "Private"
msgstr "Privado"
#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
-#: ../calendar/gui/e-cal-model.c:318 ../calendar/gui/e-cal-model.c:325
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
msgid "Public"
msgstr "Público"
@@ -5826,10 +5794,7 @@ msgstr "veces adicionales cada"
msgid "hour(s)"
msgstr "hora(s)"
-#. Translators: This is the second half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
-#: ../plugins/google-account-setup/google-contacts-source.c:247
msgid "minute(s)"
msgstr "minuto(s)"
@@ -5880,8 +5845,7 @@ msgstr ""
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:7
#, no-c-format
-msgid ""
-"<i>%u and %d will be replaced by user and domain from the email address.</i>"
+msgid "<i>%u and %d will be replaced by user and domain from the email address.</i>"
msgstr ""
"<i>%u y %d se reemplazarán por el usuario y el dominio de la dirección de "
"correo-e.</i>"
@@ -6093,8 +6057,7 @@ msgstr "_Sáb"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:65
msgid "_Show appointment end times in week and month view"
-msgstr ""
-"_Mostrar la hora del final de las citas en las vistas semanales y mensuales"
+msgstr "_Mostrar la hora del final de las citas en las vistas semanales y mensuales"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:66
msgid "_Time divisions:"
@@ -6116,8 +6079,7 @@ msgstr "antes de cada cita"
#: ../calendar/gui/dialogs/calendar-setup.c:269
msgid "Cop_y calendar contents locally for offline operation"
-msgstr ""
-"_Copiar el contenido del calendario localmente para trabajar desconectado"
+msgstr "_Copiar el contenido del calendario localmente para trabajar desconectado"
#: ../calendar/gui/dialogs/calendar-setup.c:271
msgid "Cop_y task list contents locally for offline operation"
@@ -6238,14 +6200,14 @@ msgstr " (Vence "
msgid "Due "
msgstr "Vence "
-#: ../calendar/gui/dialogs/comp-editor.c:231
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "Mensaje adjunto: %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:236
-#: ../calendar/gui/dialogs/comp-editor.c:409 ../composer/e-msg-composer.c:1771
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
@@ -6253,227 +6215,227 @@ msgid_plural "%d attached messages"
msgstr[0] "Mensaje adjunto"
msgstr[1] "%d mensajes adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:480 ../composer/e-msg-composer.c:2058
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "_Mover"
-#: ../calendar/gui/dialogs/comp-editor.c:482 ../composer/e-msg-composer.c:2060
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr "Cancelar _arrastre"
-#: ../calendar/gui/dialogs/comp-editor.c:615
-#: ../calendar/gui/dialogs/comp-editor.c:3253 ../mail/em-utils.c:371
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
#: ../plugins/prefer-plain/prefer-plain.c:74
#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr "adjunto"
-#: ../calendar/gui/dialogs/comp-editor.c:841
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr "No es posible actualizar el objeto"
-#: ../calendar/gui/dialogs/comp-editor.c:929
+#: ../calendar/gui/dialogs/comp-editor.c:930
msgid "Edit Appointment"
msgstr "Editar cita"
-#: ../calendar/gui/dialogs/comp-editor.c:936
+#: ../calendar/gui/dialogs/comp-editor.c:937
#, c-format
msgid "Meeting - %s"
msgstr "Reunión: %s"
-#: ../calendar/gui/dialogs/comp-editor.c:938
+#: ../calendar/gui/dialogs/comp-editor.c:939
#, c-format
msgid "Appointment - %s"
msgstr "Cita: %s"
-#: ../calendar/gui/dialogs/comp-editor.c:944
+#: ../calendar/gui/dialogs/comp-editor.c:945
#, c-format
msgid "Assigned Task - %s"
msgstr "Tarea asignada: %s"
-#: ../calendar/gui/dialogs/comp-editor.c:946
+#: ../calendar/gui/dialogs/comp-editor.c:947
#, c-format
msgid "Task - %s"
msgstr "Tarea: %s"
-#: ../calendar/gui/dialogs/comp-editor.c:951
+#: ../calendar/gui/dialogs/comp-editor.c:952
#, c-format
msgid "Memo - %s"
msgstr "Nota - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:967
+#: ../calendar/gui/dialogs/comp-editor.c:968
msgid "No Summary"
msgstr "Sin resumen"
-#: ../calendar/gui/dialogs/comp-editor.c:1261
+#: ../calendar/gui/dialogs/comp-editor.c:1262
msgid "Click here to close the current window"
msgstr "Pulse aquí para cerrar la ventana actual"
-#: ../calendar/gui/dialogs/comp-editor.c:1268
+#: ../calendar/gui/dialogs/comp-editor.c:1269
msgid "Copy selected text to the clipboard"
msgstr "Copia el texto seleccionado al portapapeles"
-#: ../calendar/gui/dialogs/comp-editor.c:1275
+#: ../calendar/gui/dialogs/comp-editor.c:1276
msgid "Cut selected text to the clipboard"
msgstr "Corta el texto seleccionado al portapapeles"
-#: ../calendar/gui/dialogs/comp-editor.c:1282
+#: ../calendar/gui/dialogs/comp-editor.c:1283
msgid "Click here to view help available"
msgstr "Pulse aquí para ver la ayuda disponible"
-#: ../calendar/gui/dialogs/comp-editor.c:1289
+#: ../calendar/gui/dialogs/comp-editor.c:1290
msgid "Paste text from the clipboard"
msgstr "Pega texto desde el portapapeles"
-#: ../calendar/gui/dialogs/comp-editor.c:1310
+#: ../calendar/gui/dialogs/comp-editor.c:1311
msgid "Click here to save the current window"
msgstr "Pulse aquí para guardar la vista actual"
-#: ../calendar/gui/dialogs/comp-editor.c:1317
+#: ../calendar/gui/dialogs/comp-editor.c:1318
msgid "Select all text"
msgstr "Selecciona todo el texto"
-#: ../calendar/gui/dialogs/comp-editor.c:1324
+#: ../calendar/gui/dialogs/comp-editor.c:1325
msgid "_Classification"
msgstr "_Clasificación"
-#: ../calendar/gui/dialogs/comp-editor.c:1338
+#: ../calendar/gui/dialogs/comp-editor.c:1339
#: ../mail/mail-signature-editor.c:208
#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
msgid "_File"
msgstr "_Archivo"
-#: ../calendar/gui/dialogs/comp-editor.c:1345
+#: ../calendar/gui/dialogs/comp-editor.c:1346
#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
msgid "_Help"
msgstr "Ay_uda"
-#: ../calendar/gui/dialogs/comp-editor.c:1352
+#: ../calendar/gui/dialogs/comp-editor.c:1353
msgid "_Insert"
msgstr "_Insertar"
-#: ../calendar/gui/dialogs/comp-editor.c:1359
+#: ../calendar/gui/dialogs/comp-editor.c:1360
msgid "_Options"
msgstr "_Opciones"
-#: ../calendar/gui/dialogs/comp-editor.c:1366 ../mail/em-folder-tree.c:2098
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
#: ../ui/evolution.xml.h:55
msgid "_View"
msgstr "_Ver"
-#: ../calendar/gui/dialogs/comp-editor.c:1376
+#: ../calendar/gui/dialogs/comp-editor.c:1377
#: ../composer/e-composer-actions.c:472
msgid "_Attachment..."
msgstr "_Adjunto…"
-#: ../calendar/gui/dialogs/comp-editor.c:1378
+#: ../calendar/gui/dialogs/comp-editor.c:1379
msgid "Click here to attach a file"
msgstr "Pulse aquí para adjuntar un archivo"
-#: ../calendar/gui/dialogs/comp-editor.c:1386
+#: ../calendar/gui/dialogs/comp-editor.c:1387
msgid "_Categories"
msgstr "_Categorías"
-#: ../calendar/gui/dialogs/comp-editor.c:1388
+#: ../calendar/gui/dialogs/comp-editor.c:1389
msgid "Toggles whether to display categories"
msgstr "Conmuta cuando se muestran las categorías"
-#: ../calendar/gui/dialogs/comp-editor.c:1394
+#: ../calendar/gui/dialogs/comp-editor.c:1395
msgid "Time _Zone"
msgstr "_Zona horaria"
-#: ../calendar/gui/dialogs/comp-editor.c:1396
+#: ../calendar/gui/dialogs/comp-editor.c:1397
msgid "Toggles whether the time zone is displayed"
msgstr "Conmuta cuando se muestra la «Zona horaria»"
-#: ../calendar/gui/dialogs/comp-editor.c:1405
+#: ../calendar/gui/dialogs/comp-editor.c:1406
msgid "Pu_blic"
msgstr "Pú_blico"
-#: ../calendar/gui/dialogs/comp-editor.c:1407
+#: ../calendar/gui/dialogs/comp-editor.c:1408
msgid "Classify as public"
msgstr "Clasificar como público"
-#: ../calendar/gui/dialogs/comp-editor.c:1412
+#: ../calendar/gui/dialogs/comp-editor.c:1413
msgid "_Private"
msgstr "_Privado"
-#: ../calendar/gui/dialogs/comp-editor.c:1414
+#: ../calendar/gui/dialogs/comp-editor.c:1415
msgid "Classify as private"
msgstr "Clasificar como privado"
-#: ../calendar/gui/dialogs/comp-editor.c:1419
+#: ../calendar/gui/dialogs/comp-editor.c:1420
msgid "_Confidential"
msgstr "_Confidencial"
-#: ../calendar/gui/dialogs/comp-editor.c:1421
+#: ../calendar/gui/dialogs/comp-editor.c:1422
msgid "Classify as confidential"
msgstr "Clasificar como confidencial"
-#: ../calendar/gui/dialogs/comp-editor.c:1429
+#: ../calendar/gui/dialogs/comp-editor.c:1430
msgid "R_ole Field"
msgstr "Campo «_Rol»"
-#: ../calendar/gui/dialogs/comp-editor.c:1431
+#: ../calendar/gui/dialogs/comp-editor.c:1432
msgid "Toggles whether the Role field is displayed"
msgstr "Conmuta cuando se muestra el campo «Rol»"
-#: ../calendar/gui/dialogs/comp-editor.c:1437
+#: ../calendar/gui/dialogs/comp-editor.c:1438
msgid "_RSVP"
msgstr "_Confirmar"
-#: ../calendar/gui/dialogs/comp-editor.c:1439
+#: ../calendar/gui/dialogs/comp-editor.c:1440
msgid "Toggles whether the RSVP field is displayed"
msgstr "Conmuta cuando se muestra el campo «Confirmar»"
-#: ../calendar/gui/dialogs/comp-editor.c:1445
+#: ../calendar/gui/dialogs/comp-editor.c:1446
msgid "_Status Field"
msgstr "Campo de _estado"
-#: ../calendar/gui/dialogs/comp-editor.c:1447
+#: ../calendar/gui/dialogs/comp-editor.c:1448
msgid "Toggles whether the Status field is displayed"
msgstr "Conmuta cuando se muestra el campo «Estado»"
-#: ../calendar/gui/dialogs/comp-editor.c:1453
+#: ../calendar/gui/dialogs/comp-editor.c:1454
msgid "_Type Field"
msgstr "Campo de _tipo"
-#: ../calendar/gui/dialogs/comp-editor.c:1455
+#: ../calendar/gui/dialogs/comp-editor.c:1456
msgid "Toggles whether the Attendee Type is displayed"
msgstr "Conmuta indicando si se muestra el campo «Tipo de participante»"
-#: ../calendar/gui/dialogs/comp-editor.c:1765
+#: ../calendar/gui/dialogs/comp-editor.c:1766
#: ../widgets/misc/e-attachment-bar.c:1381
msgid "Recent Docu_ments"
msgstr "Docu_mentos recientes"
-#: ../calendar/gui/dialogs/comp-editor.c:1784
+#: ../calendar/gui/dialogs/comp-editor.c:1785
#: ../composer/e-composer-actions.c:700
msgid "Attach"
msgstr "Adjuntar"
-#: ../calendar/gui/dialogs/comp-editor.c:1879
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "<b>%d</b> adjunto"
msgstr[1] "<b>%d</b> adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:1911
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr "Ocultar _barra de adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:1914
-#: ../calendar/gui/dialogs/comp-editor.c:2222
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr "Mostrar _barra de adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:2033
+#: ../calendar/gui/dialogs/comp-editor.c:2034
#: ../calendar/gui/dialogs/event-page.c:1871
#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
@@ -6482,30 +6444,30 @@ msgstr "Mostrar _barra de adjuntos"
msgid "_Remove"
msgstr "_Quitar"
-#: ../calendar/gui/dialogs/comp-editor.c:2036
+#: ../calendar/gui/dialogs/comp-editor.c:2037
#: ../composer/e-msg-composer.c:1048
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr "_Añadir adjunto…"
-#: ../calendar/gui/dialogs/comp-editor.c:2244
+#: ../calendar/gui/dialogs/comp-editor.c:2245
#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr "Mostrar adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr "Pulse la barra espaciadora para cambiar la barra de adjuntos"
-#: ../calendar/gui/dialogs/comp-editor.c:2394
-#: ../calendar/gui/dialogs/comp-editor.c:2441
-#: ../calendar/gui/dialogs/comp-editor.c:3286
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr ""
"Los cambios efectuados a este elemento pueden descartarse si llega una "
"actualización por correo"
-#: ../calendar/gui/dialogs/comp-editor.c:3315
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "Imposible usar la versión actual."
@@ -6848,8 +6810,8 @@ msgstr "Nota"
msgid "Unable to open memos in '%s'."
msgstr "No es posible abrir las notas en «%s»."
-#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1561
-#: ../mail/em-format-html.c:1619 ../mail/em-format-html.c:1645
+#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1562
+#: ../mail/em-format-html.c:1620 ../mail/em-format-html.c:1646
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
#: ../mail/em-mailer-prefs.c:77 ../mail/message-list.etspec.h:19
msgid "To"
@@ -6873,8 +6835,7 @@ msgstr "_Grupo:"
#: ../calendar/gui/dialogs/recur-comp.c:50
#, c-format
msgid "You are modifying a recurring event. What would you like to modify?"
-msgstr ""
-"Está modificando un acontecimiento que se repite. ¿Qué quiere modificar?"
+msgstr "Está modificando un acontecimiento que se repite. ¿Qué quiere modificar?"
#: ../calendar/gui/dialogs/recur-comp.c:52
#, c-format
@@ -7134,7 +7095,7 @@ msgstr "Baja"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "Normal"
@@ -7385,7 +7346,7 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:191
#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
#: ../calendar/gui/e-meeting-store.c:746
@@ -7393,7 +7354,7 @@ msgstr ""
msgid "Yes"
msgstr "Sí"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
@@ -7401,7 +7362,7 @@ msgid "No"
msgstr "No"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
#: ../calendar/gui/e-meeting-list-view.c:167
@@ -7417,11 +7378,11 @@ msgstr "No"
msgid "Unknown"
msgstr "Desconocido"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "Repetición"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "Asignado"
@@ -7439,7 +7400,7 @@ msgid "untitled_image.%s"
msgstr "imagen-_sin-título.%s"
#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
-#: ../calendar/gui/e-calendar-view.c:1675 ../calendar/gui/e-memo-table.c:926
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "Guardar _como…"
@@ -7453,7 +7414,7 @@ msgstr "Establecer como _fondo"
msgid "_Save Selected"
msgstr "_Guardar seleccionados"
-#: ../calendar/gui/e-cal-popup.c:434 ../mail/em-popup.c:837
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "Abrir en %s…"
@@ -7464,7 +7425,7 @@ msgstr "* Sin resumen *"
#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
#: ../calendar/gui/e-calendar-table.c:374
-#: ../calendar/gui/e-calendar-view.c:2218
+#: ../calendar/gui/e-calendar-view.c:2215
#, c-format
msgid "Organizer: %s <%s>"
msgstr "Organizador: %s <%s>"
@@ -7472,7 +7433,7 @@ msgstr "Organizador: %s <%s>"
#. With SunOne accounts, there may be no ':' in organiser.value
#. With SunOne accouts, there may be no ':' in organiser.value
#: ../calendar/gui/e-calendar-table.c:377
-#: ../calendar/gui/e-calendar-view.c:2222
+#: ../calendar/gui/e-calendar-view.c:2219
#, c-format
msgid "Organizer: %s"
msgstr "Organizador: %s"
@@ -7530,23 +7491,23 @@ msgid "100%"
msgstr "100%"
#: ../calendar/gui/e-calendar-table.c:879
-#: ../calendar/gui/e-calendar-view.c:668 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr "Borrando los objetos seleccionados"
#: ../calendar/gui/e-calendar-table.c:1163
-#: ../calendar/gui/e-calendar-view.c:798 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr "Actualizando objetos"
#: ../calendar/gui/e-calendar-table.c:1348
-#: ../calendar/gui/e-calendar-view.c:1224 ../calendar/gui/e-memo-table.c:821
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "Guardar como…"
#: ../calendar/gui/e-calendar-table.c:1571
-#: ../calendar/gui/e-calendar-view.c:1657
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "_Tarea nueva"
@@ -7555,20 +7516,20 @@ msgid "Open _Web Page"
msgstr "Abrir página _web"
#: ../calendar/gui/e-calendar-table.c:1577
-#: ../calendar/gui/e-calendar-view.c:1660 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "_Imprimir…"
#: ../calendar/gui/e-calendar-table.c:1581
-#: ../calendar/gui/e-calendar-view.c:1680 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "C_ortar"
#: ../calendar/gui/e-calendar-table.c:1583
-#: ../calendar/gui/e-calendar-view.c:1663
-#: ../calendar/gui/e-calendar-view.c:1682 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
@@ -7635,93 +7596,93 @@ msgstr "Prioridad"
msgid "Start date"
msgstr "Fecha de inicio"
-#: ../calendar/gui/e-calendar-view.c:1343
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr "Moviendo elementos"
-#: ../calendar/gui/e-calendar-view.c:1345
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr "Copiando elementos"
-#: ../calendar/gui/e-calendar-view.c:1654
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "_Cita nueva…"
-#: ../calendar/gui/e-calendar-view.c:1655
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr "Acont_ecimiento nuevo para todo el día"
-#: ../calendar/gui/e-calendar-view.c:1656
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "_Reunión nueva"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1667
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr "Vista _actual"
-#: ../calendar/gui/e-calendar-view.c:1669
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "Seleccionar _hoy"
-#: ../calendar/gui/e-calendar-view.c:1670
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "_Seleccionar fecha…"
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "_Imprimir…"
-#: ../calendar/gui/e-calendar-view.c:1686
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "Cop_iar al calendario…"
-#: ../calendar/gui/e-calendar-view.c:1687
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "Mo_ver al calendario…"
-#: ../calendar/gui/e-calendar-view.c:1688
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr "_Delegar reunión…"
-#: ../calendar/gui/e-calendar-view.c:1689
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr "_Concertar una reunión…"
-#: ../calendar/gui/e-calendar-view.c:1690
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr "Reenviar como i_Calendar…"
-#: ../calendar/gui/e-calendar-view.c:1691
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "_Responder"
-#: ../calendar/gui/e-calendar-view.c:1692 ../mail/em-folder-view.c:1330
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "Responder a _todos"
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr "Hacer esta repetición _movible"
-#: ../calendar/gui/e-calendar-view.c:1698 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr "Borrar esta _repetición"
-#: ../calendar/gui/e-calendar-view.c:1699
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr "Borrar tod_as las repeticiones"
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2238 ../calendar/gui/print.c:2508
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "Lugar: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2272
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "Hora: %s %s"
@@ -7760,19 +7721,19 @@ msgstr "divisiones de %02i minutos"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1523
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%A %e de %B"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:767 ../calendar/gui/e-week-view.c:505
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
#: ../calendar/gui/print.c:829
msgid "am"
msgstr "am"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-week-view.c:508
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "pm"
@@ -7917,8 +7878,7 @@ msgstr ""
"calendarios"
#: ../calendar/gui/e-itip-control.c:1285
-msgid ""
-"The task has been canceled, however it could not be found in your task lists"
+msgid "The task has been canceled, however it could not be found in your task lists"
msgstr ""
"La tarea ha sido cancelada, sin embargo no pudo encontrarse en sus listas de "
"tareas"
@@ -8114,13 +8074,11 @@ msgstr "El objeto es inválido y no puede ser actualizado\n"
#: ../calendar/gui/e-itip-control.c:2031
msgid "This response is not from a current attendee. Add as an attendee?"
-msgstr ""
-"Esta respuesta no es de un participante. ¿Desea añadirlo como participante?"
+msgstr "Esta respuesta no es de un participante. ¿Desea añadirlo como participante?"
#: ../calendar/gui/e-itip-control.c:2049
msgid "Attendee status could not be updated because of an invalid status!\n"
-msgstr ""
-"El estado del participante no pudo actualizarse debido a un estado inválido\n"
+msgstr "El estado del participante no pudo actualizarse debido a un estado inválido\n"
#: ../calendar/gui/e-itip-control.c:2073
msgid "Attendee status updated\n"
@@ -8425,7 +8383,7 @@ msgid "Click to add a memo"
msgstr "Pulse aquí para añadir una nota"
#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
-#: ../calendar/gui/gnome-cal.c:2864
+#: ../calendar/gui/gnome-cal.c:2960
#, c-format
msgid ""
"Error on %s:\n"
@@ -8475,43 +8433,39 @@ msgstr "Seleccione la zona horaria"
msgid "%d %B"
msgstr "%e de %B"
-#: ../calendar/gui/gnome-cal.c:830
-msgid "Updating query"
-msgstr "Actualizando consulta"
-
-#: ../calendar/gui/gnome-cal.c:2501
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr "Vista _personalizada"
-#: ../calendar/gui/gnome-cal.c:2502
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr "_Guardar vista personalizada"
-#: ../calendar/gui/gnome-cal.c:2507
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr "_Definir vistas…"
-#: ../calendar/gui/gnome-cal.c:2688
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "Cargando citas de %s"
-#: ../calendar/gui/gnome-cal.c:2707
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "Cargando tareas de %s"
-#: ../calendar/gui/gnome-cal.c:2716
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "Cargando notas en %s"
-#: ../calendar/gui/gnome-cal.c:2823
+#: ../calendar/gui/gnome-cal.c:2919
#, c-format
msgid "Opening %s"
msgstr "Abriendo %s"
-#: ../calendar/gui/gnome-cal.c:3779
+#: ../calendar/gui/gnome-cal.c:3873
msgid "Purging"
msgstr "Compactando"
@@ -8737,8 +8691,7 @@ msgstr ""
#: ../calendar/gui/migration.c:775 ../calendar/gui/migration.c:943
#, c-format
msgid "Unable to migrate old settings from evolution/config.xmldb"
-msgstr ""
-"No es posible migrar la configuración antigua desde evolution/config.xmldb"
+msgstr "No es posible migrar la configuración antigua desde evolution/config.xmldb"
#. FIXME: domain/code
#: ../calendar/gui/migration.c:804
@@ -10912,8 +10865,7 @@ msgid "Show _Attachment Bar"
msgstr "Mostrar _barra de adjuntos"
#: ../composer/e-msg-composer.c:872
-msgid ""
-"Cannot sign outgoing message: No signing certificate set for this account"
+msgid "Cannot sign outgoing message: No signing certificate set for this account"
msgstr ""
"No es posible firmar el mensaje saliente: No hay establecido un certificado "
"de firma para esta cuenta"
@@ -10966,13 +10918,11 @@ msgstr "Todas las cuentas han sido eliminadas."
msgid ""
"Are you sure you want to discard the message, titled '{0}', you are "
"composing?"
-msgstr ""
-"¿Seguro que quiere descartar el mensaje titulado «{0}» que está redactando?"
+msgstr "¿Seguro que quiere descartar el mensaje titulado «{0}» que está redactando?"
#: ../composer/mail-composer.error.xml.h:4
msgid "Because &quot;{0}&quot;, you may need to select different mail options."
-msgstr ""
-"Debido a «{0}», quizá necesite seleccionar diferentes opciones de correo."
+msgstr "Debido a «{0}», quizá necesite seleccionar diferentes opciones de correo."
#: ../composer/mail-composer.error.xml.h:5
msgid "Because &quot;{1}&quot;."
@@ -11046,8 +10996,7 @@ msgstr "Opciones de envío no disponibles."
#: ../composer/mail-composer.error.xml.h:19
msgid "The file `{0}' is not a regular file and cannot be sent in a message."
-msgstr ""
-"El archivo «{0}» no es un archivo regular y no puede enviarse en un mensaje."
+msgstr "El archivo «{0}» no es un archivo regular y no puede enviarse en un mensaje."
#: ../composer/mail-composer.error.xml.h:20
msgid ""
@@ -11171,12 +11120,10 @@ msgstr "Ocurrió un error al imprimir"
#: ../e-util/e-print.c:165
msgid "The printing system reported the following details about the error:"
-msgstr ""
-"El sistema de impresión informó de los siguientes detalles sobre el error:"
+msgstr "El sistema de impresión informó de los siguientes detalles sobre el error:"
#: ../e-util/e-print.c:171
-msgid ""
-"The printing system did not report any additional details about the error."
+msgid "The printing system did not report any additional details about the error."
msgstr ""
"El sistema de impresión no proporcionó ningún detalle adicional acerca del "
"error."
@@ -11209,6 +11156,10 @@ msgstr "¿Sobreescribir archivo?"
msgid "_Overwrite"
msgstr "_Sobreescribir"
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "No se pudo mostrar la ayuda de Evolution."
+
#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "_Importante"
@@ -11556,6 +11507,7 @@ msgstr "la fecha que especifique"
#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "semanas"
@@ -11580,8 +11532,7 @@ msgid "Composer Preferences"
msgstr "Preferencias del editor"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:2
-msgid ""
-"Configure mail preferences, including security and message display, here"
+msgid "Configure mail preferences, including security and message display, here"
msgstr ""
"Configure las preferencias de correo incluyendo seguridad y visualización de "
"mensajes, aquí"
@@ -12490,7 +12441,7 @@ msgstr "_Siguiente"
msgid "M_atch case"
msgstr "_Coincidir con capitalización"
-#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:649
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr "No firmado"
@@ -12502,7 +12453,7 @@ msgstr ""
"Este mensaje no está firmado. No hay garantía de que el mensaje sea "
"auténtico."
-#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:650
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr "Firma válida"
@@ -12514,7 +12465,7 @@ msgstr ""
"Este mensaje está firmado y es válido, lo que significa que es muy probable "
"que el mensaje sea auténtico."
-#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr "Firma no válida"
@@ -12526,7 +12477,7 @@ msgstr ""
"La firma de este mensaje no se puede verificar, pudo haber sido alterada en "
"tránsito."
-#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr "Firma válida, pero no se puede verificar el remitente"
@@ -12538,7 +12489,7 @@ msgstr ""
"Este mensaje está firmado con una firma válida, pero el remitente del "
"mensaje no se pudo verificar."
-#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr "La firma existe pero se necesita la clave pública"
@@ -12550,7 +12501,7 @@ msgstr ""
"Este mensaje está firmado con una firma pero no existe una clave pública "
"correspondiente."
-#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:659
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "Descifrado"
@@ -12562,7 +12513,7 @@ msgstr ""
"Este mensaje no está cifrado. Su contenido puede verse en tránsito a través "
"de Internet."
-#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:660
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr "Cifrado, débil"
@@ -12576,7 +12527,7 @@ msgstr ""
"ser difícil, pero no imposible para un espía ver el contenido de este "
"mensaje empleando algo de tiempo."
-#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:661
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "Cifrado"
@@ -12588,7 +12539,7 @@ msgstr ""
"Este mensaje está cifrado. Sería difícil para un espía ver el contenido de "
"este mensaje."
-#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:662
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr "Cifrado, fuerte"
@@ -12695,84 +12646,84 @@ msgstr ""
msgid "Page %d of %d"
msgstr "Página %d de %d"
-#: ../mail/em-format-html.c:503 ../mail/em-format-html.c:512
+#: ../mail/em-format-html.c:504 ../mail/em-format-html.c:513
#, c-format
msgid "Retrieving `%s'"
msgstr "Obteniendo «%s»"
-#: ../mail/em-format-html.c:924
+#: ../mail/em-format-html.c:925
msgid "Unknown external-body part."
msgstr "Parte externa al cuerpo del mensaje desconocida."
-#: ../mail/em-format-html.c:932
+#: ../mail/em-format-html.c:933
msgid "Malformed external-body part."
msgstr "Parte externa al cuerpo del mensaje mal escrita."
-#: ../mail/em-format-html.c:962
+#: ../mail/em-format-html.c:963
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr "Puntero a sitio FTP (%s)"
-#: ../mail/em-format-html.c:973
+#: ../mail/em-format-html.c:974
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr "Puntero a archivo local (%s) válido en el sitio «%s»"
-#: ../mail/em-format-html.c:975
+#: ../mail/em-format-html.c:976
#, c-format
msgid "Pointer to local file (%s)"
msgstr "Puntero a archivo local (%s)"
-#: ../mail/em-format-html.c:996
+#: ../mail/em-format-html.c:997
#, c-format
msgid "Pointer to remote data (%s)"
msgstr "Puntero a datos remotos (%s)"
-#: ../mail/em-format-html.c:1007
+#: ../mail/em-format-html.c:1008
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr "Puntero a datos externos desconocidos (tipo «%s»)"
-#: ../mail/em-format-html.c:1235
+#: ../mail/em-format-html.c:1236
msgid "Formatting message"
msgstr "Formateando el mensaje"
-#: ../mail/em-format-html.c:1409
+#: ../mail/em-format-html.c:1410
msgid "Formatting Message..."
msgstr "Formateando el mensaje…"
-#: ../mail/em-format-html.c:1562 ../mail/em-format-html.c:1626
-#: ../mail/em-format-html.c:1648 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1627
+#: ../mail/em-format-html.c:1649 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:887 ../mail/em-mailer-prefs.c:78
msgid "Cc"
msgstr "Cc"
-#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1632
-#: ../mail/em-format-html.c:1651 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1564 ../mail/em-format-html.c:1633
+#: ../mail/em-format-html.c:1652 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:888 ../mail/em-mailer-prefs.c:79
msgid "Bcc"
msgstr "Cco"
#. pseudo-header
-#: ../mail/em-format-html.c:1743 ../mail/em-format-quote.c:352
+#: ../mail/em-format-html.c:1744 ../mail/em-format-quote.c:352
#: ../mail/em-mailer-prefs.c:1450
msgid "Mailer"
msgstr "Transporte"
#. translators: strftime format for local time equivalent in Date header display, with day
-#: ../mail/em-format-html.c:1770
+#: ../mail/em-format-html.c:1771
msgid " (%a, %R %Z)"
msgstr " (%a, %R %Z)"
#. translators: strftime format for local time equivalent in Date header display, without day
-#: ../mail/em-format-html.c:1775
+#: ../mail/em-format-html.c:1776
msgid " (%R %Z)"
msgstr " (%R %Z)"
#. To translators: This message suggests to the receipients that the sender of the mail is
#. different from the one listed in From field.
#.
-#: ../mail/em-format-html.c:1906
+#: ../mail/em-format-html.c:1907
#, c-format
msgid "This message was sent by <b>%s</b> on behalf of <b>%s</b>"
msgstr "Este mensaje lo envió <b>%s</b> en nombre de <b>%s</b>"
@@ -12892,10 +12843,8 @@ msgstr "El complemento %s está disponible y el binario está instalado."
#. May be a better text
#: ../mail/em-mailer-prefs.c:1086 ../mail/em-mailer-prefs.c:1141
#, c-format
-msgid ""
-"%s plugin is not available. Please check whether the package is installed."
-msgstr ""
-"El complemento %s no está disponible. Compruebe si el paquete está instalado."
+msgid "%s plugin is not available. Please check whether the package is installed."
+msgstr "El complemento %s no está disponible. Compruebe si el paquete está instalado."
#: ../mail/em-mailer-prefs.c:1107
msgid "No Junk plugin available"
@@ -12993,7 +12942,7 @@ msgid "Reply to _List"
msgstr "Responder a la _lista"
#. make it first item
-#: ../mail/em-popup.c:629 ../mail/em-popup.c:858
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "_Añadir a la libreta de direcciones"
@@ -13076,8 +13025,7 @@ msgstr "Siempre solicitar confirmación de lectura"
#: ../mail/evolution-mail.schemas.in.h:6
msgid "Amount of time in seconds the error should be shown on the status bar."
-msgstr ""
-"Tiempo en segundos que deberá mostrarse el error en la barra de estado."
+msgstr "Tiempo en segundos que deberá mostrarse el error en la barra de estado."
#: ../mail/evolution-mail.schemas.in.h:7
msgid "Automatic emoticon recognition"
@@ -13223,8 +13171,7 @@ msgstr ""
#: ../mail/evolution-mail.schemas.in.h:36
msgid "Determines whether to use custom headers to check for junk"
-msgstr ""
-"Determina si se deben usar cabeceras personalizadas para comprobar si es SPAM"
+msgstr "Determina si se deben usar cabeceras personalizadas para comprobar si es SPAM"
#: ../mail/evolution-mail.schemas.in.h:37
msgid ""
@@ -13458,8 +13405,7 @@ msgstr "Lista de cabeceras personalizadas y si están activadas."
#: ../mail/evolution-mail.schemas.in.h:76
msgid "List of dictionary language codes used for spell checking."
-msgstr ""
-"Lista de los códigos de diccionario usados para la corrección ortográfica."
+msgstr "Lista de los códigos de diccionario usados para la corrección ortográfica."
#: ../mail/evolution-mail.schemas.in.h:77
msgid ""
@@ -13568,14 +13514,12 @@ msgid "Prompt the user when he or she tries to expunge a folder."
msgstr "Preguntar al usuario cuando intente compactar una carpeta."
#: ../mail/evolution-mail.schemas.in.h:100
-msgid ""
-"Prompt the user when he or she tries to send a message without a Subject."
+msgid "Prompt the user when he or she tries to send a message without a Subject."
msgstr "Preguntar al usuario cuando intente enviar un mensaje sin un asunto."
#: ../mail/evolution-mail.schemas.in.h:101
msgid "Prompt to check if the user wants to go offline immediately"
-msgstr ""
-"Preguntar para comprobar si el usuario quiere desconectarse inmediatamente"
+msgstr "Preguntar para comprobar si el usuario quiere desconectarse inmediatamente"
#: ../mail/evolution-mail.schemas.in.h:102
msgid "Prompt when deleting messages in search folder"
@@ -14171,7 +14115,7 @@ msgstr "Nivel de sucesos"
msgid "Time"
msgstr "Hora"
-#: ../mail/mail-component.c:1811 ../mail/message-list.c:2435
+#: ../mail/mail-component.c:1811 ../mail/message-list.c:2454
#: ../mail/message-list.etspec.h:10
msgid "Messages"
msgstr "Mensajes"
@@ -14554,8 +14498,7 @@ msgid "No _Proxy for:"
msgstr "Sin _proxy para:"
#: ../mail/mail-config.glade.h:107
-msgid ""
-"Note: Underscore in the label name is used as mnemonic identifier in menu."
+msgid "Note: Underscore in the label name is used as mnemonic identifier in menu."
msgstr ""
"Nota: El guión bajo en el nombre de la etiqueta se usa como un identificador "
"mnemónico en el menú."
@@ -14755,6 +14698,7 @@ msgstr "Usar aute_nticación"
#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "_Usuario:"
@@ -14795,8 +14739,7 @@ msgstr "Conexión _directa a Internet"
#: ../mail/mail-config.glade.h:166
msgid "_Do not sign meeting requests (for Outlook compatibility)"
-msgstr ""
-"No _firmar las solicitudes de reunión (para compatibilidad con Outlook)"
+msgstr "No _firmar las solicitudes de reunión (para compatibilidad con Outlook)"
#: ../mail/mail-config.glade.h:168
msgid "_Forward style:"
@@ -15321,8 +15264,7 @@ msgstr ""
msgid ""
"A signature already exists with the name \"{0}\". Please specify a different "
"name."
-msgstr ""
-"Ya existe una firma con el nombre «{0}». Especifique un nombre diferente."
+msgstr "Ya existe una firma con el nombre «{0}». Especifique un nombre diferente."
#: ../mail/mail.error.xml.h:8
msgid ""
@@ -15341,10 +15283,8 @@ msgid "Are you sure you want to delete this account?"
msgstr "¿Seguro que quiere borrar esta cuenta?"
#: ../mail/mail.error.xml.h:11
-msgid ""
-"Are you sure you want to disable this account and delete all its proxies?"
-msgstr ""
-"¿Seguro que quiere desactivar esta esta cuenta y borrar todos sus proxies?"
+msgid "Are you sure you want to disable this account and delete all its proxies?"
+msgstr "¿Seguro que quiere desactivar esta esta cuenta y borrar todos sus proxies?"
#: ../mail/mail.error.xml.h:12
msgid "Are you sure you want to open {0} messages at once?"
@@ -15524,8 +15464,7 @@ msgstr "No desactivar"
msgid ""
"Do you want to locally synchronize the folders that are marked for offline "
"usage?"
-msgstr ""
-"¿Quiere sincronizar localmente las carpetas marcadas para uso en desconexión?"
+msgstr "¿Quiere sincronizar localmente las carpetas marcadas para uso en desconexión?"
#: ../mail/mail.error.xml.h:53
msgid "Do you want to mark all messages as read?"
@@ -15794,10 +15733,8 @@ msgstr ""
"está activada"
#: ../mail/mail.error.xml.h:115
-msgid ""
-"This message cannot be sent because you have not specified any recipients"
-msgstr ""
-"Este mensaje no puede enviarse porque no ha especificado ningún destinatario"
+msgid "This message cannot be sent because you have not specified any recipients"
+msgstr "Este mensaje no puede enviarse porque no ha especificado ningún destinatario"
#: ../mail/mail.error.xml.h:116
msgid ""
@@ -15975,11 +15912,11 @@ msgid "%b %d %Y"
msgstr "%e %b %Y"
#. there is some info why the message list is empty, let it be something useful
-#: ../mail/message-list.c:3897 ../mail/message-list.c:4354
+#: ../mail/message-list.c:3916 ../mail/message-list.c:4373
msgid "Generating message list"
msgstr "Generando la lista de mensajes"
-#: ../mail/message-list.c:4204
+#: ../mail/message-list.c:4223
msgid ""
"No message satisfies your search criteria. Either clear search with Search-"
">Clear menu item or change it."
@@ -15987,7 +15924,7 @@ msgstr ""
"Ningún mensaje satisface su criterio de búsqueda. Limpie el criterio de "
"selección con el elemento del menú Buscar->Limpiar o cámbielo."
-#: ../mail/message-list.c:4206
+#: ../mail/message-list.c:4225
msgid "There are no messages in this folder."
msgstr "No hay mensajes en esta carpeta."
@@ -16164,8 +16101,7 @@ msgstr "_Reiniciar Evolution después del respaldo"
#: ../plugins/backup-restore/backup-restore.c:159
msgid "Select name of the Evolution backup file to restore"
-msgstr ""
-"Seleccione el nombre del archivo de respaldo de Evolution para restaurar"
+msgstr "Seleccione el nombre del archivo de respaldo de Evolution para restaurar"
#: ../plugins/backup-restore/backup-restore.c:183
msgid "_Restart Evolution after restore"
@@ -16298,8 +16234,7 @@ msgstr "Espere mientras Evolution restaura sus datos."
#: ../plugins/backup-restore/backup.c:516
msgid "This may take a while depending on the amount of data in your account."
-msgstr ""
-"Esto puede llevar un tiempo dependiendo de la cantidad de datos en su cuenta."
+msgstr "Esto puede llevar un tiempo dependiendo de la cantidad de datos en su cuenta."
#: ../plugins/backup-restore/org-gnome-backup-restore.eplug.xml.h:1
msgid "A plugin for backing up and restore Evolution data and settings."
@@ -16317,8 +16252,7 @@ msgid "Are you sure you want to close Evolution?"
msgstr "¿Seguro que quiere cerrar Evolution?"
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:2
-msgid ""
-"Are you sure you want to restore Evolution from the selected backup file?"
+msgid "Are you sure you want to restore Evolution from the selected backup file?"
msgstr ""
"¿Seguro que quiere restaurar Evolution desde el archivo de respaldo "
"seleccionado?"
@@ -16406,8 +16340,7 @@ msgstr ""
#: ../plugins/bbdb/bbdb.c:609
msgid "Select Address book for Pidgin buddy list"
-msgstr ""
-"Seleccione la libreta de direcciones para la lista de contactos de Pidgin"
+msgstr "Seleccione la libreta de direcciones para la lista de contactos de Pidgin"
#. Synchronize now button.
#: ../plugins/bbdb/bbdb.c:620
@@ -16442,8 +16375,7 @@ msgstr "El proceso hijo de Bogofilter no está respondiendo, matándolo..."
#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:140
#, c-format
msgid "Wait for Bogofilter child process interrupted, terminating..."
-msgstr ""
-"Espere a que el proceso hijo de Bogofilter se interrumpa, terminando..."
+msgstr "Espere a que el proceso hijo de Bogofilter se interrumpa, terminando..."
#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:152
#, c-format
@@ -16489,6 +16421,7 @@ msgstr "_URL:"
#: ../plugins/caldav/caldav-source.c:271
#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "Usar _SSL"
@@ -16511,6 +16444,7 @@ msgstr "Proporciona funcionalidad básica para calendarios locales."
#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
#: ../plugins/google-account-setup/google-source.c:695
+#: ../plugins/google-account-setup/google-contacts-source.c:320
msgid "Re_fresh:"
msgstr "A_ctualizar:"
@@ -16600,16 +16534,14 @@ msgid "Check whether Evolution is the default mailer"
msgstr "Comprobar si Evolution es la aplicación de correo predeterminada"
#: ../plugins/default-mailer/apps-evolution-mail-prompts-checkdefault.schemas.in.h:2
-msgid ""
-"Every time Evolution starts, check whether or not it is the default mailer."
+msgid "Every time Evolution starts, check whether or not it is the default mailer."
msgstr ""
"Cada vez que Evolution se inicie, comprobar si es o no el cliente de correo "
"predeterminado."
#: ../plugins/default-mailer/org-gnome-default-mailer.eplug.xml.h:1
msgid "Checks whether Evolution is the default mail client on startup."
-msgstr ""
-"Comprueba si Evolution es el cliente de correo predeterminado al iniciar."
+msgstr "Comprueba si Evolution es el cliente de correo predeterminado al iniciar."
#: ../plugins/default-mailer/org-gnome-default-mailer.eplug.xml.h:2
msgid "Default Mail Client "
@@ -16652,15 +16584,15 @@ msgstr ""
"Proporciona funcionalidad para marcar un calendario o una libreta de "
"direcciones como el o la predeterminada."
-#: ../plugins/email-custom-header/email-custom-header.c:562
+#: ../plugins/email-custom-header/email-custom-header.c:558
msgid "_Custom Header"
msgstr "_Cabeceras personalizadas"
-#: ../plugins/email-custom-header/email-custom-header.c:883
+#: ../plugins/email-custom-header/email-custom-header.c:879
msgid "Key"
msgstr "Clave"
-#: ../plugins/email-custom-header/email-custom-header.c:894
+#: ../plugins/email-custom-header/email-custom-header.c:890
#: ../plugins/templates/templates.c:400
msgid "Values"
msgstr "Valores"
@@ -17147,7 +17079,7 @@ msgid "Add User:"
msgstr "Añadir usuario:"
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
-#: ../plugins/exchange-operations/exchange-send-options.c:413
+#: ../plugins/exchange-operations/exchange-send-options.c:408
#: ../plugins/groupwise-features/proxy.c:934
#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
@@ -17301,8 +17233,7 @@ msgstr "Operaciones de Exchange"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:1
msgid "Cannot change password due to configuration problems."
-msgstr ""
-"No es posible cambiar la contraseña debido a problemas de configuración."
+msgstr "No es posible cambiar la contraseña debido a problemas de configuración."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:2
msgid "Cannot display folders."
@@ -17468,8 +17399,7 @@ msgstr ""
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:45
msgid "Make sure the username and password are correct and try again."
-msgstr ""
-"Asegúrese de que el usuario y contraseña son correctos e intente de nuevo."
+msgstr "Asegúrese de que el usuario y contraseña son correctos e intente de nuevo."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:46
msgid "No Global Catalog server configured for this account."
@@ -17489,13 +17419,11 @@ msgstr "Contraseña cambiada con éxito."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:51
msgid "Please enter a Delegate's ID or deselect the Send as a Delegate option."
-msgstr ""
-"Introduzca la Id del delegado o deseleccione la opción Enviar como delegado."
+msgstr "Introduzca la Id del delegado o deseleccione la opción Enviar como delegado."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:52
msgid "Please make sure the Global Catalog Server name is correct."
-msgstr ""
-"Asegúrese de que el nombre del Servidor de Catálogo Global es correcto."
+msgstr "Asegúrese de que el nombre del Servidor de Catálogo Global es correcto."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:53
msgid "Please restart Evolution for changes to take effect"
@@ -17574,15 +17502,13 @@ msgstr "Operación no soportada"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:73
msgid "You are nearing your quota available for storing mail on this server."
-msgstr ""
-"Está cerca de su cuota disponible para almacenar correo en este servidor."
+msgstr "Está cerca de su cuota disponible para almacenar correo en este servidor."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:74
msgid ""
"You are permitted to send a message on behalf of only one delegator at a "
"time."
-msgstr ""
-"Le está permitido mandar un mensaje en nombre de a un solo delegado cada vez."
+msgstr "Le está permitido mandar un mensaje en nombre de a un solo delegado cada vez."
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:75
msgid "You cannot make yourself your own delegate"
@@ -17789,25 +17715,14 @@ msgstr "Cal_endario:"
msgid "Retrieve _list"
msgstr "Obtener _lista"
-#: ../plugins/google-account-setup/google-contacts-source.c:198
+#: ../plugins/google-account-setup/google-contacts-source.c:268
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
msgid "<b>Server</b>"
msgstr "<b>Servidor</b>"
-#: ../plugins/google-account-setup/google-contacts-source.c:208
-msgid "Username:"
-msgstr "Usuario:"
-
-#. Translators: This is the first half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
-#: ../plugins/google-account-setup/google-contacts-source.c:233
-msgid "Update every"
-msgstr "Actualizar cada"
-
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
msgid "A plugin to setup google calendar and contacts."
-msgstr ""
-"Un complemento para configurar el calendario y los contactos de Google."
+msgstr "Un complemento para configurar el calendario y los contactos de Google."
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:2
msgid "Google sources"
@@ -17989,13 +17904,11 @@ msgstr "¿Quiere rechazarlo?"
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:6
msgid "You cannot share folder with specified user &quot;{0}&quot;"
-msgstr ""
-"No puede compartir la carpeta con el usuario especificado &quot;{0}&quot;"
+msgstr "No puede compartir la carpeta con el usuario especificado &quot;{0}&quot;"
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:7
msgid "You have to specify a user name whom you want to add to the list"
-msgstr ""
-"Tiene que especificar el nombre de usuario que quiere añadir a la lista"
+msgstr "Tiene que especificar el nombre de usuario que quiere añadir a la lista"
#: ../plugins/groupwise-features/process-meeting.c:49
msgid "Accept Tentatively"
@@ -18112,13 +18025,11 @@ msgstr "Sesión _proxy…"
#: ../plugins/groupwise-features/proxy.c:691
msgid "The Proxy tab will be available only when the account is online."
-msgstr ""
-"La solapa del Proxy estará disponible sólo cuando la cuenta esté conectada."
+msgstr "La solapa del Proxy estará disponible sólo cuando la cuenta esté conectada."
#: ../plugins/groupwise-features/proxy.c:696
msgid "The Proxy tab will be available only when the account is enabled."
-msgstr ""
-"La solapa del Proxy estará disponible sólo cuando la cuenta esté activada."
+msgstr "La solapa del Proxy estará disponible sólo cuando la cuenta esté activada."
#: ../plugins/groupwise-features/share-folder-common.c:319
#: ../plugins/groupwise-features/share-folder.c:750
@@ -18334,8 +18245,7 @@ msgstr "Formato iCalendar (.ics)"
#: ../plugins/ipod-sync/org-gnome-ipod-sync-evolution.eplug.xml.h:1
msgid "Synchronize the selected task/memo/calendar/addressbook with Apple iPod"
-msgstr ""
-"Sincronizar la tarea/nota/calendario/libreta de direcciones con Apple iPod"
+msgstr "Sincronizar la tarea/nota/calendario/libreta de direcciones con Apple iPod"
#: ../plugins/ipod-sync/org-gnome-ipod-sync-evolution.eplug.xml.h:2
msgid "Synchronize to iPod"
@@ -18707,8 +18617,7 @@ msgstr "<b>%s</b> ha delegado la reunión siguiente en usted:"
#: ../plugins/itip-formatter/itip-view.c:366
#, c-format
msgid "<b>%s</b> through %s requests your presence at the following meeting:"
-msgstr ""
-"<b>%s</b> solicita su presencia en la siguiente reunión a través de %s:"
+msgstr "<b>%s</b> solicita su presencia en la siguiente reunión a través de %s:"
#: ../plugins/itip-formatter/itip-view.c:368
#, c-format
@@ -18736,15 +18645,13 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:382
#, c-format
-msgid ""
-"<b>%s</b> wishes to receive the latest information for the following meeting:"
+msgid "<b>%s</b> wishes to receive the latest information for the following meeting:"
msgstr "<b>%s</b> desea recibir la última información de la reunión siguiente:"
#: ../plugins/itip-formatter/itip-view.c:386
#, c-format
msgid "<b>%s</b> through %s has sent back the following meeting response:"
-msgstr ""
-"<b>%s</b> ha devuelto la siguiente respuesta a la reunión a través de %s:"
+msgstr "<b>%s</b> ha devuelto la siguiente respuesta a la reunión a través de %s:"
#: ../plugins/itip-formatter/itip-view.c:388
#, c-format
@@ -18764,8 +18671,7 @@ msgstr "<b>%s</b> ha cancelado la reunión siguiente."
#: ../plugins/itip-formatter/itip-view.c:398
#, c-format
msgid "<b>%s</b> through %s has proposed the following meeting changes."
-msgstr ""
-"<b>%s</b> ha propuesto los cambios siguientes para la reunión a través de %s."
+msgstr "<b>%s</b> ha propuesto los cambios siguientes para la reunión a través de %s."
#: ../plugins/itip-formatter/itip-view.c:400
#, c-format
@@ -18775,8 +18681,7 @@ msgstr "<b>%s</b> ha propuesto los cambios siguientes para la reunión."
#: ../plugins/itip-formatter/itip-view.c:404
#, c-format
msgid "<b>%s</b> through %s has declined the following meeting changes:"
-msgstr ""
-"<b>%s</b> ha rehusado los siguientes cambios para la reunión a través de %s:"
+msgstr "<b>%s</b> ha rehusado los siguientes cambios para la reunión a través de %s:"
#: ../plugins/itip-formatter/itip-view.c:406
#, c-format
@@ -18838,8 +18743,7 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:474
#, c-format
-msgid ""
-"<b>%s</b> through %s has sent back the following assigned task response:"
+msgid "<b>%s</b> through %s has sent back the following assigned task response:"
msgstr ""
"<b>%s</b> ha devuelto la siguiente respuesta a la tarea asignada a través de "
"%s:"
@@ -18852,8 +18756,7 @@ msgstr "<b>%s</b> ha devuelto la siguiente respuesta a la tarea:"
#: ../plugins/itip-formatter/itip-view.c:480
#, c-format
msgid "<b>%s</b> through %s has canceled the following assigned task:"
-msgstr ""
-"<b>%s</b> ha cancelado la siguiente asignación de tarea a través de %s:"
+msgstr "<b>%s</b> ha cancelado la siguiente asignación de tarea a través de %s:"
#: ../plugins/itip-formatter/itip-view.c:482
#, c-format
@@ -18862,8 +18765,7 @@ msgstr "<b>%s</b> ha cancelado la siguiente tarea asignada:"
#: ../plugins/itip-formatter/itip-view.c:486
#, c-format
-msgid ""
-"<b>%s</b> through %s has proposed the following task assignment changes:"
+msgid "<b>%s</b> through %s has proposed the following task assignment changes:"
msgstr ""
"<b>%s</b> ha propuesto los siguientes cambios en la asignación de tareas a "
"través de %s:"
@@ -18871,8 +18773,7 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:488
#, c-format
msgid "<b>%s</b> has proposed the following task assignment changes:"
-msgstr ""
-"<b>%s</b> ha propuesto los siguientes cambios en la asignación de tareas:"
+msgstr "<b>%s</b> ha propuesto los siguientes cambios en la asignación de tareas:"
#: ../plugins/itip-formatter/itip-view.c:492
#, c-format
@@ -19027,8 +18928,7 @@ msgid "This meeting has been delegated"
msgstr "Esta reunión se ha delegado"
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:4
-msgid ""
-"This response is not from a current attendee. Add the sender as an attendee?"
+msgid "This response is not from a current attendee. Add the sender as an attendee?"
msgstr "Esta respuesta no es de un asistente. ¿Desea añadirlo como asistente?"
#: ../plugins/mail-account-disable/mail-account-disable.c:47
@@ -19101,8 +19001,7 @@ msgstr ""
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:13
msgid "Whether play sound or beep when new messages arrive."
-msgstr ""
-"Indica si se debe reproducir un sonido o pitar cuando llega un mensaje nuevo."
+msgstr "Indica si se debe reproducir un sonido o pitar cuando llega un mensaje nuevo."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:14
msgid "Whether show message over the icon when new messages arrive."
@@ -19284,8 +19183,7 @@ msgid "Mailing _List"
msgstr "_Lista de correo"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:6
-msgid ""
-"Provide actions for common mailing list commands (subscribe, unsubscribe...)."
+msgid "Provide actions for common mailing list commands (subscribe, unsubscribe...)."
msgstr ""
"Proporciona acciones para comandos comunes de listas de correo (suscribirse, "
"desuscribirse…)."
@@ -19407,13 +19305,11 @@ msgstr "Obtener un archivador de la lista a la que pertenece este mensaje"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:6
msgid "Get information about the usage of the list this message belongs to"
-msgstr ""
-"Obtiene información sobre el uso de la lista a la que pertenece este mensaje"
+msgstr "Obtiene información sobre el uso de la lista a la que pertenece este mensaje"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:8
msgid "Post a message to the mailing list this message belongs to"
-msgstr ""
-"Publicar un mensaje en la lista de correo a la que pertenece este mensaje"
+msgstr "Publicar un mensaje en la lista de correo a la que pertenece este mensaje"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:9
msgid "Subscribe to the mailing list this message belongs to"
@@ -19733,8 +19629,7 @@ msgstr "El proceso hijo de SpamAssasin no está respondiendo, matándolo..."
#: ../plugins/sa-junk-plugin/em-junk-filter.c:246
#, c-format
msgid "Wait for Spamassassin child process interrupted, terminating..."
-msgstr ""
-"Espere a que el proceso hijo de SpamAssasin se interrumpa, terminando..."
+msgstr "Espere a que el proceso hijo de SpamAssasin se interrumpa, terminando..."
#: ../plugins/sa-junk-plugin/em-junk-filter.c:255
#, c-format
@@ -20108,10 +20003,8 @@ msgid "Default window width"
msgstr "Anchura predeterminada de la ventana"
#: ../shell/apps_evolution_shell.schemas.in.h:9
-msgid ""
-"Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet."
-msgstr ""
-"Activa los ajustes del proxy al acceder a HTTP/Secure HTTP en Internet."
+msgid "Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet."
+msgstr "Activa los ajustes del proxy al acceder a HTTP/Secure HTTP en Internet."
#: ../shell/apps_evolution_shell.schemas.in.h:10
msgid "HTTP proxy host name"
@@ -20150,8 +20043,7 @@ msgid "Last upgraded configuration version"
msgstr "Última versión de la configuración actualizada"
#: ../shell/apps_evolution_shell.schemas.in.h:17
-msgid ""
-"List of paths for the folders to be synchronized to disk for offline usage"
+msgid "List of paths for the folders to be synchronized to disk for offline usage"
msgstr ""
"Lista de rutas a las carpetas que se sincronizarán al disco para usar "
"desconectado"
@@ -20346,8 +20238,7 @@ msgid "Whether the toolbar should be visible."
msgstr "Indica si la barra de herramientas debe ser visible."
#: ../shell/apps_evolution_shell.schemas.in.h:54
-msgid ""
-"Whether the warning dialog in development versions of Evolution is skipped."
+msgid "Whether the warning dialog in development versions of Evolution is skipped."
msgstr ""
"Indica si se omite el diálogo de advertencia en las versiones de desarrollo "
"de Evolution."
@@ -20448,8 +20339,7 @@ msgstr "%s - Evolution"
#: ../shell/e-shell-window-commands.c:75
msgid "The GNOME Pilot tools do not appear to be installed on this system."
-msgstr ""
-"Las utilidades GNOME Pilot no parecen estar instaladas en este sistema."
+msgstr "Las utilidades GNOME Pilot no parecen estar instaladas en este sistema."
#: ../shell/e-shell-window-commands.c:83
#, c-format
@@ -21140,8 +21030,7 @@ msgid "You have certificates from these organizations that identify you:"
msgstr "Tiene certificados de estas organizaciones que le identifican:"
#: ../smime/gui/smime-ui.glade.h:44
-msgid ""
-"You have certificates on file that identify these certificate authorities:"
+msgid "You have certificates on file that identify these certificate authorities:"
msgstr ""
"Tiene archivados los certificados que identifican a estas autoridades de "
"certificación:"
@@ -21720,8 +21609,7 @@ msgstr "Mueve la carpeta seleccionada a otra carpeta"
#. Alphabetical by name, yo
#: ../ui/evolution-mail-global.xml.h:12
msgid "Permanently remove all deleted messages from all folders"
-msgstr ""
-"Elimina permanentemente todos los mensajes borrados de todas las carpetas"
+msgstr "Elimina permanentemente todos los mensajes borrados de todas las carpetas"
#: ../ui/evolution-mail-global.xml.h:13
msgid "Search F_olders"
@@ -21844,10 +21732,8 @@ msgid "Hide _Read Messages"
msgstr "Ocultar mensajes _leídos"
#: ../ui/evolution-mail-list.xml.h:15
-msgid ""
-"Hide deleted messages rather than displaying them with a line through them"
-msgstr ""
-"Oculta los mensajes borrados en lugar de mostrarlos tachados por una línea"
+msgid "Hide deleted messages rather than displaying them with a line through them"
+msgstr "Oculta los mensajes borrados en lugar de mostrarlos tachados por una línea"
#: ../ui/evolution-mail-list.xml.h:16
msgid "Mar_k All Messages as Read"
@@ -23236,11 +23122,11 @@ msgstr ""
"horaria. Los usuarios que sólo dispongan de teclado pueden, en su lugar, "
"seleccionar la zona horaria desde la caja combinada desplegable inferior."
-#: ../widgets/misc/e-online-button.c:112
+#: ../widgets/misc/e-online-button.c:109
msgid "Online"
msgstr "En línea"
-#: ../widgets/misc/e-online-button.c:113
+#: ../widgets/misc/e-online-button.c:110
msgid "The button state is online"
msgstr "El botón de estado está en línea"
@@ -23982,17 +23868,3 @@ msgstr "Contexto IM"
msgid "Handle Popup"
msgstr "Tirador emergente"
-#~ msgid "Migrating `%s':"
-#~ msgstr "Migrando «%s»:"
-
-#~ msgid "_Properties..."
-#~ msgstr "_Propiedades…"
-
-#~ msgid "D_escription:"
-#~ msgstr "_Descripción:"
-
-#~ msgid "De_scription:"
-#~ msgstr "De_scripción:"
-
-#~ msgid "Show messages in the normal style"
-#~ msgstr "Muestra los mensajes en el estilo normal"
diff --git a/po/et.po b/po/et.po
index c066984637..c535820a51 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,19 +6,18 @@
# This file is distributed under the same license as the evolution package.
#
# Ilmar Kerm <ikerm@hot.ee>, 2001.
+# Marek Sepp <marek.sepp@ttu.ee>, 2001, 2002.
# Ivar Smolin <okul@linux.ee>, 2002, 2003, 2005-2008.
# Kaarel Jõgi <kaarel@gg.ee>, 2002.
# Priit Laes <amd@store20.com>, 2003-2007.
#
-# Riigi- ja linnanimed: Marek Sepp <marek.sepp@ttu.ee>, 2001, 2002
-#
#: ../shell/main.c:683
msgid ""
msgstr ""
"Project-Id-Version: Evolution HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-07 19:30+0000\n"
-"PO-Revision-Date: 2008-08-08 10:02+0300\n"
+"POT-Creation-Date: 2008-08-15 11:18+0000\n"
+"PO-Revision-Date: 2008-08-16 19:22+0300\n"
"Last-Translator: Ivar Smolin <okul@linux.ee>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n"
"MIME-Version: 1.0\n"
@@ -159,7 +158,7 @@ msgid "calendar view for one or more days"
msgstr "kalendrivaade ühe või enama päeva jaoks"
#: ../a11y/calendar/ea-gnome-calendar.c:188
-#: ../calendar/gui/calendar-component.c:758
+#: ../calendar/gui/calendar-component.c:757
msgid "%A %d %b %Y"
msgstr "%A, %d. %b %Y"
@@ -170,8 +169,8 @@ msgstr "%A, %d. %b %Y"
#. You can change the order but don't change the
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
-#: ../calendar/gui/calendar-component.c:761
-#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1540
+#: ../calendar/gui/calendar-component.c:760
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%a, %d. %b"
@@ -179,9 +178,9 @@ msgstr "%a, %d. %b"
#: ../a11y/calendar/ea-gnome-calendar.c:193
#: ../a11y/calendar/ea-gnome-calendar.c:198
#: ../a11y/calendar/ea-gnome-calendar.c:200
-#: ../calendar/gui/calendar-component.c:763
-#: ../calendar/gui/calendar-component.c:768
-#: ../calendar/gui/calendar-component.c:770
+#: ../calendar/gui/calendar-component.c:762
+#: ../calendar/gui/calendar-component.c:767
+#: ../calendar/gui/calendar-component.c:769
msgid "%a %d %b %Y"
msgstr "%a, %d. %b %Y"
@@ -189,10 +188,10 @@ msgstr "%a, %d. %b %Y"
#: ../a11y/calendar/ea-gnome-calendar.c:223
#: ../a11y/calendar/ea-gnome-calendar.c:229
#: ../a11y/calendar/ea-gnome-calendar.c:231
-#: ../calendar/gui/calendar-component.c:782
-#: ../calendar/gui/calendar-component.c:789
-#: ../calendar/gui/calendar-component.c:795
-#: ../calendar/gui/calendar-component.c:797
+#: ../calendar/gui/calendar-component.c:781
+#: ../calendar/gui/calendar-component.c:788
+#: ../calendar/gui/calendar-component.c:794
+#: ../calendar/gui/calendar-component.c:796
msgid "%d %b %Y"
msgstr "%d. %B %Y"
@@ -202,8 +201,8 @@ msgstr "%d. %B %Y"
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
-#: ../calendar/gui/calendar-component.c:787
-#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1556
+#: ../calendar/gui/calendar-component.c:786
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%d. %b"
@@ -425,7 +424,7 @@ msgstr "Tõrge LDAP-serverisse autentimisel."
#. Unknown error
#: ../addressbook/addressbook.error.xml.h:16
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1727
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
msgid "Failed to delete contact"
msgstr "Tõrge kontakti kustutamisel"
@@ -609,8 +608,8 @@ msgstr "Seadista automaatlõpetamist siit"
#. Create the contacts group
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:5
-#: ../addressbook/gui/component/addressbook-view.c:1334
-#: ../calendar/gui/calendar-component.c:300 ../calendar/gui/migration.c:396
+#: ../addressbook/gui/component/addressbook-view.c:1326
+#: ../calendar/gui/calendar-component.c:299 ../calendar/gui/migration.c:396
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:580
msgid "Contacts"
@@ -637,7 +636,8 @@ msgid "Evolution Address Book component"
msgstr "Evolutioni aadressiraamatu komponent"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:11
-msgid "Evolution S/Mime Certificate Management Control"
+#, fuzzy
+msgid "Evolution S/MIME Certificate Management Control"
msgstr "Evolutioni S/Mime sertifikaatide haldamise juhtimine"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:12
@@ -652,13 +652,13 @@ msgstr "Siin saad hallata oma S/MIME sertifikaate"
#. On This Computer is always first and Search Folders is always last
#: ../addressbook/gui/component/addressbook-component.c:144
#: ../addressbook/gui/component/addressbook-migrate.c:499
-#: ../calendar/gui/calendar-component.c:237
-#: ../calendar/gui/memos-component.c:200 ../calendar/gui/migration.c:475
+#: ../calendar/gui/calendar-component.c:236
+#: ../calendar/gui/memos-component.c:199 ../calendar/gui/migration.c:475
#: ../calendar/gui/migration.c:577 ../calendar/gui/migration.c:1091
-#: ../calendar/gui/tasks-component.c:196 ../mail/em-folder-tree-model.c:200
+#: ../calendar/gui/tasks-component.c:195 ../mail/em-folder-tree-model.c:200
#: ../mail/em-folder-tree-model.c:202 ../mail/em-migrate.c:2906
#: ../mail/mail-component.c:312 ../mail/mail-vfolder.c:216
-#: ../mail/message-list.c:1456
+#: ../mail/message-list.c:1457
msgid "On This Computer"
msgstr "Kohalikus arvutis"
@@ -671,10 +671,10 @@ msgstr "Kohalikus arvutis"
#: ../addressbook/gui/component/addressbook-migrate.c:507
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:20
#: ../addressbook/gui/widgets/eab-contact-display.c:660
-#: ../calendar/gui/calendar-component.c:248 ../calendar/gui/caltypes.xml.h:29
-#: ../calendar/gui/memos-component.c:209 ../calendar/gui/memotypes.xml.h:27
+#: ../calendar/gui/calendar-component.c:247 ../calendar/gui/caltypes.xml.h:29
+#: ../calendar/gui/memos-component.c:208 ../calendar/gui/memotypes.xml.h:27
#: ../calendar/gui/migration.c:485 ../calendar/gui/migration.c:585
-#: ../calendar/gui/migration.c:1099 ../calendar/gui/tasks-component.c:205
+#: ../calendar/gui/migration.c:1099 ../calendar/gui/tasks-component.c:204
#: ../calendar/gui/tasktypes.xml.h:35 ../mail/em-migrate.c:1058
msgid "Personal"
msgstr "Isiklik"
@@ -741,13 +741,13 @@ msgstr ""
#: ../calendar/gui/dialogs/calendar-setup.c:377
#: ../calendar/gui/dialogs/calendar-setup.c:388
#: ../mail/em-folder-properties.c:280 ../mail/mail-config.glade.h:89
-#: ../plugins/itip-formatter/itip-formatter.c:2368
+#: ../plugins/itip-formatter/itip-formatter.c:2367
#: ../smime/gui/smime-ui.glade.h:28
msgid "General"
msgstr "Üldine"
#: ../addressbook/gui/component/addressbook-config.c:982
-#: ../addressbook/gui/widgets/e-addressbook-view.c:556
+#: ../addressbook/gui/widgets/e-addressbook-view.c:555
#: ../mail/importers/pine-importer.c:385
msgid "Address Book"
msgstr "Aadressiraamat"
@@ -767,7 +767,7 @@ msgid "Details"
msgstr "Üksikasjad"
#: ../addressbook/gui/component/addressbook-config.c:992
-#: ../mail/em-folder-browser.c:965
+#: ../mail/em-folder-browser.c:982
msgid "Searching"
msgstr "Otsing"
@@ -786,9 +786,9 @@ msgid "Migrating..."
msgstr "Siirdamine..."
#: ../addressbook/gui/component/addressbook-migrate.c:125
-#: ../calendar/gui/migration.c:195
-#, c-format
-msgid "Migrating `%s':"
+#: ../calendar/gui/migration.c:195 ../mail/em-migrate.c:1247
+#, fuzzy, c-format
+msgid "Migrating '%s':"
msgstr "Siirdamine `%s':"
#: ../addressbook/gui/component/addressbook-migrate.c:645
@@ -841,36 +841,36 @@ msgstr ""
"\n"
"Palun oota kuni Evolution migreerib Sinu Pilot Sync andmed..."
-#: ../addressbook/gui/component/addressbook-view.c:430
-#: ../mail/em-folder-utils.c:503
+#: ../addressbook/gui/component/addressbook-view.c:425
+#: ../mail/em-folder-utils.c:502
#, c-format
msgid "Rename the \"%s\" folder to:"
msgstr "Nimeta kaust \"%s\" uue nimega:"
-#: ../addressbook/gui/component/addressbook-view.c:433
-#: ../mail/em-folder-utils.c:505
+#: ../addressbook/gui/component/addressbook-view.c:428
+#: ../mail/em-folder-utils.c:504
msgid "Rename Folder"
msgstr "Kataloogi ümbernimetamine"
-#: ../addressbook/gui/component/addressbook-view.c:438
-#: ../mail/em-folder-utils.c:511
+#: ../addressbook/gui/component/addressbook-view.c:433
+#: ../mail/em-folder-utils.c:510
msgid "Folder names cannot contain '/'"
msgstr "Kausta nimes ei tohi sisalduda '/' sümbol"
-#: ../addressbook/gui/component/addressbook-view.c:950
+#: ../addressbook/gui/component/addressbook-view.c:942
msgid "_New Address Book"
msgstr "_Uus aadressiraamat"
-#: ../addressbook/gui/component/addressbook-view.c:951
+#: ../addressbook/gui/component/addressbook-view.c:943
msgid "Save As vCard..."
msgstr "Salvesta vKaardina..."
-#: ../addressbook/gui/component/addressbook-view.c:954
-#: ../addressbook/gui/widgets/e-addressbook-view.c:956
-#: ../calendar/gui/calendar-component.c:620
+#: ../addressbook/gui/component/addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:955
+#: ../calendar/gui/calendar-component.c:619
#: ../calendar/gui/e-calendar-table.c:1596
-#: ../calendar/gui/e-calendar-view.c:1702 ../calendar/gui/e-memo-table.c:941
-#: ../calendar/gui/memos-component.c:469 ../calendar/gui/tasks-component.c:460
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
+#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
#: ../ui/evolution-mail-list.xml.h:35 ../ui/evolution-memos.xml.h:16
@@ -878,30 +878,35 @@ msgstr "Salvesta vKaardina..."
msgid "_Delete"
msgstr "_Kustuta"
-#: ../addressbook/gui/component/addressbook-view.c:957
-msgid "_Properties..."
-msgstr "_Omadused..."
+#: ../addressbook/gui/component/addressbook-view.c:949
+#: ../calendar/gui/calendar-component.c:622
+#: ../calendar/gui/dialogs/comp-editor.c:2035
+#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
+#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
+#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
+msgid "_Properties"
+msgstr "_Omadused"
-#: ../addressbook/gui/component/addressbook-view.c:1345
+#: ../addressbook/gui/component/addressbook-view.c:1337
msgid "Contact Source Selector"
msgstr "Kontaktide allika valimine"
-#: ../addressbook/gui/component/addressbook.c:99
+#: ../addressbook/gui/component/addressbook.c:102
msgid "Accessing LDAP Server anonymously"
msgstr "Ühendan uuesti LDAP-serveriga anonüümselt"
-#: ../addressbook/gui/component/addressbook.c:200
+#: ../addressbook/gui/component/addressbook.c:207
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:536
msgid "Failed to authenticate.\n"
msgstr "Tõrge autentimisel.\n"
-#: ../addressbook/gui/component/addressbook.c:207
+#: ../addressbook/gui/component/addressbook.c:214
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:516
#, c-format
msgid "Enter password for %s (user %s)"
msgstr "Sisesta %s parool (kasutaja %s)"
-#: ../addressbook/gui/component/addressbook.c:215
+#: ../addressbook/gui/component/addressbook.c:222
#: ../calendar/common/authentication.c:51
#: ../plugins/google-account-setup/google-source.c:498
#: ../plugins/publish-calendar/publish-calendar.c:190
@@ -1260,6 +1265,7 @@ msgstr "kaarti"
#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "minutit"
@@ -1300,7 +1306,7 @@ msgid "<b>Work</b>"
msgstr "<b>Töö</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1312,16 +1318,16 @@ msgid "Ca_tegories..."
msgstr "Kate_gooriad..."
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "Kontakt"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:542
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:557
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2422
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "Kontaktiredaktor"
@@ -1334,7 +1340,7 @@ msgid "Image"
msgstr "Pilt"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:16
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:58
msgid "MSN Messenger"
msgstr "MSN Kiirsuhtlusklient"
@@ -1347,7 +1353,7 @@ msgid "Nic_kname:"
msgstr "H_üüdnimi:"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:19
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:54
msgid "Novell Groupwise"
msgstr "Novell Groupwise"
@@ -1362,7 +1368,7 @@ msgstr "Telefon"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
#: ../mail/em-migrate.c:1057
@@ -1387,8 +1393,8 @@ msgid "_Birthday:"
msgstr "_Sünnipäev:"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:28
-#: ../calendar/gui/dialogs/event-page.c:788
-#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/event-page.c:787
+#: ../calendar/gui/dialogs/event-page.glade.h:14
#: ../plugins/itip-formatter/itip-view.c:1850
msgid "_Calendar:"
msgstr "Kalen_der:"
@@ -1477,16 +1483,16 @@ msgstr "K_us:"
msgid "_Zip/Postal Code:"
msgstr "_Postiindeks:"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:92
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:91
#: ../addressbook/gui/widgets/eab-contact-display.c:640
#: ../addressbook/gui/widgets/eab-contact-display.c:655
msgid "Address"
msgstr "Aadress"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:99
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:92
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:135
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
@@ -1500,975 +1506,975 @@ msgstr "Aadress"
msgid "Editable"
msgstr "Redigeeritav"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:132
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:131
msgid "United States"
msgstr "Ühendriigid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:133
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:132
msgid "Afghanistan"
msgstr "Afganistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:134
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:133
msgid "Albania"
msgstr "Albaania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:135
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:134
msgid "Algeria"
msgstr "Alžeeria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:135
msgid "American Samoa"
msgstr "Ameerika Samoa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
msgid "Andorra"
msgstr "Andorra"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
msgid "Angola"
msgstr "Angoola"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
msgid "Anguilla"
msgstr "Anguilla"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
msgid "Antarctica"
msgstr "Antarktika"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
msgid "Antigua And Barbuda"
msgstr "Antigua ja Barbuda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
msgid "Argentina"
msgstr "Argentiina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
msgid "Armenia"
msgstr "Armeenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
msgid "Aruba"
msgstr "Aruba"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
msgid "Australia"
msgstr "Austraalia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
msgid "Austria"
msgstr "Austria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
msgid "Azerbaijan"
msgstr "Aserbaidžaan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
msgid "Bahamas"
msgstr "Bahama"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
msgid "Bahrain"
msgstr "Bahrein"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
msgid "Bangladesh"
msgstr "Bangladesh"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
msgid "Barbados"
msgstr "Barbados"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
msgid "Belarus"
msgstr "Valgevene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
msgid "Belgium"
msgstr "Belgia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
msgid "Belize"
msgstr "Belize"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
msgid "Benin"
msgstr "Benin"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
msgid "Bermuda"
msgstr "Bermuda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
msgid "Bhutan"
msgstr "Bhutan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
msgid "Bolivia"
msgstr "Boliivia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
msgid "Bosnia And Herzegowina"
msgstr "Bosnia ja Hertsegoviina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
msgid "Botswana"
msgstr "Botswana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
msgid "Bouvet Island"
msgstr "Bouvet' saar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
msgid "Brazil"
msgstr "Brasiilia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
msgid "British Indian Ocean Territory"
msgstr "Briti India ookeani territoorium"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
msgid "Bulgaria"
msgstr "Bulgaaria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
msgid "Burundi"
msgstr "Burundi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
msgid "Cambodia"
msgstr "Kambodža"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
msgid "Cameroon"
msgstr "Kamerun"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
msgid "Canada"
msgstr "Kanada"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
msgid "Cape Verde"
msgstr "Roheneemesaared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
msgid "Cayman Islands"
msgstr "Kaimani saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
msgid "Central African Republic"
msgstr "Kesk-Aafrika Vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
msgid "Chad"
msgstr "Tšaad"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
msgid "Chile"
msgstr "Tšiili"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
msgid "China"
msgstr "Hiina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
msgid "Christmas Island"
msgstr "Jõulusaar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
msgid "Cocos (Keeling) Islands"
msgstr "Kookossaared (Keelingi saared)"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
msgid "Colombia"
msgstr "Kolumbia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
msgid "Comoros"
msgstr "Komoorid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
msgid "Congo"
msgstr "Kongo"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
msgid "Congo, The Democratic Republic Of The"
msgstr "Congo, Demokraatlik vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
msgid "Cook Islands"
msgstr "Cooki saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
msgid "Cote d'Ivoire"
msgstr "Elevandiluurannik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
msgid "Croatia"
msgstr "Horvaatia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
msgid "Cuba"
msgstr "Kuuba"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
msgid "Cyprus"
msgstr "Küpros"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
msgid "Czech Republic"
msgstr "Tšehhi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
msgid "Denmark"
msgstr "Taani"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
msgid "Djibouti"
msgstr "Djibouti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
msgid "Dominica"
msgstr "Dominica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
msgid "Dominican Republic"
msgstr "Dominikaani vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
msgid "Ecuador"
msgstr "Ecuador"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
msgid "Egypt"
msgstr "Egiptus"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
msgid "El Salvador"
msgstr "El Salvador"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
msgid "Equatorial Guinea"
msgstr "Ekvatoriaal-Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
msgid "Eritrea"
msgstr "Eritrea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
msgid "Estonia"
msgstr "Eesti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
msgid "Ethiopia"
msgstr "Etioopia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
msgid "Falkland Islands"
msgstr "Falklandi saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
msgid "Faroe Islands"
msgstr "Fääri saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
msgid "Fiji"
msgstr "Fidži"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
msgid "Finland"
msgstr "Soome"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
msgid "France"
msgstr "Prantsusmaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
msgid "French Guiana"
msgstr "Prantsuse Guajaana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
msgid "French Polynesia"
msgstr "Prantsuse Polüneesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
msgid "French Southern Territories"
msgstr "Prantsuse Lõunaalad"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
msgid "Gabon"
msgstr "Gabon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
msgid "Gambia"
msgstr "Gambia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
msgid "Georgia"
msgstr "Gruusia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
msgid "Germany"
msgstr "Saksamaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
msgid "Ghana"
msgstr "Ghana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
msgid "Gibraltar"
msgstr "Gibraltar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
msgid "Greece"
msgstr "Kreeka"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
msgid "Greenland"
msgstr "Gröönimaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
msgid "Grenada"
msgstr "Grenada"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
msgid "Guadeloupe"
msgstr "Guadeloupe"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
msgid "Guam"
msgstr "Guam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
msgid "Guatemala"
msgstr "Guatemala"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
msgid "Guernsey"
msgstr "Guernsey"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
msgid "Guinea"
msgstr "Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
msgid "Guyana"
msgstr "Guyana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
msgid "Haiti"
msgstr "Haiti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
msgid "Heard And McDonald Islands"
msgstr "Heardi ja McDonaldi saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
msgid "Holy See"
msgstr "Vatikan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
msgid "Honduras"
msgstr "Honduras"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
msgid "Hong Kong"
msgstr "Hong-Kong"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
msgid "Hungary"
msgstr "Ungari"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
msgid "Iceland"
msgstr "Island"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
msgid "India"
msgstr "India"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
msgid "Indonesia"
msgstr "Indoneesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
msgid "Iran"
msgstr "Iraan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
msgid "Iraq"
msgstr "Iraak"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
msgid "Ireland"
msgstr "Iirimaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
msgid "Isle of Man"
msgstr "Mani saar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
msgid "Israel"
msgstr "Iisrael"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
msgid "Italy"
msgstr "Itaalia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
msgid "Jamaica"
msgstr "Jamaica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
msgid "Japan"
msgstr "Jaapan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
msgid "Jersey"
msgstr "Jersey"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
msgid "Jordan"
msgstr "Jordaania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
msgid "Kazakhstan"
msgstr "Kasahstan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
msgid "Kenya"
msgstr "Keenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
msgid "Kiribati"
msgstr "Kiribati"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
msgid "Korea, Democratic People's Republic Of"
msgstr "Korea Demokraatlik Rahvavabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
msgid "Korea, Republic Of"
msgstr "Korea Vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
msgid "Kuwait"
msgstr "Kuveit"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
msgid "Kyrgyzstan"
msgstr "Kõrgõzstan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
msgid "Laos"
msgstr "Laos"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
msgid "Latvia"
msgstr "Läti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
msgid "Lebanon"
msgstr "Liibanon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
msgid "Lesotho"
msgstr "Lesotho"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
msgid "Liberia"
msgstr "Libeeria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
msgid "Libya"
msgstr "Liibüa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
msgid "Lithuania"
msgstr "Leedu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
msgid "Luxembourg"
msgstr "Luksemburg"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
msgid "Macao"
msgstr "Macao"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
msgid "Macedonia"
msgstr "Makedoonia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
msgid "Madagascar"
msgstr "Madagaskar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
msgid "Malawi"
msgstr "Malawi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
msgid "Malaysia"
msgstr "Malaisia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
msgid "Maldives"
msgstr "Malediivid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
msgid "Mali"
msgstr "Mali"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
msgid "Malta"
msgstr "Malta"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
msgid "Marshall Islands"
msgstr "Marshalli saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
msgid "Martinique"
msgstr "Martinique"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
msgid "Mauritania"
msgstr "Mauritaania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
msgid "Mauritius"
msgstr "Mauritius"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
msgid "Mayotte"
msgstr "Mayotte"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
msgid "Mexico"
msgstr "Mehhiko"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
msgid "Micronesia"
msgstr "Mikroneesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
msgid "Moldova, Republic Of"
msgstr "Moldova Vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
msgid "Monaco"
msgstr "Monaco"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
msgid "Mongolia"
msgstr "Mongoolia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
msgid "Montserrat"
msgstr "Montserrat"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
msgid "Morocco"
msgstr "Maroko"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
msgid "Mozambique"
msgstr "Mosambiik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
msgid "Myanmar"
msgstr "Birma"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
msgid "Namibia"
msgstr "Namiibia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
msgid "Nauru"
msgstr "Nauru"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
msgid "Nepal"
msgstr "Nepal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
msgid "Netherlands"
msgstr "Holland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
msgid "Netherlands Antilles"
msgstr "Hollandi Antillid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
msgid "New Caledonia"
msgstr "Uus-Kaledoonia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
msgid "New Zealand"
msgstr "Uus-Meremaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
msgid "Nicaragua"
msgstr "Nicaragua"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
msgid "Niger"
msgstr "Niger"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
msgid "Nigeria"
msgstr "Nigeeria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
msgid "Niue"
msgstr "Niue"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
msgid "Norfolk Island"
msgstr "Norfolk"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
msgid "Northern Mariana Islands"
msgstr "Põhja-Mariaanid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
msgid "Norway"
msgstr "Norra"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
msgid "Oman"
msgstr "Omaan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
msgid "Pakistan"
msgstr "Pakistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
msgid "Palau"
msgstr "Palau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
msgid "Palestinian Territory"
msgstr "Palestiina territoorium"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
msgid "Panama"
msgstr "Panama"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
msgid "Papua New Guinea"
msgstr "Paapua Uus-Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
msgid "Paraguay"
msgstr "Paraguay"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
msgid "Peru"
msgstr "Peruu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
msgid "Philippines"
msgstr "Filipiinid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
msgid "Pitcairn"
msgstr "Pitcairn"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
msgid "Poland"
msgstr "Poola"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
msgid "Portugal"
msgstr "Portugal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
msgid "Qatar"
msgstr "Katar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
msgid "Reunion"
msgstr "Réunioni departemang"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
msgid "Romania"
msgstr "Rumeenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
msgid "Russian Federation"
msgstr "Venemaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
msgid "Rwanda"
msgstr "Ruanda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
msgid "Saint Kitts And Nevis"
msgstr "Saint Kitts ja Nevis"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
msgid "Saint Vincent And The Grenadines"
msgstr "Saint Vincent ja Grenadiinid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
msgid "Samoa"
msgstr "Samoa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
msgid "San Marino"
msgstr "San Marino"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
msgid "Sao Tome And Principe"
msgstr "São Tomé ja Príncipe"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
msgid "Saudi Arabia"
msgstr "Saudi Araabia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
msgid "Senegal"
msgstr "Senegal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
msgid "Serbia And Montenegro"
msgstr "Serbia ja Montenegro"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
msgid "Seychelles"
msgstr "Seišellid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
msgid "Singapore"
msgstr "Singapur"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
msgid "Slovakia"
msgstr "Slovakkia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
msgid "Slovenia"
msgstr "Sloveenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
msgid "Solomon Islands"
msgstr "Saalomoni Saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
msgid "Somalia"
msgstr "Somaalia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
msgid "South Africa"
msgstr "Lõuna-Aafrika Vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
msgid "South Georgia And The South Sandwich Islands"
msgstr "Lõuna Georgia ja Lõuna Sandwichi saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
msgid "Spain"
msgstr "Hispaania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
msgid "St. Helena"
msgstr "Saint Helena"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
msgid "St. Pierre And Miquelon"
msgstr "Saint-Pierre ja Miquelon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
msgid "Sudan"
msgstr "Sudaan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
msgid "Suriname"
msgstr "Suriname"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
msgid "Svalbard And Jan Mayen Islands"
msgstr "Teravmäed"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
msgid "Swaziland"
msgstr "Svaasimaa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
msgid "Sweden"
msgstr "Rootsi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
msgid "Switzerland"
msgstr "Šveits"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
msgid "Syria"
msgstr "Süüria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
msgid "Taiwan"
msgstr "Taivan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
msgid "Tajikistan"
msgstr "Tadžikistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
msgid "Tanzania, United Republic Of"
msgstr "Tansaania, Ühendatud Vabariik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
msgid "Thailand"
msgstr "Tai"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
msgid "Timor-Leste"
msgstr "Timor-Leste"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
msgid "Togo"
msgstr "Togo"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
msgid "Tokelau"
msgstr "Tokelau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
msgid "Tonga"
msgstr "Tonga"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
msgid "Trinidad And Tobago"
msgstr "Trinidad ja Tobago"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
msgid "Tunisia"
msgstr "Tuneesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
msgid "Turkey"
msgstr "Türgi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
msgid "Turkmenistan"
msgstr "Türkmenistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
msgid "Turks And Caicos Islands"
msgstr "Turksi ja Caicose saared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
msgid "Tuvalu"
msgstr "Tuvalu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
msgid "Uganda"
msgstr "Uganda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
msgid "Ukraine"
msgstr "Ukraina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
msgid "United Arab Emirates"
msgstr "Araabia Ühendemiraadid"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
msgid "United Kingdom"
msgstr "Ühendkuningriik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
msgid "United States Minor Outlying Islands"
msgstr "Ühendriikide hajasaared"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
msgid "Uruguay"
msgstr "Uruguay"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
msgid "Uzbekistan"
msgstr "Usbekistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
msgid "Vanuatu"
msgstr "Vanuatu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
msgid "Venezuela"
msgstr "Venetsueela"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
msgid "Viet Nam"
msgstr "Vietnam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
msgid "Virgin Islands, British"
msgstr "Neitsisaared, Briti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
msgid "Virgin Islands, U.S."
msgstr "Neitsisaared, U.S."
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
msgid "Wallis And Futuna Islands"
msgstr "Wallis ja Futuna"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
msgid "Western Sahara"
msgstr "Lääne-Sahara"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
msgid "Yemen"
msgstr "Jeemen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
msgid "Zambia"
msgstr "Sambia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:373
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:86
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:85
#: ../mail/em-mailer-prefs.c:466
#: ../plugins/exchange-operations/exchange-delegates.c:952
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:709
@@ -2480,35 +2486,35 @@ msgstr "Zimbabwe"
msgid "Name"
msgstr "Nimi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:54
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:53
msgid "AOL Instant Messenger"
msgstr "AOL kiirsuhtlusklient"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:56
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "Jabber"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:57
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:56
msgid "Yahoo Messenger"
msgstr "Yahoo Kiirsuhtlusklient"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:58
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:57
msgid "Gadu-Gadu Messenger"
msgstr "Gadu-Gadu Kiirsuhtlusklient"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:60
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:112
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:111
msgid "Service"
msgstr "Teenus"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:121
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:120
#: ../calendar/gui/caltypes.xml.h:25
#: ../calendar/gui/e-cal-list-view.etspec.h:3 ../mail/message-list.etspec.h:9
#: ../plugins/publish-calendar/publish-calendar.c:693
@@ -2516,82 +2522,82 @@ msgstr "Teenus"
msgid "Location"
msgstr "Asukoht"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:128
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:127
msgid "Username"
msgstr "Kasutajanimi"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "Kodu"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "Muu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "Yahoo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "Groupwise"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "Lähteraamat"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "Sihtraamat"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "Tegemist on uue kontaktiga"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "Muudetavad väljad"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "Vajalikud väljad"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "Muudetud"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:552
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2417
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "Kontaktiredaktor - %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2813
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "Palun vali selle kontakti jaoks pilt"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2814
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "Pilti _ei ole"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3087
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2599,23 +2605,23 @@ msgstr ""
"Kontaktandmed on vigased:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3091
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "'%s' on vigases vormingus"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3098
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s'%s' on vigases vormingus"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3113
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3124
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s'%s' on tühi"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3139
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "Vigane kontakt."
@@ -2815,7 +2821,7 @@ msgstr "_Liikmed"
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1146
#: ../addressbook/gui/widgets/e-addressbook-model.c:298
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:390
-#: ../addressbook/gui/widgets/e-addressbook-view.c:213
+#: ../addressbook/gui/widgets/e-addressbook-view.c:212
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:116
#: ../addressbook/gui/widgets/e-minicard-view.c:530
msgid "Book"
@@ -2882,14 +2888,14 @@ msgid "Email"
msgstr "E-post"
#: ../addressbook/gui/widgets/addresstypes.xml.h:1
-#: ../addressbook/gui/widgets/e-addressbook-view.c:162
-#: ../calendar/gui/cal-search-bar.c:77 ../calendar/gui/caltypes.xml.h:3
+#: ../addressbook/gui/widgets/e-addressbook-view.c:161
+#: ../calendar/gui/cal-search-bar.c:76 ../calendar/gui/caltypes.xml.h:3
#: ../calendar/gui/memotypes.xml.h:3 ../calendar/gui/tasktypes.xml.h:5
msgid "Any field contains"
msgstr "Suvaline väli sisaldab"
#: ../addressbook/gui/widgets/addresstypes.xml.h:2
-#: ../addressbook/gui/widgets/e-addressbook-view.c:161
+#: ../addressbook/gui/widgets/e-addressbook-view.c:160
msgid "Email begins with"
msgstr "E-post algab"
@@ -2910,7 +2916,7 @@ msgstr[1] "%d kontakti"
#: ../addressbook/gui/widgets/e-addressbook-model.c:305
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:397
-#: ../addressbook/gui/widgets/e-addressbook-view.c:227
+#: ../addressbook/gui/widgets/e-addressbook-view.c:226
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:123
#: ../addressbook/gui/widgets/e-minicard-view.c:537
msgid "Query"
@@ -2933,15 +2939,15 @@ msgstr "Mudel"
msgid "Error modifying card"
msgstr "Viga kaardi muutmisel"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:160
+#: ../addressbook/gui/widgets/e-addressbook-view.c:159
msgid "Name begins with"
msgstr "Nimi algab"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:220
+#: ../addressbook/gui/widgets/e-addressbook-view.c:219
msgid "Source"
msgstr "Allikas"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:234
+#: ../addressbook/gui/widgets/e-addressbook-view.c:233
#: ../calendar/gui/e-calendar-table.etspec.h:12
#: ../calendar/gui/e-meeting-list-view.c:508
#: ../calendar/gui/e-meeting-time-sel.etspec.h:11
@@ -2949,92 +2955,92 @@ msgstr "Allikas"
msgid "Type"
msgstr "Liik"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:813
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:812
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1953
msgid "Save as vCard..."
msgstr "Salvesta vKaardina..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:934
-#: ../calendar/gui/dialogs/comp-editor.c:2032
+#: ../addressbook/gui/widgets/e-addressbook-view.c:933
+#: ../calendar/gui/dialogs/comp-editor.c:2033
#: ../calendar/gui/e-calendar-table.c:1574
-#: ../calendar/gui/e-calendar-view.c:1680 ../calendar/gui/e-memo-table.c:924
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "A_va"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:936
+#: ../addressbook/gui/widgets/e-addressbook-view.c:935
msgid "_New Contact..."
msgstr "_Uus kontakt..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:937
+#: ../addressbook/gui/widgets/e-addressbook-view.c:936
msgid "New Contact _List..."
msgstr "Uus kontaktide _loend..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:940
+#: ../addressbook/gui/widgets/e-addressbook-view.c:939
msgid "_Save as vCard..."
msgstr "_Salvesta vKaardina..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:941
+#: ../addressbook/gui/widgets/e-addressbook-view.c:940
msgid "_Forward Contact"
msgstr "_Edasta kontakt"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:942
+#: ../addressbook/gui/widgets/e-addressbook-view.c:941
msgid "_Forward Contacts"
msgstr "_Edasta kontaktid"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:943
+#: ../addressbook/gui/widgets/e-addressbook-view.c:942
msgid "Send _Message to Contact"
msgstr "_Saada kontaktile sõnum"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:944
+#: ../addressbook/gui/widgets/e-addressbook-view.c:943
msgid "Send _Message to List"
msgstr "_Saada sõnum postiloendisse"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:945
+#: ../addressbook/gui/widgets/e-addressbook-view.c:944
msgid "Send _Message to Contacts"
msgstr "_Saada kontaktidele sõnum"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:945
msgid "_Print"
msgstr "_Prindi"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:949
+#: ../addressbook/gui/widgets/e-addressbook-view.c:948
msgid "Cop_y to Address Book..."
msgstr "_Kopeeri aadressiraamatusse..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:950
+#: ../addressbook/gui/widgets/e-addressbook-view.c:949
msgid "Mo_ve to Address Book..."
msgstr "_Tõsta aadressiraamatusse..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:953
+#: ../addressbook/gui/widgets/e-addressbook-view.c:952
msgid "Cu_t"
msgstr "Lõ_ika"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:954
-#: ../calendar/gui/dialogs/comp-editor.c:479
+#: ../addressbook/gui/widgets/e-addressbook-view.c:953
+#: ../calendar/gui/dialogs/comp-editor.c:480
#: ../calendar/gui/e-calendar-table.c:1582
-#: ../calendar/gui/e-calendar-view.c:1687 ../calendar/gui/e-memo-table.c:932
-#: ../composer/e-msg-composer.c:2058 ../mail/em-folder-tree.c:1005
-#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2046
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
+#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
+#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
#: ../ui/evolution-mail-message.xml.h:103 ../ui/evolution-memos.xml.h:15
#: ../ui/evolution-tasks.xml.h:23
msgid "_Copy"
msgstr "_Kopeeri"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:955
+#: ../addressbook/gui/widgets/e-addressbook-view.c:954
msgid "P_aste"
msgstr "_Aseta"
#. All, unmatched, separator
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1517
-#: ../calendar/gui/cal-search-bar.c:618 ../calendar/gui/cal-search-bar.c:661
-#: ../calendar/gui/cal-search-bar.c:680
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1524
+#: ../calendar/gui/cal-search-bar.c:625 ../calendar/gui/cal-search-bar.c:668
+#: ../calendar/gui/cal-search-bar.c:687
msgid "Any Category"
msgstr "Iga kategooria"
#. E_BOOK_ERROR_OTHER_ERROR
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1727
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
#: ../addressbook/gui/widgets/eab-gui-util.c:77
msgid "Other error"
msgstr "Muu viga"
@@ -3347,7 +3353,7 @@ msgstr "Valitud"
msgid "Has Cursor"
msgstr "On fookuses"
-#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:628
+#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:627
msgid "_Open Link in Browser"
msgstr "Ava _viit veebilehitsejas"
@@ -3356,7 +3362,7 @@ msgstr "Ava _viit veebilehitsejas"
msgid "_Copy Link Location"
msgstr "Kopeeri _lingi asukoht"
-#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:629
+#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:628
msgid "_Send New Message To..."
msgstr "_Saada uus sõnum aadressil..."
@@ -3400,9 +3406,8 @@ msgstr "Videovestlus"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
#: ../calendar/gui/calendar-commands.c:92
-#: ../calendar/gui/calendar-component.c:806
#: ../calendar/gui/dialogs/calendar-setup.c:367
-#: ../calendar/gui/gnome-cal.c:2376
+#: ../calendar/gui/gnome-cal.c:2451
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:574
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
@@ -3416,7 +3421,7 @@ msgstr "Kalender"
#: ../addressbook/gui/widgets/eab-contact-display.c:637
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
-#: ../calendar/gui/dialogs/event-editor.c:114
+#: ../calendar/gui/dialogs/event-editor.c:113
msgid "Free/Busy"
msgstr "Vaba/hõivatud"
@@ -3438,13 +3443,13 @@ msgid "Web Log"
msgstr "Veebilogi"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2352
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "Sünnipäev"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2353
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "Aastapäev"
@@ -3558,7 +3563,12 @@ msgstr "Autonoomses olekus pole seda saadaval"
msgid "Invalid server version"
msgstr "Vigane serveri versioon"
-#: ../addressbook/gui/widgets/eab-gui-util.c:101
+#. E_BOOK_ERROR_UNSUPPORTED_AUTHENTICATION_METHOD
+#: ../addressbook/gui/widgets/eab-gui-util.c:79
+msgid "Unsupported authentication method"
+msgstr "Toetamata autentimismeetod"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:102
msgid ""
"We were unable to open this addressbook. This either means this book is not "
"marked for offline usage or not yet downloaded for offline usage. Please "
@@ -3569,7 +3579,7 @@ msgstr ""
"veel võrguvabas olekus kasutamiseks alla laaditud. Palun laadi korraks "
"aadressiraamat võrgurežiimis, et selle sisu oleks võimalik alla laadida."
-#: ../addressbook/gui/widgets/eab-gui-util.c:110
+#: ../addressbook/gui/widgets/eab-gui-util.c:111
#, c-format
msgid ""
"We were unable to open this addressbook. Please check that the path %s "
@@ -3578,7 +3588,7 @@ msgstr ""
"Aadressiraamatut pole võimalik avada. Palun kontrolli, kas rada %s on "
"olemas ja kas sul on sellele vajalikud pääsuõigused."
-#: ../addressbook/gui/widgets/eab-gui-util.c:119
+#: ../addressbook/gui/widgets/eab-gui-util.c:120
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the LDAP server is unreachable."
@@ -3586,7 +3596,7 @@ msgstr ""
"Aadressiraamatu avamine nurjus. Põhjuseks võib olla see, et sisestasid "
"vigase URI või kasutatav LDAP-server ei ole kättesaadav."
-#: ../addressbook/gui/widgets/eab-gui-util.c:124
+#: ../addressbook/gui/widgets/eab-gui-util.c:125
msgid ""
"This version of Evolution does not have LDAP support compiled in to it. If "
"you want to use LDAP in Evolution, you must install an LDAP-enabled "
@@ -3596,7 +3606,7 @@ msgstr ""
"soovid kasutada Evolutioni koos LDAP-i toega, pead paigaldama omale vastava "
"Evolutioni paki."
-#: ../addressbook/gui/widgets/eab-gui-util.c:131
+#: ../addressbook/gui/widgets/eab-gui-util.c:132
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the server is unreachable."
@@ -3604,7 +3614,12 @@ msgstr ""
"Aadressiraamatu avamine nurjus. Põhjuseks võib olla see, et sisestasid "
"vigase URI või kasutatav server ei ole kättesaadav."
-#: ../addressbook/gui/widgets/eab-gui-util.c:154
+#: ../addressbook/gui/widgets/eab-gui-util.c:138
+#, fuzzy
+msgid "Detailed error:"
+msgstr "Käsitlemata viga"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:161
msgid ""
"More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
@@ -3612,7 +3627,7 @@ msgid ""
"the directory server preferences for this addressbook."
msgstr ""
-#: ../addressbook/gui/widgets/eab-gui-util.c:160
+#: ../addressbook/gui/widgets/eab-gui-util.c:167
msgid ""
"The time to execute this query exceeded the server limit or the limit\n"
"you have configured for this addressbook. Please make your search\n"
@@ -3623,46 +3638,46 @@ msgstr ""
"jaoks määratud piirangu. Palun täpsusta oma otsingut või suurenda selle\n"
"aadressiraamatu kataloogiserveri eelistustest ajapiirangut."
-#: ../addressbook/gui/widgets/eab-gui-util.c:166
+#: ../addressbook/gui/widgets/eab-gui-util.c:173
msgid "The backend for this addressbook was unable to parse this query."
msgstr ""
"Selle aadressiraamatu taustaprogrammil pole võimalik seda päringut parsida."
-#: ../addressbook/gui/widgets/eab-gui-util.c:169
+#: ../addressbook/gui/widgets/eab-gui-util.c:176
msgid "The backend for this addressbook refused to perform this query."
msgstr "Selle aadressiraamatu taustaprogramm keeldus päringut parsimast."
-#: ../addressbook/gui/widgets/eab-gui-util.c:172
+#: ../addressbook/gui/widgets/eab-gui-util.c:179
msgid "This query did not complete successfully."
msgstr "See päring ei lõpetanud edukalt."
-#: ../addressbook/gui/widgets/eab-gui-util.c:194
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
msgid "Error adding list"
msgstr "Viga loendi lisamisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:194
-#: ../addressbook/gui/widgets/eab-gui-util.c:670
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
+#: ../addressbook/gui/widgets/eab-gui-util.c:677
msgid "Error adding contact"
msgstr "Viga kontakti lisamisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:205
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying list"
msgstr "Viga loendi muutmisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:205
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying contact"
msgstr "Viga kontakti muutmisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:217
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
msgid "Error removing list"
msgstr "Viga loendi eemaldamisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:217
-#: ../addressbook/gui/widgets/eab-gui-util.c:620
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
+#: ../addressbook/gui/widgets/eab-gui-util.c:627
msgid "Error removing contact"
msgstr "Viga kontakti eemaldamisel"
-#: ../addressbook/gui/widgets/eab-gui-util.c:299
+#: ../addressbook/gui/widgets/eab-gui-util.c:306
#, c-format
msgid ""
"Opening %d contact will open %d new window as well.\n"
@@ -3677,16 +3692,16 @@ msgstr[1] ""
"%d kontakti avamisega kaasneb %d uue akna avamine.\n"
"Oled sa kindel, et soovid kuvada kõiki neid kontakte?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:307
+#: ../addressbook/gui/widgets/eab-gui-util.c:314
msgid "_Don't Display"
msgstr "Ä_ra kuva"
-#: ../addressbook/gui/widgets/eab-gui-util.c:308
+#: ../addressbook/gui/widgets/eab-gui-util.c:315
msgid "Display _All Contacts"
msgstr "_Kuva kõiki kontakte"
#. For Translators only: "it" refers to the filename %s.
-#: ../addressbook/gui/widgets/eab-gui-util.c:334
+#: ../addressbook/gui/widgets/eab-gui-util.c:341
#, c-format
msgid ""
"%s already exists\n"
@@ -3695,65 +3710,65 @@ msgstr ""
"%s on juba olemas\n"
"Kas soovid üle kirjutada?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:338
+#: ../addressbook/gui/widgets/eab-gui-util.c:345
msgid "Overwrite"
msgstr "Kirjuta üle"
#. more than one, finding the total number of contacts might
#. * hit performance while saving large number of contacts
#.
-#: ../addressbook/gui/widgets/eab-gui-util.c:379
-#: ../addressbook/gui/widgets/eab-gui-util.c:382
+#: ../addressbook/gui/widgets/eab-gui-util.c:386
+#: ../addressbook/gui/widgets/eab-gui-util.c:389
msgid "contact"
msgid_plural "contacts"
msgstr[0] "kontakt"
msgstr[1] "kontakti"
#. This is a filename. Translators take note.
-#: ../addressbook/gui/widgets/eab-gui-util.c:428
+#: ../addressbook/gui/widgets/eab-gui-util.c:435
msgid "card.vcf"
msgstr "kaart.vcf"
-#: ../addressbook/gui/widgets/eab-gui-util.c:465
+#: ../addressbook/gui/widgets/eab-gui-util.c:472
msgid "Select Address Book"
msgstr "Aadressiraamatu valimine"
-#: ../addressbook/gui/widgets/eab-gui-util.c:579
+#: ../addressbook/gui/widgets/eab-gui-util.c:586
msgid "list"
msgstr "nimekiri"
-#: ../addressbook/gui/widgets/eab-gui-util.c:731
+#: ../addressbook/gui/widgets/eab-gui-util.c:738
msgid "Move contact to"
msgstr "Kontakti ümbertõstmine"
-#: ../addressbook/gui/widgets/eab-gui-util.c:733
+#: ../addressbook/gui/widgets/eab-gui-util.c:740
msgid "Copy contact to"
msgstr "Kontakti kopeerimine"
-#: ../addressbook/gui/widgets/eab-gui-util.c:736
+#: ../addressbook/gui/widgets/eab-gui-util.c:743
msgid "Move contacts to"
msgstr "Kontaktide ümbertõstmine"
-#: ../addressbook/gui/widgets/eab-gui-util.c:738
+#: ../addressbook/gui/widgets/eab-gui-util.c:745
msgid "Copy contacts to"
msgstr "Kontaktide kopeerimine"
-#: ../addressbook/gui/widgets/eab-gui-util.c:883
+#: ../addressbook/gui/widgets/eab-gui-util.c:890
msgid "Multiple vCards"
msgstr "Mitu vKaarti"
-#: ../addressbook/gui/widgets/eab-gui-util.c:890
+#: ../addressbook/gui/widgets/eab-gui-util.c:897
#, c-format
msgid "vCard for %s"
msgstr "vKaart %s kohta"
-#: ../addressbook/gui/widgets/eab-gui-util.c:902
-#: ../addressbook/gui/widgets/eab-gui-util.c:928
+#: ../addressbook/gui/widgets/eab-gui-util.c:909
+#: ../addressbook/gui/widgets/eab-gui-util.c:935
#, c-format
msgid "Contact information"
msgstr "Kontaktandmed"
-#: ../addressbook/gui/widgets/eab-gui-util.c:930
+#: ../addressbook/gui/widgets/eab-gui-util.c:937
#, c-format
msgid "Contact information for %s"
msgstr "Kontaktandmed - %s"
@@ -4219,19 +4234,19 @@ msgid "Are you sure you want to delete this appointment?"
msgstr "Kas sa soovid kustutada seda sündmust?"
#: ../calendar/calendar.error.xml.h:22
-#: ../calendar/gui/dialogs/delete-comp.c:179
+#: ../calendar/gui/dialogs/delete-comp.c:178
#, c-format
msgid "Are you sure you want to delete this meeting?"
msgstr "Kas sa soovid kustutada seda koosolekut?"
#: ../calendar/calendar.error.xml.h:23
-#: ../calendar/gui/dialogs/delete-comp.c:185
+#: ../calendar/gui/dialogs/delete-comp.c:184
#, c-format
msgid "Are you sure you want to delete this memo?"
msgstr "Kas sa soovid kustutada seda märget?"
#: ../calendar/calendar.error.xml.h:24
-#: ../calendar/gui/dialogs/delete-comp.c:182
+#: ../calendar/gui/dialogs/delete-comp.c:181
#, c-format
msgid "Are you sure you want to delete this task?"
msgstr "Kas sa soovid kustutada seda ülesannet?"
@@ -4551,12 +4566,13 @@ msgid "Could not write pilot's ToDo application block"
msgstr "Pilot'i ülesanderakenduse blokki pole võimalik kirjutada"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:1
-#: ../plugins/itip-formatter/itip-formatter.c:2359
+#: ../plugins/itip-formatter/itip-formatter.c:2358
msgid "Calendar and Tasks"
msgstr "Kalender ja ülesanded"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
-#: ../calendar/gui/calendar-component.c:1403
+#: ../calendar/gui/calendar-component.c:805
+#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "Kalendrid"
@@ -4598,17 +4614,17 @@ msgstr "_Märkmed"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
-#: ../calendar/gui/gnome-cal.c:1702 ../calendar/gui/memos-component.c:549
-#: ../calendar/gui/memos-component.c:1102 ../calendar/gui/memos-control.c:353
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
#: ../calendar/gui/memos-control.c:369
msgid "Memos"
msgstr "Märkmed"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
-#: ../calendar/gui/gnome-cal.c:1574 ../calendar/gui/print.c:1982
-#: ../calendar/gui/tasks-component.c:540
-#: ../calendar/gui/tasks-component.c:1091 ../calendar/gui/tasks-control.c:492
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
+#: ../calendar/gui/tasks-component.c:539
+#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
#: ../calendar/gui/tasks-control.c:508
#: ../calendar/importers/icalendar-importer.c:74
#: ../calendar/importers/icalendar-importer.c:735
@@ -4633,25 +4649,26 @@ msgstr "_Ülesanded"
msgid "Evolution Calendar alarm notification service"
msgstr "Evolutioni kalendri alarmteadete teenus"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:102
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:101
msgid "minute"
msgid_plural "minutes"
msgstr[0] "minut"
msgstr[1] "minutit"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:117
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:116
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:6
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:25
#: ../calendar/gui/dialogs/event-page.glade.h:19 ../filter/filter.glade.h:15
#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "tund"
msgstr[1] "tundi"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:273
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:270
msgid "Start time"
msgstr "Algusaeg"
@@ -4662,8 +4679,8 @@ msgstr "Sündmused"
#. Location
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:2
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1600
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1606
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1599
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1605
#: ../calendar/gui/e-itip-control.c:1172
#: ../plugins/itip-formatter/itip-view.c:1004
msgid "Location:"
@@ -4674,7 +4691,7 @@ msgid "Snooze _time:"
msgstr "_Edasilükkamise aeg:"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
-#: ../calendar/gui/dialogs/comp-editor.c:1331
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
@@ -4694,32 +4711,32 @@ msgstr "_Lükka edasi"
msgid "location of appointment"
msgstr "sündmuse asukoht"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1459
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1583
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1457
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1582
msgid "No summary available."
msgstr "Kokkuvõte puudub."
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1466
#: ../calendar/gui/alarm-notify/alarm-queue.c:1468
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1470
msgid "No description available."
msgstr "Kirjeldus puudub."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1478
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1476
msgid "No location information available."
msgstr "Asukoha kohta andmed puuduvad."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1522
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1521
#, c-format
msgid "You have %d alarms"
msgstr "Sul on %d alarmi"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1684
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1712
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1683
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1711
#: ../mail/mail-component.c:1587
msgid "Warning"
msgstr "Hoiatus"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1688
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1687
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
@@ -4731,7 +4748,7 @@ msgstr ""
"saatmist e-posti teel. Evolution kuvab selle asemel\n"
"hariliku meeldetuletusdialoogi."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1718
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1717
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
@@ -4747,7 +4764,7 @@ msgstr ""
"\n"
"Oled sa kindel, et soovid seda programmi käivitada?"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1732
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1731
msgid "Do not ask me about this program again."
msgstr "Selle programmi kohta enam mitte küsida."
@@ -5082,7 +5099,7 @@ msgid "Time the last alarm ran, in time_t."
msgstr "Viimase alarmi töötamise aeg, time_t ühikuga."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:65
-#: ../plugins/startup-wizard/startup-wizard.c:108
+#: ../plugins/startup-wizard/startup-wizard.c:107
msgid "Timezone"
msgstr "Ajavöönd"
@@ -5218,56 +5235,56 @@ msgstr "Minut, millal tööpäev algab"
msgid "daylight savings time"
msgstr "talve- ja suveaja nihe"
-#: ../calendar/gui/cal-search-bar.c:72
+#: ../calendar/gui/cal-search-bar.c:71
msgid "Summary contains"
msgstr "Kokkuvõte sisaldab"
-#: ../calendar/gui/cal-search-bar.c:73
+#: ../calendar/gui/cal-search-bar.c:72
msgid "Description contains"
msgstr "Kirjeldus sisaldab"
-#: ../calendar/gui/cal-search-bar.c:74
+#: ../calendar/gui/cal-search-bar.c:73
msgid "Category is"
msgstr "Kategooria on"
-#: ../calendar/gui/cal-search-bar.c:75
+#: ../calendar/gui/cal-search-bar.c:74
msgid "Comment contains"
msgstr "Kommentaar sisaldab"
-#: ../calendar/gui/cal-search-bar.c:76
+#: ../calendar/gui/cal-search-bar.c:75
msgid "Location contains"
msgstr "Asukoht sisaldab"
-#: ../calendar/gui/cal-search-bar.c:622 ../calendar/gui/cal-search-bar.c:665
-#: ../calendar/gui/cal-search-bar.c:684
+#: ../calendar/gui/cal-search-bar.c:629 ../calendar/gui/cal-search-bar.c:672
+#: ../calendar/gui/cal-search-bar.c:691
msgid "Unmatched"
msgstr "Vastavus puudub"
-#: ../calendar/gui/cal-search-bar.c:630
+#: ../calendar/gui/cal-search-bar.c:637
msgid "Next 7 Days' Tasks"
msgstr "Järgneva 7 päeva ülesanded"
-#: ../calendar/gui/cal-search-bar.c:634
+#: ../calendar/gui/cal-search-bar.c:641
msgid "Active Tasks"
msgstr "Aktiivsed ülesanded"
-#: ../calendar/gui/cal-search-bar.c:638
+#: ../calendar/gui/cal-search-bar.c:645
msgid "Overdue Tasks"
msgstr "Tähtaja ületanud ülesanded"
-#: ../calendar/gui/cal-search-bar.c:642
+#: ../calendar/gui/cal-search-bar.c:649
msgid "Completed Tasks"
msgstr "Lõpetatud ülesanded"
-#: ../calendar/gui/cal-search-bar.c:646
+#: ../calendar/gui/cal-search-bar.c:653
msgid "Tasks with Attachments"
msgstr "Manustega ülesanded"
-#: ../calendar/gui/cal-search-bar.c:692
+#: ../calendar/gui/cal-search-bar.c:699
msgid "Active Appointments"
msgstr "Aktiivsed sündmused"
-#: ../calendar/gui/cal-search-bar.c:696
+#: ../calendar/gui/cal-search-bar.c:703
msgid "Next 7 Days' Appointments"
msgstr "Järgneva 7 päeva sündmused"
@@ -5295,6 +5312,7 @@ msgstr "Puhastada sündmustest, mis on vanemad kui"
#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "päeva"
@@ -5303,107 +5321,99 @@ msgstr "päeva"
#. Create the LDAP source group
#. Create the Webcal source group
#. Create the LDAP source group
-#: ../calendar/gui/calendar-component.c:274
-#: ../calendar/gui/memos-component.c:236 ../calendar/gui/migration.c:505
+#: ../calendar/gui/calendar-component.c:273
+#: ../calendar/gui/memos-component.c:235 ../calendar/gui/migration.c:505
#: ../calendar/gui/migration.c:604 ../calendar/gui/migration.c:1118
-#: ../calendar/gui/tasks-component.c:232
+#: ../calendar/gui/tasks-component.c:231
msgid "On The Web"
msgstr "Veebis"
-#: ../calendar/gui/calendar-component.c:311 ../calendar/gui/migration.c:399
+#: ../calendar/gui/calendar-component.c:310 ../calendar/gui/migration.c:399
msgid "Birthdays & Anniversaries"
msgstr "Sünnipäevad ja aastapäevad"
#. Create the weather group
-#: ../calendar/gui/calendar-component.c:324
+#: ../calendar/gui/calendar-component.c:323
#: ../plugins/calendar-weather/calendar-weather.c:100
msgid "Weather"
msgstr "Ilm"
-#: ../calendar/gui/calendar-component.c:616
+#: ../calendar/gui/calendar-component.c:615
msgid "_New Calendar"
msgstr "_Uus kalender"
-#: ../calendar/gui/calendar-component.c:617
-#: ../calendar/gui/memos-component.c:466 ../calendar/gui/tasks-component.c:457
+#: ../calendar/gui/calendar-component.c:616
+#: ../calendar/gui/memos-component.c:465 ../calendar/gui/tasks-component.c:456
#: ../mail/em-folder-tree.c:2106
msgid "_Copy..."
msgstr "_Kopeeri..."
-#: ../calendar/gui/calendar-component.c:623
-#: ../calendar/gui/dialogs/comp-editor.c:2034
-#: ../calendar/gui/memos-component.c:472 ../calendar/gui/tasks-component.c:463
-#: ../composer/e-msg-composer.c:1047 ../mail/em-folder-tree.c:2120
-#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
-msgid "_Properties"
-msgstr "_Omadused"
-
-#: ../calendar/gui/calendar-component.c:950
+#: ../calendar/gui/calendar-component.c:949
msgid "Failed upgrading calendars."
msgstr "Tõrge kalendrite uuendamisel."
-#: ../calendar/gui/calendar-component.c:1249
+#: ../calendar/gui/calendar-component.c:1248
#, c-format
msgid "Unable to open the calendar '%s' for creating events and meetings"
msgstr "Kalendrit '%s' pole võimalik sündmuste ja koosolekute loomiseks avada"
-#: ../calendar/gui/calendar-component.c:1265
+#: ../calendar/gui/calendar-component.c:1264
msgid "There is no calendar available for creating events and meetings"
msgstr "Sündmuste ja koosolekute loomiseks pole kalendrit saadaval"
-#: ../calendar/gui/calendar-component.c:1378
+#: ../calendar/gui/calendar-component.c:1377
msgid "Calendar Source Selector"
msgstr "Kalendri allika valimine"
-#: ../calendar/gui/calendar-component.c:1596
+#: ../calendar/gui/calendar-component.c:1595
msgid "New appointment"
msgstr "Uus sündmus"
-#: ../calendar/gui/calendar-component.c:1597
+#: ../calendar/gui/calendar-component.c:1596
msgctxt "New"
msgid "_Appointment"
msgstr "_Sündmus"
-#: ../calendar/gui/calendar-component.c:1598
+#: ../calendar/gui/calendar-component.c:1597
msgid "Create a new appointment"
msgstr "Uue sündmuse lisamine"
-#: ../calendar/gui/calendar-component.c:1604
+#: ../calendar/gui/calendar-component.c:1603
msgid "New meeting"
msgstr "Uus koosolek"
-#: ../calendar/gui/calendar-component.c:1605
+#: ../calendar/gui/calendar-component.c:1604
msgctxt "New"
msgid "M_eeting"
msgstr "K_oosolek"
-#: ../calendar/gui/calendar-component.c:1606
+#: ../calendar/gui/calendar-component.c:1605
msgid "Create a new meeting request"
msgstr "Uue koosolekukutse loomine"
-#: ../calendar/gui/calendar-component.c:1612
+#: ../calendar/gui/calendar-component.c:1611
msgid "New all day appointment"
msgstr "Uus, kogu päeva hõlmav sündmus"
-#: ../calendar/gui/calendar-component.c:1613
+#: ../calendar/gui/calendar-component.c:1612
msgctxt "New"
msgid "All Day A_ppointment"
msgstr "Kogu _päeva hõlmav sündmus"
-#: ../calendar/gui/calendar-component.c:1614
+#: ../calendar/gui/calendar-component.c:1613
msgid "Create a new all-day appointment"
msgstr "Uue kogu päeva hõlmava sündmuse lisamine"
-#: ../calendar/gui/calendar-component.c:1620
+#: ../calendar/gui/calendar-component.c:1619
msgid "New calendar"
msgstr "Uus kalender"
-#: ../calendar/gui/calendar-component.c:1621
+#: ../calendar/gui/calendar-component.c:1620
msgctxt "New"
msgid "Cale_ndar"
msgstr "Kale_nder"
-#: ../calendar/gui/calendar-component.c:1622
+#: ../calendar/gui/calendar-component.c:1621
msgid "Create a new calendar"
msgstr "Uue kalendri loomine"
@@ -5460,7 +5470,7 @@ msgid "Competition"
msgstr ""
#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
-#: ../calendar/gui/e-cal-model.c:329 ../calendar/gui/e-calendar-table.c:547
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
#: ../calendar/gui/memotypes.xml.h:10
msgid "Confidential"
msgstr "Salajane"
@@ -5554,19 +5564,19 @@ msgid "Phone Calls"
msgstr "Telefonikõned"
#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
-#: ../calendar/gui/e-cal-model.c:327 ../calendar/gui/e-calendar-table.c:546
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
#: ../calendar/gui/memotypes.xml.h:29
msgid "Private"
msgstr "Isiklik"
#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
-#: ../calendar/gui/e-cal-model.c:318 ../calendar/gui/e-cal-model.c:325
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
msgid "Public"
msgstr "Avalik"
#: ../calendar/gui/caltypes.xml.h:33
-#: ../calendar/gui/dialogs/event-editor.c:298
+#: ../calendar/gui/dialogs/event-editor.c:297
msgid "Recurrence"
msgstr "Kordumine"
@@ -5654,7 +5664,7 @@ msgstr "Puuduvad õigused kalendri avamiseks"
msgid "Unknown error"
msgstr "Tundmatu viga"
-#: ../calendar/gui/dialogs/alarm-dialog.c:602
+#: ../calendar/gui/dialogs/alarm-dialog.c:601
msgid "Edit Alarm"
msgstr "Alarmi redigeerimine"
@@ -5757,10 +5767,7 @@ msgstr "korda, vahemikuga"
msgid "hour(s)"
msgstr "tund(i)"
-#. Translators: This is the second half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
-#: ../plugins/google-account-setup/google-contacts-source.c:247
msgid "minute(s)"
msgstr "minut(it)"
@@ -5768,7 +5775,7 @@ msgstr "minut(it)"
msgid "start of appointment"
msgstr "sündmuse algust"
-#: ../calendar/gui/dialogs/alarm-list-dialog.c:243
+#: ../calendar/gui/dialogs/alarm-list-dialog.c:242
msgid "Action/Trigger"
msgstr "Tegevus/Päästik"
@@ -5782,12 +5789,12 @@ msgstr "L_isa"
msgid "Alarms"
msgstr "Alarmid"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:84
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:82
#: ../composer/e-composer-actions.c:64
msgid "_Suggest automatic display of attachment"
msgstr "Manust on soovitatav kuvada _automaatselt"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:150
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:143
msgid "Attach file(s)"
msgstr "Faili(de) manustamine"
@@ -5950,7 +5957,7 @@ msgid "Thursday"
msgstr "Neljapäev"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
-#: ../calendar/gui/dialogs/event-page.glade.h:13
+#: ../calendar/gui/dialogs/event-page.glade.h:12
msgid "Time _zone:"
msgstr "Aja_vöönd:"
@@ -6096,49 +6103,49 @@ msgstr "Märkmeloendi omadused"
msgid "New Memo List"
msgstr "Uus märkmeloend"
-#: ../calendar/gui/dialogs/changed-comp.c:58
+#: ../calendar/gui/dialogs/changed-comp.c:56
msgid "This event has been deleted."
msgstr "See sündmus on kustutatud."
-#: ../calendar/gui/dialogs/changed-comp.c:62
+#: ../calendar/gui/dialogs/changed-comp.c:60
msgid "This task has been deleted."
msgstr "See ülesanne on kustutatud."
-#: ../calendar/gui/dialogs/changed-comp.c:66
+#: ../calendar/gui/dialogs/changed-comp.c:64
msgid "This memo has been deleted."
msgstr "See märge on kustutatud."
-#: ../calendar/gui/dialogs/changed-comp.c:75
+#: ../calendar/gui/dialogs/changed-comp.c:73
#, c-format
msgid "%s You have made changes. Forget those changes and close the editor?"
msgstr ""
"%s Sa oled teinud muutusi. Kas unustada need muudatused ja sulgeda aken?"
-#: ../calendar/gui/dialogs/changed-comp.c:77
+#: ../calendar/gui/dialogs/changed-comp.c:75
#, c-format
msgid "%s You have made no changes, close the editor?"
msgstr "%s Sa ei muutnud midagi. Kas sulgeda aken?"
-#: ../calendar/gui/dialogs/changed-comp.c:82
+#: ../calendar/gui/dialogs/changed-comp.c:80
msgid "This event has been changed."
msgstr "Seda sündmust on muudetud."
-#: ../calendar/gui/dialogs/changed-comp.c:86
+#: ../calendar/gui/dialogs/changed-comp.c:84
msgid "This task has been changed."
msgstr "Seda ülesannet on muudetud."
-#: ../calendar/gui/dialogs/changed-comp.c:90
+#: ../calendar/gui/dialogs/changed-comp.c:88
msgid "This memo has been changed."
msgstr "Seda märget on muudetud."
-#: ../calendar/gui/dialogs/changed-comp.c:99
+#: ../calendar/gui/dialogs/changed-comp.c:97
#, c-format
msgid "%s You have made changes. Forget those changes and update the editor?"
msgstr ""
"%s On tehtud muudatusi. Kas tühistada need muudatused ja uuendada "
"redaktorit?"
-#: ../calendar/gui/dialogs/changed-comp.c:101
+#: ../calendar/gui/dialogs/changed-comp.c:99
#, c-format
msgid "%s You have made no changes, update the editor?"
msgstr "%s Muudatusi ei ole tehtud. Kas värskendada redaktorit?"
@@ -6168,275 +6175,275 @@ msgstr " (Tähtaeg "
msgid "Due "
msgstr "Tähtaeg "
-#: ../calendar/gui/dialogs/comp-editor.c:231
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "Manustatud sõnum - %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:236
-#: ../calendar/gui/dialogs/comp-editor.c:409 ../composer/e-msg-composer.c:1772
-#: ../composer/e-msg-composer.c:1991
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
+#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
msgid_plural "%d attached messages"
msgstr[0] "Manustatud sõnum"
msgstr[1] "%d manustatud sõnumit"
-#: ../calendar/gui/dialogs/comp-editor.c:480 ../composer/e-msg-composer.c:2059
-#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:366
-#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2047
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
+#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
+#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "_Tõsta ümber"
-#: ../calendar/gui/dialogs/comp-editor.c:482 ../composer/e-msg-composer.c:2061
-#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2049
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
+#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr "Tühista _lohistamine"
-#: ../calendar/gui/dialogs/comp-editor.c:615
-#: ../calendar/gui/dialogs/comp-editor.c:3253 ../mail/em-utils.c:371
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
#: ../plugins/prefer-plain/prefer-plain.c:74
#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr "manus"
-#: ../calendar/gui/dialogs/comp-editor.c:841
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr "Objekti pole võimalik uuendada!"
-#: ../calendar/gui/dialogs/comp-editor.c:929
+#: ../calendar/gui/dialogs/comp-editor.c:930
msgid "Edit Appointment"
msgstr "Muuda sündmust"
-#: ../calendar/gui/dialogs/comp-editor.c:936
+#: ../calendar/gui/dialogs/comp-editor.c:937
#, c-format
msgid "Meeting - %s"
msgstr "Koosolek - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:938
+#: ../calendar/gui/dialogs/comp-editor.c:939
#, c-format
msgid "Appointment - %s"
msgstr "Sündmus - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:944
+#: ../calendar/gui/dialogs/comp-editor.c:945
#, c-format
msgid "Assigned Task - %s"
msgstr "Omistatud ülesanne - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:946
+#: ../calendar/gui/dialogs/comp-editor.c:947
#, c-format
msgid "Task - %s"
msgstr "Ülesanne - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:951
+#: ../calendar/gui/dialogs/comp-editor.c:952
#, c-format
msgid "Memo - %s"
msgstr "Märge - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:967
+#: ../calendar/gui/dialogs/comp-editor.c:968
msgid "No Summary"
msgstr "Kokkuvõte puudub"
-#: ../calendar/gui/dialogs/comp-editor.c:1261
+#: ../calendar/gui/dialogs/comp-editor.c:1262
msgid "Click here to close the current window"
msgstr "Käesoleva akna sulgemine"
-#: ../calendar/gui/dialogs/comp-editor.c:1268
+#: ../calendar/gui/dialogs/comp-editor.c:1269
msgid "Copy selected text to the clipboard"
msgstr "Märgitud teksti kopeerimine lõikelauale"
-#: ../calendar/gui/dialogs/comp-editor.c:1275
+#: ../calendar/gui/dialogs/comp-editor.c:1276
msgid "Cut selected text to the clipboard"
msgstr "Lõika valitud tekst lõikelauale"
-#: ../calendar/gui/dialogs/comp-editor.c:1282
+#: ../calendar/gui/dialogs/comp-editor.c:1283
msgid "Click here to view help available"
msgstr "Saadaoleva abiteabe vaatamiseks klõpsa siia"
-#: ../calendar/gui/dialogs/comp-editor.c:1289
+#: ../calendar/gui/dialogs/comp-editor.c:1290
msgid "Paste text from the clipboard"
msgstr "Teksti asetamine lõikepuhvrist"
-#: ../calendar/gui/dialogs/comp-editor.c:1310
+#: ../calendar/gui/dialogs/comp-editor.c:1311
msgid "Click here to save the current window"
msgstr "Käesoleva akna sisu salvestamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1317
+#: ../calendar/gui/dialogs/comp-editor.c:1318
msgid "Select all text"
msgstr "Kogu teksti valimine"
-#: ../calendar/gui/dialogs/comp-editor.c:1324
+#: ../calendar/gui/dialogs/comp-editor.c:1325
msgid "_Classification"
msgstr "_Liigitus"
-#: ../calendar/gui/dialogs/comp-editor.c:1338
+#: ../calendar/gui/dialogs/comp-editor.c:1339
#: ../mail/mail-signature-editor.c:208
#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
msgid "_File"
msgstr "_Fail"
-#: ../calendar/gui/dialogs/comp-editor.c:1345
+#: ../calendar/gui/dialogs/comp-editor.c:1346
#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
msgid "_Help"
msgstr "A_bi"
-#: ../calendar/gui/dialogs/comp-editor.c:1352
+#: ../calendar/gui/dialogs/comp-editor.c:1353
#, fuzzy
msgid "_Insert"
msgstr "_Lisamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1359
+#: ../calendar/gui/dialogs/comp-editor.c:1360
msgid "_Options"
msgstr "_Valikud"
-#: ../calendar/gui/dialogs/comp-editor.c:1366 ../mail/em-folder-tree.c:2098
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
#: ../ui/evolution.xml.h:55
msgid "_View"
msgstr "_Vaade"
-#: ../calendar/gui/dialogs/comp-editor.c:1376
+#: ../calendar/gui/dialogs/comp-editor.c:1377
#: ../composer/e-composer-actions.c:472
msgid "_Attachment..."
msgstr "_Manus..."
-#: ../calendar/gui/dialogs/comp-editor.c:1378
+#: ../calendar/gui/dialogs/comp-editor.c:1379
msgid "Click here to attach a file"
msgstr "Faili manustamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1386
+#: ../calendar/gui/dialogs/comp-editor.c:1387
msgid "_Categories"
msgstr "_Kategooriad"
-#: ../calendar/gui/dialogs/comp-editor.c:1388
+#: ../calendar/gui/dialogs/comp-editor.c:1389
msgid "Toggles whether to display categories"
msgstr "Kategooriavälja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1394
+#: ../calendar/gui/dialogs/comp-editor.c:1395
msgid "Time _Zone"
msgstr "Ajavöön_d"
-#: ../calendar/gui/dialogs/comp-editor.c:1396
+#: ../calendar/gui/dialogs/comp-editor.c:1397
msgid "Toggles whether the time zone is displayed"
msgstr "Ajavööndivälja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1405
+#: ../calendar/gui/dialogs/comp-editor.c:1406
msgid "Pu_blic"
msgstr "A_valik"
-#: ../calendar/gui/dialogs/comp-editor.c:1407
+#: ../calendar/gui/dialogs/comp-editor.c:1408
msgid "Classify as public"
msgstr "Avalikuks liigitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1412
+#: ../calendar/gui/dialogs/comp-editor.c:1413
msgid "_Private"
msgstr "_Isiklik"
-#: ../calendar/gui/dialogs/comp-editor.c:1414
+#: ../calendar/gui/dialogs/comp-editor.c:1415
msgid "Classify as private"
msgstr "Isiklikuks liigitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1419
+#: ../calendar/gui/dialogs/comp-editor.c:1420
msgid "_Confidential"
msgstr "_Salajane"
-#: ../calendar/gui/dialogs/comp-editor.c:1421
+#: ../calendar/gui/dialogs/comp-editor.c:1422
msgid "Classify as confidential"
msgstr "Salajaseks liigitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1429
+#: ../calendar/gui/dialogs/comp-editor.c:1430
msgid "R_ole Field"
msgstr "R_olliväli"
-#: ../calendar/gui/dialogs/comp-editor.c:1431
+#: ../calendar/gui/dialogs/comp-editor.c:1432
msgid "Toggles whether the Role field is displayed"
msgstr "Rollivälja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1437
+#: ../calendar/gui/dialogs/comp-editor.c:1438
msgid "_RSVP"
msgstr "_RSVP"
-#: ../calendar/gui/dialogs/comp-editor.c:1439
+#: ../calendar/gui/dialogs/comp-editor.c:1440
msgid "Toggles whether the RSVP field is displayed"
msgstr "RSVP välja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1445
+#: ../calendar/gui/dialogs/comp-editor.c:1446
msgid "_Status Field"
msgstr "_Olekuväli"
-#: ../calendar/gui/dialogs/comp-editor.c:1447
+#: ../calendar/gui/dialogs/comp-editor.c:1448
msgid "Toggles whether the Status field is displayed"
msgstr "Olekuvälja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1453
+#: ../calendar/gui/dialogs/comp-editor.c:1454
msgid "_Type Field"
msgstr "_Tüübiväli"
-#: ../calendar/gui/dialogs/comp-editor.c:1455
+#: ../calendar/gui/dialogs/comp-editor.c:1456
#, fuzzy
msgid "Toggles whether the Attendee Type is displayed"
msgstr "Osaleja liigi välja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/comp-editor.c:1765
+#: ../calendar/gui/dialogs/comp-editor.c:1766
#: ../widgets/misc/e-attachment-bar.c:1381
msgid "Recent Docu_ments"
msgstr "_Hiljutised dokumendid"
-#: ../calendar/gui/dialogs/comp-editor.c:1784
+#: ../calendar/gui/dialogs/comp-editor.c:1785
#: ../composer/e-composer-actions.c:700
msgid "Attach"
msgstr "Manusta"
-#: ../calendar/gui/dialogs/comp-editor.c:1879
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "<b>%d</b> fail manusena"
msgstr[1] "<b>%d</b> faili manusena"
-#: ../calendar/gui/dialogs/comp-editor.c:1911
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr "Peida manuseri_ba"
-#: ../calendar/gui/dialogs/comp-editor.c:1914
-#: ../calendar/gui/dialogs/comp-editor.c:2222
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr "Näita manuseri_ba"
-#: ../calendar/gui/dialogs/comp-editor.c:2033
-#: ../calendar/gui/dialogs/event-page.c:1872
-#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1046
+#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/event-page.c:1871
+#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
#: ../plugins/groupwise-features/properties.glade.h:13
#: ../widgets/table/e-table-config.glade.h:21
msgid "_Remove"
msgstr "_Eemalda"
-#: ../calendar/gui/dialogs/comp-editor.c:2036
-#: ../composer/e-msg-composer.c:1049
+#: ../calendar/gui/dialogs/comp-editor.c:2037
+#: ../composer/e-msg-composer.c:1048
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr "_Lisa manus..."
-#: ../calendar/gui/dialogs/comp-editor.c:2244
-#: ../mail/em-format-html-display.c:2194
+#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr "Näita manuseid"
-#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr "Vajuta tühikut manuseriba sisse-/väljalülitamiseks"
-#: ../calendar/gui/dialogs/comp-editor.c:2394
-#: ../calendar/gui/dialogs/comp-editor.c:2441
-#: ../calendar/gui/dialogs/comp-editor.c:3286
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr ""
"Sellele kirjele tehtud muudatused tühistatakse uuenduste saabumise korral"
-#: ../calendar/gui/dialogs/comp-editor.c:3315
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "Praegust versiooni pole võimalik kasutada!"
@@ -6452,55 +6459,55 @@ msgstr "Sihtkoha avamine nurjus"
msgid "Destination is read only"
msgstr "Sihtkoht on kirjutuskaitsega"
-#: ../calendar/gui/dialogs/delete-comp.c:202
+#: ../calendar/gui/dialogs/delete-comp.c:201
msgid "_Delete this item from all other recipient's mailboxes?"
msgstr ""
-#: ../calendar/gui/dialogs/delete-error.c:53
+#: ../calendar/gui/dialogs/delete-error.c:52
msgid "The event could not be deleted due to a corba error"
msgstr "Seda sündmust pole võimalik corba vea tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:56
+#: ../calendar/gui/dialogs/delete-error.c:55
msgid "The task could not be deleted due to a corba error"
msgstr "Seda ülesannet pole võimalik corba vea tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:59
+#: ../calendar/gui/dialogs/delete-error.c:58
msgid "The memo could not be deleted due to a corba error"
msgstr "Seda märget pole võimalik corba vea tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:62
+#: ../calendar/gui/dialogs/delete-error.c:61
msgid "The item could not be deleted due to a corba error"
msgstr "Seda kirjet pole võimalik corba vea tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:69
+#: ../calendar/gui/dialogs/delete-error.c:68
msgid "The event could not be deleted because permission was denied"
msgstr "Sündmust pole võimalik ligipääsu piirangute tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:72
+#: ../calendar/gui/dialogs/delete-error.c:71
msgid "The task could not be deleted because permission was denied"
msgstr "Ülesannet pole võimalik ligipääsu piirangute tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:75
+#: ../calendar/gui/dialogs/delete-error.c:74
msgid "The memo could not be deleted because permission was denied"
msgstr "Märget pole võimalik ligipääsu piirangute tõttu kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:78
+#: ../calendar/gui/dialogs/delete-error.c:77
msgid "The item could not be deleted because permission was denied"
msgstr "Kirjet pole võimalik kustutada, kuna juurdepääs puudub"
-#: ../calendar/gui/dialogs/delete-error.c:85
+#: ../calendar/gui/dialogs/delete-error.c:84
msgid "The event could not be deleted due to an error"
msgstr "Sündmust pole vea tõttu võimalik kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:88
+#: ../calendar/gui/dialogs/delete-error.c:87
msgid "The task could not be deleted due to an error"
msgstr "Ülesannet pole vea tõttu võimalik kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:91
+#: ../calendar/gui/dialogs/delete-error.c:90
msgid "The memo could not be deleted due to an error"
msgstr "Märget pole vea tõttu võimalik kustutada"
-#: ../calendar/gui/dialogs/delete-error.c:94
+#: ../calendar/gui/dialogs/delete-error.c:93
msgid "The item could not be deleted due to an error"
msgstr "Kirjet pole vea tõttu võimalik kustutada"
@@ -6517,179 +6524,179 @@ msgstr "Delegeerida:"
msgid "Enter Delegate"
msgstr "Sisesta Delegaat"
-#: ../calendar/gui/dialogs/event-editor.c:195
+#: ../calendar/gui/dialogs/event-editor.c:194
msgid "_Alarms"
msgstr "_Alarmid"
-#: ../calendar/gui/dialogs/event-editor.c:197
+#: ../calendar/gui/dialogs/event-editor.c:196
msgid "Click here to set or unset alarms for this event"
msgstr "Klõpsa siia, et seada või eemaldada selle sündmuse alarme"
-#: ../calendar/gui/dialogs/event-editor.c:202
+#: ../calendar/gui/dialogs/event-editor.c:201
msgid "_Recurrence"
msgstr "_Kordumine"
-#: ../calendar/gui/dialogs/event-editor.c:204
+#: ../calendar/gui/dialogs/event-editor.c:203
msgid "Make this a recurring event"
msgstr "Selle sündmuse muutmine korduvaks"
-#: ../calendar/gui/dialogs/event-editor.c:209
+#: ../calendar/gui/dialogs/event-editor.c:208
#: ../plugins/groupwise-features/org-gnome-compose-send-options.xml.h:2
#: ../widgets/misc/e-send-options.glade.h:19
msgid "Send Options"
msgstr "Saatmise valikud"
-#: ../calendar/gui/dialogs/event-editor.c:211
-#: ../calendar/gui/dialogs/task-editor.c:124
+#: ../calendar/gui/dialogs/event-editor.c:210
+#: ../calendar/gui/dialogs/task-editor.c:123
msgid "Insert advanced send options"
msgstr "Laiendatud saatmisvalikute lisamine"
-#: ../calendar/gui/dialogs/event-editor.c:219
+#: ../calendar/gui/dialogs/event-editor.c:218
msgid "All _Day Event"
msgstr "Kogu _päeva kestev sündmus"
-#: ../calendar/gui/dialogs/event-editor.c:221
+#: ../calendar/gui/dialogs/event-editor.c:220
msgid "Toggles whether to have All Day Event"
msgstr "Kogu päeva kestva sündmuse sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/event-editor.c:227
+#: ../calendar/gui/dialogs/event-editor.c:226
#, fuzzy
msgid "Show Time as _Busy"
msgstr "Näita aega kui _hõivatut"
-#: ../calendar/gui/dialogs/event-editor.c:229
+#: ../calendar/gui/dialogs/event-editor.c:228
msgid "Toggles whether to show time as busy"
msgstr "Aja kui hõivatud aja välja kuvamise sisse- ja väljalülitamine"
-#: ../calendar/gui/dialogs/event-editor.c:238
+#: ../calendar/gui/dialogs/event-editor.c:237
msgid "_Free/Busy"
msgstr "_Vaba/hõivatud"
-#: ../calendar/gui/dialogs/event-editor.c:240
+#: ../calendar/gui/dialogs/event-editor.c:239
msgid "Query free / busy information for the attendees"
msgstr "Osalejate vaba/hõivatud andmete pärimine"
-#: ../calendar/gui/dialogs/event-editor.c:295
+#: ../calendar/gui/dialogs/event-editor.c:294
msgid "Appoint_ment"
msgstr "Sünd_mus"
-#: ../calendar/gui/dialogs/event-page.c:732
-#: ../calendar/gui/dialogs/event-page.c:2715
+#: ../calendar/gui/dialogs/event-page.c:731
+#: ../calendar/gui/dialogs/event-page.c:2714
msgid "This event has alarms"
msgstr "See sündmus on alarmidega"
-#: ../calendar/gui/dialogs/event-page.c:795
-#: ../calendar/gui/dialogs/event-page.glade.h:11
+#: ../calendar/gui/dialogs/event-page.c:794
+#: ../calendar/gui/dialogs/event-page.glade.h:10
#: ../calendar/gui/dialogs/meeting-page.glade.h:5
#: ../calendar/gui/dialogs/memo-page.glade.h:2
msgid "Or_ganizer:"
msgstr "Korralda_ja:"
-#: ../calendar/gui/dialogs/event-page.c:841
+#: ../calendar/gui/dialogs/event-page.c:840
msgid "_Delegatees"
msgstr "_Delegaadid"
-#: ../calendar/gui/dialogs/event-page.c:843
+#: ../calendar/gui/dialogs/event-page.c:842
msgid "Atte_ndees"
msgstr "_Osalejad"
-#: ../calendar/gui/dialogs/event-page.c:1027
+#: ../calendar/gui/dialogs/event-page.c:1026
msgid "Event with no start date"
msgstr "Sündmus ilma alguskuupäevata"
-#: ../calendar/gui/dialogs/event-page.c:1030
+#: ../calendar/gui/dialogs/event-page.c:1029
msgid "Event with no end date"
msgstr "Sündmis ilma lõppkuupäevata"
-#: ../calendar/gui/dialogs/event-page.c:1199
+#: ../calendar/gui/dialogs/event-page.c:1198
#: ../calendar/gui/dialogs/memo-page.c:636
#: ../calendar/gui/dialogs/task-page.c:808
msgid "Start date is wrong"
msgstr "Alguskuupäev on vale"
-#: ../calendar/gui/dialogs/event-page.c:1209
+#: ../calendar/gui/dialogs/event-page.c:1208
msgid "End date is wrong"
msgstr "Lõppemise päev on vale"
-#: ../calendar/gui/dialogs/event-page.c:1232
+#: ../calendar/gui/dialogs/event-page.c:1231
msgid "Start time is wrong"
msgstr "Algusaeg on vale"
-#: ../calendar/gui/dialogs/event-page.c:1239
+#: ../calendar/gui/dialogs/event-page.c:1238
msgid "End time is wrong"
msgstr "Lõppemise aeg on vale"
-#: ../calendar/gui/dialogs/event-page.c:1402
+#: ../calendar/gui/dialogs/event-page.c:1401
#: ../calendar/gui/dialogs/memo-page.c:677
#: ../calendar/gui/dialogs/task-page.c:868
msgid "The organizer selected no longer has an account."
msgstr "Valitud korraldajal pole enam kontot."
-#: ../calendar/gui/dialogs/event-page.c:1408
+#: ../calendar/gui/dialogs/event-page.c:1407
#: ../calendar/gui/dialogs/memo-page.c:683
#: ../calendar/gui/dialogs/task-page.c:874
msgid "An organizer is required."
msgstr "Korraldaja peab olema määrtud."
-#: ../calendar/gui/dialogs/event-page.c:1433
+#: ../calendar/gui/dialogs/event-page.c:1432
#: ../calendar/gui/dialogs/task-page.c:898
msgid "At least one attendee is required."
msgstr "Vähemalt üks osaleja peab olema märgitud."
-#: ../calendar/gui/dialogs/event-page.c:1873
+#: ../calendar/gui/dialogs/event-page.c:1872
#: ../calendar/gui/dialogs/task-page.c:1194
msgid "_Add "
msgstr "_Lisa "
-#: ../calendar/gui/dialogs/event-page.c:2591
+#: ../calendar/gui/dialogs/event-page.c:2590
#, c-format
msgid "Unable to open the calendar '%s'."
msgstr "Kalendrit '%s' pole võimalik avada."
-#: ../calendar/gui/dialogs/event-page.c:2635
+#: ../calendar/gui/dialogs/event-page.c:2634
#: ../calendar/gui/dialogs/memo-page.c:886
#: ../calendar/gui/dialogs/task-page.c:1793
#, c-format
msgid "You are acting on behalf of %s"
msgstr ""
-#: ../calendar/gui/dialogs/event-page.c:2915
+#: ../calendar/gui/dialogs/event-page.c:2914
#, c-format
msgid "%d day before appointment"
msgid_plural "%d days before appointment"
msgstr[0] "%d päev enne sündmust"
msgstr[1] "%d päeva enne sündmust"
-#: ../calendar/gui/dialogs/event-page.c:2921
+#: ../calendar/gui/dialogs/event-page.c:2920
#, c-format
msgid "%d hour before appointment"
msgid_plural "%d hours before appointment"
msgstr[0] "%d tund enne sündmust"
msgstr[1] "%d tundi enne sündmust"
-#: ../calendar/gui/dialogs/event-page.c:2927
+#: ../calendar/gui/dialogs/event-page.c:2926
#, c-format
msgid "%d minute before appointment"
msgid_plural "%d minutes before appointment"
msgstr[0] "%d minut enne sündmust"
msgstr[1] "%d minutit enne sündmust"
-#: ../calendar/gui/dialogs/event-page.c:2940
+#: ../calendar/gui/dialogs/event-page.c:2939
msgid "Customize"
msgstr "Kohandatud"
#. an empty string is the same as 'None'
-#: ../calendar/gui/dialogs/event-page.c:2945
+#: ../calendar/gui/dialogs/event-page.c:2944
#: ../calendar/gui/dialogs/meeting-page.glade.h:4
#: ../calendar/gui/e-cal-model-tasks.c:669
#: ../calendar/gui/e-itip-control.c:1158 ../filter/filter-rule.c:944
#: ../mail/em-account-editor.c:685 ../mail/em-account-editor.c:1409
-#: ../mail/em-account-prefs.c:438 ../mail/em-junk-hook.c:94
+#: ../mail/em-account-prefs.c:438 ../mail/em-junk-hook.c:93
#: ../plugins/calendar-weather/calendar-weather.c:370
#: ../plugins/calendar-weather/calendar-weather.c:424
#: ../plugins/exchange-operations/exchange-delegates-user.c:193
#: ../plugins/exchange-operations/exchange-delegates.glade.h:9
-#: ../plugins/itip-formatter/itip-formatter.c:2022
+#: ../plugins/itip-formatter/itip-formatter.c:2021
#: ../widgets/misc/e-cell-date-edit.c:307 ../widgets/misc/e-dateedit.c:1517
#: ../widgets/misc/e-dateedit.c:1731
#: ../widgets/misc/e-signature-combo-box.c:69
@@ -6717,23 +6724,25 @@ msgid "Custom Alarm:"
msgstr "Kohandatud alarm:"
#: ../calendar/gui/dialogs/event-page.glade.h:9
-msgid "D_escription:"
-msgstr "_Kirjeldus:"
-
-#: ../calendar/gui/dialogs/event-page.glade.h:10
msgid "Event Description"
msgstr "Sündmuse kirjeldus"
-#: ../calendar/gui/dialogs/event-page.glade.h:12
+#: ../calendar/gui/dialogs/event-page.glade.h:11
#: ../calendar/gui/dialogs/memo-page.glade.h:4
#: ../calendar/gui/dialogs/task-page.glade.h:6
msgid "Su_mmary:"
msgstr "Kokkuvõt_e:"
-#: ../calendar/gui/dialogs/event-page.glade.h:14
+#: ../calendar/gui/dialogs/event-page.glade.h:13
msgid "_Alarm"
msgstr "_Alarm"
+#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/memo-page.glade.h:6
+#: ../calendar/gui/dialogs/task-page.glade.h:8
+msgid "_Description:"
+msgstr "_Kirjeldus:"
+
#: ../calendar/gui/dialogs/event-page.glade.h:17
msgid "_Time:"
msgstr "Ae_g:"
@@ -6778,8 +6787,8 @@ msgstr "Märge"
msgid "Unable to open memos in '%s'."
msgstr "Märkmeid pole võimalik '%s'-s avada."
-#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1561
-#: ../mail/em-format-html.c:1619 ../mail/em-format-html.c:1645
+#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1562
+#: ../mail/em-format-html.c:1620 ../mail/em-format-html.c:1646
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
#: ../mail/em-mailer-prefs.c:77 ../mail/message-list.etspec.h:19
msgid "To"
@@ -6794,10 +6803,6 @@ msgstr "_Algusaeg:"
msgid "T_o:"
msgstr "_Kellele:"
-#: ../calendar/gui/dialogs/memo-page.glade.h:6
-msgid "_Description:"
-msgstr "_Kirjeldus:"
-
#: ../calendar/gui/dialogs/memo-page.glade.h:7
#: ../calendar/gui/dialogs/task-page.c:360
#: ../calendar/gui/dialogs/task-page.glade.h:9
@@ -7044,7 +7049,7 @@ msgstr "Lõpetatud"
#: ../calendar/gui/dialogs/task-details-page.glade.h:5
#: ../calendar/gui/e-cal-component-preview.c:272
#: ../calendar/gui/e-calendar-table.c:567 ../calendar/gui/tasktypes.xml.h:21
-#: ../mail/message-list.c:1064
+#: ../mail/message-list.c:1065
msgid "High"
msgstr "Kõrge"
@@ -7061,14 +7066,14 @@ msgstr "Töös"
#: ../calendar/gui/dialogs/task-details-page.glade.h:7
#: ../calendar/gui/e-cal-component-preview.c:276
#: ../calendar/gui/e-calendar-table.c:569 ../calendar/gui/tasktypes.xml.h:29
-#: ../mail/message-list.c:1062
+#: ../mail/message-list.c:1063
msgid "Low"
msgstr "Madal"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:568
-#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1063
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "Keskmine"
@@ -7108,25 +7113,24 @@ msgstr "Tä_htsus:"
msgid "_Web Page:"
msgstr "_Koduleht:"
-#: ../calendar/gui/dialogs/task-editor.c:112
+#: ../calendar/gui/dialogs/task-editor.c:111
msgid "_Status Details"
msgstr "_Oleku üksikasjad"
-#: ../calendar/gui/dialogs/task-editor.c:114
-#, fuzzy
+#: ../calendar/gui/dialogs/task-editor.c:113
msgid "Click to change or view the status details of the task"
msgstr "Klõpsa ülesande oleku üksikasjade vaatamiseks või muutmiseks"
-#: ../calendar/gui/dialogs/task-editor.c:122
+#: ../calendar/gui/dialogs/task-editor.c:121
#: ../composer/e-composer-actions.c:528
msgid "_Send Options"
msgstr "_Saatmise valikud"
-#: ../calendar/gui/dialogs/task-editor.c:317
+#: ../calendar/gui/dialogs/task-editor.c:316
msgid "_Task"
msgstr "_Ülesanne"
-#: ../calendar/gui/dialogs/task-editor.c:320
+#: ../calendar/gui/dialogs/task-editor.c:319
msgid "Task Details"
msgstr "Ülesande üksikasjad"
@@ -7153,17 +7157,13 @@ msgid "Categor_ies..."
msgstr "Kate_gooriad..."
#: ../calendar/gui/dialogs/task-page.glade.h:3
-msgid "De_scription:"
-msgstr "_Kirjeldus:"
+msgid "D_ue date:"
+msgstr "_Tähtaeg:"
#: ../calendar/gui/dialogs/task-page.glade.h:7
msgid "Time zone:"
msgstr "Ajavöönd:"
-#: ../calendar/gui/dialogs/task-page.glade.h:8
-msgid "_Due date:"
-msgstr "_Tähtaeg:"
-
#. Translator: Entire string is like "Pop up an alert %d days before start of appointment"
#: ../calendar/gui/e-alarm-list.c:392
#, c-format
@@ -7323,7 +7323,7 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:191
#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
#: ../calendar/gui/e-meeting-store.c:746
@@ -7331,7 +7331,7 @@ msgstr ""
msgid "Yes"
msgstr "Jah"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
@@ -7339,7 +7339,7 @@ msgid "No"
msgstr "Ei"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
#: ../calendar/gui/e-meeting-list-view.c:167
@@ -7347,43 +7347,43 @@ msgstr "Ei"
#: ../calendar/gui/e-meeting-store.c:111 ../calendar/gui/e-meeting-store.c:146
#: ../calendar/gui/e-meeting-store.c:209 ../calendar/gui/print.c:985
#: ../calendar/gui/print.c:1002 ../mail/em-utils.c:1340
-#: ../plugins/itip-formatter/itip-formatter.c:410
-#: ../plugins/itip-formatter/itip-formatter.c:2047
+#: ../plugins/itip-formatter/itip-formatter.c:409
+#: ../plugins/itip-formatter/itip-formatter.c:2046
#: ../plugins/plugin-manager/plugin-manager.c:73
#: ../widgets/misc/e-attachment-bar.c:821
#: ../widgets/misc/e-charset-picker.c:55
msgid "Unknown"
msgstr "Tundmatu"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "Korduv"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "Määratud"
-#: ../calendar/gui/e-cal-popup.c:183 ../mail/em-popup.c:417
+#: ../calendar/gui/e-cal-popup.c:183 ../mail/em-popup.c:416
msgid "Save As..."
msgstr "Salvestamine teise nimega..."
-#: ../calendar/gui/e-cal-popup.c:199 ../mail/em-format-html-display.c:2028
+#: ../calendar/gui/e-cal-popup.c:199 ../mail/em-format-html-display.c:2029
msgid "Select folder to save selected attachments..."
msgstr "Valitud manuste salvestamiseks kataloogi valimine..."
-#: ../calendar/gui/e-cal-popup.c:231 ../mail/em-popup.c:445
+#: ../calendar/gui/e-cal-popup.c:231 ../mail/em-popup.c:444
#, c-format
msgid "untitled_image.%s"
msgstr "nimetu_pilt.%s"
#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
-#: ../calendar/gui/e-calendar-view.c:1681 ../calendar/gui/e-memo-table.c:926
-#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:562 ../mail/em-popup.c:573
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
+#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "_Salvesta kui..."
-#: ../calendar/gui/e-cal-popup.c:286 ../mail/em-popup.c:563
-#: ../mail/em-popup.c:574
+#: ../calendar/gui/e-cal-popup.c:286 ../mail/em-popup.c:562
+#: ../mail/em-popup.c:573
msgid "Set as _Background"
msgstr "Säti _taustapildiks"
@@ -7391,7 +7391,7 @@ msgstr "Säti _taustapildiks"
msgid "_Save Selected"
msgstr "_Salvesta valik"
-#: ../calendar/gui/e-cal-popup.c:434 ../mail/em-popup.c:838
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "Ava programmiga %s..."
@@ -7402,7 +7402,7 @@ msgstr "* Kokkuvõte puudub *"
#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
#: ../calendar/gui/e-calendar-table.c:374
-#: ../calendar/gui/e-calendar-view.c:2224
+#: ../calendar/gui/e-calendar-view.c:2215
#, c-format
msgid "Organizer: %s <%s>"
msgstr "Korraldaja: %s <%s>"
@@ -7410,7 +7410,7 @@ msgstr "Korraldaja: %s <%s>"
#. With SunOne accounts, there may be no ':' in organiser.value
#. With SunOne accouts, there may be no ':' in organiser.value
#: ../calendar/gui/e-calendar-table.c:377
-#: ../calendar/gui/e-calendar-view.c:2228
+#: ../calendar/gui/e-calendar-view.c:2219
#, c-format
msgid "Organizer: %s"
msgstr "Korraldaja: %s"
@@ -7468,23 +7468,23 @@ msgid "100%"
msgstr "100%"
#: ../calendar/gui/e-calendar-table.c:879
-#: ../calendar/gui/e-calendar-view.c:674 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr "Valitud objektide kustutamine"
#: ../calendar/gui/e-calendar-table.c:1163
-#: ../calendar/gui/e-calendar-view.c:804 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr "Objektide uuendamine"
#: ../calendar/gui/e-calendar-table.c:1348
-#: ../calendar/gui/e-calendar-view.c:1230 ../calendar/gui/e-memo-table.c:821
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "Salvestamine teise nimega..."
#: ../calendar/gui/e-calendar-table.c:1571
-#: ../calendar/gui/e-calendar-view.c:1663
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "Uus ü_lesanne"
@@ -7493,20 +7493,20 @@ msgid "Open _Web Page"
msgstr "_Ava veebileht"
#: ../calendar/gui/e-calendar-table.c:1577
-#: ../calendar/gui/e-calendar-view.c:1666 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "_Prindi..."
#: ../calendar/gui/e-calendar-table.c:1581
-#: ../calendar/gui/e-calendar-view.c:1686 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "_Lõika"
#: ../calendar/gui/e-calendar-table.c:1583
-#: ../calendar/gui/e-calendar-view.c:1669
-#: ../calendar/gui/e-calendar-view.c:1688 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
@@ -7573,93 +7573,93 @@ msgstr "Tähtsus"
msgid "Start date"
msgstr "Alguskuupäev"
-#: ../calendar/gui/e-calendar-view.c:1349
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr "Kirjete ümbertõstmine"
-#: ../calendar/gui/e-calendar-view.c:1351
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr "Kirjete kopeerimine"
-#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "Uus _sündmus..."
-#: ../calendar/gui/e-calendar-view.c:1661
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr "_Uus kogu päeva sündmus"
-#: ../calendar/gui/e-calendar-view.c:1662
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "Uus _koosolek"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1673
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr "_Käesolev vaade"
-#: ../calendar/gui/e-calendar-view.c:1675
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "Vali _tänane kuupäev"
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "_Vali kuupäev..."
-#: ../calendar/gui/e-calendar-view.c:1682
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "_Prindi..."
-#: ../calendar/gui/e-calendar-view.c:1692
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "Kop_eeri kalendrisse..."
-#: ../calendar/gui/e-calendar-view.c:1693
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "_Tõsta kalendrisse..."
-#: ../calendar/gui/e-calendar-view.c:1694
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr "_Delegeeri koosolek..."
-#: ../calendar/gui/e-calendar-view.c:1695
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr "A_jasta koosolek..."
-#: ../calendar/gui/e-calendar-view.c:1696
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr "Edasta i_Kalendrina"
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "_Vasta"
-#: ../calendar/gui/e-calendar-view.c:1698 ../mail/em-folder-view.c:1330
-#: ../mail/em-popup.c:567 ../mail/em-popup.c:578
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
+#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "Vasta _kõigile"
-#: ../calendar/gui/e-calendar-view.c:1703
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr "Muuda seekordne sündmus _liigutatavaks"
-#: ../calendar/gui/e-calendar-view.c:1704 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr "K_ustuta seekordne sündmus"
-#: ../calendar/gui/e-calendar-view.c:1705
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr "Ku_stuta kõik sündmuse kordused"
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2244 ../calendar/gui/print.c:2508
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "Asukoht: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2278
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "Aeg: %s %s"
@@ -7698,19 +7698,19 @@ msgstr "%02i-minutiline jaotamine"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1523
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%A, %d. %B"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:767 ../calendar/gui/e-week-view.c:505
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
#: ../calendar/gui/print.c:829
msgid "am"
msgstr "el"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-week-view.c:508
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "pl"
@@ -7807,12 +7807,12 @@ msgstr "iKalendri viga"
#: ../calendar/gui/e-itip-control.c:1092 ../calendar/gui/e-itip-control.c:1108
#: ../calendar/gui/e-itip-control.c:1119 ../calendar/gui/e-itip-control.c:1136
+#: ../plugins/itip-formatter/itip-view.c:344
#: ../plugins/itip-formatter/itip-view.c:345
-#: ../plugins/itip-formatter/itip-view.c:346
+#: ../plugins/itip-formatter/itip-view.c:432
#: ../plugins/itip-formatter/itip-view.c:433
-#: ../plugins/itip-formatter/itip-view.c:434
+#: ../plugins/itip-formatter/itip-view.c:520
#: ../plugins/itip-formatter/itip-view.c:521
-#: ../plugins/itip-formatter/itip-view.c:522
msgid "An unknown person"
msgstr "Tundmatu isik"
@@ -7829,12 +7829,12 @@ msgstr ""
#: ../calendar/gui/e-meeting-list-view.c:203
#: ../calendar/gui/e-meeting-store.c:173 ../calendar/gui/e-meeting-store.c:196
#: ../calendar/gui/itip-utils.c:664
-#: ../plugins/itip-formatter/itip-formatter.c:2035
+#: ../plugins/itip-formatter/itip-formatter.c:2034
msgid "Accepted"
msgstr "Nõusolek antud"
#: ../calendar/gui/e-itip-control.c:1195 ../calendar/gui/itip-utils.c:667
-#: ../plugins/itip-formatter/itip-formatter.c:2038
+#: ../plugins/itip-formatter/itip-formatter.c:2037
msgid "Tentatively Accepted"
msgstr "Proovinõusolek antud"
@@ -7842,7 +7842,7 @@ msgstr "Proovinõusolek antud"
#: ../calendar/gui/e-meeting-list-view.c:204
#: ../calendar/gui/e-meeting-store.c:175 ../calendar/gui/e-meeting-store.c:198
#: ../calendar/gui/itip-utils.c:670 ../calendar/gui/itip-utils.c:699
-#: ../plugins/itip-formatter/itip-formatter.c:2041
+#: ../plugins/itip-formatter/itip-formatter.c:2040
msgid "Declined"
msgstr "Tagasi lükatud"
@@ -8061,7 +8061,7 @@ msgid "Attendee status updated\n"
msgstr "Osaleja olek värskendatud\n"
#: ../calendar/gui/e-itip-control.c:2080
-#: ../plugins/itip-formatter/itip-formatter.c:1254
+#: ../plugins/itip-formatter/itip-formatter.c:1253
msgid "Attendee status can not be updated because the item no longer exists"
msgstr ""
"Osaleja olekut ei olnud võimailk uuendada, kuna objekti pole enam olemas"
@@ -8220,7 +8220,7 @@ msgstr "Katseline"
#: ../calendar/gui/e-meeting-list-view.c:206
#: ../calendar/gui/e-meeting-store.c:179 ../calendar/gui/e-meeting-store.c:202
#: ../calendar/gui/itip-utils.c:673
-#: ../plugins/itip-formatter/itip-formatter.c:2044
+#: ../plugins/itip-formatter/itip-formatter.c:2043
msgid "Delegated"
msgstr "Delegeeritud"
@@ -8358,7 +8358,7 @@ msgid "Click to add a memo"
msgstr "Märkme lisamiseks klõpsa siia"
#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
-#: ../calendar/gui/gnome-cal.c:2864
+#: ../calendar/gui/gnome-cal.c:2960
#, c-format
msgid ""
"Error on %s:\n"
@@ -8397,7 +8397,7 @@ msgstr "Ülesannete lõpetamine..."
msgid "Expunging"
msgstr "Puhastamine"
-#: ../calendar/gui/e-timezone-entry.c:130
+#: ../calendar/gui/e-timezone-entry.c:129
msgid "Select Timezone"
msgstr "Ajavööndi valimine"
@@ -8408,43 +8408,39 @@ msgstr "Ajavööndi valimine"
msgid "%d %B"
msgstr "%d. %B"
-#: ../calendar/gui/gnome-cal.c:830
-msgid "Updating query"
-msgstr "Päringu uuendamine"
-
-#: ../calendar/gui/gnome-cal.c:2501
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr "_Kohandatud vaade"
-#: ../calendar/gui/gnome-cal.c:2502
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr "_Salvesta kohandatud vaade"
-#: ../calendar/gui/gnome-cal.c:2507
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr "_Kirjelda vaateid..."
-#: ../calendar/gui/gnome-cal.c:2688
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "Sündmuste laadimine asukohast %s"
-#: ../calendar/gui/gnome-cal.c:2707
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "Ülesannete laadimine asukohast %s"
-#: ../calendar/gui/gnome-cal.c:2716
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "Märkmete laadimine asukohast %s"
-#: ../calendar/gui/gnome-cal.c:2823
+#: ../calendar/gui/gnome-cal.c:2919
#, c-format
msgid "Opening %s"
msgstr "%s avamine"
-#: ../calendar/gui/gnome-cal.c:3779
+#: ../calendar/gui/gnome-cal.c:3873
msgid "Purging"
msgstr "Puhastamine"
@@ -8558,78 +8554,78 @@ msgstr "iKalendri info"
msgid "You must be an attendee of the event."
msgstr "Sa pead ise olema sündmusest osavõtja."
-#: ../calendar/gui/memos-component.c:465
+#: ../calendar/gui/memos-component.c:464
msgid "_New Memo List"
msgstr "_Uus märkmeloend"
-#: ../calendar/gui/memos-component.c:545
+#: ../calendar/gui/memos-component.c:544
#, c-format
msgid "%d memo"
msgid_plural "%d memos"
msgstr[0] "%d märge"
msgstr[1] "%d märget"
-#: ../calendar/gui/memos-component.c:547 ../calendar/gui/tasks-component.c:538
+#: ../calendar/gui/memos-component.c:546 ../calendar/gui/tasks-component.c:537
#, c-format
msgid ", %d selected"
msgid_plural ", %d selected"
msgstr[0] ", %d valitud"
msgstr[1] ", %d valitud"
-#: ../calendar/gui/memos-component.c:594
+#: ../calendar/gui/memos-component.c:593
msgid "Failed upgrading memos."
msgstr "Tõrge märkmete uuendamisel."
-#: ../calendar/gui/memos-component.c:954
+#: ../calendar/gui/memos-component.c:953
#, c-format
msgid "Unable to open the memo list '%s' for creating events and meetings"
msgstr ""
"Märkmeloendit '%s' pole võimalik sündmuste ja koosolekute loomiseks avada"
-#: ../calendar/gui/memos-component.c:967
+#: ../calendar/gui/memos-component.c:966
msgid "There is no calendar available for creating memos"
msgstr "Märkmete loomiseks pole ühtegi kalendrit saadaval"
-#: ../calendar/gui/memos-component.c:1077
+#: ../calendar/gui/memos-component.c:1076
msgid "Memo Source Selector"
msgstr "Märkmete allika valija"
-#: ../calendar/gui/memos-component.c:1260
+#: ../calendar/gui/memos-component.c:1259
msgid "New memo"
msgstr "Uus märge"
-#: ../calendar/gui/memos-component.c:1261
+#: ../calendar/gui/memos-component.c:1260
msgctxt "New"
msgid "Mem_o"
msgstr "Mär_ge"
-#: ../calendar/gui/memos-component.c:1262
+#: ../calendar/gui/memos-component.c:1261
msgid "Create a new memo"
msgstr "Uue märkme loomine"
-#: ../calendar/gui/memos-component.c:1268
+#: ../calendar/gui/memos-component.c:1267
msgid "New shared memo"
msgstr "Uus jagatud märge"
-#: ../calendar/gui/memos-component.c:1269
+#: ../calendar/gui/memos-component.c:1268
msgctxt "New"
msgid "_Shared memo"
msgstr "_Jagatud märge"
-#: ../calendar/gui/memos-component.c:1270
+#: ../calendar/gui/memos-component.c:1269
msgid "Create a shared new memo"
msgstr "Uue jagatud märkme loomine"
-#: ../calendar/gui/memos-component.c:1276
+#: ../calendar/gui/memos-component.c:1275
msgid "New memo list"
msgstr "Uus märkmeloend"
-#: ../calendar/gui/memos-component.c:1277
+#: ../calendar/gui/memos-component.c:1276
msgctxt "New"
msgid "Memo li_st"
msgstr "_Märkmeloend"
-#: ../calendar/gui/memos-component.c:1278
+#: ../calendar/gui/memos-component.c:1277
msgid "Create a new memo list"
msgstr "Uue märkmeloendi loomine"
@@ -8896,72 +8892,72 @@ msgstr "Kontaktid:"
msgid "Upcoming Appointments"
msgstr "Saabuvad sündmused"
-#: ../calendar/gui/tasks-component.c:456
+#: ../calendar/gui/tasks-component.c:455
msgid "_New Task List"
msgstr "Uus ü_lesandeloend"
-#: ../calendar/gui/tasks-component.c:536
+#: ../calendar/gui/tasks-component.c:535
#, c-format
msgid "%d task"
msgid_plural "%d tasks"
msgstr[0] "%d ülesanne"
msgstr[1] "%d ülesannet"
-#: ../calendar/gui/tasks-component.c:585
+#: ../calendar/gui/tasks-component.c:584
msgid "Failed upgrading tasks."
msgstr "Tõrge ülesannete uuendamisel."
-#: ../calendar/gui/tasks-component.c:942
+#: ../calendar/gui/tasks-component.c:941
#, c-format
msgid "Unable to open the task list '%s' for creating events and meetings"
msgstr ""
"Ülesannete loendit '%s' pole võimalik sündmuste ja koosolekute loomiseks "
"avada"
-#: ../calendar/gui/tasks-component.c:955
+#: ../calendar/gui/tasks-component.c:954
msgid "There is no calendar available for creating tasks"
msgstr "Ülesannete loomiseks pole ühtegi kalendrit saadaval"
-#: ../calendar/gui/tasks-component.c:1066
+#: ../calendar/gui/tasks-component.c:1065
msgid "Task Source Selector"
msgstr "Ülesannete allika valija"
-#: ../calendar/gui/tasks-component.c:1325
+#: ../calendar/gui/tasks-component.c:1324
msgid "New task"
msgstr "Uus ülesanne"
-#: ../calendar/gui/tasks-component.c:1326
+#: ../calendar/gui/tasks-component.c:1325
msgctxt "New"
msgid "_Task"
msgstr "_Ülesanne"
-#: ../calendar/gui/tasks-component.c:1327
+#: ../calendar/gui/tasks-component.c:1326
msgid "Create a new task"
msgstr "Uue ülesande loomine"
-#: ../calendar/gui/tasks-component.c:1333
+#: ../calendar/gui/tasks-component.c:1332
msgid "New assigned task"
msgstr "Uus omistatud ülesanne"
-#: ../calendar/gui/tasks-component.c:1334
+#: ../calendar/gui/tasks-component.c:1333
msgctxt "New"
msgid "Assigne_d Task"
msgstr "_Omistatud ülesanne"
-#: ../calendar/gui/tasks-component.c:1335
+#: ../calendar/gui/tasks-component.c:1334
msgid "Create a new assigned task"
msgstr "Uue omistatud ülesande loomine"
-#: ../calendar/gui/tasks-component.c:1341
+#: ../calendar/gui/tasks-component.c:1340
msgid "New task list"
msgstr "Uus ülesandeloend"
-#: ../calendar/gui/tasks-component.c:1342
+#: ../calendar/gui/tasks-component.c:1341
msgctxt "New"
msgid "Tas_k list"
msgstr "Ü_lesandeloend"
-#: ../calendar/gui/tasks-component.c:1343
+#: ../calendar/gui/tasks-component.c:1342
msgid "Create a new task list"
msgstr "Uue ülesandeloendi loomine"
@@ -9011,7 +9007,7 @@ msgstr "Sündmused ja koosolekud"
#: ../calendar/importers/icalendar-importer.c:331
#: ../calendar/importers/icalendar-importer.c:614
-#: ../plugins/itip-formatter/itip-formatter.c:1578
+#: ../plugins/itip-formatter/itip-formatter.c:1577
msgid "Opening calendar"
msgstr "Kalendri avamine"
@@ -10839,18 +10835,18 @@ msgstr "Klõpsa siia, et valida kaustad kuhu postitada"
msgid "Recent _Documents"
msgstr "_Hiljutised dokumendid"
-#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1559
+#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1558
msgid "Show _Attachment Bar"
msgstr "Näita _manuseriba"
-#: ../composer/e-msg-composer.c:873
+#: ../composer/e-msg-composer.c:872
msgid ""
"Cannot sign outgoing message: No signing certificate set for this account"
msgstr ""
"Väljuvat sõnumit pole võimalik signeerida: selle konto jaoks ei ole "
"signeerimissertifikaati määratud."
-#: ../composer/e-msg-composer.c:880
+#: ../composer/e-msg-composer.c:879
msgid ""
"Cannot encrypt outgoing message: No encryption certificate set for this "
"account"
@@ -10858,23 +10854,23 @@ msgstr ""
"Väljuvat sõnumit pole võimalik krüptida: selle konto jaoks ei ole "
"krüptimissertifikaati määratud."
-#: ../composer/e-msg-composer.c:1501 ../mail/em-format-html-display.c:1912
-#: ../mail/em-format-html-display.c:2402 ../mail/mail-config.glade.h:45
+#: ../composer/e-msg-composer.c:1500 ../mail/em-format-html-display.c:1913
+#: ../mail/em-format-html-display.c:2405 ../mail/mail-config.glade.h:45
#: ../mail/message-list.etspec.h:1
msgid "Attachment"
msgid_plural "Attachments"
msgstr[0] "Manus"
msgstr[1] "Manused"
-#: ../composer/e-msg-composer.c:1557
+#: ../composer/e-msg-composer.c:1556
msgid "Hide _Attachment Bar"
msgstr "Peida _manuseriba"
-#: ../composer/e-msg-composer.c:1574 ../composer/e-msg-composer.c:2781
+#: ../composer/e-msg-composer.c:1573 ../composer/e-msg-composer.c:2780
msgid "Compose Message"
msgstr "Sõnumi koostamine"
-#: ../composer/e-msg-composer.c:4056
+#: ../composer/e-msg-composer.c:4055
msgid ""
"<b>(The composer contains a non-text message body, which cannot be edited.)</"
"b>"
@@ -11135,6 +11131,10 @@ msgstr "Fail üle kirjutada?"
msgid "_Overwrite"
msgstr "_Kirjuta üle"
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "Evolutioni abiteavet pole võimalik kuvada."
+
#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "_Tähtis"
@@ -11479,6 +11479,7 @@ msgstr "sinu poolt määratud aeg"
#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "nädalat"
@@ -11882,7 +11883,7 @@ msgstr "Mängi heli"
#. Translators: "Read" as in "has been read" (em-filter-i18n.h)
#. Translators: "Read" as in "has been read" (message-tag-followup.c)
-#: ../mail/em-filter-i18n.h:53 ../mail/message-tag-followup.c:63
+#: ../mail/em-filter-i18n.h:53 ../mail/message-tag-followup.c:62
msgid "Read"
msgstr "Loetud"
@@ -11956,7 +11957,7 @@ msgstr "Seiska töötlus"
#: ../mail/em-filter-i18n.h:72 ../mail/em-format-quote.c:341
#: ../mail/em-format.c:889 ../mail/em-mailer-prefs.c:80
-#: ../mail/message-list.etspec.h:18 ../mail/message-tag-followup.c:318
+#: ../mail/message-list.etspec.h:18 ../mail/message-tag-followup.c:311
#: ../plugins/groupwise-features/properties.glade.h:7
#: ../smime/lib/e-cert.c:1132
msgid "Subject"
@@ -12015,11 +12016,11 @@ msgstr "Tähtsad sõnumid"
msgid "Messages Not Junk"
msgstr "Mitte rämpspost"
-#: ../mail/em-folder-browser.c:1153
+#: ../mail/em-folder-browser.c:1170
msgid "Account Search"
msgstr "Kontootsing"
-#: ../mail/em-folder-browser.c:1206
+#: ../mail/em-folder-browser.c:1223
msgid "All Account Search"
msgstr "Otsing kõigi kontode hulgast"
@@ -12130,12 +12131,12 @@ msgstr "Kausta %s ümbertõstmine"
msgid "Copying folder %s"
msgstr "Kausta %s kopeerimine"
-#: ../mail/em-folder-tree.c:909 ../mail/message-list.c:1955
+#: ../mail/em-folder-tree.c:909 ../mail/message-list.c:1953
#, c-format
msgid "Moving messages into folder %s"
msgstr "Sõnumite ümbertõstmine %s kausta"
-#: ../mail/em-folder-tree.c:911 ../mail/message-list.c:1957
+#: ../mail/em-folder-tree.c:911 ../mail/message-list.c:1955
#, c-format
msgid "Copying messages into folder %s"
msgstr "Sõnumite kopeerimine %s kausta"
@@ -12186,34 +12187,34 @@ msgstr ""
msgid "_Empty Trash"
msgstr "_Tühjenda prügikast"
-#: ../mail/em-folder-utils.c:103
+#: ../mail/em-folder-utils.c:102
#, c-format
msgid "Copying `%s' to `%s'"
msgstr "Kopeerimine `%s' -> `%s'"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1186
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1186
#: ../mail/em-folder-view.c:1201
#: ../mail/importers/evolution-mbox-importer.c:83
msgid "Select folder"
msgstr "Kausta valimine"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1201
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1201
msgid "C_opy"
msgstr "K_opeeri"
-#: ../mail/em-folder-utils.c:587
+#: ../mail/em-folder-utils.c:586
#: ../plugins/groupwise-features/share-folder-common.c:143
#, c-format
msgid "Creating folder `%s'"
msgstr "Kataloogi `%s' loomine"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Create folder"
msgstr "Kausta loomine"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Specify where to create the folder:"
@@ -12231,7 +12232,7 @@ msgstr "Sul pole selle sõnumi kustutamiseks piisavalt õiguseid."
msgid "_Reply to Sender"
msgstr "_Vasta saatjale"
-#: ../mail/em-folder-view.c:1331 ../mail/em-popup.c:569 ../mail/em-popup.c:580
+#: ../mail/em-folder-view.c:1331 ../mail/em-popup.c:568 ../mail/em-popup.c:579
#: ../ui/evolution-mail-message.xml.h:109
msgid "_Forward"
msgstr "_Edasta"
@@ -12412,7 +12413,7 @@ msgstr "_Järgmine"
msgid "M_atch case"
msgstr "_Tõstutundlik"
-#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:649
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr "Allkirjastamata"
@@ -12423,7 +12424,7 @@ msgid ""
msgstr ""
"See sõnum ei ole allkirjastatud. Selle sõnumi tõesust pole võimalik tagada."
-#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:650
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr "Kehtiv allkiri"
@@ -12435,7 +12436,7 @@ msgstr ""
"See sõnum on allkirjastatud ja kehtiv, seega on väga tõenäoline, et tegemist "
"on tõese sõnumiga."
-#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr "Vigane allkiri"
@@ -12447,7 +12448,7 @@ msgstr ""
"Selle sõnumi signatuuri pole võimalik verifitseerida. See võib olla sõnumi "
"kohaletoimetamise käigus asendatud."
-#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr "Signatuur kehtib, kuid saatjat pole võimalik tuvastada"
@@ -12459,7 +12460,7 @@ msgstr ""
"See sõnum on signeeritud korrektse allkirjaga, kuid selle saatjat pole "
"võimalik verifitseerida."
-#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr "Allkiri on olemas, kui vaja on ka avalikku võtit"
@@ -12471,7 +12472,7 @@ msgstr ""
"See sõnum on signeeritud allkirjaga, kuid sellele vastav avalik võti on "
"puudu."
-#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:659
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "Krüptimata"
@@ -12483,7 +12484,7 @@ msgstr ""
"See sõnum ei ole krüptitud ja seetõttu võib see interneti kaudu liikudes "
"olla kolmandatele osapooltele nähtav."
-#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:660
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr "Krüptitud, nõrgalt"
@@ -12497,7 +12498,7 @@ msgstr ""
"olema väga raske aga sugugi mitte võimatu mõistliku aja jooksul sõnumi sisu "
"näha."
-#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:661
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "Krüptitud"
@@ -12508,7 +12509,7 @@ msgid ""
msgstr ""
"See sõnum on krüptitud. Sõnumi sisu ei tohiks olla teistele iskutele loetav."
-#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:662
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr "Krüptitud, tugevalt"
@@ -12529,79 +12530,79 @@ msgstr "_Vaata sertifikaati"
msgid "This certificate is not viewable"
msgstr "See sertifikaat ei ole vaadatav"
-#: ../mail/em-format-html-display.c:1370
+#: ../mail/em-format-html-display.c:1371
msgid "Completed on %B %d, %Y, %l:%M %p"
msgstr "Lõpetatud %B %d, %Y, %l:%M %p"
-#: ../mail/em-format-html-display.c:1378
+#: ../mail/em-format-html-display.c:1379
msgid "Overdue:"
msgstr "Tähtaja ületanud:"
-#: ../mail/em-format-html-display.c:1381
+#: ../mail/em-format-html-display.c:1382
msgid "by %B %d, %Y, %l:%M %p"
msgstr "sellel ajal: %B %d, %Y, %l:%M %p"
-#: ../mail/em-format-html-display.c:1459
+#: ../mail/em-format-html-display.c:1460
msgid "_View Inline"
msgstr "_Sisekuva"
-#: ../mail/em-format-html-display.c:1460
+#: ../mail/em-format-html-display.c:1461
msgid "_Hide"
msgstr "_Peida"
-#: ../mail/em-format-html-display.c:1461
+#: ../mail/em-format-html-display.c:1462
msgid "_Fit to Width"
msgstr "_Sobita laiusega"
-#: ../mail/em-format-html-display.c:1462
+#: ../mail/em-format-html-display.c:1463
msgid "Show _Original Size"
msgstr "Näita _algset suurust"
-#: ../mail/em-format-html-display.c:1982
+#: ../mail/em-format-html-display.c:1983
msgid "Save attachment as"
msgstr "Manuse salvestamine kui"
-#: ../mail/em-format-html-display.c:1986
+#: ../mail/em-format-html-display.c:1987
msgid "Select folder to save all attachments"
msgstr "Kõikide manuste salvestamiseks kataloogi valimine"
-#: ../mail/em-format-html-display.c:2037
+#: ../mail/em-format-html-display.c:2038
msgid "_Save Selected..."
msgstr "_Salvesta valitud..."
#. Cant i put in the number of attachments here ?
-#: ../mail/em-format-html-display.c:2104
+#: ../mail/em-format-html-display.c:2105
#, c-format
msgid "%d at_tachment"
msgid_plural "%d at_tachments"
msgstr[0] "%d ma_nus"
msgstr[1] "%d ma_nust"
-#: ../mail/em-format-html-display.c:2111 ../mail/em-format-html-display.c:2200
+#: ../mail/em-format-html-display.c:2112 ../mail/em-format-html-display.c:2201
msgid "S_ave"
msgstr "Salves_ta"
-#: ../mail/em-format-html-display.c:2122
+#: ../mail/em-format-html-display.c:2123
msgid "S_ave All"
msgstr "_Salvesta kõik"
-#: ../mail/em-format-html-display.c:2196
+#: ../mail/em-format-html-display.c:2197
msgid "No Attachment"
msgstr "Manus puudub"
-#: ../mail/em-format-html-display.c:2337 ../mail/em-format-html-display.c:2375
+#: ../mail/em-format-html-display.c:2338 ../mail/em-format-html-display.c:2377
msgid "View _Unformatted"
msgstr "Vaata _vormindamata"
-#: ../mail/em-format-html-display.c:2339
+#: ../mail/em-format-html-display.c:2340
msgid "Hide _Unformatted"
msgstr "Peida _vormindamata"
-#: ../mail/em-format-html-display.c:2394
+#: ../mail/em-format-html-display.c:2397
msgid "O_pen With"
msgstr ""
-#: ../mail/em-format-html-display.c:2465
+#: ../mail/em-format-html-display.c:2468
msgid ""
"Evolution cannot render this email as it is too large to process. You can "
"view it unformatted or with an external text editor."
@@ -12615,91 +12616,91 @@ msgstr ""
msgid "Page %d of %d"
msgstr "Lehekülg %d %d-st"
-#: ../mail/em-format-html.c:503 ../mail/em-format-html.c:512
+#: ../mail/em-format-html.c:504 ../mail/em-format-html.c:513
#, c-format
msgid "Retrieving `%s'"
msgstr "`%s' tõmbamine"
-#: ../mail/em-format-html.c:924
+#: ../mail/em-format-html.c:925
msgid "Unknown external-body part."
msgstr ""
-#: ../mail/em-format-html.c:932
+#: ../mail/em-format-html.c:933
msgid "Malformed external-body part."
msgstr ""
-#: ../mail/em-format-html.c:962
+#: ../mail/em-format-html.c:963
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr "Viide FTP saidile (%s)"
-#: ../mail/em-format-html.c:973
+#: ../mail/em-format-html.c:974
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr "Viide kohalikult failile (%s) on saidis \"%s\" korrektne"
-#: ../mail/em-format-html.c:975
+#: ../mail/em-format-html.c:976
#, c-format
msgid "Pointer to local file (%s)"
msgstr "Viide kohalikule failile (%s)"
-#: ../mail/em-format-html.c:996
+#: ../mail/em-format-html.c:997
#, c-format
msgid "Pointer to remote data (%s)"
msgstr "Viide kaugandmetele (%s)"
-#: ../mail/em-format-html.c:1007
+#: ../mail/em-format-html.c:1008
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr "Viide tundmatutele välistele andmetele (tüüp \"%s\")"
-#: ../mail/em-format-html.c:1235
+#: ../mail/em-format-html.c:1236
msgid "Formatting message"
msgstr "Sõnumi vormindamine"
-#: ../mail/em-format-html.c:1409
+#: ../mail/em-format-html.c:1410
msgid "Formatting Message..."
msgstr "Sõnumi vormindamine..."
-#: ../mail/em-format-html.c:1562 ../mail/em-format-html.c:1626
-#: ../mail/em-format-html.c:1648 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1627
+#: ../mail/em-format-html.c:1649 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:887 ../mail/em-mailer-prefs.c:78
msgid "Cc"
msgstr "Koopia"
-#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1632
-#: ../mail/em-format-html.c:1651 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1564 ../mail/em-format-html.c:1633
+#: ../mail/em-format-html.c:1652 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:888 ../mail/em-mailer-prefs.c:79
msgid "Bcc"
msgstr "Pimekoopia"
#. pseudo-header
-#: ../mail/em-format-html.c:1743 ../mail/em-format-quote.c:352
+#: ../mail/em-format-html.c:1744 ../mail/em-format-quote.c:352
#: ../mail/em-mailer-prefs.c:1450
msgid "Mailer"
msgstr "Postiprogramm"
#. translators: strftime format for local time equivalent in Date header display, with day
-#: ../mail/em-format-html.c:1770
+#: ../mail/em-format-html.c:1771
msgid " (%a, %R %Z)"
msgstr " (%a, %R %Z)"
#. translators: strftime format for local time equivalent in Date header display, without day
-#: ../mail/em-format-html.c:1775
+#: ../mail/em-format-html.c:1776
msgid " (%R %Z)"
msgstr " (%R %Z)"
#. To translators: This message suggests to the receipients that the sender of the mail is
#. different from the one listed in From field.
#.
-#: ../mail/em-format-html.c:1906
+#: ../mail/em-format-html.c:1907
#, c-format
msgid "This message was sent by <b>%s</b> on behalf of <b>%s</b>"
msgstr "Selle sõnumi on <b>%2$s</b> nimel saatnud <b>%1$s</b>"
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:884
#: ../mail/em-mailer-prefs.c:75 ../mail/message-list.etspec.h:7
-#: ../mail/message-tag-followup.c:314
+#: ../mail/message-tag-followup.c:307
msgid "From"
msgstr "Saatja"
@@ -12830,11 +12831,6 @@ msgstr "Ülesanne"
msgid "Later"
msgstr "Hiljem"
-#: ../mail/em-migrate.c:1247
-#, fuzzy, c-format
-msgid "Migrating '%s':"
-msgstr "Siirdamine `%s':"
-
#: ../mail/em-migrate.c:1652
#, c-format
msgid "Unable to create new folder `%s': %s"
@@ -12883,15 +12879,14 @@ msgid "Failed to create local mail storage `%s': %s"
msgstr "Tõrge kohaliku postisalvesti `%s' loomisel: %s"
#: ../mail/em-migrate.c:2898
-#, fuzzy
msgid ""
"The summary format of the Evolution mailbox folders has been moved to sqlite "
"since Evolution 2.24.\n"
"\n"
"Please be patient while Evolution migrates your folders..."
msgstr ""
-"Evolutioni kontaktikaustade asukoht ja hierarhia on alates Evolution 1.x. "
-"versioonist muutunud.\n"
+"Evolutioni postikaustade kokkuvõtted on alates Evolutioni versioonist 2.24 "
+"sqlite vormingus.\n"
"\n"
"Palun oota kuni Evolution siirdab sinu kaustasid..."
@@ -12908,17 +12903,17 @@ msgstr ""
"Eelmisest Evolutioni paigaldusest pole võimalik sätteid lugeda, `evolution/"
"configxmldb' pole olemas või on see rikutud."
-#: ../mail/em-popup.c:565 ../mail/em-popup.c:576
+#: ../mail/em-popup.c:564 ../mail/em-popup.c:575
msgid "_Reply to sender"
msgstr "Saatjale _vastamine"
-#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
+#: ../mail/em-popup.c:565 ../mail/em-popup.c:576
#: ../ui/evolution-mail-message.xml.h:83
msgid "Reply to _List"
msgstr "Vasta _postiloendisse"
#. make it first item
-#: ../mail/em-popup.c:630 ../mail/em-popup.c:859
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "_Lisa aadressiraamatusse"
@@ -13387,16 +13382,15 @@ msgid "Load images for HTML messages over http"
msgstr "Laadi HTML sõnumite pildid üle http"
#: ../mail/evolution-mail.schemas.in.h:81
-#, fuzzy
msgid ""
"Load images for HTML messages over http(s). Possible values are: \"0\" - "
"Never load images off the net. \"1\" - Load images in messages from "
"contacts. \"2\" - Always load images off the net."
msgstr ""
"HTML-sõnumite piltide laadimine üle http(s) protokolli. Võimalikud väärtused "
-"on: 0 - Pilte ei laadita mitte kunagi võrgust alla 1 - Pildid laaditakse "
-"ainult kontaktide hulgast tulnud sõnumite puhul 2 - Pildid laaditakse alati "
-"võrgust alla."
+"on: \"0\" - Pilte ei laadita mitte kunagi võrgust alla, \"1\" - Pildid "
+"laaditakse ainult kontaktide hulgast tulnud sõnumite puhul, \"2\" - Pildid "
+"laaditakse alati võrgust alla."
#: ../mail/evolution-mail.schemas.in.h:82
msgid "Log filter actions"
@@ -13878,7 +13872,7 @@ msgstr "Berkeley postkasti vormingus kaustade importija"
msgid "Importing mailbox"
msgstr "Postkasti importimine"
-#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:515
+#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:514
#, c-format
msgid "Importing `%s'"
msgstr "'%s' importimine"
@@ -14062,7 +14056,7 @@ msgstr "Logimise tase"
msgid "Time"
msgstr "Aeg"
-#: ../mail/mail-component.c:1811 ../mail/message-list.c:2430
+#: ../mail/mail-component.c:1811 ../mail/message-list.c:2454
#: ../mail/message-list.etspec.h:10
msgid "Messages"
msgstr "Sõnumid"
@@ -14318,7 +14312,6 @@ msgid "Digitally sign o_utgoing messages (by default)"
msgstr "Väljuvate sõnumite _digitaalne allkirjastamine (vaikimisi)"
#: ../mail/mail-config.glade.h:71
-#, fuzzy
msgid "Do not format messages when text si_ze exceeds"
msgstr "Sõnumite tekstiosa ei vo_rmindata kui selle suurus ületab"
@@ -14644,6 +14637,7 @@ msgstr ""
#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "_Kasutajanimi:"
@@ -14830,7 +14824,7 @@ msgstr "Ot_sing:"
msgid "Find in Message"
msgstr "Otsing sõnumist"
-#: ../mail/mail-dialogs.glade.h:12 ../mail/message-tag-followup.c:279
+#: ../mail/mail-dialogs.glade.h:12 ../mail/message-tag-followup.c:276
msgid "Flag to Follow Up"
msgstr "Märgistamine järeltoiminguks"
@@ -14929,11 +14923,11 @@ msgstr "Sõnumi %d/%d saatmine"
msgid "Failed to send %d of %d messages"
msgstr "Tõrge sõnumi %d saatmisel (kokku %d)"
-#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:700
+#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:693
msgid "Canceled."
msgstr "Tühistatud."
-#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:702
+#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:695
msgid "Complete."
msgstr "Valmis."
@@ -15072,27 +15066,27 @@ msgstr "Konto '%s' ettevalmistamine võrguvabaks režiimiks"
msgid "Checking Service"
msgstr "Teenuse kontrollimine"
-#: ../mail/mail-send-recv.c:182
+#: ../mail/mail-send-recv.c:181
msgid "Canceling..."
msgstr "Tühistamine..."
-#: ../mail/mail-send-recv.c:385
+#: ../mail/mail-send-recv.c:383
msgid "Send & Receive Mail"
msgstr "Posti saatmine ja vastuvõtmine"
-#: ../mail/mail-send-recv.c:396
+#: ../mail/mail-send-recv.c:394
msgid "Cancel _All"
msgstr "Tühista _kõik"
-#: ../mail/mail-send-recv.c:505
+#: ../mail/mail-send-recv.c:498
msgid "Updating..."
msgstr "Uuendamine..."
-#: ../mail/mail-send-recv.c:505 ../mail/mail-send-recv.c:580
+#: ../mail/mail-send-recv.c:498 ../mail/mail-send-recv.c:573
msgid "Waiting..."
msgstr "Ootamine..."
-#: ../mail/mail-send-recv.c:806
+#: ../mail/mail-send-recv.c:799
#, c-format
msgid "Checking for new mail"
msgstr "Uute sõnumite kontroll"
@@ -15783,85 +15777,85 @@ msgstr "_Puhasta"
msgid "_Open Messages"
msgstr "_Ava sõnumid"
-#: ../mail/message-list.c:1051
+#: ../mail/message-list.c:1052
msgid "Unseen"
msgstr "Nägemata"
-#: ../mail/message-list.c:1052
+#: ../mail/message-list.c:1053
msgid "Seen"
msgstr "Nähtud"
-#: ../mail/message-list.c:1053
+#: ../mail/message-list.c:1054
msgid "Answered"
msgstr "Vastatud"
-#: ../mail/message-list.c:1054
+#: ../mail/message-list.c:1055
msgid "Forwarded"
msgstr "Edastatud"
-#: ../mail/message-list.c:1055
+#: ../mail/message-list.c:1056
msgid "Multiple Unseen Messages"
msgstr "Mitu nägemata sõnumit"
-#: ../mail/message-list.c:1056
+#: ../mail/message-list.c:1057
msgid "Multiple Messages"
msgstr "Mitu sõnumit"
-#: ../mail/message-list.c:1060
+#: ../mail/message-list.c:1061
msgid "Lowest"
msgstr "Madalaim"
-#: ../mail/message-list.c:1061
+#: ../mail/message-list.c:1062
msgid "Lower"
msgstr "Alumine"
-#: ../mail/message-list.c:1065
+#: ../mail/message-list.c:1066
msgid "Higher"
msgstr "Kõrge"
-#: ../mail/message-list.c:1066
+#: ../mail/message-list.c:1067
msgid "Highest"
msgstr "Kõrgeim"
-#: ../mail/message-list.c:1595 ../widgets/table/e-cell-date.c:55
+#: ../mail/message-list.c:1596 ../widgets/table/e-cell-date.c:55
msgid "?"
msgstr "?"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../mail/message-list.c:1602 ../plugins/itip-formatter/itip-view.c:204
+#: ../mail/message-list.c:1603 ../plugins/itip-formatter/itip-view.c:203
#: ../widgets/table/e-cell-date.c:70
msgid "Today %l:%M %p"
msgstr "Täna %l:%M %p"
-#: ../mail/message-list.c:1611 ../widgets/table/e-cell-date.c:80
+#: ../mail/message-list.c:1612 ../widgets/table/e-cell-date.c:80
msgid "Yesterday %l:%M %p"
msgstr "Eile %l:%M %p"
-#: ../mail/message-list.c:1623 ../widgets/table/e-cell-date.c:92
+#: ../mail/message-list.c:1624 ../widgets/table/e-cell-date.c:92
msgid "%a %l:%M %p"
msgstr "%a, %d. %b %Y"
-#: ../mail/message-list.c:1631 ../widgets/table/e-cell-date.c:100
+#: ../mail/message-list.c:1632 ../widgets/table/e-cell-date.c:100
msgid "%b %d %l:%M %p"
msgstr "%a, %d.%m.%Y %I:%M:%S %p"
-#: ../mail/message-list.c:1633 ../widgets/table/e-cell-date.c:102
+#: ../mail/message-list.c:1634 ../widgets/table/e-cell-date.c:102
msgid "%b %d %Y"
msgstr "%d. %b %Y"
#. there is some info why the message list is empty, let it be something useful
-#: ../mail/message-list.c:3888 ../mail/message-list.c:4324
+#: ../mail/message-list.c:3916 ../mail/message-list.c:4373
msgid "Generating message list"
msgstr "Sõnumiloendi genereerimine"
-#: ../mail/message-list.c:4179
+#: ../mail/message-list.c:4223
msgid ""
"No message satisfies your search criteria. Either clear search with Search-"
">Clear menu item or change it."
msgstr ""
-#: ../mail/message-list.c:4181
+#: ../mail/message-list.c:4225
msgid "There are no messages in this folder."
msgstr "Selles kaustas pole sõnumeid."
@@ -15894,39 +15888,39 @@ msgstr "Saadetud sõnumid"
msgid "Size"
msgstr "Suurus"
-#: ../mail/message-tag-followup.c:56
+#: ../mail/message-tag-followup.c:55
msgid "Call"
msgstr "Helista"
-#: ../mail/message-tag-followup.c:57
+#: ../mail/message-tag-followup.c:56
msgid "Do Not Forward"
msgstr "Ära edasta"
-#: ../mail/message-tag-followup.c:58
+#: ../mail/message-tag-followup.c:57
msgid "Follow-Up"
msgstr "Jälgi"
-#: ../mail/message-tag-followup.c:59
+#: ../mail/message-tag-followup.c:58
msgid "For Your Information"
msgstr "Võta teadmiseks"
-#: ../mail/message-tag-followup.c:60 ../ui/evolution-mail-message.xml.h:42
+#: ../mail/message-tag-followup.c:59 ../ui/evolution-mail-message.xml.h:42
msgid "Forward"
msgstr "Edasta"
-#: ../mail/message-tag-followup.c:61
+#: ../mail/message-tag-followup.c:60
msgid "No Response Necessary"
msgstr "Tagasiside pole tarvilik"
-#: ../mail/message-tag-followup.c:64 ../ui/evolution-mail-message.xml.h:80
+#: ../mail/message-tag-followup.c:63 ../ui/evolution-mail-message.xml.h:80
msgid "Reply"
msgstr "Vasta"
-#: ../mail/message-tag-followup.c:65 ../ui/evolution-mail-message.xml.h:81
+#: ../mail/message-tag-followup.c:64 ../ui/evolution-mail-message.xml.h:81
msgid "Reply to All"
msgstr "Vasta kõigile"
-#: ../mail/message-tag-followup.c:66
+#: ../mail/message-tag-followup.c:65
msgid "Review"
msgstr "Vaata üle"
@@ -15951,6 +15945,10 @@ msgid "Subject contains"
msgstr "Teema sisaldab"
#: ../mail/searchtypes.xml.h:6
+msgid "Subject or Recipients contains"
+msgstr "Teema või vastuvõtja sisaldab"
+
+#: ../mail/searchtypes.xml.h:7
msgid "Subject or Sender contains"
msgstr "Teema või saatja sisaldab"
@@ -16354,6 +16352,7 @@ msgstr "_URL:"
#: ../plugins/caldav/caldav-source.c:271
#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "Kasutatakse _SSL-i"
@@ -16376,6 +16375,7 @@ msgstr "Kohalike kalendrite põhitalitluse tagamine."
#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
#: ../plugins/google-account-setup/google-source.c:695
+#: ../plugins/google-account-setup/google-contacts-source.c:320
msgid "Re_fresh:"
msgstr "_Värskenda:"
@@ -16517,19 +16517,18 @@ msgstr ""
"Kalendri või aadressiraamatu vaikimisi kalendriks või aadressiraamatuks "
"märkimise funktsionaalsuse tagamine."
-#: ../plugins/email-custom-header/email-custom-header.c:562
+#: ../plugins/email-custom-header/email-custom-header.c:558
msgid "_Custom Header"
msgstr "Kohandatud _päised"
-#: ../plugins/email-custom-header/email-custom-header.c:883
-#, fuzzy
+#: ../plugins/email-custom-header/email-custom-header.c:879
msgid "Key"
-msgstr "Keenia"
+msgstr "Võti"
-#: ../plugins/email-custom-header/email-custom-header.c:894
+#: ../plugins/email-custom-header/email-custom-header.c:890
#: ../plugins/templates/templates.c:400
msgid "Values"
-msgstr ""
+msgstr "Väärtused"
#. To translators: This string is used while adding a new message header to configuration, to specifying the format of the key values
#: ../plugins/email-custom-header/email-custom-header.glade.h:2
@@ -16552,7 +16551,6 @@ msgid "Custom Header"
msgstr "Kohandatud päis"
#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:1
-#, fuzzy
msgid "List of Custom Headers"
msgstr "Kohandatud päiste nimekiri"
@@ -17004,7 +17002,7 @@ msgid "Add User:"
msgstr "Lisa kasutaja:"
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
-#: ../plugins/exchange-operations/exchange-send-options.c:413
+#: ../plugins/exchange-operations/exchange-send-options.c:408
#: ../plugins/groupwise-features/proxy.c:934
#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
@@ -17538,9 +17536,8 @@ msgid ""
msgstr ""
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:1
-#, fuzzy
msgid "Compose in _External Editor"
-msgstr "Välise redaktor abil koostamine"
+msgstr "Koostamine _välise redaktor abil"
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:2
msgid "Compose messages using an external editor"
@@ -17548,13 +17545,15 @@ msgstr "Sõnumite koostamine välise redaktor abil"
#: ../plugins/external-editor/external-editor.c:91
msgid "Command to be executed to launch the editor: "
-msgstr ""
+msgstr "Redaktori käivitamiseks kasutatav käsk: "
#: ../plugins/external-editor/external-editor.c:92
msgid ""
"For Emacs use \"xemacs\"\n"
"For VI use \"gvim\""
msgstr ""
+"Emacs'i jaoks kasuta \"xemacs\"\n"
+"VI jaoks kasuta \"gvim\""
#: ../plugins/face/face.c:58
msgid "Select a (48*48) png of size < 700bytes"
@@ -17609,9 +17608,8 @@ msgid "Google"
msgstr "Google"
#: ../plugins/google-account-setup/google-source.c:493
-#, fuzzy
msgid "Please enter user name first."
-msgstr "Palun vali mõni teine nimi."
+msgstr "Palun sisesta esmalt kasutajanimi."
#: ../plugins/google-account-setup/google-source.c:497
#, fuzzy, c-format
@@ -17626,35 +17624,21 @@ msgid ""
msgstr ""
#: ../plugins/google-account-setup/google-source.c:747
-#, fuzzy
msgid "Cal_endar:"
msgstr "Kalen_der:"
#: ../plugins/google-account-setup/google-source.c:782
-#, fuzzy
msgid "Retrieve _list"
-msgstr "`%s' tõmbamine"
+msgstr ""
-#: ../plugins/google-account-setup/google-contacts-source.c:198
+#: ../plugins/google-account-setup/google-contacts-source.c:268
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
msgid "<b>Server</b>"
msgstr "<b>Server</b>"
-#: ../plugins/google-account-setup/google-contacts-source.c:208
-msgid "Username:"
-msgstr "Kasutajanimi:"
-
-#. Translators: This is the first half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
-#: ../plugins/google-account-setup/google-contacts-source.c:233
-#, fuzzy
-msgid "Update every"
-msgstr "Päringu uuendamine"
-
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
-#, fuzzy
msgid "A plugin to setup google calendar and contacts."
-msgstr "Plugin google kalendriallikate seadistamiseks."
+msgstr "Plugin google kalendri ja kontaktide seadistamiseks."
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:2
msgid "Google sources"
@@ -18112,28 +18096,28 @@ msgstr "Plugin IMAP kontode võimaluste jaoks."
msgid "IMAP Features"
msgstr "IMAP-i võimalused"
-#: ../plugins/import-ics-attachments/icsimporter.c:78
+#: ../plugins/import-ics-attachments/icsimporter.c:77
msgid "_Import to Calendar"
msgstr "_Impordi kalendrisse"
-#: ../plugins/import-ics-attachments/icsimporter.c:83
+#: ../plugins/import-ics-attachments/icsimporter.c:82
msgid "_Import to Tasks"
msgstr "_Impordi ülesannetesse"
-#: ../plugins/import-ics-attachments/icsimporter.c:201
+#: ../plugins/import-ics-attachments/icsimporter.c:200
msgid "Import ICS"
msgstr "Impordi ICS-i"
-#: ../plugins/import-ics-attachments/icsimporter.c:224
+#: ../plugins/import-ics-attachments/icsimporter.c:223
msgid "Select Task List"
msgstr "Ülesandeloendi valimine"
-#: ../plugins/import-ics-attachments/icsimporter.c:228
+#: ../plugins/import-ics-attachments/icsimporter.c:227
msgid "Select Calendar"
msgstr "Kalendri valimine"
#: ../plugins/import-ics-attachments/icsimporter.c:259
-#: ../shell/e-shell-importer.c:700
+#: ../shell/e-shell-importer.c:698
msgid "_Import"
msgstr "_Impordi"
@@ -18189,129 +18173,129 @@ msgstr "Sünkroniseeri iPod'iga"
msgid "iPod Synchronization"
msgstr "iPod'iga sünkroniseerimine"
-#: ../plugins/itip-formatter/itip-formatter.c:444
-#: ../plugins/itip-formatter/itip-formatter.c:569
+#: ../plugins/itip-formatter/itip-formatter.c:443
+#: ../plugins/itip-formatter/itip-formatter.c:568
#, c-format
msgid "Failed to load the calendar '%s'"
msgstr "Tõrge kalendri '%s' laadimisel"
-#: ../plugins/itip-formatter/itip-formatter.c:589
+#: ../plugins/itip-formatter/itip-formatter.c:588
#, c-format
msgid "An appointment in the calendar '%s' conflicts with this meeting"
msgstr "Kalendris '%s' olev sündmus on selle kohtumisega vastuolus"
-#: ../plugins/itip-formatter/itip-formatter.c:615
+#: ../plugins/itip-formatter/itip-formatter.c:614
#, c-format
msgid "Found the appointment in the calendar '%s'"
msgstr "Sündmus leiti kalendrist '%s'"
-#: ../plugins/itip-formatter/itip-formatter.c:691
+#: ../plugins/itip-formatter/itip-formatter.c:690
msgid "Unable to find any calendars"
msgstr "Ühtegi kalendrit pole võimalik leida"
-#: ../plugins/itip-formatter/itip-formatter.c:698
+#: ../plugins/itip-formatter/itip-formatter.c:697
msgid "Unable to find this meeting in any calendar"
msgstr "Seda kohtumist pole võimalik ühestki kalendrist leida"
-#: ../plugins/itip-formatter/itip-formatter.c:702
+#: ../plugins/itip-formatter/itip-formatter.c:701
msgid "Unable to find this task in any task list"
msgstr "Seda ülesannet pole võimalik ühestki ülesannete loendist leida"
-#: ../plugins/itip-formatter/itip-formatter.c:706
+#: ../plugins/itip-formatter/itip-formatter.c:705
msgid "Unable to find this memo in any memo list"
msgstr "Seda märget pole võimalik ühestki märkmete loendist leida"
-#: ../plugins/itip-formatter/itip-formatter.c:777
+#: ../plugins/itip-formatter/itip-formatter.c:776
msgid "Searching for an existing version of this appointment"
msgstr "Selle sündumuse olemasoleva versiooni otsimine"
-#: ../plugins/itip-formatter/itip-formatter.c:946
+#: ../plugins/itip-formatter/itip-formatter.c:945
msgid "Unable to parse item"
msgstr "Kirjet pole võimalik analüüsida"
-#: ../plugins/itip-formatter/itip-formatter.c:1004
+#: ../plugins/itip-formatter/itip-formatter.c:1003
#, c-format
msgid "Unable to send item to calendar '%s'. %s"
msgstr "Kirjet pole võimalik kalendrisse '%s' saata. %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1016
+#: ../plugins/itip-formatter/itip-formatter.c:1015
#, c-format
msgid "Sent to calendar '%s' as accepted"
msgstr "Saadetud kalendrisse '%s' kui aktsepteeritud"
-#: ../plugins/itip-formatter/itip-formatter.c:1020
+#: ../plugins/itip-formatter/itip-formatter.c:1019
#, c-format
msgid "Sent to calendar '%s' as tentative"
msgstr "Saadetud kalendrisse '%s' kui katseline"
-#: ../plugins/itip-formatter/itip-formatter.c:1025
+#: ../plugins/itip-formatter/itip-formatter.c:1024
#, c-format
msgid "Sent to calendar '%s' as declined"
msgstr "Saadetud kalendrisse '%s' kui keeldutud"
-#: ../plugins/itip-formatter/itip-formatter.c:1030
+#: ../plugins/itip-formatter/itip-formatter.c:1029
#, c-format
msgid "Sent to calendar '%s' as canceled"
msgstr "Saadetud kalendrisse '%s' kui tühistatud"
-#: ../plugins/itip-formatter/itip-formatter.c:1124
+#: ../plugins/itip-formatter/itip-formatter.c:1123
#, c-format
msgid "Organizer has removed the delegate %s "
msgstr "Korraldaja eemaldas delegaadi %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1131
+#: ../plugins/itip-formatter/itip-formatter.c:1130
msgid "Sent a cancelation notice to the delegate"
msgstr "Delegaadile saadeti tühistusteade"
-#: ../plugins/itip-formatter/itip-formatter.c:1133
+#: ../plugins/itip-formatter/itip-formatter.c:1132
msgid "Could not send the cancelation notice to the delegate"
msgstr "Delegaadile pole võimalik tühistusteadet saata"
-#: ../plugins/itip-formatter/itip-formatter.c:1219
+#: ../plugins/itip-formatter/itip-formatter.c:1218
msgid "Attendee status could not be updated because the status is invalid"
msgstr "Osaleja olekut pole võimalik uuendada, kuna selle olek on vigane"
-#: ../plugins/itip-formatter/itip-formatter.c:1246
+#: ../plugins/itip-formatter/itip-formatter.c:1245
#, c-format
msgid "Unable to update attendee. %s"
msgstr "Osalejat pole võimalik uuendada. %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1250
+#: ../plugins/itip-formatter/itip-formatter.c:1249
msgid "Attendee status updated"
msgstr "Osaleja olek uuendatud"
-#: ../plugins/itip-formatter/itip-formatter.c:1276
+#: ../plugins/itip-formatter/itip-formatter.c:1275
msgid "Meeting information sent"
msgstr "Koosoleku andmed on saadetud"
-#: ../plugins/itip-formatter/itip-formatter.c:1279
+#: ../plugins/itip-formatter/itip-formatter.c:1278
msgid "Task information sent"
msgstr "Ülesande andmed on saadetud"
-#: ../plugins/itip-formatter/itip-formatter.c:1282
+#: ../plugins/itip-formatter/itip-formatter.c:1281
msgid "Memo information sent"
msgstr "Märkme andmed on saadetud"
-#: ../plugins/itip-formatter/itip-formatter.c:1291
+#: ../plugins/itip-formatter/itip-formatter.c:1290
msgid "Unable to send meeting information, the meeting does not exist"
msgstr ""
"Koosoleku kohta pole võimalik andmeid saata kuna koosolekut pole olemas"
-#: ../plugins/itip-formatter/itip-formatter.c:1294
+#: ../plugins/itip-formatter/itip-formatter.c:1293
msgid "Unable to send task information, the task does not exist"
msgstr "Ülesande kohta pole võimalik andmeid saata kuna ülesannet pole olemas"
-#: ../plugins/itip-formatter/itip-formatter.c:1297
+#: ../plugins/itip-formatter/itip-formatter.c:1296
msgid "Unable to send memo information, the memo does not exist"
msgstr "Märkme kohta pole võimalik andmeid saata kuna märget pole olemas"
-#: ../plugins/itip-formatter/itip-formatter.c:1366
-#: ../plugins/itip-formatter/itip-formatter.c:1377
+#: ../plugins/itip-formatter/itip-formatter.c:1365
+#: ../plugins/itip-formatter/itip-formatter.c:1376
msgid "The calendar attached is not valid"
msgstr "Manuses olev kalender on vigane"
-#: ../plugins/itip-formatter/itip-formatter.c:1367
-#: ../plugins/itip-formatter/itip-formatter.c:1378
+#: ../plugins/itip-formatter/itip-formatter.c:1366
+#: ../plugins/itip-formatter/itip-formatter.c:1377
msgid ""
"The message claims to contain a calendar, but the calendar is not a valid "
"iCalendar."
@@ -18319,15 +18303,15 @@ msgstr ""
"Sõnum sisaldab kalendrit, kuid kalender see kalender pole korrektses "
"iCalendar vormingus."
-#: ../plugins/itip-formatter/itip-formatter.c:1418
-#: ../plugins/itip-formatter/itip-formatter.c:1436
-#: ../plugins/itip-formatter/itip-formatter.c:1518
+#: ../plugins/itip-formatter/itip-formatter.c:1417
+#: ../plugins/itip-formatter/itip-formatter.c:1435
+#: ../plugins/itip-formatter/itip-formatter.c:1517
msgid "The item in the calendar is not valid"
msgstr "Kalendris olev kirje on vigane"
-#: ../plugins/itip-formatter/itip-formatter.c:1419
-#: ../plugins/itip-formatter/itip-formatter.c:1437
-#: ../plugins/itip-formatter/itip-formatter.c:1519
+#: ../plugins/itip-formatter/itip-formatter.c:1418
+#: ../plugins/itip-formatter/itip-formatter.c:1436
+#: ../plugins/itip-formatter/itip-formatter.c:1518
msgid ""
"The message does contain a calendar, but the calendar contains no events, "
"tasks or free/busy information"
@@ -18335,11 +18319,11 @@ msgstr ""
"Sõnum sisaldab kalendrit, kuid kalender ei sisalda sündmusi, ülesandeid ega "
"vaba/hõivatud andmeid"
-#: ../plugins/itip-formatter/itip-formatter.c:1448
+#: ../plugins/itip-formatter/itip-formatter.c:1447
msgid "The calendar attached contains multiple items"
msgstr "Manuseks olev kalender sisaldab mitut kirjet"
-#: ../plugins/itip-formatter/itip-formatter.c:1449
+#: ../plugins/itip-formatter/itip-formatter.c:1448
msgid ""
"To process all of these items, the file should be saved and the calendar "
"imported"
@@ -18347,451 +18331,451 @@ msgstr ""
"Kõikide nende kirjete töötlemiseks peab fail olema salvestatud ja kalender "
"imporditud"
-#: ../plugins/itip-formatter/itip-formatter.c:2149
+#: ../plugins/itip-formatter/itip-formatter.c:2148
msgid "This meeting recurs"
msgstr "See koosolek kordub"
-#: ../plugins/itip-formatter/itip-formatter.c:2152
+#: ../plugins/itip-formatter/itip-formatter.c:2151
msgid "This task recurs"
msgstr "See ülesanne kordub"
-#: ../plugins/itip-formatter/itip-formatter.c:2155
+#: ../plugins/itip-formatter/itip-formatter.c:2154
msgid "This memo recurs"
msgstr "See märge kordub"
#. Delete message after acting
#. FIXME Need a schema for this
-#: ../plugins/itip-formatter/itip-formatter.c:2384
+#: ../plugins/itip-formatter/itip-formatter.c:2383
msgid "_Delete message after acting"
msgstr "Pärast tegevuse läbiviimist sõnum _kustutatakse"
-#: ../plugins/itip-formatter/itip-formatter.c:2394
-#: ../plugins/itip-formatter/itip-formatter.c:2426
+#: ../plugins/itip-formatter/itip-formatter.c:2393
+#: ../plugins/itip-formatter/itip-formatter.c:2425
msgid "Conflict Search"
msgstr "Vastuolude otsimine"
#. Source selector
-#: ../plugins/itip-formatter/itip-formatter.c:2409
+#: ../plugins/itip-formatter/itip-formatter.c:2408
msgid "Select the calendars to search for meeting conflicts"
msgstr "Vali kalendrid, millest tuleb koosolekute vastuolusid otsida"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:190 ../ui/evolution-calendar.xml.h:34
+#: ../plugins/itip-formatter/itip-view.c:189 ../ui/evolution-calendar.xml.h:34
#: ../widgets/misc/e-cell-date-edit.c:299
msgid "Today"
msgstr "Täna"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:195
+#: ../plugins/itip-formatter/itip-view.c:194
msgid "Today %H:%M"
msgstr "Täna %H:%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:199
+#: ../plugins/itip-formatter/itip-view.c:198
msgid "Today %H:%M:%S"
msgstr "Täna %H:%M:%S"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:208
+#: ../plugins/itip-formatter/itip-view.c:207
msgid "Today %l:%M:%S %p"
msgstr "Täna %l:%M:%S %p"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:218
+#: ../plugins/itip-formatter/itip-view.c:217
msgid "Tomorrow"
msgstr "Homme"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:223
+#: ../plugins/itip-formatter/itip-view.c:222
msgid "Tomorrow %H:%M"
msgstr "Homme kell %H:%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:227
+#: ../plugins/itip-formatter/itip-view.c:226
msgid "Tomorrow %H:%M:%S"
msgstr "Homme kell %H:%M:%S"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:232
+#: ../plugins/itip-formatter/itip-view.c:231
msgid "Tomorrow %l:%M %p"
msgstr "Homme kell %l:%M %p"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:236
+#: ../plugins/itip-formatter/itip-view.c:235
msgid "Tomorrow %l:%M:%S %p"
msgstr "Homme kell %l:%M:%S %p"
#. strftime format of a weekday.
-#: ../plugins/itip-formatter/itip-view.c:255
+#: ../plugins/itip-formatter/itip-view.c:254
#, c-format
msgid "%A"
msgstr "%A"
#. strftime format of a weekday and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:260
+#: ../plugins/itip-formatter/itip-view.c:259
msgid "%A %H:%M"
msgstr "%A %H:%M"
#. strftime format of a weekday and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:264
+#: ../plugins/itip-formatter/itip-view.c:263
msgid "%A %H:%M:%S"
msgstr "%A %H:%M:%S"
#. strftime format of a weekday and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:269
+#: ../plugins/itip-formatter/itip-view.c:268
msgid "%A %l:%M %p"
msgstr "%A, %l:%M %p"
#. strftime format of a weekday and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:273
+#: ../plugins/itip-formatter/itip-view.c:272
msgid "%A %l:%M:%S %p"
msgstr "%A %l:%M:%S %p"
#. strftime format of a weekday and a date
#. without a year.
-#: ../plugins/itip-formatter/itip-view.c:282
+#: ../plugins/itip-formatter/itip-view.c:281
msgid "%A, %B %e"
msgstr "%A, %e. %B"
#. strftime format of a weekday, a date
#. without a year and a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:288
+#: ../plugins/itip-formatter/itip-view.c:287
msgid "%A, %B %e %H:%M"
msgstr "%A, %e. %B %H:%M"
#. strftime format of a weekday, a date without a year
#. and a time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:292
+#: ../plugins/itip-formatter/itip-view.c:291
msgid "%A, %B %e %H:%M:%S"
msgstr "%A, %e. %B %H:%M:%S"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:297
+#: ../plugins/itip-formatter/itip-view.c:296
msgid "%A, %B %e %l:%M %p"
msgstr "%A, %e. %B %l:%M %p"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:301
+#: ../plugins/itip-formatter/itip-view.c:300
msgid "%A, %B %e %l:%M:%S %p"
msgstr "%A, %e. %B %l:%M:%S %p"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:307
+#: ../plugins/itip-formatter/itip-view.c:306
msgid "%A, %B %e, %Y"
msgstr "%A, %e. %B %Y"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:312
+#: ../plugins/itip-formatter/itip-view.c:311
msgid "%A, %B %e, %Y %H:%M"
msgstr "%A, %e. %B %Y %H:%M"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:316
+#: ../plugins/itip-formatter/itip-view.c:315
msgid "%A, %B %e, %Y %H:%M:%S"
msgstr "%a, %e. %B %Y %H:%M:%S"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:321
+#: ../plugins/itip-formatter/itip-view.c:320
msgid "%A, %B %e, %Y %l:%M %p"
msgstr "%A, %e. %B %Y, %l:%M %p"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:325
+#: ../plugins/itip-formatter/itip-view.c:324
msgid "%A, %B %e, %Y %l:%M:%S %p"
msgstr "%A, %e. %B %Y, %l:%M%S %p"
-#: ../plugins/itip-formatter/itip-view.c:350
-#: ../plugins/itip-formatter/itip-view.c:438
-#: ../plugins/itip-formatter/itip-view.c:526
+#: ../plugins/itip-formatter/itip-view.c:349
+#: ../plugins/itip-formatter/itip-view.c:437
+#: ../plugins/itip-formatter/itip-view.c:525
#, c-format
msgid "Please respond on behalf of <b>%s</b>"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:352
-#: ../plugins/itip-formatter/itip-view.c:440
-#: ../plugins/itip-formatter/itip-view.c:528
+#: ../plugins/itip-formatter/itip-view.c:351
+#: ../plugins/itip-formatter/itip-view.c:439
+#: ../plugins/itip-formatter/itip-view.c:527
#, c-format
msgid "Received on behalf of <b>%s</b>"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:357
+#: ../plugins/itip-formatter/itip-view.c:356
#, c-format
msgid "<b>%s</b> through %s has published the following meeting information:"
msgstr "<b>%s</b> avaldas %s kaudu teabe järgneva koosoleku kohta:"
-#: ../plugins/itip-formatter/itip-view.c:359
+#: ../plugins/itip-formatter/itip-view.c:358
#, c-format
msgid "<b>%s</b> has published the following meeting information:"
msgstr "<b>%s</b> avaldas järgneva koosoleku teabe:"
-#: ../plugins/itip-formatter/itip-view.c:364
+#: ../plugins/itip-formatter/itip-view.c:363
#, c-format
msgid "<b>%s</b> has delegated the following meeting to you:"
msgstr "<b>%s</b> delegeeris järgneva koosoleku sulle:"
-#: ../plugins/itip-formatter/itip-view.c:367
+#: ../plugins/itip-formatter/itip-view.c:366
#, c-format
msgid "<b>%s</b> through %s requests your presence at the following meeting:"
msgstr "<b>%s</b> taotleb %s kaudu, et sa osaleksid järgneval koosolekul:"
-#: ../plugins/itip-formatter/itip-view.c:369
+#: ../plugins/itip-formatter/itip-view.c:368
#, c-format
msgid "<b>%s</b> requests your presence at the following meeting:"
msgstr "<b>%s</b> taotleb, et sa osaleksid järgneval koosolekul:"
-#: ../plugins/itip-formatter/itip-view.c:375
+#: ../plugins/itip-formatter/itip-view.c:374
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing meeting:"
msgstr "<b>%s</b> soovib %s kaudu lisada olemasolevale koosolekule:"
-#: ../plugins/itip-formatter/itip-view.c:377
+#: ../plugins/itip-formatter/itip-view.c:376
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting:"
msgstr "<b>%s</b> soovib lisada olemasolevale koosolekule:"
-#: ../plugins/itip-formatter/itip-view.c:381
+#: ../plugins/itip-formatter/itip-view.c:380
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
"following meeting:"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:383
+#: ../plugins/itip-formatter/itip-view.c:382
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following meeting:"
msgstr "<b>%s</b> soovib saada värskeimat teavet järgneva koosoleku kohta:"
-#: ../plugins/itip-formatter/itip-view.c:387
+#: ../plugins/itip-formatter/itip-view.c:386
#, c-format
msgid "<b>%s</b> through %s has sent back the following meeting response:"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:389
+#: ../plugins/itip-formatter/itip-view.c:388
#, c-format
msgid "<b>%s</b> has sent back the following meeting response:"
msgstr "<b>%s</b> saatis järgneva koosoleku tagasi:"
-#: ../plugins/itip-formatter/itip-view.c:393
+#: ../plugins/itip-formatter/itip-view.c:392
#, c-format
msgid "<b>%s</b> through %s has canceled the following meeting:"
msgstr "<b>%s</b> tühistas %s kaudu järgneva koosoleku:"
-#: ../plugins/itip-formatter/itip-view.c:395
+#: ../plugins/itip-formatter/itip-view.c:394
#, c-format
msgid "<b>%s</b> has canceled the following meeting."
msgstr "<b>%s</b> tühistas järgneva koosoleku."
-#: ../plugins/itip-formatter/itip-view.c:399
+#: ../plugins/itip-formatter/itip-view.c:398
#, c-format
msgid "<b>%s</b> through %s has proposed the following meeting changes."
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:401
+#: ../plugins/itip-formatter/itip-view.c:400
#, c-format
msgid "<b>%s</b> has proposed the following meeting changes."
msgstr "<b>%s</b> esitas järgnevad koosoleku muudatused."
-#: ../plugins/itip-formatter/itip-view.c:405
+#: ../plugins/itip-formatter/itip-view.c:404
#, c-format
msgid "<b>%s</b> through %s has declined the following meeting changes:"
msgstr "<b>%s</b> tühistas %s kaudu järgnevad koosolekumuutused:"
-#: ../plugins/itip-formatter/itip-view.c:407
+#: ../plugins/itip-formatter/itip-view.c:406
#, c-format
msgid "<b>%s</b> has declined the following meeting changes."
msgstr "<b>%s</b> keeldus järgnevatest koosoleku muudatusest."
-#: ../plugins/itip-formatter/itip-view.c:445
+#: ../plugins/itip-formatter/itip-view.c:444
#, c-format
msgid "<b>%s</b> through %s has published the following task:"
msgstr "<b>%s</b> avaldas %s kaudu järgneva ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:447
+#: ../plugins/itip-formatter/itip-view.c:446
#, c-format
msgid "<b>%s</b> has published the following task:"
msgstr "<b>%s</b> avaldas järgmise ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:452
+#: ../plugins/itip-formatter/itip-view.c:451
#, c-format
msgid "<b>%s</b> requests the assignment of %s to the following task:"
msgstr "<b>%s</b> taotleb %s määramist järgneva ülesande täitjaks:"
-#: ../plugins/itip-formatter/itip-view.c:455
+#: ../plugins/itip-formatter/itip-view.c:454
#, c-format
msgid "<b>%s</b> through %s has assigned you a task:"
msgstr "<b>%s</b> määras %s kaudu sulle ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:457
+#: ../plugins/itip-formatter/itip-view.c:456
#, c-format
msgid "<b>%s</b> has assigned you a task:"
msgstr "<b>%s</b> määras sulle ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:463
+#: ../plugins/itip-formatter/itip-view.c:462
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing task:"
msgstr "<b>%s</b> soovib %s kaudu lisada olemasolevale ülesandele:"
-#: ../plugins/itip-formatter/itip-view.c:465
+#: ../plugins/itip-formatter/itip-view.c:464
#, c-format
msgid "<b>%s</b> wishes to add to an existing task:"
msgstr "<b>%s</b> soovib lisada olemasolevale ülesandele:"
-#: ../plugins/itip-formatter/itip-view.c:469
+#: ../plugins/itip-formatter/itip-view.c:468
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
"following assigned task:"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:471
+#: ../plugins/itip-formatter/itip-view.c:470
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following "
"assigned task:"
msgstr "<b>%s</b> soovib saada värskeimat infot järgneva ülesande kohta:"
-#: ../plugins/itip-formatter/itip-view.c:475
+#: ../plugins/itip-formatter/itip-view.c:474
#, c-format
msgid ""
"<b>%s</b> through %s has sent back the following assigned task response:"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:477
+#: ../plugins/itip-formatter/itip-view.c:476
#, c-format
msgid "<b>%s</b> has sent back the following assigned task response:"
msgstr "<b>%s</b> saatis järgneva määratud ülesande vastuse tagasi:"
-#: ../plugins/itip-formatter/itip-view.c:481
+#: ../plugins/itip-formatter/itip-view.c:480
#, c-format
msgid "<b>%s</b> through %s has canceled the following assigned task:"
msgstr "<b>%s</b> tühistas %s kaudu järgneva määratud ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:483
+#: ../plugins/itip-formatter/itip-view.c:482
#, c-format
msgid "<b>%s</b> has canceled the following assigned task:"
msgstr "<b>%s</b> tühistas järgneva määratud ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:487
+#: ../plugins/itip-formatter/itip-view.c:486
#, c-format
msgid ""
"<b>%s</b> through %s has proposed the following task assignment changes:"
msgstr ""
-#: ../plugins/itip-formatter/itip-view.c:489
+#: ../plugins/itip-formatter/itip-view.c:488
#, c-format
msgid "<b>%s</b> has proposed the following task assignment changes:"
msgstr "<b>%s</b> esitas järgnevad muudatused määratud ülesandele:"
-#: ../plugins/itip-formatter/itip-view.c:493
+#: ../plugins/itip-formatter/itip-view.c:492
#, c-format
msgid "<b>%s</b> through %s has declined the following assigned task:"
msgstr "<b>%s</b> keeldus %s kaudu järgneva määratud ülesande:"
-#: ../plugins/itip-formatter/itip-view.c:495
+#: ../plugins/itip-formatter/itip-view.c:494
#, c-format
msgid "<b>%s</b> has declined the following assigned task:"
msgstr "<b>%s</b> keeldus järgnevast määratud ülesandest:"
-#: ../plugins/itip-formatter/itip-view.c:533
+#: ../plugins/itip-formatter/itip-view.c:532
#, c-format
msgid "<b>%s</b> through %s has published the following memo:"
msgstr "<b>%s</b> avaldas %s kaudu järgneva märkme:"
-#: ../plugins/itip-formatter/itip-view.c:535
+#: ../plugins/itip-formatter/itip-view.c:534
#, c-format
msgid "<b>%s</b> has published the following memo:"
msgstr "<b>%s</b> avaldas järgmise märkme:"
-#: ../plugins/itip-formatter/itip-view.c:540
+#: ../plugins/itip-formatter/itip-view.c:539
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing memo:"
msgstr "<b>%s</b> soovib %s kaudu lisada olemasolevale märkmele:"
-#: ../plugins/itip-formatter/itip-view.c:542
+#: ../plugins/itip-formatter/itip-view.c:541
#, c-format
msgid "<b>%s</b> wishes to add to an existing memo:"
msgstr "<b>%s</b> soovib lisada olemasolevale märkmele:"
-#: ../plugins/itip-formatter/itip-view.c:546
+#: ../plugins/itip-formatter/itip-view.c:545
#, c-format
msgid "<b>%s</b> through %s has canceled the following shared memo:"
msgstr "<b>%s</b> tühistas %s kaudu järgneva märkme:"
-#: ../plugins/itip-formatter/itip-view.c:548
+#: ../plugins/itip-formatter/itip-view.c:547
#, c-format
msgid "<b>%s</b> has canceled the following shared memo:"
msgstr "<b>%s</b> tühistas järgneva määratud märkme:"
#. Everything gets the open button
-#: ../plugins/itip-formatter/itip-view.c:819
+#: ../plugins/itip-formatter/itip-view.c:818
msgid "_Open Calendar"
msgstr "_Ava kalender"
-#: ../plugins/itip-formatter/itip-view.c:825
-#: ../plugins/itip-formatter/itip-view.c:829
-#: ../plugins/itip-formatter/itip-view.c:835
-#: ../plugins/itip-formatter/itip-view.c:852
-#: ../plugins/itip-formatter/itip-view.c:857
+#: ../plugins/itip-formatter/itip-view.c:824
+#: ../plugins/itip-formatter/itip-view.c:828
+#: ../plugins/itip-formatter/itip-view.c:834
+#: ../plugins/itip-formatter/itip-view.c:851
+#: ../plugins/itip-formatter/itip-view.c:856
msgid "_Decline"
msgstr "_Lükka tagasi"
-#: ../plugins/itip-formatter/itip-view.c:826
-#: ../plugins/itip-formatter/itip-view.c:831
-#: ../plugins/itip-formatter/itip-view.c:838
-#: ../plugins/itip-formatter/itip-view.c:854
-#: ../plugins/itip-formatter/itip-view.c:859
+#: ../plugins/itip-formatter/itip-view.c:825
+#: ../plugins/itip-formatter/itip-view.c:830
+#: ../plugins/itip-formatter/itip-view.c:837
+#: ../plugins/itip-formatter/itip-view.c:853
+#: ../plugins/itip-formatter/itip-view.c:858
msgid "_Accept"
msgstr "_Nõustu"
-#: ../plugins/itip-formatter/itip-view.c:829
+#: ../plugins/itip-formatter/itip-view.c:828
msgid "_Decline all"
msgstr "_Lükka kõik tagasi"
-#: ../plugins/itip-formatter/itip-view.c:830
+#: ../plugins/itip-formatter/itip-view.c:829
msgid "_Tentative all"
msgstr "_Määra kõik katseliseks"
-#: ../plugins/itip-formatter/itip-view.c:830
-#: ../plugins/itip-formatter/itip-view.c:836
-#: ../plugins/itip-formatter/itip-view.c:853
-#: ../plugins/itip-formatter/itip-view.c:858
+#: ../plugins/itip-formatter/itip-view.c:829
+#: ../plugins/itip-formatter/itip-view.c:835
+#: ../plugins/itip-formatter/itip-view.c:852
+#: ../plugins/itip-formatter/itip-view.c:857
msgid "_Tentative"
msgstr "_Määra katseliseks"
-#: ../plugins/itip-formatter/itip-view.c:831
+#: ../plugins/itip-formatter/itip-view.c:830
msgid "_Accept all"
msgstr "_Nõustu kõigiga"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:842
+#: ../plugins/itip-formatter/itip-view.c:841
msgid "_Send Information"
msgstr "_Saada andmed"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:846
+#: ../plugins/itip-formatter/itip-view.c:845
msgid "_Update Attendee Status"
msgstr "_Värskenda osaleja olekut"
-#: ../plugins/itip-formatter/itip-view.c:849
+#: ../plugins/itip-formatter/itip-view.c:848
msgid "_Update"
msgstr "_Uuenda"
@@ -18893,7 +18877,6 @@ msgid "Generates a D-Bus message when new mail messages arrive."
msgstr "D-Bus'i teate genereerimine uue sõnumi saabumisel."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:6
-#, fuzzy
msgid ""
"If \"true\", then beep, otherwise will play sound file when new messages "
"arrive."
@@ -18946,20 +18929,20 @@ msgid "Whether to notify new messages in Inbox folder only."
msgstr ""
"Kas teavitusi tuleb näidata ainult Sisendkausta või ka teiste kaustade kohta."
-#: ../plugins/mail-notification/mail-notification.c:255
+#: ../plugins/mail-notification/mail-notification.c:254
msgid "Generate a _D-Bus message"
msgstr "_D-Bus'i teate genereerimine"
-#: ../plugins/mail-notification/mail-notification.c:378
+#: ../plugins/mail-notification/mail-notification.c:377
msgid "Evolution's Mail Notification"
msgstr "Evolutioni sõnumiteavutus"
-#: ../plugins/mail-notification/mail-notification.c:399
+#: ../plugins/mail-notification/mail-notification.c:398
msgid "Mail Notification Properties"
msgstr "Sõnumiteavituse omadused"
#. To translators: '%d' is the number of mails recieved and '%s' is the name of the folder
-#: ../plugins/mail-notification/mail-notification.c:458
+#: ../plugins/mail-notification/mail-notification.c:457
#, c-format
msgid ""
"You have received %d new message\n"
@@ -18974,55 +18957,55 @@ msgstr[1] ""
"Sulle on %d uut sõnumit\n"
"kaustas %s."
-#: ../plugins/mail-notification/mail-notification.c:463
+#: ../plugins/mail-notification/mail-notification.c:462
#, c-format
msgid "You have received %d new message."
msgid_plural "You have received %d new messages."
msgstr[0] "Sulle on %d uus sõnum."
msgstr[1] "Sulle on %d uut sõnumit."
-#: ../plugins/mail-notification/mail-notification.c:480
-#: ../plugins/mail-notification/mail-notification.c:485
+#: ../plugins/mail-notification/mail-notification.c:479
+#: ../plugins/mail-notification/mail-notification.c:484
msgid "New email"
msgstr "Uus e-sõnum"
-#: ../plugins/mail-notification/mail-notification.c:542
+#: ../plugins/mail-notification/mail-notification.c:541
msgid "Show icon in _notification area"
msgstr "Teavitusalas kuvatakse _ikooni"
-#: ../plugins/mail-notification/mail-notification.c:545
+#: ../plugins/mail-notification/mail-notification.c:544
msgid "B_link icon in notification area"
msgstr "Teavitusala ikooni _vilgutatakse"
-#: ../plugins/mail-notification/mail-notification.c:547
+#: ../plugins/mail-notification/mail-notification.c:546
msgid "Popup _message together with the icon"
msgstr "Ikoo_niga koos kuvatakse ka sõnumit"
-#: ../plugins/mail-notification/mail-notification.c:728
+#: ../plugins/mail-notification/mail-notification.c:727
msgid "_Play sound when new messages arrive"
msgstr "Uue sõnumi saabumisel esitatakse _heli"
-#: ../plugins/mail-notification/mail-notification.c:734
+#: ../plugins/mail-notification/mail-notification.c:733
msgid "_Beep"
msgstr "_Piiksutakse"
-#: ../plugins/mail-notification/mail-notification.c:735
+#: ../plugins/mail-notification/mail-notification.c:734
msgid "Play _sound file"
msgstr "Esitatakse heli_faili"
-#: ../plugins/mail-notification/mail-notification.c:746
+#: ../plugins/mail-notification/mail-notification.c:745
msgid "Specify _filename:"
msgstr "_Faili nimi:"
-#: ../plugins/mail-notification/mail-notification.c:747
+#: ../plugins/mail-notification/mail-notification.c:746
msgid "Select sound file"
msgstr "Helifaili valimine"
-#: ../plugins/mail-notification/mail-notification.c:748
+#: ../plugins/mail-notification/mail-notification.c:747
msgid "Pl_ay"
msgstr "_Esita"
-#: ../plugins/mail-notification/mail-notification.c:805
+#: ../plugins/mail-notification/mail-notification.c:804
msgid "Notify new messages for _Inbox only"
msgstr "Uutest sõnumitest teatatakse ainult _Sisendkausta kohta"
@@ -19745,15 +19728,15 @@ msgstr ""
msgid "Setup Assistant"
msgstr "Seadistusabiline"
-#: ../plugins/startup-wizard/startup-wizard.c:84
+#: ../plugins/startup-wizard/startup-wizard.c:83
msgid "Evolution Setup Assistant"
msgstr "Evolutioni seadistusabiline"
-#: ../plugins/startup-wizard/startup-wizard.c:87
+#: ../plugins/startup-wizard/startup-wizard.c:86
msgid "Welcome"
msgstr "Tere tulemast"
-#: ../plugins/startup-wizard/startup-wizard.c:88
+#: ../plugins/startup-wizard/startup-wizard.c:87
msgid ""
"Welcome to Evolution. The next few screens will allow Evolution to connect "
"to your email accounts, and to import files from other applications. \n"
@@ -19765,29 +19748,29 @@ msgstr ""
"\n"
"Jätkamiseks klõpsa palun \"Edasi\" nuppu. "
-#: ../plugins/startup-wizard/startup-wizard.c:134
+#: ../plugins/startup-wizard/startup-wizard.c:133
msgid "Importing files"
msgstr "Failide importimine"
-#: ../plugins/startup-wizard/startup-wizard.c:136
-#: ../shell/e-shell-importer.c:144
+#: ../plugins/startup-wizard/startup-wizard.c:135
+#: ../shell/e-shell-importer.c:143
msgid "Please select the information that you would like to import:"
msgstr "Palun valige andmed, mida soovid importida:"
-#: ../plugins/startup-wizard/startup-wizard.c:151
-#: ../shell/e-shell-importer.c:397
+#: ../plugins/startup-wizard/startup-wizard.c:150
+#: ../shell/e-shell-importer.c:396
#, c-format
msgid "From %s:"
msgstr "Programmist %s:"
-#: ../plugins/startup-wizard/startup-wizard.c:231
-#: ../shell/e-shell-importer.c:508
+#: ../plugins/startup-wizard/startup-wizard.c:230
+#: ../shell/e-shell-importer.c:507
#, c-format
msgid "Importing data."
msgstr "Andmete importimine."
-#: ../plugins/startup-wizard/startup-wizard.c:233
-#: ../shell/e-shell-importer.c:522
+#: ../plugins/startup-wizard/startup-wizard.c:232
+#: ../shell/e-shell-importer.c:521
msgid "Please wait"
msgstr "Palun oota"
@@ -20165,11 +20148,11 @@ msgstr ""
"Kui soovid neid ühendusi sulgeda ja võrguvabasse\n"
"olekusse siirduda, vajuta \"Olgu\""
-#: ../shell/e-shell-importer.c:132
+#: ../shell/e-shell-importer.c:131
msgid "Choose the type of importer to run:"
msgstr "Vali, millist tüüpi importerit sa soovid kasutada:"
-#: ../shell/e-shell-importer.c:135
+#: ../shell/e-shell-importer.c:134
msgid ""
"Choose the file that you want to import into Evolution, and select what type "
"of file it is from the list.\n"
@@ -20184,11 +20167,11 @@ msgstr ""
"Kui Sa ole veendunud, et Evolution tunneb faili\n"
"ise ära, siis võid failitüübiks valida \"Automaatne\"."
-#: ../shell/e-shell-importer.c:141
+#: ../shell/e-shell-importer.c:140
msgid "Choose the destination for this import"
msgstr "Vali selle importimise sihtkoht"
-#: ../shell/e-shell-importer.c:147
+#: ../shell/e-shell-importer.c:146
msgid ""
"Evolution checked for settings to import from the following\n"
"applications: Pine, Netscape, Elm, iCalendar. No importable\n"
@@ -20200,23 +20183,23 @@ msgstr ""
"ühtegi imporditavat seadistusfaili. Kui sa soovid veel proovida,\n"
"siis vajuta \"Tagasi\" nuppu.\n"
-#: ../shell/e-shell-importer.c:285
+#: ../shell/e-shell-importer.c:284
msgid "F_ilename:"
msgstr "_Failinimi:"
-#: ../shell/e-shell-importer.c:290
+#: ../shell/e-shell-importer.c:289
msgid "Select a file"
msgstr "Faili valimine"
-#: ../shell/e-shell-importer.c:299
+#: ../shell/e-shell-importer.c:298
msgid "File _type:"
msgstr "Faili _tüüp:"
-#: ../shell/e-shell-importer.c:335
+#: ../shell/e-shell-importer.c:334
msgid "Import data and settings from _older programs"
msgstr "Andmete ja seadistuste importimine _vanematest programmidest"
-#: ../shell/e-shell-importer.c:338
+#: ../shell/e-shell-importer.c:337
msgid "Import a _single file"
msgstr "Üksiku _faili importimine"
@@ -20226,7 +20209,7 @@ msgstr "Evolutioni eelistused"
#. To translators: This is the window title and %s is the
#. component name. Most translators will want to keep it as is.
-#: ../shell/e-shell-view.c:48 ../shell/e-shell-window.c:328
+#: ../shell/e-shell-view.c:47 ../shell/e-shell-window.c:328
#, c-format
msgid "%s - Evolution"
msgstr "%s - Evolution"
@@ -20255,6 +20238,7 @@ msgstr "Bug buddy veateatamisprogrammi pole võimalik käivitada."
msgid "translator-credits"
msgstr ""
"Ilmar Kerm <ikerm@hot.ee>, 2001.\n"
+"Marek Sepp <marek.sepp@ttu.ee>, 2001, 2002.\n"
"Ivar Smolin <okul@linux.ee>, 2002, 2003, 2005-2008.\n"
"Kaarel Jõgi <kaarel@gg.ee>, 2002.\n"
"Priit Laes <amd@store20.com>, 2003-2007."
@@ -22937,11 +22921,11 @@ msgstr "Sildividin"
msgid "A widget to display in place of the usual expander label"
msgstr ""
-#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3369
+#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3391
msgid "Expander Size"
msgstr "Laiendaja suurus"
-#: ../widgets/misc/e-expander.c:222 ../widgets/table/e-tree.c:3370
+#: ../widgets/misc/e-expander.c:222 ../widgets/table/e-tree.c:3392
msgid "Size of the expander arrow"
msgstr "Laienduse noole suurus"
@@ -23016,11 +23000,11 @@ msgstr ""
"Hiirel põhinev interaktiivne kaart ajavööndi valimiseks. "
"Klaviatuurikasutajad peaksid ajavööndi valima allolevast valikukastist."
-#: ../widgets/misc/e-online-button.c:112
+#: ../widgets/misc/e-online-button.c:109
msgid "Online"
msgstr ""
-#: ../widgets/misc/e-online-button.c:113
+#: ../widgets/misc/e-online-button.c:110
msgid "The button state is online"
msgstr ""
@@ -23048,52 +23032,52 @@ msgstr ""
msgid "Column width"
msgstr "Veeru laius"
-#: ../widgets/misc/e-search-bar.c:341 ../widgets/misc/e-search-bar.c:474
-#: ../widgets/misc/e-search-bar.c:476
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Search"
msgstr "Otsing"
-#: ../widgets/misc/e-search-bar.c:341 ../widgets/misc/e-search-bar.c:474
-#: ../widgets/misc/e-search-bar.c:476
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Click here to change the search type"
msgstr "Otsinguliigi muutmiseks klõpsa siia"
-#: ../widgets/misc/e-search-bar.c:607
+#: ../widgets/misc/e-search-bar.c:606
msgid "_Search"
msgstr "_Otsing"
-#: ../widgets/misc/e-search-bar.c:613
+#: ../widgets/misc/e-search-bar.c:612
msgid "_Find Now"
msgstr "_Otsing"
-#: ../widgets/misc/e-search-bar.c:614
+#: ../widgets/misc/e-search-bar.c:613
msgid "_Clear"
msgstr "_Puhasta"
-#: ../widgets/misc/e-search-bar.c:869
+#: ../widgets/misc/e-search-bar.c:868
msgid "Item ID"
msgstr "Kirje ID"
-#: ../widgets/misc/e-search-bar.c:876 ../widgets/text/e-text.c:3565
+#: ../widgets/misc/e-search-bar.c:875 ../widgets/text/e-text.c:3565
#: ../widgets/text/e-text.c:3566
msgid "Text"
msgstr "Tekst"
#. To Translators: The "Show: " label is followed by the Quick Search Dropdown Menu where you can choose
#. to display "All Messages", "Unread Messages", "Message with 'Important' Label" and so on...
-#: ../widgets/misc/e-search-bar.c:1007
+#: ../widgets/misc/e-search-bar.c:1006
msgid "Sho_w: "
msgstr "_Kategooria: "
#. To Translators: The "Show: " label is followed by the Quick Search Text input field where one enters
#. the term to search for
-#: ../widgets/misc/e-search-bar.c:1024
+#: ../widgets/misc/e-search-bar.c:1023
msgid "Sear_ch: "
msgstr "Ot_sing: "
#. To Translators: The " in " label is part of the Quick Search Bar, example:
#. Search: | <user's_search_term> | in | Current Folder/All Accounts/Current Account
-#: ../widgets/misc/e-search-bar.c:1036
+#: ../widgets/misc/e-search-bar.c:1035
msgid " i_n "
msgstr ""
@@ -23249,19 +23233,19 @@ msgid "_When opened:"
msgstr "Kui _avatakse:"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects")
-#: ../widgets/misc/e-task-widget.c:278
+#: ../widgets/misc/e-task-widget.c:255
#, c-format
msgid "%s (...)"
msgstr "%s (...)"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects");
#. %d is a number between 0 and 100, describing the percentage of operation complete
-#: ../widgets/misc/e-task-widget.c:284
+#: ../widgets/misc/e-task-widget.c:261
#, c-format
msgid "%s (%d%% complete)"
msgstr "%s (%d%% valmis)"
-#: ../widgets/misc/e-url-entry.c:107
+#: ../widgets/misc/e-url-entry.c:106
msgid "Click here to go to URL"
msgstr "URL-i avamiseks klõpsa siin"
@@ -23485,7 +23469,7 @@ msgstr "Reavärvuste asendamine"
#: ../widgets/table/e-table-group-leaf.c:588
#: ../widgets/table/e-table-group-leaf.c:589
#: ../widgets/table/e-table-item.c:3039 ../widgets/table/e-table-item.c:3040
-#: ../widgets/table/e-tree.c:3322 ../widgets/table/e-tree.c:3323
+#: ../widgets/table/e-tree.c:3344 ../widgets/table/e-tree.c:3345
msgid "Horizontal Draw Grid"
msgstr ""
@@ -23494,7 +23478,7 @@ msgstr ""
#: ../widgets/table/e-table-group-leaf.c:595
#: ../widgets/table/e-table-group-leaf.c:596
#: ../widgets/table/e-table-item.c:3046 ../widgets/table/e-table-item.c:3047
-#: ../widgets/table/e-tree.c:3328 ../widgets/table/e-tree.c:3329
+#: ../widgets/table/e-tree.c:3350 ../widgets/table/e-tree.c:3351
msgid "Vertical Draw Grid"
msgstr ""
@@ -23503,7 +23487,7 @@ msgstr ""
#: ../widgets/table/e-table-group-leaf.c:602
#: ../widgets/table/e-table-group-leaf.c:603
#: ../widgets/table/e-table-item.c:3053 ../widgets/table/e-table-item.c:3054
-#: ../widgets/table/e-tree.c:3334 ../widgets/table/e-tree.c:3335
+#: ../widgets/table/e-tree.c:3356 ../widgets/table/e-tree.c:3357
msgid "Draw focus"
msgstr ""
@@ -23528,8 +23512,8 @@ msgstr "Valikumudel"
#: ../widgets/table/e-table-group-leaf.c:616
#: ../widgets/table/e-table-group-leaf.c:617
#: ../widgets/table/e-table-item.c:3067 ../widgets/table/e-table-item.c:3068
-#: ../widgets/table/e-table.c:3325 ../widgets/table/e-tree.c:3316
-#: ../widgets/table/e-tree.c:3317
+#: ../widgets/table/e-table.c:3325 ../widgets/table/e-tree.c:3338
+#: ../widgets/table/e-tree.c:3339
msgid "Length Threshold"
msgstr "Pikkuse lävi"
@@ -23538,8 +23522,8 @@ msgstr "Pikkuse lävi"
#: ../widgets/table/e-table-group-leaf.c:658
#: ../widgets/table/e-table-group-leaf.c:659
#: ../widgets/table/e-table-item.c:3101 ../widgets/table/e-table-item.c:3102
-#: ../widgets/table/e-table.c:3332 ../widgets/table/e-tree.c:3348
-#: ../widgets/table/e-tree.c:3349
+#: ../widgets/table/e-table.c:3332 ../widgets/table/e-tree.c:3370
+#: ../widgets/table/e-tree.c:3371
msgid "Uniform row height"
msgstr ""
@@ -23634,8 +23618,8 @@ msgstr "Tabeli mudel"
msgid "Cursor row"
msgstr "Kursori rida"
-#: ../widgets/table/e-table.c:3339 ../widgets/table/e-tree.c:3355
-#: ../widgets/table/e-tree.c:3356
+#: ../widgets/table/e-table.c:3339 ../widgets/table/e-tree.c:3377
+#: ../widgets/table/e-tree.c:3378
msgid "Always search"
msgstr ""
@@ -23643,15 +23627,15 @@ msgstr ""
msgid "Use click to add"
msgstr "Klõpsa lisamiseks"
-#: ../widgets/table/e-tree.c:3341 ../widgets/table/e-tree.c:3342
+#: ../widgets/table/e-tree.c:3363 ../widgets/table/e-tree.c:3364
msgid "ETree table adapter"
msgstr ""
-#: ../widgets/table/e-tree.c:3362
+#: ../widgets/table/e-tree.c:3384
msgid "Retro Look"
msgstr "Retrovälimus"
-#: ../widgets/table/e-tree.c:3363
+#: ../widgets/table/e-tree.c:3385
msgid "Draw lines and +/- expanders."
msgstr "Joonte ning +/- laiendajate joonistamine."
@@ -23759,6 +23743,28 @@ msgstr "Välksõnumikontekst"
msgid "Handle Popup"
msgstr ""
+#~ msgid "Migrating `%s':"
+#~ msgstr "Siirdamine `%s':"
+
+#~ msgid "_Properties..."
+#~ msgstr "_Omadused..."
+
+#~ msgid "D_escription:"
+#~ msgstr "_Kirjeldus:"
+
+#~ msgid "De_scription:"
+#~ msgstr "_Kirjeldus:"
+
+#~ msgid "Updating query"
+#~ msgstr "Päringu uuendamine"
+
+#~ msgid "Username:"
+#~ msgstr "Kasutajanimi:"
+
+#, fuzzy
+#~ msgid "Update every"
+#~ msgstr "Päringu uuendamine"
+
#~ msgid ""
#~ "'{0}' is a read-only calendar source. Change Calendar to one that can "
#~ "accept appointments."
@@ -23821,11 +23827,6 @@ msgstr ""
#~ msgid "Time Zone"
#~ msgstr "Ajavöönd"
-#~ msgid "%u byte"
-#~ msgid_plural "%u bytes"
-#~ msgstr[0] "%u bait"
-#~ msgstr[1] "%u baiti"
-
#~ msgid "%.1f KB"
#~ msgstr "%.1f KB"
diff --git a/po/gl.po b/po/gl.po
index d70122e1ae..0a4388a7b2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: evolution.HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-12 17:37+0200\n"
-"PO-Revision-Date: 2008-08-12 17:37+0200\n"
+"POT-Creation-Date: 2008-08-15 14:40+0200\n"
+"PO-Revision-Date: 2008-08-15 14:41+0200\n"
"Last-Translator: Frco. Javier Rial Rodríguez <>\n"
"Language-Team: Galician <g11n@mancomun.org>\n"
"MIME-Version: 1.0\n"
@@ -175,7 +175,7 @@ msgstr "%A, %d de %b de %Y"
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
#: ../calendar/gui/calendar-component.c:760
-#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1540
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%a, %d de %b"
@@ -207,7 +207,7 @@ msgstr "%d de %b de %Y"
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
#: ../calendar/gui/calendar-component.c:786
-#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1556
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%d de %b"
@@ -879,7 +879,7 @@ msgstr "Gardar como vCard..."
#: ../addressbook/gui/widgets/e-addressbook-view.c:955
#: ../calendar/gui/calendar-component.c:619
#: ../calendar/gui/e-calendar-table.c:1596
-#: ../calendar/gui/e-calendar-view.c:1696 ../calendar/gui/e-memo-table.c:941
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
@@ -890,7 +890,7 @@ msgstr "E_liminar"
#: ../addressbook/gui/component/addressbook-view.c:949
#: ../calendar/gui/calendar-component.c:622
-#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/comp-editor.c:2035
#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
@@ -1282,6 +1282,7 @@ msgstr "cartóns"
#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "minutos"
@@ -1322,7 +1323,7 @@ msgid "<b>Work</b>"
msgstr "<b>Traballo</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1334,16 +1335,16 @@ msgid "Ca_tegories..."
msgstr "Ca_tegorías..."
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "Contacto"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:542
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:557
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2422
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "Editor de contactos"
@@ -1384,7 +1385,7 @@ msgstr "Teléfono"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
#: ../mail/em-migrate.c:1057
@@ -1508,7 +1509,7 @@ msgstr "Enderezo"
#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
@@ -2507,7 +2508,7 @@ msgid "AOL Instant Messenger"
msgstr "Messenger instantáneo AOL"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "Jabber"
@@ -2521,7 +2522,7 @@ msgid "Gadu-Gadu Messenger"
msgstr "Messenger Gadu-Gadu"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
@@ -2543,77 +2544,77 @@ msgid "Username"
msgstr "Nome do usuario"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "Enderezo"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "Outros"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "Yahoo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "GroupWise"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "Axenda de enderezos de orixe"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "Axenda de enderezos de destino"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "É un contacto novo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "Campos que se poden escribir"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "Campos requiridos"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "Modificado"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:552
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2417
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "Editor de Contactos - %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2813
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "Escolla unha imaxe para este contacto"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2814
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "_Sen imaxe"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3087
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2621,23 +2622,23 @@ msgstr ""
"Os datos de contacto non son válidos:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3091
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "'%s' ten un formato non válido"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3098
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s'%s' ten un formato non válido"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3113
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3124
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s'%s' está baleiro"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3139
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "Contacto non válido."
@@ -2978,9 +2979,9 @@ msgid "Save as vCard..."
msgstr "Gardar como vCard..."
#: ../addressbook/gui/widgets/e-addressbook-view.c:933
-#: ../calendar/gui/dialogs/comp-editor.c:2032
+#: ../calendar/gui/dialogs/comp-editor.c:2033
#: ../calendar/gui/e-calendar-table.c:1574
-#: ../calendar/gui/e-calendar-view.c:1674 ../calendar/gui/e-memo-table.c:924
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "_Abrir"
@@ -3034,9 +3035,9 @@ msgid "Cu_t"
msgstr "Cor_tar"
#: ../addressbook/gui/widgets/e-addressbook-view.c:953
-#: ../calendar/gui/dialogs/comp-editor.c:479
+#: ../calendar/gui/dialogs/comp-editor.c:480
#: ../calendar/gui/e-calendar-table.c:1582
-#: ../calendar/gui/e-calendar-view.c:1681 ../calendar/gui/e-memo-table.c:932
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
@@ -3423,9 +3424,8 @@ msgstr "Videoconferencia"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
#: ../calendar/gui/calendar-commands.c:92
-#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/dialogs/calendar-setup.c:367
-#: ../calendar/gui/gnome-cal.c:2376
+#: ../calendar/gui/gnome-cal.c:2451
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:574
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
@@ -3461,13 +3461,13 @@ msgid "Web Log"
msgstr "Blogue"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2346
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "Aniversario"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2347
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "Aniversario"
@@ -4591,6 +4591,7 @@ msgid "Calendar and Tasks"
msgstr "Calendario e tarefas"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
+#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "Calendarios"
@@ -4633,7 +4634,7 @@ msgstr "Nota_s"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
-#: ../calendar/gui/gnome-cal.c:1702 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
#: ../calendar/gui/memos-control.c:369
msgid "Memos"
@@ -4641,7 +4642,7 @@ msgstr "Notas"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
-#: ../calendar/gui/gnome-cal.c:1574 ../calendar/gui/print.c:1982
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
#: ../calendar/gui/tasks-component.c:539
#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
#: ../calendar/gui/tasks-control.c:508
@@ -4681,6 +4682,7 @@ msgstr[1] "minutos"
#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "horas"
@@ -4709,7 +4711,7 @@ msgid "Snooze _time:"
msgstr "_Pospor o aviso:"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
-#: ../calendar/gui/dialogs/comp-editor.c:1331
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
@@ -5357,6 +5359,7 @@ msgstr "Purgar eventos anteriores a"
#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "días"
@@ -5514,7 +5517,7 @@ msgid "Competition"
msgstr "Competición"
#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
-#: ../calendar/gui/e-cal-model.c:329 ../calendar/gui/e-calendar-table.c:547
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
#: ../calendar/gui/memotypes.xml.h:10
msgid "Confidential"
msgstr "Confidencial"
@@ -5607,13 +5610,13 @@ msgid "Phone Calls"
msgstr "Chamadas de teléfono"
#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
-#: ../calendar/gui/e-cal-model.c:327 ../calendar/gui/e-calendar-table.c:546
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
#: ../calendar/gui/memotypes.xml.h:29
msgid "Private"
msgstr "Privado"
#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
-#: ../calendar/gui/e-cal-model.c:318 ../calendar/gui/e-cal-model.c:325
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
msgid "Public"
msgstr "Público"
@@ -5810,10 +5813,7 @@ msgstr "tempos adicionais a cada"
msgid "hour(s)"
msgstr "hora(s)"
-#. Translators: This is the second half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
-#: ../plugins/google-account-setup/google-contacts-source.c:247
msgid "minute(s)"
msgstr "minuto(s)"
@@ -6225,14 +6225,14 @@ msgstr " (Pendente "
msgid "Due "
msgstr "Pendente "
-#: ../calendar/gui/dialogs/comp-editor.c:231
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "Mensaxe anexa - %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:236
-#: ../calendar/gui/dialogs/comp-editor.c:409 ../composer/e-msg-composer.c:1771
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
@@ -6240,227 +6240,227 @@ msgid_plural "%d attached messages"
msgstr[0] "Mensaxe anexa"
msgstr[1] "%d mensaxes anexas"
-#: ../calendar/gui/dialogs/comp-editor.c:480 ../composer/e-msg-composer.c:2058
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "_Mover"
-#: ../calendar/gui/dialogs/comp-editor.c:482 ../composer/e-msg-composer.c:2060
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr "Cancelar o _arrastre"
-#: ../calendar/gui/dialogs/comp-editor.c:615
-#: ../calendar/gui/dialogs/comp-editor.c:3253 ../mail/em-utils.c:371
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
#: ../plugins/prefer-plain/prefer-plain.c:74
#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr "anexo"
-#: ../calendar/gui/dialogs/comp-editor.c:841
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr "Non se puido actualizar o obxecto"
-#: ../calendar/gui/dialogs/comp-editor.c:929
+#: ../calendar/gui/dialogs/comp-editor.c:930
msgid "Edit Appointment"
msgstr "Editar Cita"
-#: ../calendar/gui/dialogs/comp-editor.c:936
+#: ../calendar/gui/dialogs/comp-editor.c:937
#, c-format
msgid "Meeting - %s"
msgstr "Reunión - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:938
+#: ../calendar/gui/dialogs/comp-editor.c:939
#, c-format
msgid "Appointment - %s"
msgstr "Cita - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:944
+#: ../calendar/gui/dialogs/comp-editor.c:945
#, c-format
msgid "Assigned Task - %s"
msgstr "Tarefa asignada - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:946
+#: ../calendar/gui/dialogs/comp-editor.c:947
#, c-format
msgid "Task - %s"
msgstr "Tarefa - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:951
+#: ../calendar/gui/dialogs/comp-editor.c:952
#, c-format
msgid "Memo - %s"
msgstr "Nota - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:967
+#: ../calendar/gui/dialogs/comp-editor.c:968
msgid "No Summary"
msgstr "Sen resumo"
-#: ../calendar/gui/dialogs/comp-editor.c:1261
+#: ../calendar/gui/dialogs/comp-editor.c:1262
msgid "Click here to close the current window"
msgstr "Prema aquí para pechar a ventá actual"
-#: ../calendar/gui/dialogs/comp-editor.c:1268
+#: ../calendar/gui/dialogs/comp-editor.c:1269
msgid "Copy selected text to the clipboard"
msgstr "Copiar o texto seleccionado ao portapapeis"
-#: ../calendar/gui/dialogs/comp-editor.c:1275
+#: ../calendar/gui/dialogs/comp-editor.c:1276
msgid "Cut selected text to the clipboard"
msgstr "Cortar o texto seleccionado para o portapapeis"
-#: ../calendar/gui/dialogs/comp-editor.c:1282
+#: ../calendar/gui/dialogs/comp-editor.c:1283
msgid "Click here to view help available"
msgstr "Prema aquí para ver a axuda dispoñible"
-#: ../calendar/gui/dialogs/comp-editor.c:1289
+#: ../calendar/gui/dialogs/comp-editor.c:1290
msgid "Paste text from the clipboard"
msgstr "Pegar texto desde o portapapeis"
-#: ../calendar/gui/dialogs/comp-editor.c:1310
+#: ../calendar/gui/dialogs/comp-editor.c:1311
msgid "Click here to save the current window"
msgstr "Prema aquí para gardar a ventá actual"
-#: ../calendar/gui/dialogs/comp-editor.c:1317
+#: ../calendar/gui/dialogs/comp-editor.c:1318
msgid "Select all text"
msgstr "Seleccionar todo o texto"
-#: ../calendar/gui/dialogs/comp-editor.c:1324
+#: ../calendar/gui/dialogs/comp-editor.c:1325
msgid "_Classification"
msgstr "_Clasificación"
-#: ../calendar/gui/dialogs/comp-editor.c:1338
+#: ../calendar/gui/dialogs/comp-editor.c:1339
#: ../mail/mail-signature-editor.c:208
#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
msgid "_File"
msgstr "_Ficheiro"
-#: ../calendar/gui/dialogs/comp-editor.c:1345
+#: ../calendar/gui/dialogs/comp-editor.c:1346
#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
msgid "_Help"
msgstr "_Axuda"
-#: ../calendar/gui/dialogs/comp-editor.c:1352
+#: ../calendar/gui/dialogs/comp-editor.c:1353
msgid "_Insert"
msgstr "_Inserir"
-#: ../calendar/gui/dialogs/comp-editor.c:1359
+#: ../calendar/gui/dialogs/comp-editor.c:1360
msgid "_Options"
msgstr "_Opcións"
-#: ../calendar/gui/dialogs/comp-editor.c:1366 ../mail/em-folder-tree.c:2098
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
#: ../ui/evolution.xml.h:55
msgid "_View"
msgstr "_Ver"
-#: ../calendar/gui/dialogs/comp-editor.c:1376
+#: ../calendar/gui/dialogs/comp-editor.c:1377
#: ../composer/e-composer-actions.c:472
msgid "_Attachment..."
msgstr "_Anexo..."
-#: ../calendar/gui/dialogs/comp-editor.c:1378
+#: ../calendar/gui/dialogs/comp-editor.c:1379
msgid "Click here to attach a file"
msgstr "Prema aquí para anexar un ficheiro"
-#: ../calendar/gui/dialogs/comp-editor.c:1386
+#: ../calendar/gui/dialogs/comp-editor.c:1387
msgid "_Categories"
msgstr "_Categorías"
-#: ../calendar/gui/dialogs/comp-editor.c:1388
+#: ../calendar/gui/dialogs/comp-editor.c:1389
msgid "Toggles whether to display categories"
msgstr " Alterna entre se se mostran as categorías ou non"
-#: ../calendar/gui/dialogs/comp-editor.c:1394
+#: ../calendar/gui/dialogs/comp-editor.c:1395
msgid "Time _Zone"
msgstr "_Fuso horario"
-#: ../calendar/gui/dialogs/comp-editor.c:1396
+#: ../calendar/gui/dialogs/comp-editor.c:1397
msgid "Toggles whether the time zone is displayed"
msgstr "Alterna entre se se mostra ou non o campo Fuso horario"
-#: ../calendar/gui/dialogs/comp-editor.c:1405
+#: ../calendar/gui/dialogs/comp-editor.c:1406
msgid "Pu_blic"
msgstr "Pú_blico"
-#: ../calendar/gui/dialogs/comp-editor.c:1407
+#: ../calendar/gui/dialogs/comp-editor.c:1408
msgid "Classify as public"
msgstr "Clasificar como público"
-#: ../calendar/gui/dialogs/comp-editor.c:1412
+#: ../calendar/gui/dialogs/comp-editor.c:1413
msgid "_Private"
msgstr "_Privado"
-#: ../calendar/gui/dialogs/comp-editor.c:1414
+#: ../calendar/gui/dialogs/comp-editor.c:1415
msgid "Classify as private"
msgstr "Clasificar como privado"
-#: ../calendar/gui/dialogs/comp-editor.c:1419
+#: ../calendar/gui/dialogs/comp-editor.c:1420
msgid "_Confidential"
msgstr "_Confidencial"
-#: ../calendar/gui/dialogs/comp-editor.c:1421
+#: ../calendar/gui/dialogs/comp-editor.c:1422
msgid "Classify as confidential"
msgstr "Clasificar como confidencial"
-#: ../calendar/gui/dialogs/comp-editor.c:1429
+#: ../calendar/gui/dialogs/comp-editor.c:1430
msgid "R_ole Field"
msgstr "Campo _rol"
-#: ../calendar/gui/dialogs/comp-editor.c:1431
+#: ../calendar/gui/dialogs/comp-editor.c:1432
msgid "Toggles whether the Role field is displayed"
msgstr "Alterna entre se se mostra o campo Rol ou non"
-#: ../calendar/gui/dialogs/comp-editor.c:1437
+#: ../calendar/gui/dialogs/comp-editor.c:1438
msgid "_RSVP"
msgstr "_RSVP"
-#: ../calendar/gui/dialogs/comp-editor.c:1439
+#: ../calendar/gui/dialogs/comp-editor.c:1440
msgid "Toggles whether the RSVP field is displayed"
msgstr "Alterna entre se se mostra o campo RSVP ou non"
-#: ../calendar/gui/dialogs/comp-editor.c:1445
+#: ../calendar/gui/dialogs/comp-editor.c:1446
msgid "_Status Field"
msgstr "Campo de e_stado"
-#: ../calendar/gui/dialogs/comp-editor.c:1447
+#: ../calendar/gui/dialogs/comp-editor.c:1448
msgid "Toggles whether the Status field is displayed"
msgstr "Alterna entre se se mostra o campo Estado ou non"
-#: ../calendar/gui/dialogs/comp-editor.c:1453
+#: ../calendar/gui/dialogs/comp-editor.c:1454
msgid "_Type Field"
msgstr "Campo _tipo"
-#: ../calendar/gui/dialogs/comp-editor.c:1455
+#: ../calendar/gui/dialogs/comp-editor.c:1456
msgid "Toggles whether the Attendee Type is displayed"
msgstr "Alterna entre se se mostra o campo Tipo de participante ou non"
-#: ../calendar/gui/dialogs/comp-editor.c:1765
+#: ../calendar/gui/dialogs/comp-editor.c:1766
#: ../widgets/misc/e-attachment-bar.c:1381
msgid "Recent Docu_ments"
msgstr "Docu_mentos recentes"
-#: ../calendar/gui/dialogs/comp-editor.c:1784
+#: ../calendar/gui/dialogs/comp-editor.c:1785
#: ../composer/e-composer-actions.c:700
msgid "Attach"
msgstr "Anexar"
-#: ../calendar/gui/dialogs/comp-editor.c:1879
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "<b>%d</b> Anexo"
msgstr[1] "<b>%d</b> Anexos"
-#: ../calendar/gui/dialogs/comp-editor.c:1911
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr "Ocultar a _barra de anexos"
-#: ../calendar/gui/dialogs/comp-editor.c:1914
-#: ../calendar/gui/dialogs/comp-editor.c:2222
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr "Mostrar a _barra de anexos"
-#: ../calendar/gui/dialogs/comp-editor.c:2033
+#: ../calendar/gui/dialogs/comp-editor.c:2034
#: ../calendar/gui/dialogs/event-page.c:1871
#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
@@ -6469,30 +6469,30 @@ msgstr "Mostrar a _barra de anexos"
msgid "_Remove"
msgstr "E_liminar"
-#: ../calendar/gui/dialogs/comp-editor.c:2036
+#: ../calendar/gui/dialogs/comp-editor.c:2037
#: ../composer/e-msg-composer.c:1048
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr "_Engadir anexo..."
-#: ../calendar/gui/dialogs/comp-editor.c:2244
+#: ../calendar/gui/dialogs/comp-editor.c:2245
#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr "Mostrar anexos"
-#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr "Prema a tecla de espazo para alternar a barra de anexos"
-#: ../calendar/gui/dialogs/comp-editor.c:2394
-#: ../calendar/gui/dialogs/comp-editor.c:2441
-#: ../calendar/gui/dialogs/comp-editor.c:3286
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr ""
"As modificacións realizadas neste elemento pódense rexeitar se chega unha "
"actualización"
-#: ../calendar/gui/dialogs/comp-editor.c:3315
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "Non é posible usar a versión actual!"
@@ -6838,8 +6838,8 @@ msgstr "Nota"
msgid "Unable to open memos in '%s'."
msgstr "Non é posible abrir as notas en '%s'."
-#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1561
-#: ../mail/em-format-html.c:1619 ../mail/em-format-html.c:1645
+#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1562
+#: ../mail/em-format-html.c:1620 ../mail/em-format-html.c:1646
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
#: ../mail/em-mailer-prefs.c:77 ../mail/message-list.etspec.h:19
msgid "To"
@@ -7123,7 +7123,7 @@ msgstr "Baixo"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "Normal"
@@ -7374,7 +7374,7 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:191
#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
#: ../calendar/gui/e-meeting-store.c:746
@@ -7382,7 +7382,7 @@ msgstr ""
msgid "Yes"
msgstr "Si"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
@@ -7390,7 +7390,7 @@ msgid "No"
msgstr "Non"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
#: ../calendar/gui/e-meeting-list-view.c:167
@@ -7406,11 +7406,11 @@ msgstr "Non"
msgid "Unknown"
msgstr "Descoñecido"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "Recorrencia"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "Asignada"
@@ -7428,7 +7428,7 @@ msgid "untitled_image.%s"
msgstr "imaxe_sen_título.%s"
#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
-#: ../calendar/gui/e-calendar-view.c:1675 ../calendar/gui/e-memo-table.c:926
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "_Gardar como..."
@@ -7442,7 +7442,7 @@ msgstr "Definir como _fondo"
msgid "_Save Selected"
msgstr "_Gardar os seleccionados"
-#: ../calendar/gui/e-cal-popup.c:434 ../mail/em-popup.c:837
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "Abrir en %s..."
@@ -7453,7 +7453,7 @@ msgstr "* Sen resumo *"
#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
#: ../calendar/gui/e-calendar-table.c:374
-#: ../calendar/gui/e-calendar-view.c:2218
+#: ../calendar/gui/e-calendar-view.c:2215
#, c-format
msgid "Organizer: %s <%s>"
msgstr "Organizador: %s <%s>"
@@ -7461,7 +7461,7 @@ msgstr "Organizador: %s <%s>"
#. With SunOne accounts, there may be no ':' in organiser.value
#. With SunOne accouts, there may be no ':' in organiser.value
#: ../calendar/gui/e-calendar-table.c:377
-#: ../calendar/gui/e-calendar-view.c:2222
+#: ../calendar/gui/e-calendar-view.c:2219
#, c-format
msgid "Organizer: %s"
msgstr "Organizador: %s"
@@ -7519,23 +7519,23 @@ msgid "100%"
msgstr "100%"
#: ../calendar/gui/e-calendar-table.c:879
-#: ../calendar/gui/e-calendar-view.c:668 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr "Eliminar os obxectos seleccionados"
#: ../calendar/gui/e-calendar-table.c:1163
-#: ../calendar/gui/e-calendar-view.c:798 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr "Actualizando obxectos"
#: ../calendar/gui/e-calendar-table.c:1348
-#: ../calendar/gui/e-calendar-view.c:1224 ../calendar/gui/e-memo-table.c:821
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "Gardar como..."
#: ../calendar/gui/e-calendar-table.c:1571
-#: ../calendar/gui/e-calendar-view.c:1657
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "Nova _Tarefa"
@@ -7544,20 +7544,20 @@ msgid "Open _Web Page"
msgstr "Abrir páxina _web"
#: ../calendar/gui/e-calendar-table.c:1577
-#: ../calendar/gui/e-calendar-view.c:1660 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "Imp_rimir..."
#: ../calendar/gui/e-calendar-table.c:1581
-#: ../calendar/gui/e-calendar-view.c:1680 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "Co_rtar"
#: ../calendar/gui/e-calendar-table.c:1583
-#: ../calendar/gui/e-calendar-view.c:1663
-#: ../calendar/gui/e-calendar-view.c:1682 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
@@ -7624,93 +7624,93 @@ msgstr "Prioridade"
msgid "Start date"
msgstr "Data de inicio"
-#: ../calendar/gui/e-calendar-view.c:1343
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr "Movendo elementos"
-#: ../calendar/gui/e-calendar-view.c:1345
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr "Copiando elementos"
-#: ../calendar/gui/e-calendar-view.c:1654
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "Nova _Cita..."
-#: ../calendar/gui/e-calendar-view.c:1655
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr "Novo _evento de día completo"
-#: ../calendar/gui/e-calendar-view.c:1656
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "Nova _reunión"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1667
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr "_Visualización actual"
-#: ../calendar/gui/e-calendar-view.c:1669
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "Seleccionar _hoxe"
-#: ../calendar/gui/e-calendar-view.c:1670
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "_Seleccionar data..."
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "_Imprimir..."
-#: ../calendar/gui/e-calendar-view.c:1686
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "Cop_iar a un calendario..."
-#: ../calendar/gui/e-calendar-view.c:1687
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "Mo_ver ao calendario..."
-#: ../calendar/gui/e-calendar-view.c:1688
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr "_Delegar reunión..."
-#: ../calendar/gui/e-calendar-view.c:1689
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr "_Programar reunión..."
-#: ../calendar/gui/e-calendar-view.c:1690
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr "_Remitir como iCalendar..."
-#: ../calendar/gui/e-calendar-view.c:1691
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "_Responder"
-#: ../calendar/gui/e-calendar-view.c:1692 ../mail/em-folder-view.c:1330
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "Responder a _todos"
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr "Facer esta ocorrencia _movible"
-#: ../calendar/gui/e-calendar-view.c:1698 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr "Eliminar esta _ocorrencia"
-#: ../calendar/gui/e-calendar-view.c:1699
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr "Eliminar _todas as ocorrencias"
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2238 ../calendar/gui/print.c:2508
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "Localización: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2272
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "Hora: %s %s"
@@ -7749,19 +7749,19 @@ msgstr "%02i divisións de minuto"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1523
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%A %d de %B"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:767 ../calendar/gui/e-week-view.c:505
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
#: ../calendar/gui/print.c:829
msgid "am"
msgstr "am"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-week-view.c:508
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "pm"
@@ -8413,7 +8413,7 @@ msgid "Click to add a memo"
msgstr "Prema para engadir unha nota"
#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
-#: ../calendar/gui/gnome-cal.c:2864
+#: ../calendar/gui/gnome-cal.c:2960
#, c-format
msgid ""
"Error on %s:\n"
@@ -8463,43 +8463,39 @@ msgstr "Seleccionar fuso horario"
msgid "%d %B"
msgstr "%d de %b"
-#: ../calendar/gui/gnome-cal.c:830
-msgid "Updating query"
-msgstr "Actualizando consulta"
-
-#: ../calendar/gui/gnome-cal.c:2501
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr "Visualización _personalizada"
-#: ../calendar/gui/gnome-cal.c:2502
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr "_Gardar visualización personalizada"
-#: ../calendar/gui/gnome-cal.c:2507
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr "_Definir visualizacións..."
-#: ../calendar/gui/gnome-cal.c:2688
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "Cargando citas de %s"
-#: ../calendar/gui/gnome-cal.c:2707
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "Cargando tarefas de %s"
-#: ../calendar/gui/gnome-cal.c:2716
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "Cargando notas en %s"
-#: ../calendar/gui/gnome-cal.c:2823
+#: ../calendar/gui/gnome-cal.c:2919
#, c-format
msgid "Opening %s"
msgstr "Abrindo %s"
-#: ../calendar/gui/gnome-cal.c:3779
+#: ../calendar/gui/gnome-cal.c:3873
msgid "Purging"
msgstr "Depurando"
@@ -11195,6 +11191,10 @@ msgstr "Sobrescribir o ficheiro?"
msgid "_Overwrite"
msgstr "S_obrescribir"
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "Non se puido mostrar a axuda de Evolution."
+
#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "I_mportante"
@@ -11540,6 +11540,7 @@ msgstr "a hora especificada"
#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "semanas"
@@ -12477,7 +12478,7 @@ msgstr "_Seguinte"
msgid "M_atch case"
msgstr "_Diferenciar maiúsculas e minúsculas"
-#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:649
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr "Non asinado"
@@ -12489,7 +12490,7 @@ msgstr ""
"Esta mensaxe non está asinada. Non hai garantía de que a mensaxe sexa "
"auténtica."
-#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:650
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr "Sinatura válida"
@@ -12501,7 +12502,7 @@ msgstr ""
"Esta mensaxe está asinada e é válida, o que significa que é moi probable que "
"a mensaxe sexa auténtica."
-#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr "Sinatura non válida"
@@ -12513,7 +12514,7 @@ msgstr ""
"A sinatura desta mensaxe non se pode verificar, puido ser alterada en "
"tránsito."
-#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr "Sinatura válida, mais non se pode verificar o remitente"
@@ -12525,7 +12526,7 @@ msgstr ""
"Esta mensaxe está asinada cunha sinatura válida, mais non se puido verificar "
"o remitente da mensaxe."
-#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr "A sinatura existe pero se necesita a chave pública"
@@ -12537,7 +12538,7 @@ msgstr ""
"Esta mensaxe está asinada cunha sinatura, mais non hai unha chave pública "
"correspondente."
-#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:659
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "Non cifrado"
@@ -12549,7 +12550,7 @@ msgstr ""
"Esta mensaxe non está cifrada. O seu contido pode verse en tránsito a través "
"de Internet."
-#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:660
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr "Cifrado, débil"
@@ -12563,7 +12564,7 @@ msgstr ""
"difícil, mais non imposible para un intruso ver o contido desta mensaxe "
"dentro dun período de tempo útil."
-#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:661
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "Cifrado"
@@ -12575,7 +12576,7 @@ msgstr ""
"Esta mensaxe está cifrada. Sería difícil para un intruso ver o contido desta "
"mensaxe."
-#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:662
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr "Cifrado, forte"
@@ -12681,84 +12682,84 @@ msgstr ""
msgid "Page %d of %d"
msgstr "Páxina %d de %d"
-#: ../mail/em-format-html.c:503 ../mail/em-format-html.c:512
+#: ../mail/em-format-html.c:504 ../mail/em-format-html.c:513
#, c-format
msgid "Retrieving `%s'"
msgstr "Recuperando `%s'"
-#: ../mail/em-format-html.c:924
+#: ../mail/em-format-html.c:925
msgid "Unknown external-body part."
msgstr "Parte do corpo-externo descoñecida."
-#: ../mail/em-format-html.c:932
+#: ../mail/em-format-html.c:933
msgid "Malformed external-body part."
msgstr "Parte do corpo-externo malformada."
-#: ../mail/em-format-html.c:962
+#: ../mail/em-format-html.c:963
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr "Punteiro ao sitio FTP (%s)"
-#: ../mail/em-format-html.c:973
+#: ../mail/em-format-html.c:974
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr "Punteiro ao ficheiro local (%s) válido no sitio \"%s\""
-#: ../mail/em-format-html.c:975
+#: ../mail/em-format-html.c:976
#, c-format
msgid "Pointer to local file (%s)"
msgstr "Punteiro ao ficheiro local (%s)"
-#: ../mail/em-format-html.c:996
+#: ../mail/em-format-html.c:997
#, c-format
msgid "Pointer to remote data (%s)"
msgstr "Punteiro aos datos remotos (%s)"
-#: ../mail/em-format-html.c:1007
+#: ../mail/em-format-html.c:1008
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr "Punteiro aos datos externos descoñecidos (tipo \"%s\")"
-#: ../mail/em-format-html.c:1235
+#: ../mail/em-format-html.c:1236
msgid "Formatting message"
msgstr "Formatando a mensaxe"
-#: ../mail/em-format-html.c:1409
+#: ../mail/em-format-html.c:1410
msgid "Formatting Message..."
msgstr "Formatando a mensaxe..."
-#: ../mail/em-format-html.c:1562 ../mail/em-format-html.c:1626
-#: ../mail/em-format-html.c:1648 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1627
+#: ../mail/em-format-html.c:1649 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:887 ../mail/em-mailer-prefs.c:78
msgid "Cc"
msgstr "Cc"
-#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1632
-#: ../mail/em-format-html.c:1651 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1564 ../mail/em-format-html.c:1633
+#: ../mail/em-format-html.c:1652 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:888 ../mail/em-mailer-prefs.c:79
msgid "Bcc"
msgstr "Cco"
#. pseudo-header
-#: ../mail/em-format-html.c:1743 ../mail/em-format-quote.c:352
+#: ../mail/em-format-html.c:1744 ../mail/em-format-quote.c:352
#: ../mail/em-mailer-prefs.c:1450
msgid "Mailer"
msgstr "Aplicación de correo"
#. translators: strftime format for local time equivalent in Date header display, with day
-#: ../mail/em-format-html.c:1770
+#: ../mail/em-format-html.c:1771
msgid " (%a, %R %Z)"
msgstr " (%a, %R %Z)"
#. translators: strftime format for local time equivalent in Date header display, without day
-#: ../mail/em-format-html.c:1775
+#: ../mail/em-format-html.c:1776
msgid " (%R %Z)"
msgstr " (%R %Z)"
#. To translators: This message suggests to the receipients that the sender of the mail is
#. different from the one listed in From field.
#.
-#: ../mail/em-format-html.c:1906
+#: ../mail/em-format-html.c:1907
#, c-format
msgid "This message was sent by <b>%s</b> on behalf of <b>%s</b>"
msgstr "Esta mensaxe foi enviada por <b>%s</b> no nome de <b>%s</b>"
@@ -12979,7 +12980,7 @@ msgid "Reply to _List"
msgstr "Responder á _lista"
#. make it first item
-#: ../mail/em-popup.c:629 ../mail/em-popup.c:858
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "_Engadir á axenda de enderezos"
@@ -14741,6 +14742,7 @@ msgstr "Usar aute_nticación"
#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "_Nome de usuario:"
@@ -16483,6 +16485,7 @@ msgstr "_URL:"
#: ../plugins/caldav/caldav-source.c:271
#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "Usar _SSL"
@@ -16505,6 +16508,7 @@ msgstr "Proporciona funcionalidade básica para calendarios locais."
#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
#: ../plugins/google-account-setup/google-source.c:695
+#: ../plugins/google-account-setup/google-contacts-source.c:320
msgid "Re_fresh:"
msgstr "Ac_tualizar:"
@@ -16648,15 +16652,15 @@ msgstr ""
"Proporciona funcionalidade para marcar calendarios ou axendas de enderezos "
"como opción predeterminada."
-#: ../plugins/email-custom-header/email-custom-header.c:562
+#: ../plugins/email-custom-header/email-custom-header.c:558
msgid "_Custom Header"
msgstr "_Cabeceira personalizada"
-#: ../plugins/email-custom-header/email-custom-header.c:883
+#: ../plugins/email-custom-header/email-custom-header.c:879
msgid "Key"
msgstr "Chave"
-#: ../plugins/email-custom-header/email-custom-header.c:894
+#: ../plugins/email-custom-header/email-custom-header.c:890
#: ../plugins/templates/templates.c:400
msgid "Values"
msgstr "Valores"
@@ -17144,7 +17148,7 @@ msgid "Add User:"
msgstr "Engadir usuario:"
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
-#: ../plugins/exchange-operations/exchange-send-options.c:413
+#: ../plugins/exchange-operations/exchange-send-options.c:408
#: ../plugins/groupwise-features/proxy.c:934
#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
@@ -17787,21 +17791,11 @@ msgstr "Cal_endario:"
msgid "Retrieve _list"
msgstr "Recuperando _lista"
-#: ../plugins/google-account-setup/google-contacts-source.c:198
+#: ../plugins/google-account-setup/google-contacts-source.c:268
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
msgid "<b>Server</b>"
msgstr "<b>Servidor</b>"
-#: ../plugins/google-account-setup/google-contacts-source.c:208
-msgid "Username:"
-msgstr "Nome de usuario:"
-
-#. Translators: This is the first half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
-#: ../plugins/google-account-setup/google-contacts-source.c:233
-msgid "Update every"
-msgstr "Actualizar cada"
-
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
msgid "A plugin to setup google calendar and contacts."
msgstr "Un plugin para configurar o calendario e contactos de Google."
@@ -23215,11 +23209,11 @@ msgstr ""
"Os usuarios que só dispoñan de teclado poden, no seu lugar, seleccionar o "
"fuso horario desde a caixa de combinación de máis abaixo."
-#: ../widgets/misc/e-online-button.c:112
+#: ../widgets/misc/e-online-button.c:109
msgid "Online"
msgstr "En liña"
-#: ../widgets/misc/e-online-button.c:113
+#: ../widgets/misc/e-online-button.c:110
msgid "The button state is online"
msgstr "O estado do botón é conectado"
@@ -23958,6 +23952,15 @@ msgstr "Contexto MI"
msgid "Handle Popup"
msgstr "Tirador emerxente"
+#~ msgid "Updating query"
+#~ msgstr "Actualizando consulta"
+
+#~ msgid "Username:"
+#~ msgstr "Nome de usuario:"
+
+#~ msgid "Update every"
+#~ msgstr "Actualizar cada"
+
#~ msgid "Migrating `%s':"
#~ msgstr "Migrando `%s':"
diff --git a/po/ja.po b/po/ja.po
index 6a281eafe1..5424edb995 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,12 +6,13 @@
# Takeshi AIHANA <takeshi.aihana@gmail.com>, 2001-2008.
# Satoru SATOH <ss@gnome.gr.jp>, 2006.
#
+#: ../shell/main.c:683
msgid ""
msgstr ""
"Project-Id-Version: evolution trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-05 00:45+0900\n"
-"PO-Revision-Date: 2008-03-05 00:44+0900\n"
+"POT-Creation-Date: 2008-08-17 13:44+0900\n"
+"PO-Revision-Date: 2008-08-17 13:42+0900\n"
"Last-Translator: Takeshi AIHANA <takeshi.aihana@gmail.com>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
"MIME-Version: 1.0\n"
@@ -21,21 +22,21 @@ msgstr ""
#: ../a11y/addressbook/ea-addressbook-view.c:94
#: ../a11y/addressbook/ea-addressbook-view.c:103
-#: ../a11y/addressbook/ea-minicard-view.c:179
+#: ../a11y/addressbook/ea-minicard-view.c:178
msgid "evolution addressbook"
msgstr "Evolution アドレス帳"
-#: ../a11y/addressbook/ea-minicard-view.c:33
+#: ../a11y/addressbook/ea-minicard-view.c:32
#: ../addressbook/gui/component/addressbook-component.c:228
msgid "New Contact"
msgstr "新しい連絡先"
-#: ../a11y/addressbook/ea-minicard-view.c:34
+#: ../a11y/addressbook/ea-minicard-view.c:33
#: ../addressbook/gui/component/addressbook-component.c:236
msgid "New Contact List"
msgstr "新しい連絡先の一覧"
-#: ../a11y/addressbook/ea-minicard-view.c:162
+#: ../a11y/addressbook/ea-minicard-view.c:161
#, c-format
msgid "current address book folder %s has %d card"
msgid_plural "current address book folder %s has %d cards"
@@ -43,7 +44,6 @@ msgstr[0] "このアドレス帳フォルダ %s には %d個のカードがあ
msgstr[1] "このアドレス帳フォルダ %s には %d個のカードがあります"
#: ../a11y/addressbook/ea-minicard.c:31
-#: ../ui/evolution-message-composer.xml.h:13
msgid "Open"
msgstr "開く"
@@ -153,7 +153,7 @@ msgid "calendar view for one or more days"
msgstr "一日以上のカレンダ表示"
#: ../a11y/calendar/ea-gnome-calendar.c:188
-#: ../calendar/gui/calendar-component.c:747
+#: ../calendar/gui/calendar-component.c:757
msgid "%A %d %b %Y"
msgstr "%Y年%B%e日 %A"
@@ -164,20 +164,18 @@ msgstr "%Y年%B%e日 %A"
#. You can change the order but don't change the
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
-#: ../calendar/gui/calendar-component.c:750
-#: ../calendar/gui/e-day-view-top-item.c:1363
-#: ../calendar/gui/e-day-view.c:2162
-#: ../calendar/gui/e-week-view-main-item.c:319
-#: ../calendar/gui/e-week-view-main-item.c:533
+#: ../calendar/gui/calendar-component.c:760
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
+#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%m/%d (%a)"
#: ../a11y/calendar/ea-gnome-calendar.c:193
#: ../a11y/calendar/ea-gnome-calendar.c:198
#: ../a11y/calendar/ea-gnome-calendar.c:200
-#: ../calendar/gui/calendar-component.c:752
-#: ../calendar/gui/calendar-component.c:757
-#: ../calendar/gui/calendar-component.c:759
+#: ../calendar/gui/calendar-component.c:762
+#: ../calendar/gui/calendar-component.c:767
+#: ../calendar/gui/calendar-component.c:769
msgid "%a %d %b %Y"
msgstr "%Y/%m/%d (%a)"
@@ -185,10 +183,10 @@ msgstr "%Y/%m/%d (%a)"
#: ../a11y/calendar/ea-gnome-calendar.c:223
#: ../a11y/calendar/ea-gnome-calendar.c:229
#: ../a11y/calendar/ea-gnome-calendar.c:231
-#: ../calendar/gui/calendar-component.c:771
-#: ../calendar/gui/calendar-component.c:778
-#: ../calendar/gui/calendar-component.c:784
-#: ../calendar/gui/calendar-component.c:786
+#: ../calendar/gui/calendar-component.c:781
+#: ../calendar/gui/calendar-component.c:788
+#: ../calendar/gui/calendar-component.c:794
+#: ../calendar/gui/calendar-component.c:796
msgid "%d %b %Y"
msgstr "%Y年%B%e日"
@@ -198,17 +196,15 @@ msgstr "%Y年%B%e日"
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
-#: ../calendar/gui/calendar-component.c:776
-#: ../calendar/gui/e-day-view-top-item.c:1367
-#: ../calendar/gui/e-day-view.c:2178
-#: ../calendar/gui/e-week-view-main-item.c:333
-#: ../calendar/gui/e-week-view-main-item.c:547
+#: ../calendar/gui/calendar-component.c:786
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
+#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%B%e日"
#: ../a11y/calendar/ea-gnome-calendar.c:247
#: ../a11y/calendar/ea-gnome-calendar.c:255
-#: ../calendar/importers/icalendar-importer.c:772
+#: ../calendar/importers/icalendar-importer.c:766
msgid "Gnome Calendar"
msgstr "GNOME カレンダ"
@@ -320,34 +316,34 @@ msgstr "カレンダ: %s 〜 %s"
msgid "evolution calendar item"
msgstr "Evolution カレンダのアイテム"
-#: ../a11y/widgets/ea-combo-button.c:40
+#: ../a11y/widgets/ea-combo-button.c:39
msgid "Combo Button"
msgstr "コンボ・ボタン"
-#: ../a11y/widgets/ea-combo-button.c:50
+#: ../a11y/widgets/ea-combo-button.c:49
msgid "Activate Default"
msgstr "デフォルトを使用する"
-#: ../a11y/widgets/ea-combo-button.c:52
+#: ../a11y/widgets/ea-combo-button.c:51
msgid "Popup Menu"
msgstr "ポップアップ・メニュー"
-#: ../a11y/widgets/ea-expander.c:40
+#: ../a11y/widgets/ea-expander.c:39
msgid "Toggle Attachment Bar"
msgstr "添付ファイル・バーの切り替え"
-#: ../a11y/widgets/ea-expander.c:50
+#: ../a11y/widgets/ea-expander.c:49
msgid "activate"
msgstr "有効にする"
#. For Translators: {0} is the name of the address book source
#: ../addressbook/addressbook.error.xml.h:2
msgid ""
-"'{0}' is a read-only address book source. Switch to Contacts View and "
-"highlight an address book that can accept contacts."
+"'{0}' is a read-only address book and cannot be modified. Please select a "
+"different address book from the side bar in the Contacts view."
msgstr ""
-"'{0}' は読み込み専用のアドレス帳です。まずは左側の連絡先のビューで連絡先を入"
-"力できるアドレス帳を選択して下さい。"
+"'{0}' は読み込み専用のアドレス帳で変更はできません。左側の連絡先のビューから"
+"別のアドレス帳を選択して下さい。"
#: ../addressbook/addressbook.error.xml.h:3
msgid ""
@@ -359,7 +355,7 @@ msgstr ""
#: ../addressbook/addressbook.error.xml.h:4
msgid "Address '{0}' already exists."
-msgstr "住所 '{0}' が重複しています。"
+msgstr "住所の '{0}' が重複しています。"
#: ../addressbook/addressbook.error.xml.h:5
msgid "Cannot add new contact"
@@ -379,9 +375,9 @@ msgid ""
"a supported login method. Remember that many passwords are case sensitive; "
"your caps lock might be on."
msgstr ""
-"パスワードの綴りが正しいか、そしてサポートされているログイン方法を利用してい"
-"るか確認して下さい。パスワードは大文字/小文字を区別することに留意して下さい "
-"([Caps Lock] キーが押下されているかもしれません)。"
+"パスワードのつづりが正しいか、そしてサポートされているログイン方法を利用して"
+"いるか確認して下さい。パスワードは大文字/小文字を区別することに留意して下さ"
+"い ([Caps Lock] キーが押下されているかもしれません)。"
#: ../addressbook/addressbook.error.xml.h:9
msgid "Could not get schema information for LDAP server."
@@ -395,16 +391,16 @@ msgstr "アドレス帳を削除できませんでした。"
msgid ""
"Currently you can access only GroupWise System Address Book from Evolution. "
"Please use some other GroupWise mail client once, to get your GroupWise "
-"Frequent Contacts and Groupwise Personal Contacts folders."
+"Frequent Contacts and GroupWise Personal Contacts folders."
msgstr ""
-"現在のところ、Evolution からは GroupWise のシステム・アドレス帳だけにアクセス"
-"できます。GroupWise Frequent Contact と Groupwise Personal Contacts フォルダ"
-"を取得する場合は、いったん何か別の GroupWise メール・クライアントを使って下さ"
+"現在のところ Evolution からは GroupWise システムのアドレス帳のみアクセス可能"
+"です。GroupWise Frequent Contact と Groupwise Personal Contacts フォルダを取"
+"得したいのであれば、いったん他の GroupWise メール・クライアントをご利用下さ"
"い。"
#: ../addressbook/addressbook.error.xml.h:12
msgid "Delete address book '{0}'?"
-msgstr "アドレス帳 '{0}' を削除しますか?"
+msgstr "アドレス帳の '{0}' を削除しますか?"
#: ../addressbook/addressbook.error.xml.h:13
msgid "Error loading addressbook."
@@ -420,7 +416,7 @@ msgstr "LDAP サーバを使った認証に失敗しました。"
#. Unknown error
#: ../addressbook/addressbook.error.xml.h:16
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1716
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
msgid "Failed to delete contact"
msgstr "連絡先の削除に失敗しました"
@@ -433,27 +429,23 @@ msgid "LDAP server did not respond with valid schema information."
msgstr "LDAP サーバが妥当なスキーマ情報を返しませんでした。"
#: ../addressbook/addressbook.error.xml.h:19
-msgid "Permission Denied."
-msgstr "権限がありません"
-
-#: ../addressbook/addressbook.error.xml.h:20
msgid "Server Version"
msgstr "サーバのバージョン"
-#: ../addressbook/addressbook.error.xml.h:21
+#: ../addressbook/addressbook.error.xml.h:20
msgid "Some features may not work properly with your current server"
msgstr "お使いのサーバでは、いくつかの機能が正しく動作しないかもしれません"
-#: ../addressbook/addressbook.error.xml.h:22
+#: ../addressbook/addressbook.error.xml.h:21
msgid "The Evolution addressbook has quit unexpectedly."
msgstr "突然 Evolution アドレス帳が終了しました。"
-#: ../addressbook/addressbook.error.xml.h:23
+#: ../addressbook/addressbook.error.xml.h:22
msgid ""
"The image you have selected is large. Do you want to resize and store it?"
msgstr "選択した画像が大きすぎます。サイズを変更してから保存しますか?"
-#: ../addressbook/addressbook.error.xml.h:24
+#: ../addressbook/addressbook.error.xml.h:23
msgid ""
"This LDAP server may use an older version of LDAP, which does not support "
"this functionality or it may be misconfigured. Ask your administrator for "
@@ -463,19 +455,19 @@ msgstr ""
"機能を利用できないか、あるいは設定ミスかもしれません。サポートしている検索"
"ベースについては、システム管理者にお尋ね下さい。"
-#: ../addressbook/addressbook.error.xml.h:25
+#: ../addressbook/addressbook.error.xml.h:24
msgid "This address book will be removed permanently."
msgstr "このアドレス帳は完全に削除されます。"
-#: ../addressbook/addressbook.error.xml.h:26
+#: ../addressbook/addressbook.error.xml.h:25
msgid "This addressbook could not be opened."
msgstr "このアドレス帳を開けませんでした。"
-#: ../addressbook/addressbook.error.xml.h:27
+#: ../addressbook/addressbook.error.xml.h:26
msgid "This addressbook server does not have any suggested search bases."
msgstr "このアドレス帳サーバには推奨される検索ベースがありません。"
-#: ../addressbook/addressbook.error.xml.h:28
+#: ../addressbook/addressbook.error.xml.h:27
msgid ""
"This addressbook server might be unreachable or the server name may be "
"misspelled or your network connection could be down."
@@ -483,27 +475,27 @@ msgstr ""
"このアドレス帳サーバとは通信できないか、またはサーバ名が間違っているか、ある"
"いはお使いのネットワークがダウンしている可能性があります。"
-#: ../addressbook/addressbook.error.xml.h:29
+#: ../addressbook/addressbook.error.xml.h:28
msgid "This server does not support LDAPv3 schema information."
msgstr "このサーバは LDAPv3 スキーマ情報をサポートしていません。"
-#: ../addressbook/addressbook.error.xml.h:30
+#: ../addressbook/addressbook.error.xml.h:29
msgid "Unable to open addressbook"
msgstr "アドレス帳を開けません"
-#: ../addressbook/addressbook.error.xml.h:31
+#: ../addressbook/addressbook.error.xml.h:30
msgid "Unable to perform search."
msgstr "検索を実施できません。"
-#: ../addressbook/addressbook.error.xml.h:32
+#: ../addressbook/addressbook.error.xml.h:31
msgid "Unable to save {0}."
msgstr "{0}を保存できません。"
-#: ../addressbook/addressbook.error.xml.h:33
+#: ../addressbook/addressbook.error.xml.h:32
msgid "Would you like to save your changes?"
msgstr "変更した部分を保存しますか?"
-#: ../addressbook/addressbook.error.xml.h:34
+#: ../addressbook/addressbook.error.xml.h:33
msgid ""
"You are attempting to move a contact from one addressbook to another but it "
"cannot be removed from the source. Do you want to save a copy instead?"
@@ -511,7 +503,7 @@ msgstr ""
"連絡先をあるアドレス帳から別のアドレス帳へ移動する際に、連絡先を移動元から削"
"除できませんでした。連絡先を移動する代わりにコピーでよろしいですか?"
-#: ../addressbook/addressbook.error.xml.h:35
+#: ../addressbook/addressbook.error.xml.h:34
msgid ""
"You are connecting to an unsupported GroupWise server and may encounter "
"problems using Evolution. For best results the server should be upgraded to "
@@ -521,6 +513,10 @@ msgstr ""
"Evolution を利用すると問題を引き起こすおそれがあります。そのサーバをサポート"
"しているバージョンにアップグレードすることを強くお奨めします。"
+#: ../addressbook/addressbook.error.xml.h:35
+msgid "You do not have permission to delete contacts in this address book."
+msgstr "このアドレス帳にある連絡先を削除するために必要な権限がありません。"
+
#: ../addressbook/addressbook.error.xml.h:36
msgid ""
"You have made modifications to this contact. Do you want to save these "
@@ -556,8 +552,8 @@ msgid "_Use as it is"
msgstr "そのまま使う(_U)"
#. For Translators: {0} is the string describing why the search could not be performed (eg: "The backend for this addressbook was unable to parse this query."
-#: ../addressbook/addressbook.error.xml.h:44
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:81
+#: ../addressbook/addressbook.error.xml.h:44 ../mail/mail.error.xml.h:143
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:82
msgid "{0}"
msgstr "{0}"
@@ -566,17 +562,17 @@ msgstr "{0}"
msgid "{1}"
msgstr "{1}"
-#: ../addressbook/conduit/address-conduit.c:298
+#: ../addressbook/conduit/address-conduit.c:299
msgid "Default Sync Address:"
msgstr "デフォルトで同期するアドレス:"
-#: ../addressbook/conduit/address-conduit.c:1319
#: ../addressbook/conduit/address-conduit.c:1320
+#: ../addressbook/conduit/address-conduit.c:1321
msgid "Could not load addressbook"
msgstr "アドレス帳を読み込めませんでした"
-#: ../addressbook/conduit/address-conduit.c:1397
-#: ../addressbook/conduit/address-conduit.c:1400
+#: ../addressbook/conduit/address-conduit.c:1398
+#: ../addressbook/conduit/address-conduit.c:1401
msgid "Could not read pilot's Address application block"
msgstr "パイロットのアドレス・アプリケーション・ブロックを読み込めませんでした"
@@ -598,10 +594,10 @@ msgstr "ここで自動補完を設定します"
#. Create the contacts group
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:5
-#: ../addressbook/gui/component/addressbook-view.c:1338
-#: ../calendar/gui/calendar-component.c:285 ../calendar/gui/migration.c:403
-#: ../plugins/exchange-operations/exchange-delegates-user.c:88
-#: ../plugins/exchange-operations/exchange-folder.c:581
+#: ../addressbook/gui/component/addressbook-view.c:1326
+#: ../calendar/gui/calendar-component.c:299 ../calendar/gui/migration.c:396
+#: ../plugins/exchange-operations/exchange-delegates-user.c:76
+#: ../plugins/exchange-operations/exchange-folder.c:580
msgid "Contacts"
msgstr "連絡先"
@@ -610,7 +606,7 @@ msgid "Evolution Address Book"
msgstr "Evolution アドレス帳"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:7
-msgid "Evolution Address Book address pop-up"
+msgid "Evolution Address Book address popup"
msgstr "Evolutoin アドレス帳のアドレス・ポップアップ"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:8
@@ -626,7 +622,7 @@ msgid "Evolution Address Book component"
msgstr "Evolution アドレス帳のコンポーネント"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:11
-msgid "Evolution S/Mime Certificate Management Control"
+msgid "Evolution S/MIME Certificate Management Control"
msgstr "Evolution S/MIME 証明書管理コントロール"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:12
@@ -641,12 +637,13 @@ msgstr "ここでお使いの S/MIME 型の証明書を管理します"
#. On This Computer is always first and Search Folders is always last
#: ../addressbook/gui/component/addressbook-component.c:144
#: ../addressbook/gui/component/addressbook-migrate.c:499
-#: ../calendar/gui/calendar-component.c:237
-#: ../calendar/gui/memos-component.c:200 ../calendar/gui/migration.c:482
-#: ../calendar/gui/migration.c:583 ../calendar/gui/migration.c:1096
-#: ../calendar/gui/tasks-component.c:196 ../mail/em-folder-tree-model.c:200
-#: ../mail/em-folder-tree-model.c:202 ../mail/mail-component.c:307
-#: ../mail/mail-vfolder.c:216
+#: ../calendar/gui/calendar-component.c:236
+#: ../calendar/gui/memos-component.c:199 ../calendar/gui/migration.c:475
+#: ../calendar/gui/migration.c:577 ../calendar/gui/migration.c:1091
+#: ../calendar/gui/tasks-component.c:195 ../mail/em-folder-tree-model.c:200
+#: ../mail/em-folder-tree-model.c:202 ../mail/em-migrate.c:2906
+#: ../mail/mail-component.c:312 ../mail/mail-vfolder.c:216
+#: ../mail/message-list.c:1457
msgid "On This Computer"
msgstr "このコンピュータ"
@@ -659,20 +656,22 @@ msgstr "このコンピュータ"
#: ../addressbook/gui/component/addressbook-migrate.c:507
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:20
#: ../addressbook/gui/widgets/eab-contact-display.c:660
-#: ../calendar/gui/calendar-component.c:248
-#: ../calendar/gui/memos-component.c:209 ../calendar/gui/migration.c:492
-#: ../calendar/gui/migration.c:591 ../calendar/gui/migration.c:1104
-#: ../calendar/gui/tasks-component.c:205 ../mail/em-migrate.c:1056
+#: ../calendar/gui/calendar-component.c:247 ../calendar/gui/caltypes.xml.h:29
+#: ../calendar/gui/memos-component.c:208 ../calendar/gui/memotypes.xml.h:27
+#: ../calendar/gui/migration.c:485 ../calendar/gui/migration.c:585
+#: ../calendar/gui/migration.c:1099 ../calendar/gui/tasks-component.c:204
+#: ../calendar/gui/tasktypes.xml.h:35 ../mail/em-migrate.c:1058
msgid "Personal"
msgstr "プライベート"
#. Create the LDAP source group
-#: ../addressbook/gui/component/addressbook-component.c:162
+#: ../addressbook/gui/component/addressbook-component.c:163
#: ../addressbook/gui/component/addressbook-migrate.c:517
msgid "On LDAP Servers"
msgstr "LDAP サーバ"
#: ../addressbook/gui/component/addressbook-component.c:229
+msgctxt "New"
msgid "_Contact"
msgstr "連絡先(_C)"
@@ -681,12 +680,13 @@ msgid "Create a new contact"
msgstr "新しい連絡先を作成します"
#: ../addressbook/gui/component/addressbook-component.c:237
+msgctxt "New"
msgid "Contact _List"
msgstr "連絡先の一覧(_L)"
#: ../addressbook/gui/component/addressbook-component.c:238
msgid "Create a new contact list"
-msgstr "新しい連絡先一覧を作成します"
+msgstr "新しい連絡先の一覧を作成します"
#: ../addressbook/gui/component/addressbook-component.c:244
#: ../addressbook/gui/component/addressbook-config.c:1206
@@ -694,6 +694,7 @@ msgid "New Address Book"
msgstr "新しいアドレス帳"
#: ../addressbook/gui/component/addressbook-component.c:245
+msgctxt "New"
msgid "Address _Book"
msgstr "アドレス帳(_B)"
@@ -705,34 +706,34 @@ msgstr "新しいアドレス帳を作成します"
msgid "Failed upgrading Address Book settings or folders."
msgstr "アドレス帳の設定または関連フォルダのアップグレードに失敗しました"
-#: ../addressbook/gui/component/addressbook-config.c:329
+#: ../addressbook/gui/component/addressbook-config.c:316
msgid "Base"
msgstr "ベース"
-#: ../addressbook/gui/component/addressbook-config.c:530
-#: ../calendar/gui/dialogs/calendar-setup.c:172
+#: ../addressbook/gui/component/addressbook-config.c:517
+#: ../calendar/gui/dialogs/calendar-setup.c:169
msgid "_Type:"
msgstr "種類(_T):"
-#: ../addressbook/gui/component/addressbook-config.c:632
+#: ../addressbook/gui/component/addressbook-config.c:619
msgid "Copy _book content locally for offline operation"
msgstr "オフライン時に連絡先の内容をローカルへコピーする(_B)"
#: ../addressbook/gui/component/addressbook-config.c:981
#: ../addressbook/gui/component/ldap-config.glade.h:22
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:20
-#: ../calendar/gui/dialogs/calendar-setup.c:369
-#: ../calendar/gui/dialogs/calendar-setup.c:380
-#: ../calendar/gui/dialogs/calendar-setup.c:391
-#: ../mail/em-folder-properties.c:222 ../mail/mail-config.glade.h:89
-#: ../plugins/itip-formatter/itip-formatter.c:2353
+#: ../calendar/gui/dialogs/calendar-setup.c:366
+#: ../calendar/gui/dialogs/calendar-setup.c:377
+#: ../calendar/gui/dialogs/calendar-setup.c:388
+#: ../mail/em-folder-properties.c:280 ../mail/mail-config.glade.h:89
+#: ../plugins/itip-formatter/itip-formatter.c:2367
#: ../smime/gui/smime-ui.glade.h:28
msgid "General"
msgstr "全般"
#: ../addressbook/gui/component/addressbook-config.c:982
-#: ../addressbook/gui/widgets/e-addressbook-view.c:557
-#: ../mail/importers/pine-importer.c:387
+#: ../addressbook/gui/widgets/e-addressbook-view.c:555
+#: ../mail/importers/pine-importer.c:385
msgid "Address Book"
msgstr "アドレス帳"
@@ -746,12 +747,12 @@ msgstr "認証"
#: ../addressbook/gui/component/addressbook-config.c:991
#: ../addressbook/gui/component/ldap-config.glade.h:17
-#: ../mail/mail-dialogs.glade.h:10 ../smime/gui/smime-ui.glade.h:20
+#: ../smime/gui/smime-ui.glade.h:20
msgid "Details"
msgstr "詳細"
#: ../addressbook/gui/component/addressbook-config.c:992
-#: ../mail/em-folder-browser.c:935
+#: ../mail/em-folder-browser.c:982
msgid "Searching"
msgstr "検索"
@@ -760,19 +761,19 @@ msgid "Downloading"
msgstr "ダウンロード"
#: ../addressbook/gui/component/addressbook-config.c:1204
-#: ../addressbook/gui/component/ldap-config.glade.h:13
+#: ../addressbook/gui/component/ldap-config.glade.h:11
msgid "Address Book Properties"
msgstr "アドレス帳のプロパティ"
#: ../addressbook/gui/component/addressbook-migrate.c:73
-#: ../calendar/gui/migration.c:155 ../mail/em-migrate.c:1203
+#: ../calendar/gui/migration.c:148 ../mail/em-migrate.c:1207
msgid "Migrating..."
msgstr "移行中..."
#: ../addressbook/gui/component/addressbook-migrate.c:125
-#: ../calendar/gui/migration.c:202 ../mail/em-migrate.c:1244
+#: ../calendar/gui/migration.c:195 ../mail/em-migrate.c:1247
#, c-format
-msgid "Migrating `%s':"
+msgid "Migrating '%s':"
msgstr "'%s' の移行中:"
#: ../addressbook/gui/component/addressbook-migrate.c:645
@@ -825,69 +826,75 @@ msgstr ""
"\n"
"Evolution がお使いのパイロット同期データを移行している間、少々お待ち下さい..."
-#: ../addressbook/gui/component/addressbook-view.c:434
-#: ../mail/em-folder-utils.c:503
+#: ../addressbook/gui/component/addressbook-view.c:425
+#: ../mail/em-folder-utils.c:502
#, c-format
msgid "Rename the \"%s\" folder to:"
msgstr "フォルダ名 (\"%s\") の変更:"
-#: ../addressbook/gui/component/addressbook-view.c:437
-#: ../mail/em-folder-utils.c:505
+#: ../addressbook/gui/component/addressbook-view.c:428
+#: ../mail/em-folder-utils.c:504
msgid "Rename Folder"
msgstr "フォルダ名の変更"
-#: ../addressbook/gui/component/addressbook-view.c:442
-#: ../mail/em-folder-utils.c:511
+#: ../addressbook/gui/component/addressbook-view.c:433
+#: ../mail/em-folder-utils.c:510
msgid "Folder names cannot contain '/'"
msgstr "フォルダ名には '/' を含めることはできません。"
-#: ../addressbook/gui/component/addressbook-view.c:954
+#: ../addressbook/gui/component/addressbook-view.c:942
msgid "_New Address Book"
msgstr "新しいアドレス帳(_N)"
-#: ../addressbook/gui/component/addressbook-view.c:955
+#: ../addressbook/gui/component/addressbook-view.c:943
msgid "Save As vCard..."
msgstr "vCard 形式で保存..."
-#: ../addressbook/gui/component/addressbook-view.c:958
-#: ../addressbook/gui/widgets/e-addressbook-view.c:957
-#: ../calendar/gui/calendar-component.c:609
-#: ../calendar/gui/e-calendar-table.c:1387
-#: ../calendar/gui/e-calendar-view.c:1705 ../calendar/gui/e-memo-table.c:941
+#: ../addressbook/gui/component/addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:955
+#: ../calendar/gui/calendar-component.c:619
+#: ../calendar/gui/e-calendar-table.c:1596
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
-#: ../mail/em-folder-tree.c:2090 ../mail/em-folder-view.c:1346
+#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
#: ../ui/evolution-mail-list.xml.h:35 ../ui/evolution-memos.xml.h:16
#: ../ui/evolution-tasks.xml.h:24
msgid "_Delete"
msgstr "削除(_D)"
-#: ../addressbook/gui/component/addressbook-view.c:961
-msgid "_Properties..."
-msgstr "プロパティ(_P)..."
+#: ../addressbook/gui/component/addressbook-view.c:949
+#: ../calendar/gui/calendar-component.c:622
+#: ../calendar/gui/dialogs/comp-editor.c:2035
+#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
+#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
+#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
+msgid "_Properties"
+msgstr "プロパティ(_P)"
-#: ../addressbook/gui/component/addressbook-view.c:1349
+#: ../addressbook/gui/component/addressbook-view.c:1337
msgid "Contact Source Selector"
msgstr "連絡先ソースの選択"
-#: ../addressbook/gui/component/addressbook.c:99
+#: ../addressbook/gui/component/addressbook.c:102
msgid "Accessing LDAP Server anonymously"
msgstr "匿名で LDAP サーバにアクセスします"
-#: ../addressbook/gui/component/addressbook.c:200
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:511
+#: ../addressbook/gui/component/addressbook.c:207
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:536
msgid "Failed to authenticate.\n"
msgstr "認証に失敗しました。\n"
-#: ../addressbook/gui/component/addressbook.c:207
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:491
+#: ../addressbook/gui/component/addressbook.c:214
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:516
#, c-format
msgid "Enter password for %s (user %s)"
msgstr "%s (ユーザ %s) のパスワードを入力して下さい"
-#: ../addressbook/gui/component/addressbook.c:215
+#: ../addressbook/gui/component/addressbook.c:222
#: ../calendar/common/authentication.c:51
-#: ../plugins/publish-calendar/publish-calendar.c:93
+#: ../plugins/google-account-setup/google-source.c:498
+#: ../plugins/publish-calendar/publish-calendar.c:190
#: ../smime/gui/component.c:50
msgid "Enter password"
msgstr "パスワードの入力"
@@ -909,8 +916,8 @@ msgid ""
"Position of the vertical pane, between the card and list views and the "
"preview pane, in pixels."
msgstr ""
-"カードと一覧ビューとプレビュー・ペインの間にある垂直ペインの位置 (ピクセル単"
-"位) です。"
+"カードそのものと一覧ビューとプレビュー・ペインの間にある垂直ペインの位置 (ピ"
+"クセル単位) です。"
#: ../addressbook/gui/component/apps_evolution_addressbook.schemas.in.h:5
msgid "Show preview pane"
@@ -964,38 +971,35 @@ msgid "<b>Authentication</b>"
msgstr "<b>認証</b>"
#: ../addressbook/gui/component/ldap-config.glade.h:7
-msgid "<b>Display</b>"
-msgstr "<b>表示</b>"
-
-#: ../addressbook/gui/component/ldap-config.glade.h:8
msgid "<b>Downloading</b>"
msgstr "<b>ダウンロード</b>"
-#: ../addressbook/gui/component/ldap-config.glade.h:9
+#: ../addressbook/gui/component/ldap-config.glade.h:8
msgid "<b>Searching</b>"
msgstr "<b>検索</b>"
-#: ../addressbook/gui/component/ldap-config.glade.h:10
-msgid "<b>Server Information</b>"
-msgstr "<b>サーバの情報</b>"
-
-#: ../addressbook/gui/component/ldap-config.glade.h:11
+#: ../addressbook/gui/component/ldap-config.glade.h:9
msgid "<b>Type:</b>"
msgstr "<b>種類:</b>"
-#: ../addressbook/gui/component/ldap-config.glade.h:12
+#: ../addressbook/gui/component/ldap-config.glade.h:10
msgid "Add Address Book"
msgstr "アドレス帳の追加"
-#: ../addressbook/gui/component/ldap-config.glade.h:14
-#: ../mail/em-account-editor.c:777
+#: ../addressbook/gui/component/ldap-config.glade.h:12
+#: ../mail/em-account-editor.c:761
msgid "Always"
msgstr "常に"
-#: ../addressbook/gui/component/ldap-config.glade.h:15
+#: ../addressbook/gui/component/ldap-config.glade.h:13
msgid "Anonymously"
msgstr "匿名"
+#. To translators: If enabled, addressbook will only fetch contacts from the server until either set time limit or amount of contacts limit reached
+#: ../addressbook/gui/component/ldap-config.glade.h:15
+msgid "B_rowse this book until limit reached"
+msgstr "ダウンロードの上限に到達するまでアドレス帳を閲覧する(_R)"
+
#: ../addressbook/gui/component/ldap-config.glade.h:16
msgid "Basic"
msgstr "基本"
@@ -1023,14 +1027,14 @@ msgid "Lo_gin:"
msgstr "ログイン(_G):"
#: ../addressbook/gui/component/ldap-config.glade.h:24
-#: ../mail/em-account-editor.c:776
+#: ../mail/em-account-editor.c:760
msgid "Never"
msgstr "しない"
#. Translators: This string is a "Use secure connection" option for
#. the Mailer. It will not use an encrypted connection.
#: ../addressbook/gui/component/ldap-config.glade.h:25
-#: ../mail/em-account-editor.c:304
+#: ../mail/em-account-editor.c:288
msgid "No encryption"
msgstr "暗号化しない"
@@ -1042,7 +1046,7 @@ msgstr "トップ"
#. the Mailer. SSL (Secure Sockets Layer) is commonly known by this
#. abbreviation.
#: ../addressbook/gui/component/ldap-config.glade.h:27
-#: ../mail/em-account-editor.c:312
+#: ../mail/em-account-editor.c:296
msgid "SSL encryption"
msgstr "SSL で暗号化する"
@@ -1110,7 +1114,7 @@ msgstr "サポートする検索ベース"
#. the Mailer. TLS (Transport Layer Security) is commonly known by
#. this abbreviation.
#: ../addressbook/gui/component/ldap-config.glade.h:38
-#: ../mail/em-account-editor.c:308
+#: ../mail/em-account-editor.c:292
msgid "TLS encryption"
msgstr "TLS で暗号化する"
@@ -1164,8 +1168,8 @@ msgid ""
"This is the name for this server that will appear in your Evolution folder "
"list. It is for display purposes only. "
msgstr ""
-"これはこのサーバの名前で、Evolution フォルダ一覧の中に表示されます。表示目的"
-"にのみ使用されます。"
+"これはこのサーバの名前で、Evolution のフォルダ一覧の中に表示されます。表示目"
+"的にのみ使用されます。"
#: ../addressbook/gui/component/ldap-config.glade.h:45
msgid ""
@@ -1206,8 +1210,8 @@ msgid "_Login method:"
msgstr "ログイン方式(_L):"
#: ../addressbook/gui/component/ldap-config.glade.h:53
-#: ../calendar/gui/dialogs/calendar-setup.c:229
-#: ../mail/mail-config.glade.h:164
+#: ../calendar/gui/dialogs/calendar-setup.c:226
+#: ../mail/mail-config.glade.h:175
#: ../plugins/groupwise-features/properties.glade.h:11
#: ../widgets/menus/gal-view-instance-save-as-dialog.glade.h:2
msgid "_Name:"
@@ -1222,7 +1226,7 @@ msgid "_Search scope:"
msgstr "検索範囲(_S):"
#: ../addressbook/gui/component/ldap-config.glade.h:56
-#: ../mail/mail-config.glade.h:172
+#: ../mail/mail-config.glade.h:184
#: ../plugins/publish-calendar/publish-calendar.glade.h:26
msgid "_Server:"
msgstr "サーバ(_S):"
@@ -1243,9 +1247,10 @@ msgstr "カード"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:8
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:27
#: ../calendar/gui/dialogs/event-page.glade.h:20 ../filter/filter.glade.h:17
-#: ../plugins/calendar-http/calendar-http.c:288
+#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
-#: ../plugins/google-account-setup/google-source.c:395
+#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "分"
@@ -1286,7 +1291,7 @@ msgid "<b>Work</b>"
msgstr "<b>仕事</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:184
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1298,16 +1303,16 @@ msgid "Ca_tegories..."
msgstr "カテゴリ(_T)..."
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:273
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
-#: ../addressbook/gui/widgets/e-minicard.c:194
+#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "連絡先"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:565
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2430
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "連絡先エディタ"
@@ -1320,7 +1325,7 @@ msgid "Image"
msgstr "画像"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:16
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:68
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:58
msgid "MSN Messenger"
msgstr "MSN メッセンジャ"
@@ -1333,7 +1338,7 @@ msgid "Nic_kname:"
msgstr "あだ名(_K):"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:19
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:64
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:54
msgid "Novell Groupwise"
msgstr "Novell Groupwise"
@@ -1347,11 +1352,11 @@ msgstr "電話"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:238
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:202
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
-#: ../mail/em-migrate.c:1055
+#: ../mail/em-migrate.c:1057
msgid "Work"
msgstr "仕事"
@@ -1373,8 +1378,8 @@ msgid "_Birthday:"
msgstr "誕生日(_B):"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:28
-#: ../calendar/gui/dialogs/event-page.c:899
-#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/event-page.c:787
+#: ../calendar/gui/dialogs/event-page.glade.h:14
#: ../plugins/itip-formatter/itip-view.c:1850
msgid "_Calendar:"
msgstr "カレンダ(_C):"
@@ -1463,1119 +1468,1121 @@ msgstr "ファイルの場所(_W):"
msgid "_Zip/Postal Code:"
msgstr "郵便番号(_Z):"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:97
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:91
#: ../addressbook/gui/widgets/eab-contact-display.c:640
#: ../addressbook/gui/widgets/eab-contact-display.c:655
msgid "Address"
msgstr "住所"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:104
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:96
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:144
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:301
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
#: ../addressbook/gui/widgets/e-minicard-label.c:164
-#: ../addressbook/gui/widgets/e-minicard-view-widget.c:121
-#: ../addressbook/gui/widgets/e-minicard-view.c:522
-#: ../addressbook/gui/widgets/e-minicard.c:187
+#: ../addressbook/gui/widgets/e-minicard-view-widget.c:130
+#: ../addressbook/gui/widgets/e-minicard-view.c:544
+#: ../addressbook/gui/widgets/e-minicard.c:191
#: ../widgets/menus/gal-define-views-model.c:179
-#: ../widgets/table/e-cell-text.c:1835 ../widgets/text/e-text.c:3686
-#: ../widgets/text/e-text.c:3687
+#: ../widgets/table/e-cell-text.c:1836 ../widgets/text/e-text.c:3687
+#: ../widgets/text/e-text.c:3688
msgid "Editable"
msgstr "編集可"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:131
msgid "United States"
msgstr "米国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:132
msgid "Afghanistan"
msgstr "アフガニスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:133
msgid "Albania"
msgstr "アルバニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:134
msgid "Algeria"
msgstr "アルジェリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:135
msgid "American Samoa"
msgstr "アメリカンサモア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
msgid "Andorra"
msgstr "アンドラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
msgid "Angola"
msgstr "アンゴラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
msgid "Anguilla"
msgstr "アングィラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
msgid "Antarctica"
msgstr "南極大陸"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
msgid "Antigua And Barbuda"
msgstr "アンティグアとバルブダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
msgid "Argentina"
msgstr "アルゼンチン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
msgid "Armenia"
msgstr "アルメニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
msgid "Aruba"
msgstr "アルバ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
msgid "Australia"
msgstr "オーストラリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
msgid "Austria"
msgstr "オーストリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
msgid "Azerbaijan"
msgstr "アゼルバイジャン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
msgid "Bahamas"
msgstr "バハマ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
msgid "Bahrain"
msgstr "バーレン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
msgid "Bangladesh"
msgstr "バングラデッシュ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
msgid "Barbados"
msgstr "バルバドス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
msgid "Belarus"
msgstr "ベラルーシ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
msgid "Belgium"
msgstr "ベルギー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
msgid "Belize"
msgstr "ベリーズ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
msgid "Benin"
msgstr "ベニン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
msgid "Bermuda"
msgstr "バーミューダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
msgid "Bhutan"
msgstr "ブタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
msgid "Bolivia"
msgstr "ボリビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
msgid "Bosnia And Herzegowina"
msgstr "ボスニア・ヘルツェゴビナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
msgid "Botswana"
msgstr "ボツワナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
msgid "Bouvet Island"
msgstr "ブーベー島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
msgid "Brazil"
msgstr "ブラジル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
msgid "British Indian Ocean Territory"
msgstr "インド洋の英国領"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
msgid "Brunei Darussalam"
msgstr "ブルネイ Darussalam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
msgid "Bulgaria"
msgstr "ブルガリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
msgid "Burkina Faso"
msgstr "ブルキナ・ファソ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
msgid "Burundi"
msgstr "ブルンジ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
msgid "Cambodia"
msgstr "カンボジア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
msgid "Cameroon"
msgstr "カメルーン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
msgid "Canada"
msgstr "カナダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
msgid "Cape Verde"
msgstr "ケープバーデ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
msgid "Cayman Islands"
msgstr "ケーマン諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
msgid "Central African Republic"
msgstr "中央アフリカ共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
msgid "Chad"
msgstr "チャド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
msgid "Chile"
msgstr "チリ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
msgid "China"
msgstr "中国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
msgid "Christmas Island"
msgstr "クリスマス島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
msgid "Cocos (Keeling) Islands"
msgstr "ココス (キーリング) 島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
msgid "Colombia"
msgstr "コロンビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
msgid "Comoros"
msgstr "コモロス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
msgid "Congo"
msgstr "コンゴ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
msgid "Congo, The Democratic Republic Of The"
msgstr "コンゴ民主共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
msgid "Cook Islands"
msgstr "クック諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
msgid "Costa Rica"
msgstr "コスタリカ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
msgid "Cote d'Ivoire"
msgstr "コートジボアール"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
msgid "Croatia"
msgstr "クロアチア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
msgid "Cuba"
msgstr "キューバ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
msgid "Cyprus"
msgstr "キプロス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
msgid "Czech Republic"
msgstr "チェコ共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
msgid "Denmark"
msgstr "デンマーク"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
msgid "Djibouti"
msgstr "ジブチ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
msgid "Dominica"
msgstr "ドミニカ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
msgid "Dominican Republic"
msgstr "ドミニカ共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
msgid "Ecuador"
msgstr "エクアドル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
msgid "Egypt"
msgstr "エジプト"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
msgid "El Salvador"
msgstr "エルサルバドル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
msgid "Equatorial Guinea"
msgstr "赤道ギニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
msgid "Eritrea"
msgstr "エルトリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
msgid "Estonia"
msgstr "エストニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
msgid "Ethiopia"
msgstr "エチオピア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
msgid "Falkland Islands"
msgstr "フォークランド諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
msgid "Faroe Islands"
msgstr "フェロー諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
msgid "Fiji"
msgstr "フィジー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
msgid "Finland"
msgstr "フィンランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
msgid "France"
msgstr "仏国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
msgid "French Guiana"
msgstr "仏領ギニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
msgid "French Polynesia"
msgstr "仏領ポリネシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
msgid "French Southern Territories"
msgstr "仏領南域"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
msgid "Gabon"
msgstr "ガボン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
msgid "Gambia"
msgstr "ガンビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
msgid "Georgia"
msgstr "ジョージア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
msgid "Germany"
msgstr "ドイツ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
msgid "Ghana"
msgstr "ガーナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
msgid "Gibraltar"
msgstr "ジブラルタル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
msgid "Greece"
msgstr "ギリシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
msgid "Greenland"
msgstr "グリーンランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
msgid "Grenada"
msgstr "グレナダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
msgid "Guadeloupe"
msgstr "グアドループ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
msgid "Guam"
msgstr "グアム"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
msgid "Guatemala"
msgstr "グアテマラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
msgid "Guernsey"
-msgstr "Guernsey"
+msgstr "ガーンジー島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
msgid "Guinea"
msgstr "ギニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
-msgid "Guinea-bissau"
-msgstr "ギニア-ビサウ"
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
+msgid "Guinea-Bissau"
+msgstr "ギニア・ビサウ共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
msgid "Guyana"
msgstr "ガイアナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
msgid "Haiti"
msgstr "ハイチ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
msgid "Heard And McDonald Islands"
msgstr "ハード・マクドナルド諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
msgid "Holy See"
msgstr "ローマ法王庁"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
msgid "Honduras"
msgstr "ホンジュラス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
msgid "Hong Kong"
msgstr "香港"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
msgid "Hungary"
msgstr "ハンガリー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
msgid "Iceland"
msgstr "アイスランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
msgid "India"
msgstr "インド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
msgid "Indonesia"
msgstr "インドネシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
msgid "Iran"
msgstr "イラン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
msgid "Iraq"
msgstr "イラク"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
msgid "Ireland"
msgstr "アイルランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
msgid "Isle of Man"
-msgstr "Isle of Man"
+msgstr "マン島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
msgid "Israel"
msgstr "イスラエル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
msgid "Italy"
msgstr "イタリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
msgid "Jamaica"
msgstr "ジャマイカ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
msgid "Japan"
msgstr "日本"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
msgid "Jersey"
-msgstr "Jersey"
+msgstr "ジャージー島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
msgid "Jordan"
msgstr "ヨルダン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
msgid "Kazakhstan"
msgstr "カザフタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
msgid "Kenya"
msgstr "ケニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
msgid "Kiribati"
msgstr "キリバス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
msgid "Korea, Democratic People's Republic Of"
msgstr "朝鮮人民共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
msgid "Korea, Republic Of"
msgstr "大韓民国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
msgid "Kuwait"
msgstr "クェート"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
msgid "Kyrgyzstan"
msgstr "キリジスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
msgid "Laos"
msgstr "ラオス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
msgid "Latvia"
msgstr "ラトビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
msgid "Lebanon"
msgstr "レバノン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
msgid "Lesotho"
msgstr "レソト"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
msgid "Liberia"
msgstr "リベリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
msgid "Libya"
-msgstr "Libya"
+msgstr "リビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
msgid "Liechtenstein"
msgstr "リヒテンシュタイン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
msgid "Lithuania"
msgstr "リスアニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
msgid "Luxembourg"
msgstr "ルクセンブルグ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
msgid "Macao"
msgstr "マカオ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
msgid "Macedonia"
msgstr "マセドニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
msgid "Madagascar"
msgstr "マダカスカル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
msgid "Malawi"
msgstr "マラウィ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
msgid "Malaysia"
msgstr "マレーシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
msgid "Maldives"
msgstr "モルジブ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
msgid "Mali"
msgstr "マリ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
msgid "Malta"
msgstr "マルタ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
msgid "Marshall Islands"
msgstr "マーシャル諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
msgid "Martinique"
msgstr "マルチニーク島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
msgid "Mauritania"
msgstr "モーリタニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
msgid "Mauritius"
msgstr "マリシャス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
msgid "Mayotte"
msgstr "マイヨット島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
msgid "Mexico"
msgstr "メキシコ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
msgid "Micronesia"
msgstr "ミクロネシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
msgid "Moldova, Republic Of"
msgstr "モルドバ共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
msgid "Monaco"
msgstr "モナコ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
msgid "Mongolia"
msgstr "モンゴル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
msgid "Montserrat"
msgstr "モントセラト"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
msgid "Morocco"
msgstr "モロッコ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
msgid "Mozambique"
msgstr "モザンビーク"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
msgid "Myanmar"
msgstr "ミヤンマー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
msgid "Namibia"
msgstr "ナミビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
msgid "Nauru"
msgstr "ナウル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
msgid "Nepal"
msgstr "ネパール"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
msgid "Netherlands"
msgstr "オランダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
msgid "Netherlands Antilles"
msgstr "オランダ領アンチル諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
msgid "New Caledonia"
msgstr "ニューカレドニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
msgid "New Zealand"
msgstr "ニュージーランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
msgid "Nicaragua"
msgstr "ニカラグア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
msgid "Niger"
msgstr "ニジェール"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
msgid "Nigeria"
msgstr "ナイジェリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
msgid "Niue"
msgstr "ニウエ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
msgid "Norfolk Island"
msgstr "ノーフォーク島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
msgid "Northern Mariana Islands"
msgstr "北マリアナ諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
msgid "Norway"
msgstr "ノルウェー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
msgid "Oman"
msgstr "オマーン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
msgid "Pakistan"
msgstr "パキスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
msgid "Palau"
msgstr "パラオ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
msgid "Palestinian Territory"
msgstr "パレスチナ暫定自治区"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
msgid "Panama"
msgstr "パナマ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
msgid "Papua New Guinea"
msgstr "パプアニューギニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
msgid "Paraguay"
msgstr "パラグアイ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
msgid "Peru"
msgstr "ペルー"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
msgid "Philippines"
msgstr "フィリピン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
msgid "Pitcairn"
msgstr "ピトルケルン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
msgid "Poland"
msgstr "ポーランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
msgid "Portugal"
msgstr "ポルトガル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
msgid "Puerto Rico"
msgstr "プエルトリコ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
msgid "Qatar"
msgstr "カタール"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
msgid "Reunion"
msgstr "レユニオン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
msgid "Romania"
msgstr "ルーマニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
msgid "Russian Federation"
msgstr "ロシア連邦"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
msgid "Rwanda"
msgstr "ルワンダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
msgid "Saint Kitts And Nevis"
msgstr "セントキッツ・ネビス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
msgid "Saint Lucia"
msgstr "セントルシア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
msgid "Saint Vincent And The Grenadines"
msgstr "セント・ビンセント・グレナディーン諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
msgid "Samoa"
msgstr "サモア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
msgid "San Marino"
msgstr "サンマリノ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
msgid "Sao Tome And Principe"
msgstr "サントメ・プリンシペ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
msgid "Saudi Arabia"
msgstr "サウジアラビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
msgid "Senegal"
msgstr "セネガル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
msgid "Serbia And Montenegro"
msgstr "セルビア・モンテネグロ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
msgid "Seychelles"
msgstr "セーシェル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
msgid "Sierra Leone"
msgstr "シエラレオネ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
msgid "Singapore"
msgstr "シンガポール"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
msgid "Slovakia"
msgstr "スロバキア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
msgid "Slovenia"
msgstr "スロベニア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
msgid "Solomon Islands"
msgstr "ソロモン諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
msgid "Somalia"
msgstr "ソマリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
msgid "South Africa"
msgstr "南アフリカ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
msgid "South Georgia And The South Sandwich Islands"
msgstr "南ジョージアと南サンドウィッチ諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
msgid "Spain"
msgstr "スペイン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
msgid "Sri Lanka"
msgstr "スリランカ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
msgid "St. Helena"
msgstr "St. ヘレナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
msgid "St. Pierre And Miquelon"
msgstr "セントピエールとミクロン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
msgid "Sudan"
msgstr "スーダン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
msgid "Suriname"
msgstr "スリナム"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
msgid "Svalbard And Jan Mayen Islands"
msgstr "スバールバル・ヤンマイエン島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
msgid "Swaziland"
msgstr "スワジランド"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
msgid "Sweden"
msgstr "スウェーデン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
msgid "Switzerland"
msgstr "スイス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
msgid "Syria"
msgstr "シリア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
msgid "Taiwan"
msgstr "台湾"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
msgid "Tajikistan"
msgstr "タジキスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
msgid "Tanzania, United Republic Of"
msgstr "タンザニア共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
msgid "Thailand"
msgstr "タイ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
msgid "Timor-Leste"
msgstr "東チモール民主共和国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
msgid "Togo"
msgstr "トーゴ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
msgid "Tokelau"
msgstr "トケラウ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
msgid "Tonga"
msgstr "トンガ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
msgid "Trinidad And Tobago"
msgstr "トリニダード・トバゴ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
msgid "Tunisia"
msgstr "チュニジア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
msgid "Turkey"
msgstr "トルコ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
msgid "Turkmenistan"
msgstr "トルクメニスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
msgid "Turks And Caicos Islands"
msgstr "タークス・カイコス諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
msgid "Tuvalu"
msgstr "ツバル"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
msgid "Uganda"
msgstr "ウガンダ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
msgid "Ukraine"
msgstr "ウクライナ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
msgid "United Arab Emirates"
msgstr "アラブ首長国連邦"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
msgid "United Kingdom"
msgstr "英国"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
msgid "United States Minor Outlying Islands"
msgstr "米国周辺離島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
msgid "Uruguay"
msgstr "ウルグアイ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
msgid "Uzbekistan"
msgstr "ウズベキスタン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
msgid "Vanuatu"
msgstr "バヌアツ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
msgid "Venezuela"
msgstr "ベネズエラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
msgid "Viet Nam"
msgstr "ベトナム"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
msgid "Virgin Islands, British"
msgstr "バージン諸島 (英国領)"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:373
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
msgid "Virgin Islands, U.S."
msgstr "バージン諸島 (米国領)"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:374
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
msgid "Wallis And Futuna Islands"
msgstr "ワリスフツナ諸島"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:375
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
msgid "Western Sahara"
msgstr "西サハラ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:376
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
msgid "Yemen"
msgstr "イエメン"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:377
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
msgid "Zambia"
msgstr "ザンビア"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:378
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
msgid "Zimbabwe"
msgstr "ジンバブエ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:90
-#: ../mail/em-mailer-prefs.c:481
-#: ../plugins/exchange-operations/exchange-delegates.c:958
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:721
-#: ../plugins/plugin-manager/plugin-manager.c:56
-#: ../plugins/save-attachments/save-attachments.c:366
-#: ../widgets/menus/gal-define-views-dialog.c:348
-#: ../widgets/menus/gal-view-instance-save-as-dialog.c:93
-#: ../widgets/menus/gal-view-new-dialog.c:65
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:85
+#: ../mail/em-mailer-prefs.c:466
+#: ../plugins/exchange-operations/exchange-delegates.c:952
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:709
+#: ../plugins/plugin-manager/plugin-manager.c:41
+#: ../plugins/save-attachments/save-attachments.c:350
+#: ../widgets/menus/gal-define-views-dialog.c:346
+#: ../widgets/menus/gal-view-instance-save-as-dialog.c:91
+#: ../widgets/menus/gal-view-new-dialog.c:63
msgid "Name"
msgstr "名前"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:63
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:53
msgid "AOL Instant Messenger"
msgstr "AOL インスタント・メッセンジャ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:65
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:185
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "Jabber"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:66
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:56
msgid "Yahoo Messenger"
msgstr "Yahoo メッセンジャ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:67
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:57
msgid "Gadu-Gadu Messenger"
msgstr "Gadu-Gadu メッセンジャ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:69
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:189
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:121
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:111
msgid "Service"
msgstr "サービス"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:130
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:120
+#: ../calendar/gui/caltypes.xml.h:25
#: ../calendar/gui/e-cal-list-view.etspec.h:3 ../mail/message-list.etspec.h:9
-#: ../plugins/publish-calendar/publish-calendar.c:514
-#: ../plugins/save-calendar/csv-format.c:396
+#: ../plugins/publish-calendar/publish-calendar.c:693
+#: ../plugins/save-calendar/csv-format.c:375
msgid "Location"
msgstr "場所"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:137
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:127
msgid "Username"
msgstr "ユーザ名"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:234
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:203
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "自宅"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:242
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:204
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
+#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "その他"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:186
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "Yahoo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:187
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:188
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:190
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "GroupWise"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:259
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "元のアドレス帳"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:266
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "対象のアドレス帳"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:280
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "新しい連絡先です"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:287
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "書き込み可能な項目"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:294
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "必須の項目"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:308
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "変更済"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:560
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2425
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "連絡先エディタ - %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2821
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "この連絡先の画像を選択して下さい"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2822
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "画像なし(_N)"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3095
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2583,64 +2590,64 @@ msgstr ""
"連絡先データが間違っています:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3099
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "'%s' の書式が間違っています"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3106
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s'%s' の書式が間違っています"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3121
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3132
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s'%s' は空です"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3147
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "連絡先が正しくありません。"
-#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:322
+#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:329
msgid "Contact Quick-Add"
msgstr "連絡先の簡易追加"
-#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:325
+#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:332
msgid "_Edit Full"
msgstr "全て編集(_E)"
-#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:394
+#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:406
msgid "_Full name"
msgstr "氏名(_F)"
-#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:405
+#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:417
msgid "E_mail"
msgstr "E-メール(_M)"
-#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:416
+#: ../addressbook/gui/contact-editor/e-contact-quick-add.c:428
msgid "_Select Address Book"
msgstr "アドレス帳の選択(_S)"
-#: ../addressbook/gui/contact-editor/eab-editor.c:322
+#: ../addressbook/gui/contact-editor/eab-editor.c:321
#, c-format
msgid ""
"Are you sure you want\n"
"to delete contact list (%s)?"
msgstr ""
-"この連絡先一覧 (%s) を\n"
+"この連絡先の一覧 (%s) を\n"
"本当に削除してもよろしいですか?"
-#: ../addressbook/gui/contact-editor/eab-editor.c:325
+#: ../addressbook/gui/contact-editor/eab-editor.c:324
msgid ""
"Are you sure you want\n"
"to delete these contact lists?"
msgstr ""
-"これらの連絡先一覧を\n"
+"これらの連絡先の一覧を\n"
"本当に削除してもよろしいですか?"
-#: ../addressbook/gui/contact-editor/eab-editor.c:330
+#: ../addressbook/gui/contact-editor/eab-editor.c:329
#, c-format
msgid ""
"Are you sure you want\n"
@@ -2649,7 +2656,7 @@ msgstr ""
"この連絡先 (%s) を\n"
"本当に削除してもよろしいですか?"
-#: ../addressbook/gui/contact-editor/eab-editor.c:333
+#: ../addressbook/gui/contact-editor/eab-editor.c:332
msgid ""
"Are you sure you want\n"
"to delete these contacts?"
@@ -2769,7 +2776,7 @@ msgstr "<b>この連絡先に属すメンバ:</b>"
#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:2
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:666
msgid "Contact List Editor"
-msgstr "連絡先一覧エディタ"
+msgstr "連絡先の一覧エディタ"
#: ../addressbook/gui/contact-list-editor/contact-list-editor.glade.h:3
msgid "Select..."
@@ -2792,12 +2799,17 @@ msgstr ""
msgid "Contact List Members"
msgstr "連絡先一覧のメンバー"
+#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:898
+#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1237
+msgid "_Members"
+msgstr "メンバー(_M)"
+
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1146
#: ../addressbook/gui/widgets/e-addressbook-model.c:298
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:390
-#: ../addressbook/gui/widgets/e-addressbook-view.c:217
-#: ../addressbook/gui/widgets/e-minicard-view-widget.c:107
-#: ../addressbook/gui/widgets/e-minicard-view.c:508
+#: ../addressbook/gui/widgets/e-addressbook-view.c:212
+#: ../addressbook/gui/widgets/e-minicard-view-widget.c:116
+#: ../addressbook/gui/widgets/e-minicard-view.c:530
msgid "Book"
msgstr "書籍"
@@ -2805,10 +2817,6 @@ msgstr "書籍"
msgid "Is New List"
msgstr "新しい一覧です"
-#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1237
-msgid "_Members"
-msgstr "メンバー(_M)"
-
#: ../addressbook/gui/merging/eab-contact-commit-duplicate-detected.glade.h:1
msgid "Changed Contact:"
msgstr "変更後の連絡先:"
@@ -2846,40 +2854,40 @@ msgstr ""
"この連絡先と同じ名前あるいは E-メール・アドレスが\n"
"既にこのフォルダにあります。とにかく追加しますか?"
-#: ../addressbook/gui/merging/eab-contact-merging.c:190
-msgid "Merge Contact"
-msgstr "連絡先のマージ"
-
-#: ../addressbook/gui/merging/eab-contact-merging.c:205
+#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:6
+#: ../addressbook/gui/merging/eab-contact-merging.c:200
msgid "_Merge"
msgstr "マージする(_M)"
-#: ../addressbook/gui/merging/eab-contact-merging.c:258
+#: ../addressbook/gui/merging/eab-contact-merging.c:185
+msgid "Merge Contact"
+msgstr "連絡先のマージ"
+
+#: ../addressbook/gui/merging/eab-contact-merging.c:253
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:11
#: ../addressbook/gui/widgets/eab-contact-display.c:592
#: ../addressbook/gui/widgets/eab-contact-display.c:597
#: ../addressbook/gui/widgets/eab-contact-display.c:600
-#: ../addressbook/gui/widgets/eab-contact-display.c:860
-#: ../plugins/groupwise-features/junk-settings.c:425 ../smime/lib/e-cert.c:827
+#: ../addressbook/gui/widgets/eab-contact-display.c:879
+#: ../plugins/groupwise-features/junk-settings.c:415 ../smime/lib/e-cert.c:827
msgid "Email"
msgstr "メール"
#: ../addressbook/gui/widgets/addresstypes.xml.h:1
-#: ../addressbook/gui/widgets/e-addressbook-view.c:165
-#: ../calendar/gui/cal-search-bar.c:78 ../calendar/gui/caltypes.xml.h:1
-#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:1
+#: ../addressbook/gui/widgets/e-addressbook-view.c:161
+#: ../calendar/gui/cal-search-bar.c:76 ../calendar/gui/caltypes.xml.h:3
+#: ../calendar/gui/memotypes.xml.h:3 ../calendar/gui/tasktypes.xml.h:5
msgid "Any field contains"
-msgstr "項目が次を含む"
+msgstr "いずれかの項目が次を含む"
#: ../addressbook/gui/widgets/addresstypes.xml.h:2
-#: ../addressbook/gui/widgets/e-addressbook-view.c:164
+#: ../addressbook/gui/widgets/e-addressbook-view.c:160
msgid "Email begins with"
msgstr "E-メールが次で始まる"
#: ../addressbook/gui/widgets/addresstypes.xml.h:3
-#: ../addressbook/gui/widgets/e-addressbook-view.c:163
-msgid "Name begins with"
-msgstr "名前が次で始まる"
+msgid "Name contains"
+msgstr "氏名が次を含む"
#: ../addressbook/gui/widgets/e-addressbook-model.c:150
msgid "No contacts"
@@ -2889,14 +2897,14 @@ msgstr "連絡先なし"
#, c-format
msgid "%d contact"
msgid_plural "%d contacts"
-msgstr[0] "連絡先 %d個"
-msgstr[1] "連絡先 %d個"
+msgstr[0] "%d個の連絡先"
+msgstr[1] "%d個の連絡先"
#: ../addressbook/gui/widgets/e-addressbook-model.c:305
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:397
-#: ../addressbook/gui/widgets/e-addressbook-view.c:231
-#: ../addressbook/gui/widgets/e-minicard-view-widget.c:114
-#: ../addressbook/gui/widgets/e-minicard-view.c:515
+#: ../addressbook/gui/widgets/e-addressbook-view.c:226
+#: ../addressbook/gui/widgets/e-minicard-view-widget.c:123
+#: ../addressbook/gui/widgets/e-minicard-view.c:537
msgid "Query"
msgstr "問い合わせ"
@@ -2907,9 +2915,9 @@ msgstr "ブックビューの取得でエラーが発生しました"
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:411
#: ../widgets/table/e-table-click-to-add.c:510
#: ../widgets/table/e-table-selection-model.c:303
-#: ../widgets/table/e-table.c:3335
-#: ../widgets/table/e-tree-selection-model.c:821 ../widgets/text/e-text.c:3550
-#: ../widgets/text/e-text.c:3551
+#: ../widgets/table/e-table.c:3353
+#: ../widgets/table/e-tree-selection-model.c:821 ../widgets/text/e-text.c:3551
+#: ../widgets/text/e-text.c:3552
msgid "Model"
msgstr "モデル"
@@ -2917,107 +2925,109 @@ msgstr "モデル"
msgid "Error modifying card"
msgstr "カードの修正中にエラーが発生しました"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:224
+#: ../addressbook/gui/widgets/e-addressbook-view.c:159
+msgid "Name begins with"
+msgstr "名前が次で始まる"
+
+#: ../addressbook/gui/widgets/e-addressbook-view.c:219
msgid "Source"
msgstr "情報ソース"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:238
+#: ../addressbook/gui/widgets/e-addressbook-view.c:233
#: ../calendar/gui/e-calendar-table.etspec.h:12
-#: ../calendar/gui/e-meeting-list-view.c:501
+#: ../calendar/gui/e-meeting-list-view.c:508
#: ../calendar/gui/e-meeting-time-sel.etspec.h:11
#: ../calendar/gui/e-memo-table.etspec.h:5
msgid "Type"
msgstr "種類"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:814
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1935
+#: ../addressbook/gui/widgets/e-addressbook-view.c:812
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1953
msgid "Save as vCard..."
msgstr "vCard 形式で保存..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:935
-#: ../calendar/gui/dialogs/comp-editor.c:1128
-#: ../calendar/gui/e-calendar-table.c:1365
-#: ../calendar/gui/e-calendar-view.c:1683 ../calendar/gui/e-memo-table.c:924
+#: ../addressbook/gui/widgets/e-addressbook-view.c:933
+#: ../calendar/gui/dialogs/comp-editor.c:2033
+#: ../calendar/gui/e-calendar-table.c:1574
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "開く(_O)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:937
+#: ../addressbook/gui/widgets/e-addressbook-view.c:935
msgid "_New Contact..."
msgstr "新しい連絡先(_N)..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:938
+#: ../addressbook/gui/widgets/e-addressbook-view.c:936
msgid "New Contact _List..."
-msgstr "新しい連絡先一覧(_L)..."
+msgstr "新しい連絡先の一覧(_L)..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:941
+#: ../addressbook/gui/widgets/e-addressbook-view.c:939
msgid "_Save as vCard..."
msgstr "vCard 形式で保存(_S)..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:942
+#: ../addressbook/gui/widgets/e-addressbook-view.c:940
msgid "_Forward Contact"
msgstr "連絡先の転送(_F)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:943
+#: ../addressbook/gui/widgets/e-addressbook-view.c:941
msgid "_Forward Contacts"
msgstr "複数の連絡先の転送(_F)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:944
+#: ../addressbook/gui/widgets/e-addressbook-view.c:942
msgid "Send _Message to Contact"
msgstr "連絡先へメッセージの送信(_M)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:945
+#: ../addressbook/gui/widgets/e-addressbook-view.c:943
msgid "Send _Message to List"
msgstr "一覧へメッセージの送信(_M)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:944
msgid "Send _Message to Contacts"
msgstr "複数の連絡先へメッセージの送信(_M)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:947
+#: ../addressbook/gui/widgets/e-addressbook-view.c:945
msgid "_Print"
msgstr "印刷(_P)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:950
+#: ../addressbook/gui/widgets/e-addressbook-view.c:948
msgid "Cop_y to Address Book..."
msgstr "アドレス帳へコピー(_Y)..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:951
+#: ../addressbook/gui/widgets/e-addressbook-view.c:949
msgid "Mo_ve to Address Book..."
msgstr "アドレス帳へ移動(_V)..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:954
-#: ../ui/evolution-composer-entries.xml.h:4 ../ui/evolution-editor.xml.h:8
+#: ../addressbook/gui/widgets/e-addressbook-view.c:952
msgid "Cu_t"
msgstr "切り取り(_T)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:955
-#: ../calendar/gui/dialogs/comp-editor.c:457
-#: ../calendar/gui/e-calendar-table.c:1373
-#: ../calendar/gui/e-calendar-view.c:1690 ../calendar/gui/e-memo-table.c:932
-#: ../composer/e-msg-composer.c:3100 ../mail/em-folder-tree.c:996
-#: ../mail/em-folder-view.c:1331 ../mail/message-list.c:2065
+#: ../addressbook/gui/widgets/e-addressbook-view.c:953
+#: ../calendar/gui/dialogs/comp-editor.c:480
+#: ../calendar/gui/e-calendar-table.c:1582
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
+#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
+#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
-#: ../ui/evolution-composer-entries.xml.h:13 ../ui/evolution-editor.xml.h:17
-#: ../ui/evolution-mail-message.xml.h:104 ../ui/evolution-memos.xml.h:15
+#: ../ui/evolution-mail-message.xml.h:103 ../ui/evolution-memos.xml.h:15
#: ../ui/evolution-tasks.xml.h:23
msgid "_Copy"
msgstr "コピー(_C)"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:956
+#: ../addressbook/gui/widgets/e-addressbook-view.c:954
msgid "P_aste"
msgstr "貼り付け(_A)"
#. All, unmatched, separator
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1511
-#: ../calendar/gui/cal-search-bar.c:619 ../calendar/gui/cal-search-bar.c:662
-#: ../calendar/gui/cal-search-bar.c:681
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1524
+#: ../calendar/gui/cal-search-bar.c:625 ../calendar/gui/cal-search-bar.c:668
+#: ../calendar/gui/cal-search-bar.c:687
msgid "Any Category"
msgstr "任意のカテゴリ"
#. E_BOOK_ERROR_OTHER_ERROR
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1716
-#: ../addressbook/gui/widgets/eab-gui-util.c:75
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
+#: ../addressbook/gui/widgets/eab-gui-util.c:77
msgid "Other error"
msgstr "その他のエラー"
@@ -3052,7 +3062,7 @@ msgstr "車載電話"
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:8
#: ../calendar/gui/dialogs/event-page.glade.h:7
-#: ../calendar/gui/e-cal-component-memo-preview.c:169
+#: ../calendar/gui/e-cal-component-memo-preview.c:144
#: ../calendar/gui/e-cal-list-view.etspec.h:1
#: ../calendar/gui/e-calendar-table.etspec.h:3
#: ../calendar/gui/e-memo-table.etspec.h:1
@@ -3153,9 +3163,9 @@ msgid "Radio"
msgstr "ラジオ"
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:33
-#: ../calendar/gui/e-meeting-list-view.c:513
+#: ../calendar/gui/e-meeting-list-view.c:520
#: ../calendar/gui/e-meeting-time-sel.etspec.h:9
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:725
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:713
msgid "Role"
msgstr "役割"
@@ -3191,38 +3201,38 @@ msgid "Web Site"
msgstr "ウェブ・サイト"
#: ../addressbook/gui/widgets/e-minicard-label.c:115
-#: ../addressbook/gui/widgets/e-minicard.c:150
+#: ../addressbook/gui/widgets/e-minicard.c:154
#: ../widgets/misc/e-canvas-vbox.c:86 ../widgets/misc/e-canvas-vbox.c:87
#: ../widgets/misc/e-reflow.c:1433 ../widgets/misc/e-reflow.c:1434
#: ../widgets/table/e-table-click-to-add.c:524
#: ../widgets/table/e-table-col.c:99
#: ../widgets/table/e-table-field-chooser-item.c:655
-#: ../widgets/table/e-table-group-container.c:966
-#: ../widgets/table/e-table-group-container.c:967
-#: ../widgets/table/e-table-group-leaf.c:628
-#: ../widgets/table/e-table-group-leaf.c:629
-#: ../widgets/table/e-table-item.c:3078 ../widgets/table/e-table-item.c:3079
-#: ../widgets/text/e-text.c:3728 ../widgets/text/e-text.c:3729
+#: ../widgets/table/e-table-group-container.c:993
+#: ../widgets/table/e-table-group-container.c:994
+#: ../widgets/table/e-table-group-leaf.c:637
+#: ../widgets/table/e-table-group-leaf.c:638
+#: ../widgets/table/e-table-item.c:3081 ../widgets/table/e-table-item.c:3082
+#: ../widgets/text/e-text.c:3729 ../widgets/text/e-text.c:3730
msgid "Width"
msgstr "幅"
#: ../addressbook/gui/widgets/e-minicard-label.c:122
-#: ../addressbook/gui/widgets/e-minicard.c:157
+#: ../addressbook/gui/widgets/e-minicard.c:161
#: ../widgets/misc/e-canvas-vbox.c:98 ../widgets/misc/e-canvas-vbox.c:99
#: ../widgets/misc/e-reflow.c:1441 ../widgets/misc/e-reflow.c:1442
#: ../widgets/table/e-table-click-to-add.c:531
#: ../widgets/table/e-table-field-chooser-item.c:662
-#: ../widgets/table/e-table-group-container.c:959
-#: ../widgets/table/e-table-group-container.c:960
-#: ../widgets/table/e-table-group-leaf.c:621
-#: ../widgets/table/e-table-group-leaf.c:622
-#: ../widgets/table/e-table-item.c:3084 ../widgets/table/e-table-item.c:3085
-#: ../widgets/text/e-text.c:3736 ../widgets/text/e-text.c:3737
+#: ../widgets/table/e-table-group-container.c:986
+#: ../widgets/table/e-table-group-container.c:987
+#: ../widgets/table/e-table-group-leaf.c:630
+#: ../widgets/table/e-table-group-leaf.c:631
+#: ../widgets/table/e-table-item.c:3087 ../widgets/table/e-table-item.c:3088
+#: ../widgets/text/e-text.c:3737 ../widgets/text/e-text.c:3738
msgid "Height"
msgstr "高さ"
#: ../addressbook/gui/widgets/e-minicard-label.c:129
-#: ../addressbook/gui/widgets/e-minicard.c:165
+#: ../addressbook/gui/widgets/e-minicard.c:169
msgid "Has Focus"
msgstr "フォーカスあり"
@@ -3242,11 +3252,21 @@ msgstr "テキスト・モデル"
msgid "Max field name length"
msgstr "項目名の最大長"
-#: ../addressbook/gui/widgets/e-minicard-view-widget.c:128
+#: ../addressbook/gui/widgets/e-minicard-view-widget.c:137
msgid "Column Width"
msgstr "カラムの幅"
-#: ../addressbook/gui/widgets/e-minicard-view.c:174
+#: ../addressbook/gui/widgets/e-minicard-view.c:177
+msgid ""
+"\n"
+"\n"
+"Searching for the Contacts..."
+msgstr ""
+"\n"
+"\n"
+"連絡先の検索中..."
+
+#: ../addressbook/gui/widgets/e-minicard-view.c:180
msgid ""
"\n"
"\n"
@@ -3260,7 +3280,7 @@ msgstr ""
"\n"
"または、ダブル・クリックして新しい連絡先を作成して下さい。"
-#: ../addressbook/gui/widgets/e-minicard-view.c:177
+#: ../addressbook/gui/widgets/e-minicard-view.c:183
msgid ""
"\n"
"\n"
@@ -3274,7 +3294,7 @@ msgstr ""
"\n"
"ダブルクリックをして新しい連絡先を作成して下さい。"
-#: ../addressbook/gui/widgets/e-minicard-view.c:182
+#: ../addressbook/gui/widgets/e-minicard-view.c:187
msgid ""
"\n"
"\n"
@@ -3284,7 +3304,7 @@ msgstr ""
"\n"
"連絡先の検索です。"
-#: ../addressbook/gui/widgets/e-minicard-view.c:184
+#: ../addressbook/gui/widgets/e-minicard-view.c:189
msgid ""
"\n"
"\n"
@@ -3294,40 +3314,41 @@ msgstr ""
"\n"
"このビューの中に表示できるアイテムはありません。"
-#: ../addressbook/gui/widgets/e-minicard-view.c:501
+#: ../addressbook/gui/widgets/e-minicard-view.c:523
msgid "Adapter"
msgstr "アダプタ"
-#: ../addressbook/gui/widgets/e-minicard.c:102
+#: ../addressbook/gui/widgets/e-minicard.c:99
msgid "Work Email"
msgstr "勤務先の E-メール"
-#: ../addressbook/gui/widgets/e-minicard.c:103
+#: ../addressbook/gui/widgets/e-minicard.c:100
msgid "Home Email"
msgstr "自宅の E-メール"
-#: ../addressbook/gui/widgets/e-minicard.c:104
+#: ../addressbook/gui/widgets/e-minicard.c:101
+#: ../addressbook/gui/widgets/e-minicard.c:830
msgid "Other Email"
msgstr "その他の E-メール"
-#: ../addressbook/gui/widgets/e-minicard.c:173
+#: ../addressbook/gui/widgets/e-minicard.c:177
msgid "Selected"
msgstr "選択済"
-#: ../addressbook/gui/widgets/e-minicard.c:180
+#: ../addressbook/gui/widgets/e-minicard.c:184
msgid "Has Cursor"
msgstr "カーソルあり"
-#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:637
+#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:627
msgid "_Open Link in Browser"
msgstr "リンクをブラウザで開く(_O)"
#: ../addressbook/gui/widgets/eab-contact-display.c:173
-#: ../mail/em-folder-view.c:2808
+#: ../mail/em-folder-view.c:2795
msgid "_Copy Link Location"
msgstr "リンク先のコピー(_C)"
-#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:638
+#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:628
msgid "_Send New Message To..."
msgstr "新しいメッセージの送信(_S)..."
@@ -3349,7 +3370,7 @@ msgid "map"
msgstr "地図"
#: ../addressbook/gui/widgets/eab-contact-display.c:487
-#: ../addressbook/gui/widgets/eab-contact-display.c:827
+#: ../addressbook/gui/widgets/eab-contact-display.c:846
msgid "List Members"
msgstr "メンバーのリスト化"
@@ -3370,15 +3391,14 @@ msgid "Video Chat"
msgstr "ビデオ・チャット"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
-#: ../calendar/gui/calendar-commands.c:99
-#: ../calendar/gui/calendar-component.c:795
-#: ../calendar/gui/dialogs/calendar-setup.c:370
-#: ../calendar/gui/gnome-cal.c:2383
-#: ../plugins/exchange-operations/exchange-delegates-user.c:88
-#: ../plugins/exchange-operations/exchange-folder.c:575
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:400
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:431
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:544
+#: ../calendar/gui/calendar-commands.c:92
+#: ../calendar/gui/dialogs/calendar-setup.c:367
+#: ../calendar/gui/gnome-cal.c:2451
+#: ../plugins/exchange-operations/exchange-delegates-user.c:76
+#: ../plugins/exchange-operations/exchange-folder.c:574
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:456
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:569
#: ../plugins/hula-account-setup/camel-hula-listener.c:378
#: ../plugins/hula-account-setup/camel-hula-listener.c:407
#: ../plugins/publish-calendar/publish-calendar.glade.h:5
@@ -3387,8 +3407,7 @@ msgstr "カレンダ"
#: ../addressbook/gui/widgets/eab-contact-display.c:637
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
-#: ../calendar/gui/dialogs/event-editor.c:369
-#: ../ui/evolution-event-editor.xml.h:8
+#: ../calendar/gui/dialogs/event-editor.c:113
msgid "Free/Busy"
msgstr "Free/Busy"
@@ -3410,125 +3429,132 @@ msgid "Web Log"
msgstr "ブログ"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/e-calendar-view.c:2335
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
+#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "誕生日"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/e-calendar-view.c:2336
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
+#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "記念日"
-#: ../addressbook/gui/widgets/eab-contact-display.c:845
+#: ../addressbook/gui/widgets/eab-contact-display.c:864
msgid "Job Title"
msgstr "職業"
-#: ../addressbook/gui/widgets/eab-contact-display.c:881
+#: ../addressbook/gui/widgets/eab-contact-display.c:900
msgid "Home page"
msgstr "ホームページ"
-#: ../addressbook/gui/widgets/eab-contact-display.c:889
+#: ../addressbook/gui/widgets/eab-contact-display.c:908
msgid "Blog"
msgstr "ブログ"
#. E_BOOK_ERROR_OK
-#: ../addressbook/gui/widgets/eab-gui-util.c:55
+#: ../addressbook/gui/widgets/eab-gui-util.c:57
msgid "Success"
msgstr "成功"
#. E_BOOK_ERROR_INVALID_ARG
#. E_BOOK_ERROR_BUSY
-#: ../addressbook/gui/widgets/eab-gui-util.c:57
+#: ../addressbook/gui/widgets/eab-gui-util.c:59
msgid "Backend busy"
msgstr "バックエンドが動作中です"
#. E_BOOK_ERROR_REPOSITORY_OFFLINE
-#: ../addressbook/gui/widgets/eab-gui-util.c:58
+#: ../addressbook/gui/widgets/eab-gui-util.c:60
msgid "Repository offline"
msgstr "オフライン・リポジトリ"
#. E_BOOK_ERROR_NO_SUCH_BOOK
-#: ../addressbook/gui/widgets/eab-gui-util.c:59
+#: ../addressbook/gui/widgets/eab-gui-util.c:61
msgid "Address Book does not exist"
msgstr "アドレス帳がありません"
#. E_BOOK_ERROR_NO_SELF_CONTACT
-#: ../addressbook/gui/widgets/eab-gui-util.c:60
+#: ../addressbook/gui/widgets/eab-gui-util.c:62
msgid "No Self Contact defined"
msgstr "自分の連絡先が定義されていません"
#. E_BOOK_ERROR_URI_NOT_LOADED
#. E_BOOK_ERROR_URI_ALREADY_LOADED
#. E_BOOK_ERROR_PERMISSION_DENIED
-#: ../addressbook/gui/widgets/eab-gui-util.c:63
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:49
+#: ../addressbook/gui/widgets/eab-gui-util.c:65
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:50
msgid "Permission denied"
msgstr "権限がありません"
#. E_BOOK_ERROR_CONTACT_NOT_FOUND
-#: ../addressbook/gui/widgets/eab-gui-util.c:64
+#: ../addressbook/gui/widgets/eab-gui-util.c:66
msgid "Contact not found"
msgstr "連絡先が見つかりません"
#. E_BOOK_ERROR_CONTACT_ID_ALREADY_EXISTS
-#: ../addressbook/gui/widgets/eab-gui-util.c:65
+#: ../addressbook/gui/widgets/eab-gui-util.c:67
msgid "Contact ID already exists"
msgstr "既に連絡先 ID があります"
#. E_BOOK_ERROR_PROTOCOL_NOT_SUPPORTED
-#: ../addressbook/gui/widgets/eab-gui-util.c:66
+#: ../addressbook/gui/widgets/eab-gui-util.c:68
msgid "Protocol not supported"
msgstr "プロトコルがサポートされていません"
#. E_BOOK_ERROR_CANCELLED
-#: ../addressbook/gui/widgets/eab-gui-util.c:67
+#: ../addressbook/gui/widgets/eab-gui-util.c:69
#: ../calendar/gui/dialogs/task-details-page.glade.h:3
-#: ../calendar/gui/e-cal-component-preview.c:239
+#: ../calendar/gui/e-cal-component-preview.c:256
#: ../calendar/gui/e-cal-model-tasks.c:360
#: ../calendar/gui/e-cal-model-tasks.c:677
-#: ../calendar/gui/e-calendar-table.c:236
-#: ../calendar/gui/e-calendar-table.c:436 ../calendar/gui/print.c:2523
+#: ../calendar/gui/e-calendar-table.c:240
+#: ../calendar/gui/e-calendar-table.c:643 ../calendar/gui/print.c:2555
msgid "Canceled"
msgstr "キャンセル済み"
#. E_BOOK_ERROR_COULD_NOT_CANCEL
-#: ../addressbook/gui/widgets/eab-gui-util.c:68
+#: ../addressbook/gui/widgets/eab-gui-util.c:70
msgid "Could not cancel"
msgstr "キャンセルできませんでした"
#. E_BOOK_ERROR_AUTHENTICATION_FAILED
-#: ../addressbook/gui/widgets/eab-gui-util.c:69
+#: ../addressbook/gui/widgets/eab-gui-util.c:71
#: ../calendar/gui/comp-editor-factory.c:423
msgid "Authentication Failed"
msgstr "認証に失敗しました"
#. E_BOOK_ERROR_AUTHENTICATION_REQUIRED
-#: ../addressbook/gui/widgets/eab-gui-util.c:70
+#: ../addressbook/gui/widgets/eab-gui-util.c:72
msgid "Authentication Required"
msgstr "認証を必要としています"
#. E_BOOK_ERROR_TLS_NOT_AVAILABLE
-#: ../addressbook/gui/widgets/eab-gui-util.c:71
+#: ../addressbook/gui/widgets/eab-gui-util.c:73
msgid "TLS not Available"
msgstr "TLS は無効です"
#. E_BOOK_ERROR_CORBA_EXCEPTION
#. E_BOOK_ERROR_NO_SUCH_SOURCE
-#: ../addressbook/gui/widgets/eab-gui-util.c:73
+#: ../addressbook/gui/widgets/eab-gui-util.c:75
msgid "No such source"
msgstr "そのようなソースはありません"
#. E_BOOK_ERROR_OFFLINE_UNAVAILABLE
-#: ../addressbook/gui/widgets/eab-gui-util.c:74
+#: ../addressbook/gui/widgets/eab-gui-util.c:76
msgid "Not available in offline mode"
msgstr "オフライン・モードでは利用できません"
#. E_BOOK_ERROR_INVALID_SERVER_VERSION
-#: ../addressbook/gui/widgets/eab-gui-util.c:76
+#: ../addressbook/gui/widgets/eab-gui-util.c:78
msgid "Invalid server version"
msgstr "サーバのバージョンがおかしいです"
-#: ../addressbook/gui/widgets/eab-gui-util.c:99
+#. E_BOOK_ERROR_UNSUPPORTED_AUTHENTICATION_METHOD
+#: ../addressbook/gui/widgets/eab-gui-util.c:79
+msgid "Unsupported authentication method"
+msgstr "サポートしていない認証方法です"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:102
msgid ""
"We were unable to open this addressbook. This either means this book is not "
"marked for offline usage or not yet downloaded for offline usage. Please "
@@ -3539,7 +3565,7 @@ msgstr ""
"かです。オンラインでアドレス帳を一回読み込んでアドレス帳の内容をダウンロード"
"して下さい。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:108
+#: ../addressbook/gui/widgets/eab-gui-util.c:111
#, c-format
msgid ""
"We were unable to open this addressbook. Please check that the path %s "
@@ -3548,7 +3574,7 @@ msgstr ""
"このアドレス帳を開けませんでした。%s というパスが存在しているか、そしてそのパ"
"スへのアクセス権が正しいか確認して下さい。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:117
+#: ../addressbook/gui/widgets/eab-gui-util.c:120
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the LDAP server is unreachable."
@@ -3556,7 +3582,7 @@ msgstr ""
"このアドレス帳を開けませんでした。これは誤った URI を指定したか、または LDAP "
"サーバがダウンしていることをを意味します。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:122
+#: ../addressbook/gui/widgets/eab-gui-util.c:125
msgid ""
"This version of Evolution does not have LDAP support compiled in to it. If "
"you want to use LDAP in Evolution, you must install an LDAP-enabled "
@@ -3566,7 +3592,7 @@ msgstr ""
"Evolution で LDAP を利用するには、LDAP を有効にした Evolution パッケージをイ"
"ンストールする必要があります。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:129
+#: ../addressbook/gui/widgets/eab-gui-util.c:132
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the server is unreachable."
@@ -3574,7 +3600,11 @@ msgstr ""
"このアドレス帳を開けませんでした。これは誤った URI を指定したか、またはサーバ"
"がダウンしていることを意味します。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:152
+#: ../addressbook/gui/widgets/eab-gui-util.c:138
+msgid "Detailed error:"
+msgstr "エラーの詳細:"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:161
msgid ""
"More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
@@ -3586,7 +3616,7 @@ msgstr ""
"更にキーワードを指定して絞り込み検索するか、このアドレス帳の\n"
"ディレクトリ・サーバの設定で検索結果の制限を上げて下さい。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:158
+#: ../addressbook/gui/widgets/eab-gui-util.c:167
msgid ""
"The time to execute this query exceeded the server limit or the limit\n"
"you have configured for this addressbook. Please make your search\n"
@@ -3598,45 +3628,45 @@ msgstr ""
"更にキーワードを指定して絞り込み検索するか、このアドレス帳の\n"
"ディレクトリ・サーバの設定で検索結果の制限を上げて下さい。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:164
+#: ../addressbook/gui/widgets/eab-gui-util.c:173
msgid "The backend for this addressbook was unable to parse this query."
msgstr "このアドレス帳のバックエンドは、この問い合わせを解析できませんでした。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:167
+#: ../addressbook/gui/widgets/eab-gui-util.c:176
msgid "The backend for this addressbook refused to perform this query."
msgstr "このアドレス帳のバックエンドは、この問い合わせの実行を拒否しました。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:170
+#: ../addressbook/gui/widgets/eab-gui-util.c:179
msgid "This query did not complete successfully."
msgstr "この問い合わせは完全に終了しませんでした。"
-#: ../addressbook/gui/widgets/eab-gui-util.c:192
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
msgid "Error adding list"
msgstr "一覧を追加する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:192
-#: ../addressbook/gui/widgets/eab-gui-util.c:670
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
+#: ../addressbook/gui/widgets/eab-gui-util.c:677
msgid "Error adding contact"
msgstr "連絡先を追加する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:203
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying list"
msgstr "一覧を修正する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:203
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying contact"
msgstr "連絡先を修正する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:215
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
msgid "Error removing list"
msgstr "一覧を削除する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:215
-#: ../addressbook/gui/widgets/eab-gui-util.c:620
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
+#: ../addressbook/gui/widgets/eab-gui-util.c:627
msgid "Error removing contact"
msgstr "連絡先を削除する際にエラーが発生しました"
-#: ../addressbook/gui/widgets/eab-gui-util.c:297
+#: ../addressbook/gui/widgets/eab-gui-util.c:306
#, c-format
msgid ""
"Opening %d contact will open %d new window as well.\n"
@@ -3651,16 +3681,16 @@ msgstr[1] ""
"%d個の連絡先を %d個の新しいウィンドウで開くことになります。\n"
"本当にこの連絡先を表示してもよろしいですか?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:305
+#: ../addressbook/gui/widgets/eab-gui-util.c:314
msgid "_Don't Display"
msgstr "表示しない(_D)"
-#: ../addressbook/gui/widgets/eab-gui-util.c:306
+#: ../addressbook/gui/widgets/eab-gui-util.c:315
msgid "Display _All Contacts"
msgstr "全ての連絡先の表示(_A)"
#. For Translators only: "it" refers to the filename %s.
-#: ../addressbook/gui/widgets/eab-gui-util.c:332
+#: ../addressbook/gui/widgets/eab-gui-util.c:341
#, c-format
msgid ""
"%s already exists\n"
@@ -3669,70 +3699,70 @@ msgstr ""
"既に %s があります。\n"
"ファイルを上書きしてもよろしいですか?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:336
+#: ../addressbook/gui/widgets/eab-gui-util.c:345
msgid "Overwrite"
msgstr "上書きする"
#. more than one, finding the total number of contacts might
#. * hit performance while saving large number of contacts
#.
-#: ../addressbook/gui/widgets/eab-gui-util.c:379
-#: ../addressbook/gui/widgets/eab-gui-util.c:382
+#: ../addressbook/gui/widgets/eab-gui-util.c:386
+#: ../addressbook/gui/widgets/eab-gui-util.c:389
msgid "contact"
msgid_plural "contacts"
msgstr[0] "連絡先"
msgstr[1] "連絡先"
#. This is a filename. Translators take note.
-#: ../addressbook/gui/widgets/eab-gui-util.c:428
+#: ../addressbook/gui/widgets/eab-gui-util.c:435
msgid "card.vcf"
msgstr "card.vcf"
-#: ../addressbook/gui/widgets/eab-gui-util.c:465
+#: ../addressbook/gui/widgets/eab-gui-util.c:472
msgid "Select Address Book"
msgstr "アドレス帳の選択"
-#: ../addressbook/gui/widgets/eab-gui-util.c:579
+#: ../addressbook/gui/widgets/eab-gui-util.c:586
msgid "list"
msgstr "一覧"
-#: ../addressbook/gui/widgets/eab-gui-util.c:731
+#: ../addressbook/gui/widgets/eab-gui-util.c:738
msgid "Move contact to"
msgstr "連絡先の移動先"
-#: ../addressbook/gui/widgets/eab-gui-util.c:733
+#: ../addressbook/gui/widgets/eab-gui-util.c:740
msgid "Copy contact to"
msgstr "連絡先のコピー先"
-#: ../addressbook/gui/widgets/eab-gui-util.c:736
+#: ../addressbook/gui/widgets/eab-gui-util.c:743
msgid "Move contacts to"
msgstr "複数の連絡先の移動先"
-#: ../addressbook/gui/widgets/eab-gui-util.c:738
+#: ../addressbook/gui/widgets/eab-gui-util.c:745
msgid "Copy contacts to"
msgstr "複数の連絡先のコピー先"
-#: ../addressbook/gui/widgets/eab-gui-util.c:983
+#: ../addressbook/gui/widgets/eab-gui-util.c:890
msgid "Multiple vCards"
msgstr "複数の vCard"
-#: ../addressbook/gui/widgets/eab-gui-util.c:986
+#: ../addressbook/gui/widgets/eab-gui-util.c:897
#, c-format
msgid "vCard for %s"
msgstr "%s の vCard"
-#: ../addressbook/gui/widgets/eab-gui-util.c:1027
-#: ../addressbook/gui/widgets/eab-gui-util.c:1052
+#: ../addressbook/gui/widgets/eab-gui-util.c:909
+#: ../addressbook/gui/widgets/eab-gui-util.c:935
#, c-format
msgid "Contact information"
msgstr "連絡先の情報"
-#: ../addressbook/gui/widgets/eab-gui-util.c:1054
+#: ../addressbook/gui/widgets/eab-gui-util.c:937
#, c-format
msgid "Contact information for %s"
msgstr "%s の連絡先の情報"
-#: ../addressbook/gui/widgets/eab-popup-control.c:289
+#: ../addressbook/gui/widgets/eab-popup-control.c:301
msgid "Querying Address Book..."
msgstr "アドレス帳の問い合わせ中..."
@@ -3760,49 +3790,49 @@ msgstr "アドレス帳に保存"
msgid "Card View"
msgstr "カード表示"
-#: ../addressbook/importers/evolution-csv-importer.c:624
-#: ../addressbook/importers/evolution-ldif-importer.c:499
+#: ../addressbook/importers/evolution-csv-importer.c:658
+#: ../addressbook/importers/evolution-ldif-importer.c:498
#: ../addressbook/importers/evolution-vcard-importer.c:250
-#: ../calendar/importers/icalendar-importer.c:312
-#: ../calendar/importers/icalendar-importer.c:677 ../shell/shell.error.xml.h:6
+#: ../calendar/importers/icalendar-importer.c:306
+#: ../calendar/importers/icalendar-importer.c:671 ../shell/shell.error.xml.h:6
msgid "Importing..."
msgstr "インポート中..."
-#: ../addressbook/importers/evolution-csv-importer.c:826
+#: ../addressbook/importers/evolution-csv-importer.c:860
msgid "Outlook CSV or Tab (.csv, .tab)"
msgstr "Outlook の CSV/Tab ファイル (.csv, .tab)"
-#: ../addressbook/importers/evolution-csv-importer.c:827
+#: ../addressbook/importers/evolution-csv-importer.c:861
msgid "Outlook CSV and Tab Importer"
msgstr "Outlook CSV/Tab インポータ"
-#: ../addressbook/importers/evolution-csv-importer.c:835
+#: ../addressbook/importers/evolution-csv-importer.c:869
msgid "Mozilla CSV or Tab (.csv, .tab)"
msgstr "Mozilla の CSV/Tab ファイル (.csv, .tab)"
-#: ../addressbook/importers/evolution-csv-importer.c:836
+#: ../addressbook/importers/evolution-csv-importer.c:870
msgid "Mozilla CSV and Tab Importer"
msgstr "Mozilla CSV/Tab インポータ"
-#: ../addressbook/importers/evolution-csv-importer.c:844
+#: ../addressbook/importers/evolution-csv-importer.c:878
msgid "Evolution CSV or Tab (.csv, .tab)"
msgstr "Evolution の CSV/Tab ファイル (.csv, .tab)"
-#: ../addressbook/importers/evolution-csv-importer.c:845
+#: ../addressbook/importers/evolution-csv-importer.c:879
msgid "Evolution CSV and Tab Importer"
msgstr "Evolution CSV/Tab インポータ"
-#: ../addressbook/importers/evolution-ldif-importer.c:666
+#: ../addressbook/importers/evolution-ldif-importer.c:665
msgid "LDAP Data Interchange Format (.ldif)"
msgstr "LDAP データ交換フォーマット (.ldif)"
-#: ../addressbook/importers/evolution-ldif-importer.c:667
+#: ../addressbook/importers/evolution-ldif-importer.c:666
msgid "Evolution LDIF importer"
msgstr "Evolution LDIF インポータ"
#: ../addressbook/importers/evolution-vcard-importer.c:547
msgid "vCard (.vcf, .gcrd)"
-msgstr "vCard (.vcf, .gcrd)"
+msgstr "vCard (.vcf、.gcrd)"
#: ../addressbook/importers/evolution-vcard-importer.c:548
msgid "Evolution vCard Importer"
@@ -3849,11 +3879,11 @@ msgid "Format"
msgstr "フォーマット"
#: ../addressbook/printing/e-contact-print.glade.h:11
-#: ../mail/em-mailer-prefs.c:447 ../widgets/table/e-table-click-to-add.c:503
+#: ../mail/em-mailer-prefs.c:432 ../widgets/table/e-table-click-to-add.c:503
#: ../widgets/table/e-table-field-chooser-dialog.c:81
#: ../widgets/table/e-table-field-chooser-item.c:648
#: ../widgets/table/e-table-field-chooser.c:81
-#: ../widgets/table/e-table-header-item.c:1907
+#: ../widgets/table/e-table-header-item.c:1908
#: ../widgets/table/e-table-selection-model.c:310
msgid "Header"
msgstr "ヘッダ"
@@ -3956,7 +3986,7 @@ msgstr "シェーディング"
#. FIXME: Take care of i18n
#: ../addressbook/printing/e-contact-print.glade.h:36
-#: ../plugins/exchange-operations/exchange-account-setup.c:987
+#: ../plugins/exchange-operations/exchange-account-setup.c:1069
#: ../plugins/exchange-operations/exchange-calendar.c:231
#: ../plugins/exchange-operations/exchange-contacts.c:217
msgid "Size:"
@@ -3975,7 +4005,7 @@ msgid "Top:"
msgstr "上:"
#: ../addressbook/printing/e-contact-print.glade.h:40
-#: ../calendar/gui/dialogs/calendar-setup.c:156
+#: ../calendar/gui/dialogs/calendar-setup.c:153
msgid "Type:"
msgstr "種別:"
@@ -4083,155 +4113,166 @@ msgstr "処理できないエラー"
#. For Translators: {0} is the name of the calendar source
#: ../calendar/calendar.error.xml.h:2
msgid ""
-"'{0}' is a read-only calendar source. Switch to Calendar View and highlight "
-"a calendar that can accept appointments."
+"'{0}' is a read-only calendar and cannot be modified. Please select a "
+"different calendar from the side bar in the Calendar view."
+msgstr ""
+"'{0}' は読み込み専用のカレンダなので変更はできません。カレンダ・ビューのサイ"
+"ドバーから別のカレンダを選択して下さい。"
+
+#. For Translators: {0} is the name of the calendar source
+#: ../calendar/calendar.error.xml.h:4
+msgid ""
+"'{0}' is a read-only calendar and cannot be modified. Please select a "
+"different calendar that can accept appointments."
msgstr ""
-"'{0}' は読み込み専用のカレンダです。まずは左側のカレンダ・ビューで予定を入力"
-"できるカレンダを選択して下さい。"
+"'{0}' は読み込み専用のカレンダなので変更はできません。予定を書き込むことが可"
+"能なカレンダを選択して下さい。"
-#: ../calendar/calendar.error.xml.h:3
+#: ../calendar/calendar.error.xml.h:5
msgid ""
"Adding a meaningful summary to your appointment will give your recipients an "
"idea of what your appointment is about."
msgstr ""
-"予定に簡単なサマリ (概要) を追加しておくと、その予定の内容が理解しやすくなり"
-"ます。"
+"予定に簡単な概要を追加しておくと、その予定の内容が理解しやすくなります。"
-#: ../calendar/calendar.error.xml.h:4
+#: ../calendar/calendar.error.xml.h:6
msgid ""
"Adding a meaningful summary to your task will give your recipients an idea "
"of what your task is about."
msgstr ""
-"タスクに簡単なサマリ (概要) を追加しておくと、タスクの内容が理解しやすくなり"
-"ます。"
+"タスクに簡単な概要を追加しておくと、タスクの内容が理解しやすくなります。"
-#: ../calendar/calendar.error.xml.h:5
+#: ../calendar/calendar.error.xml.h:7
msgid "All information in these memos will be deleted and can not be restored."
msgstr "これらのメモの情報が全て削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:6
+#: ../calendar/calendar.error.xml.h:8
msgid "All information in this memo will be deleted and can not be restored."
msgstr "このメモにある全ての情報が削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:7
+#: ../calendar/calendar.error.xml.h:9
msgid ""
"All information on these appointments will be deleted and can not be "
"restored."
msgstr "これらの予定の情報が全て削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:8
+#: ../calendar/calendar.error.xml.h:10
msgid "All information on these tasks will be deleted and can not be restored."
msgstr "これらのタスクの情報が全て削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:9
+#: ../calendar/calendar.error.xml.h:11
msgid ""
"All information on this appointment will be deleted and can not be restored."
msgstr "この予定の情報が全て削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:10
+#: ../calendar/calendar.error.xml.h:12
msgid ""
"All information on this meeting will be deleted and can not be restored."
msgstr "この会議の全ての情報が削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:11
+#: ../calendar/calendar.error.xml.h:13
msgid "All information on this memo will be deleted and can not be restored."
msgstr "このメモの全ての情報が削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:12
+#: ../calendar/calendar.error.xml.h:14
msgid "All information on this task will be deleted and can not be restored."
msgstr "このタスクの全ての情報が削除されるので復旧できなくなります。"
-#: ../calendar/calendar.error.xml.h:13
+#: ../calendar/calendar.error.xml.h:15
msgid "Are you sure you want to delete the '{0}' task?"
-msgstr "本当にタスク '{0}' を削除してもよろしいですか?"
+msgstr "本当に '{0}' というタスクを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:14
+#: ../calendar/calendar.error.xml.h:16
msgid "Are you sure you want to delete the appointment titled '{0}'?"
msgstr "本当にサマリが '{0}' の予定を削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:15
+#: ../calendar/calendar.error.xml.h:17
msgid "Are you sure you want to delete the memo '{0}'?"
-msgstr "本当にメモ '{0}' を削除してもよろしいですか?"
+msgstr "本当に '{0}' というメモを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:16
+#: ../calendar/calendar.error.xml.h:18
msgid "Are you sure you want to delete these {0} appointments?"
msgstr "本当に {0}個の予定を削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:17
+#: ../calendar/calendar.error.xml.h:19
msgid "Are you sure you want to delete these {0} memos?"
msgstr "本当に {0}個のメモを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:18
+#: ../calendar/calendar.error.xml.h:20
msgid "Are you sure you want to delete these {0} tasks?"
msgstr "本当に {0}個のタスクを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:19
+#: ../calendar/calendar.error.xml.h:21
msgid "Are you sure you want to delete this appointment?"
msgstr "本当にこの予定を削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:20
-#: ../calendar/gui/dialogs/delete-comp.c:183
+#: ../calendar/calendar.error.xml.h:22
+#: ../calendar/gui/dialogs/delete-comp.c:178
#, c-format
msgid "Are you sure you want to delete this meeting?"
msgstr "本当にこの会議を削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:21
-#: ../calendar/gui/dialogs/delete-comp.c:189
+#: ../calendar/calendar.error.xml.h:23
+#: ../calendar/gui/dialogs/delete-comp.c:184
#, c-format
msgid "Are you sure you want to delete this memo?"
msgstr "本当にこのメモを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:22
-#: ../calendar/gui/dialogs/delete-comp.c:186
+#: ../calendar/calendar.error.xml.h:24
+#: ../calendar/gui/dialogs/delete-comp.c:181
#, c-format
msgid "Are you sure you want to delete this task?"
msgstr "本当にこのタスクを削除してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:23
+#: ../calendar/calendar.error.xml.h:25
msgid "Are you sure you want to save the memo without a summary?"
msgstr "本当にサマリのないメモを保存してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:24
+#: ../calendar/calendar.error.xml.h:26
msgid "Are you sure you want to send the appointment without a summary?"
msgstr "本当にサマリのない予定を送信してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:25
+#: ../calendar/calendar.error.xml.h:27
msgid "Are you sure you want to send the task without a summary?"
msgstr "本当にサマリのないタスクを送信してもよろしいですか?"
-#: ../calendar/calendar.error.xml.h:26
+#: ../calendar/calendar.error.xml.h:28
msgid "Cannot create a new event"
msgstr "新しいイベントを作成できません"
-#: ../calendar/calendar.error.xml.h:27
+#: ../calendar/calendar.error.xml.h:29
+msgid "Cannot save event"
+msgstr "イベントを保存できません"
+
+#: ../calendar/calendar.error.xml.h:30
msgid "Delete calendar '{0}'?"
-msgstr "カレンダ '{0}' を削除しますか?"
+msgstr "'{0}' というカレンダを削除しますか?"
-#: ../calendar/calendar.error.xml.h:28
+#: ../calendar/calendar.error.xml.h:31
msgid "Delete memo list '{0}'?"
-msgstr "このメモの一覧 '{0}' を削除しますか?"
+msgstr "メモ一覧の '{0}' を削除しますか?"
-#: ../calendar/calendar.error.xml.h:29
+#: ../calendar/calendar.error.xml.h:32
msgid "Delete task list '{0}'?"
-msgstr "このタスク一覧 '{0}' を削除しますか?"
+msgstr "タスク一覧の '{0}' を削除しますか?"
-#: ../calendar/calendar.error.xml.h:30
+#: ../calendar/calendar.error.xml.h:33
msgid "Do _not Send"
msgstr "送信しない(_N)"
-#: ../calendar/calendar.error.xml.h:31
+#: ../calendar/calendar.error.xml.h:34
msgid "Download in progress. Do you want to save the appointment?"
msgstr "ダウンロード中です。予定を保存しますか?"
-#: ../calendar/calendar.error.xml.h:32
+#: ../calendar/calendar.error.xml.h:35
msgid "Download in progress. Do you want to save the task?"
msgstr "ダウンロード中です。タスクを保存しますか?"
-#: ../calendar/calendar.error.xml.h:33
+#: ../calendar/calendar.error.xml.h:36
msgid "Editor could not be loaded."
msgstr "エディタを読み込めませんでした。"
-#: ../calendar/calendar.error.xml.h:34
+#: ../calendar/calendar.error.xml.h:37
msgid ""
"Email invitations will be sent to all participants and allow them to accept "
"this task."
@@ -4239,25 +4280,25 @@ msgstr ""
"全ての出席者へ会議開催通知を送信するので、このタスクを受諾することができま"
"す。"
-#: ../calendar/calendar.error.xml.h:35
+#: ../calendar/calendar.error.xml.h:38
msgid ""
"Email invitations will be sent to all participants and allow them to reply."
msgstr ""
"全ての出席者へ会議開催通知を送信するので返事をお願いできるようになります。"
-#: ../calendar/calendar.error.xml.h:36
+#: ../calendar/calendar.error.xml.h:39
msgid "Error loading calendar"
msgstr "カレンダを読み込む際にエラー"
-#: ../calendar/calendar.error.xml.h:37
+#: ../calendar/calendar.error.xml.h:40
msgid "Error loading memo list"
msgstr "メモの一覧を読み込む際にエラー"
-#: ../calendar/calendar.error.xml.h:38
+#: ../calendar/calendar.error.xml.h:41
msgid "Error loading task list"
-msgstr "タスク一覧を読み込む際にエラー"
+msgstr "タスクの一覧を読み込む際にエラー"
-#: ../calendar/calendar.error.xml.h:39
+#: ../calendar/calendar.error.xml.h:42
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the meeting is canceled."
@@ -4265,7 +4306,7 @@ msgstr ""
"キャンセル通知を送信しないと、会議がキャンセルされたことが他の出席者には周知"
"されないかもしれません。"
-#: ../calendar/calendar.error.xml.h:40
+#: ../calendar/calendar.error.xml.h:43
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the memo has been deleted."
@@ -4273,7 +4314,7 @@ msgstr ""
"キャンセル通知を送信しないと、メモが削除されたことが他の出席者には周知されな"
"いかもしれません。"
-#: ../calendar/calendar.error.xml.h:41
+#: ../calendar/calendar.error.xml.h:44
msgid ""
"If you do not send a cancelation notice, the other participants may not know "
"the task has been deleted."
@@ -4281,23 +4322,23 @@ msgstr ""
"キャンセル通知を送信しないと、タスクが削除されたことが他の出席者には周知され"
"ないかもしれません。"
-#: ../calendar/calendar.error.xml.h:42
+#: ../calendar/calendar.error.xml.h:45
msgid ""
"Sending updated information allows other participants to keep their "
"calendars up to date."
msgstr ""
-"更新した情報を送信すると、他の出席者が自分たちのカレンダ情報を更新することが"
-"できます。"
+"更新した情報を送信すると、他の出席者が自分たちのカレンダ情報を更新できるよう"
+"になります。"
-#: ../calendar/calendar.error.xml.h:43
+#: ../calendar/calendar.error.xml.h:46
msgid ""
"Sending updated information allows other participants to keep their task "
"lists up to date."
msgstr ""
-"更新した情報を送信すると、他の出席者が自分たちのタスク一覧を更新することがで"
-"きます。"
+"更新した情報を送信すると、他の出席者が自分たちのタスク一覧を更新できるように"
+"なります。"
-#: ../calendar/calendar.error.xml.h:44
+#: ../calendar/calendar.error.xml.h:47
msgid ""
"Some attachments are being downloaded. Saving the appointment would result "
"in the loss of these attachments."
@@ -4305,7 +4346,7 @@ msgstr ""
"添付ファイルをダウンロードしています。ここで予定を保存してしまうと、いくつか"
"の添付ファイルが失われてしまいます。"
-#: ../calendar/calendar.error.xml.h:45
+#: ../calendar/calendar.error.xml.h:48
msgid ""
"Some attachments are being downloaded. Saving the task would result in the "
"loss of these attachments."
@@ -4313,83 +4354,83 @@ msgstr ""
"添付ファイルをダウンロードしています。ここでタスクを保存してしまうと、いくつ"
"かの添付ファイルが失われてしまいます。"
-#: ../calendar/calendar.error.xml.h:46
+#: ../calendar/calendar.error.xml.h:49
msgid "Some features may not work properly with your current server."
msgstr "お使いのサーバでは、いくつかの機能が正しく動作しないかもしれません。"
-#: ../calendar/calendar.error.xml.h:47
+#: ../calendar/calendar.error.xml.h:50
msgid "The Evolution calendar has quit unexpectedly."
msgstr "Evolution カレンダが突然終了しました。"
-#: ../calendar/calendar.error.xml.h:48
+#: ../calendar/calendar.error.xml.h:51
msgid "The Evolution memo has quit unexpectedly."
msgstr "Evolution メモが突然終了しました。"
-#: ../calendar/calendar.error.xml.h:49
+#: ../calendar/calendar.error.xml.h:52
msgid "The Evolution tasks have quit unexpectedly."
msgstr "Evolution タスクが突然終了しました。"
-#: ../calendar/calendar.error.xml.h:50
+#: ../calendar/calendar.error.xml.h:53
msgid "The calendar is not marked for offline usage."
msgstr "カレンダがオフライン使用になっていません。"
-#: ../calendar/calendar.error.xml.h:51
-msgid "The memo list is not marked for offline usage"
+#: ../calendar/calendar.error.xml.h:54
+msgid "The memo list is not marked for offline usage."
msgstr "メモの一覧がオフライン使用になっていません。"
-#: ../calendar/calendar.error.xml.h:52
+#: ../calendar/calendar.error.xml.h:55
msgid "The task list is not marked for offline usage."
-msgstr "タスク一覧がオフライン使用になっていません。"
+msgstr "タスクの一覧がオフライン使用になっていません。"
-#: ../calendar/calendar.error.xml.h:53
+#: ../calendar/calendar.error.xml.h:56
msgid "This calendar will be removed permanently."
msgstr "このカレンダは完全に削除されます。"
-#: ../calendar/calendar.error.xml.h:54
+#: ../calendar/calendar.error.xml.h:57
msgid "This memo list will be removed permanently."
-msgstr "このメモの一覧は完全に削除されます。"
+msgstr "このメモ一覧は完全に削除されます。"
-#: ../calendar/calendar.error.xml.h:55
+#: ../calendar/calendar.error.xml.h:58
msgid "This task list will be removed permanently."
msgstr "このタスク一覧は完全に削除されます。"
-#: ../calendar/calendar.error.xml.h:56
+#: ../calendar/calendar.error.xml.h:59
msgid "Would you like to save your changes to this appointment?"
msgstr "この予定の変更を保存しますか?"
-#: ../calendar/calendar.error.xml.h:57
+#: ../calendar/calendar.error.xml.h:60
msgid "Would you like to save your changes to this memo?"
msgstr "このメモの変更を保存しますか?"
-#: ../calendar/calendar.error.xml.h:58
+#: ../calendar/calendar.error.xml.h:61
msgid "Would you like to save your changes to this task?"
msgstr "このタスクの変更を保存しますか?"
-#: ../calendar/calendar.error.xml.h:59
+#: ../calendar/calendar.error.xml.h:62
msgid "Would you like to send a cancelation notice for this memo?"
msgstr "このメモのキャンセル通知を送信しますか?"
-#: ../calendar/calendar.error.xml.h:60
+#: ../calendar/calendar.error.xml.h:63
msgid "Would you like to send all the participants a cancelation notice?"
msgstr "出席者全員に会議キャンセル通知を送信しますか?"
-#: ../calendar/calendar.error.xml.h:61
+#: ../calendar/calendar.error.xml.h:64
msgid "Would you like to send meeting invitations to participants?"
msgstr "会議開催通知を出席者へ送信しますか?"
-#: ../calendar/calendar.error.xml.h:62
+#: ../calendar/calendar.error.xml.h:65
msgid "Would you like to send this task to participants?"
msgstr "このタスクを出席者へ送信しますか?"
-#: ../calendar/calendar.error.xml.h:63
+#: ../calendar/calendar.error.xml.h:66
msgid "Would you like to send updated meeting information to participants?"
msgstr "更新した会議の情報を出席者へ送信しますか?"
-#: ../calendar/calendar.error.xml.h:64
+#: ../calendar/calendar.error.xml.h:67
msgid "Would you like to send updated task information to participants?"
msgstr "更新したタスク情報を出席者へ送信しますか?"
-#: ../calendar/calendar.error.xml.h:65
+#: ../calendar/calendar.error.xml.h:68
msgid ""
"You are connecting to an unsupported GroupWise server and may encounter "
"problems using Evolution. For best results, the server should be upgraded to "
@@ -4399,113 +4440,113 @@ msgstr ""
"問題を引き起こすおそれがあります。そのサーバをサポートしているバージョンに"
"アップグレードすることを強くお奨めします。"
-#: ../calendar/calendar.error.xml.h:66
+#: ../calendar/calendar.error.xml.h:69
msgid "You have changed this appointment, but not yet saved it."
msgstr "この予定は変更されていますが、まだ保存していません。"
-#: ../calendar/calendar.error.xml.h:67
+#: ../calendar/calendar.error.xml.h:70
msgid "You have changed this task, but not yet saved it."
msgstr "このタスクは変更されていますが、まだ保存していません。"
-#: ../calendar/calendar.error.xml.h:68
+#: ../calendar/calendar.error.xml.h:71
msgid "You have made changes to this memo, but not yet saved them."
msgstr "このメモは変更されていますが、まだ保存していません。"
-#: ../calendar/calendar.error.xml.h:69
+#: ../calendar/calendar.error.xml.h:72
msgid "Your calendars will not be available until Evolution is restarted."
msgstr "Evolution を再起動するまでカレンダ情報は利用できません。"
-#: ../calendar/calendar.error.xml.h:70
+#: ../calendar/calendar.error.xml.h:73
msgid "Your memos will not be available until Evolution is restarted."
msgstr "Evolution を再起動するまでメモは利用できません。"
-#: ../calendar/calendar.error.xml.h:71
+#: ../calendar/calendar.error.xml.h:74
msgid "Your tasks will not be available until Evolution is restarted."
msgstr "Evolution を再起動するまでタスクは利用できません。"
-#: ../calendar/calendar.error.xml.h:72
-#: ../composer/mail-composer.error.xml.h:29
+#: ../calendar/calendar.error.xml.h:75
+#: ../composer/mail-composer.error.xml.h:30
msgid "_Discard Changes"
msgstr "変更を破棄する(_D)"
-#: ../calendar/calendar.error.xml.h:73 ../ui/evolution-editor.xml.h:23
-#: ../ui/evolution-message-composer.xml.h:59
+#: ../calendar/calendar.error.xml.h:76 ../composer/e-composer-actions.c:500
msgid "_Save"
msgstr "保存(_S)"
-#: ../calendar/calendar.error.xml.h:74
+#: ../calendar/calendar.error.xml.h:77
msgid "_Save Changes"
msgstr "変更を保存する(_S)"
-#: ../calendar/calendar.error.xml.h:75
-#: ../composer/mail-composer.error.xml.h:33 ../mail/mail.error.xml.h:142
-#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:5
+#: ../calendar/calendar.error.xml.h:78
+#: ../composer/mail-composer.error.xml.h:34 ../mail/mail.error.xml.h:142
+#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:6
msgid "_Send"
msgstr "送信する(_S)"
-#: ../calendar/calendar.error.xml.h:76
+#: ../calendar/calendar.error.xml.h:79
msgid "_Send Notice"
msgstr "通知する(_S)"
-#: ../calendar/calendar.error.xml.h:77
+#: ../calendar/calendar.error.xml.h:80
msgid "{0}."
msgstr "{0}。"
-#: ../calendar/conduits/calendar/calendar-conduit.c:254
+#: ../calendar/conduits/calendar/calendar-conduit.c:256
msgid "Split Multi-Day Events:"
msgstr "複数日のイベントに分割:"
-#: ../calendar/conduits/calendar/calendar-conduit.c:1517
-#: ../calendar/conduits/calendar/calendar-conduit.c:1518
-#: ../calendar/conduits/memo/memo-conduit.c:818
-#: ../calendar/conduits/memo/memo-conduit.c:819
-#: ../calendar/conduits/todo/todo-conduit.c:1016
-#: ../calendar/conduits/todo/todo-conduit.c:1017
+#: ../calendar/conduits/calendar/calendar-conduit.c:1521
+#: ../calendar/conduits/calendar/calendar-conduit.c:1522
+#: ../calendar/conduits/memo/memo-conduit.c:820
+#: ../calendar/conduits/memo/memo-conduit.c:821
+#: ../calendar/conduits/todo/todo-conduit.c:1018
+#: ../calendar/conduits/todo/todo-conduit.c:1019
msgid "Could not start evolution-data-server"
msgstr "evolution-data-server を起動できませんでした"
-#: ../calendar/conduits/calendar/calendar-conduit.c:1625
-#: ../calendar/conduits/calendar/calendar-conduit.c:1628
+#: ../calendar/conduits/calendar/calendar-conduit.c:1629
+#: ../calendar/conduits/calendar/calendar-conduit.c:1632
msgid "Could not read pilot's Calendar application block"
msgstr "パイロットのカレンダ・アプリケーション・ブロックを読み込めませんでした"
-#: ../calendar/conduits/memo/memo-conduit.c:912
-#: ../calendar/conduits/memo/memo-conduit.c:915
+#: ../calendar/conduits/memo/memo-conduit.c:914
+#: ../calendar/conduits/memo/memo-conduit.c:917
msgid "Could not read pilot's Memo application block"
msgstr "パイロットのメモ・アプリケーション・ブロックを読み込めませんでした"
-#: ../calendar/conduits/memo/memo-conduit.c:959
-#: ../calendar/conduits/memo/memo-conduit.c:962
+#: ../calendar/conduits/memo/memo-conduit.c:961
+#: ../calendar/conduits/memo/memo-conduit.c:964
msgid "Could not write pilot's Memo application block"
msgstr "パイロットのメモ・アプリケーション・ブロックを書き込めませんでした"
-#: ../calendar/conduits/todo/todo-conduit.c:238
+#: ../calendar/conduits/todo/todo-conduit.c:240
msgid "Default Priority:"
msgstr "デフォルトの優先度:"
-#: ../calendar/conduits/todo/todo-conduit.c:1100
-#: ../calendar/conduits/todo/todo-conduit.c:1103
+#: ../calendar/conduits/todo/todo-conduit.c:1102
+#: ../calendar/conduits/todo/todo-conduit.c:1105
msgid "Could not read pilot's ToDo application block"
msgstr "パイロットの ToDo アプリケーション・ブロックを読み込めませんでした"
-#: ../calendar/conduits/todo/todo-conduit.c:1145
-#: ../calendar/conduits/todo/todo-conduit.c:1148
+#: ../calendar/conduits/todo/todo-conduit.c:1147
+#: ../calendar/conduits/todo/todo-conduit.c:1150
msgid "Could not write pilot's ToDo application block"
msgstr "パイロットの ToDo アプリケーション・ブロックを書き込めませんでした"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:1
-#: ../plugins/itip-formatter/itip-formatter.c:2344
+#: ../plugins/itip-formatter/itip-formatter.c:2358
msgid "Calendar and Tasks"
msgstr "カレンダとタスク"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
-#: ../calendar/gui/calendar-component.c:1392
+#: ../calendar/gui/calendar-component.c:805
+#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "カレンダ"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:3
msgid "Configure your timezone, Calendar and Task List here "
-msgstr "ここでお使いのタイムゾーンやカレンダ、タスク一覧を設定します"
+msgstr "ここでお使いのタイムゾーンやカレンダ、タスクの一覧を設定します"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:4
msgid "Evolution Calendar and Tasks"
@@ -4540,25 +4581,25 @@ msgid "Memo_s"
msgstr "メモ(_S)"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
-#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1152
-#: ../calendar/gui/gnome-cal.c:1701 ../calendar/gui/memos-component.c:548
-#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:356
-#: ../calendar/gui/memos-control.c:372
+#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
+#: ../calendar/gui/memos-control.c:369
msgid "Memos"
msgstr "メモ"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
-#: ../calendar/gui/e-calendar-table.c:495 ../calendar/gui/e-tasks.c:1442
-#: ../calendar/gui/gnome-cal.c:1573 ../calendar/gui/print.c:1966
+#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
#: ../calendar/gui/tasks-component.c:539
-#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:495
-#: ../calendar/gui/tasks-control.c:511
-#: ../calendar/importers/icalendar-importer.c:80
-#: ../calendar/importers/icalendar-importer.c:741
-#: ../plugins/exchange-operations/exchange-delegates-user.c:88
-#: ../plugins/exchange-operations/exchange-folder.c:587
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:401
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:545
+#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
+#: ../calendar/gui/tasks-control.c:508
+#: ../calendar/importers/icalendar-importer.c:74
+#: ../calendar/importers/icalendar-importer.c:735
+#: ../plugins/exchange-operations/exchange-delegates-user.c:76
+#: ../plugins/exchange-operations/exchange-folder.c:586
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:426
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:570
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:12
msgid "Tasks"
msgstr "タスク"
@@ -4576,25 +4617,26 @@ msgstr "タスク(_T)"
msgid "Evolution Calendar alarm notification service"
msgstr "Evolution カレンダ・アラーム通知サービス"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:112
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:101
msgid "minute"
msgid_plural "minutes"
msgstr[0] "分"
msgstr[1] "分間"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:127
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:116
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:6
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:25
#: ../calendar/gui/dialogs/event-page.glade.h:19 ../filter/filter.glade.h:15
-#: ../plugins/calendar-http/calendar-http.c:289
+#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
-#: ../plugins/google-account-setup/google-source.c:396
+#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "時"
msgstr[1] "時間"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:277
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:270
msgid "Start time"
msgstr "開始時刻"
@@ -4605,9 +4647,9 @@ msgstr "予定"
#. Location
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:2
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1611
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1617
-#: ../calendar/gui/e-itip-control.c:1155
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1599
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1605
+#: ../calendar/gui/e-itip-control.c:1172
#: ../plugins/itip-formatter/itip-view.c:1004
msgid "Location:"
msgstr "場所:"
@@ -4617,17 +4659,15 @@ msgid "Snooze _time:"
msgstr "アラーム停止時間(_T):"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
-#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:158
+#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
#: ../plugins/publish-calendar/publish-calendar.glade.h:21
#: ../ui/evolution-addressbook.xml.h:51 ../ui/evolution-calendar.xml.h:41
-#: ../ui/evolution-composer-entries.xml.h:14 ../ui/evolution-editor.xml.h:18
#: ../ui/evolution-mail-messagedisplay.xml.h:5 ../ui/evolution-memos.xml.h:17
-#: ../ui/evolution-message-composer.xml.h:52
-#: ../ui/evolution-signature-editor.xml.h:24
-#: ../ui/evolution-subscribe.xml.h:10 ../ui/evolution-tasks.xml.h:25
-#: ../ui/evolution.xml.h:41 ../widgets/menus/gal-define-views.glade.h:5
+#: ../ui/evolution-tasks.xml.h:25 ../ui/evolution.xml.h:42
+#: ../widgets/menus/gal-define-views.glade.h:5
msgid "_Edit"
msgstr "編集(_E)"
@@ -4639,32 +4679,32 @@ msgstr "アラーム停止(_S)"
msgid "location of appointment"
msgstr "予定の場所"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1470
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1593
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1457
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1582
msgid "No summary available."
msgstr "サマリはありません。"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1479
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1481
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1466
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1468
msgid "No description available."
msgstr "説明はありません。"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1489
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1476
msgid "No location information available."
msgstr "場所の情報はありません。"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1533
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1521
#, c-format
msgid "You have %d alarms"
msgstr "%d個のアラームがあります"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1695
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1723
-#: ../mail/mail-component.c:1523
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1683
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1711
+#: ../mail/mail-component.c:1587
msgid "Warning"
msgstr "警告"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1699
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1687
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
@@ -4676,7 +4716,7 @@ msgstr ""
"の設定がされていました。その代わりに Evolution は\n"
"通常のリマインダ・ダイアログを表示します。"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1729
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1717
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
@@ -4693,15 +4733,15 @@ msgstr ""
"\n"
"本当に、このプログラムを起動してもよろしいですか?"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1743
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1731
msgid "Do not ask me about this program again."
msgstr "このメッセージを二度と表示しない"
-#: ../calendar/gui/alarm-notify/notify-main.c:140
+#: ../calendar/gui/alarm-notify/notify-main.c:138
msgid "Could not initialize Bonobo"
msgstr "Bonobo を初期化できませんでした"
-#: ../calendar/gui/alarm-notify/notify-main.c:153
+#: ../calendar/gui/alarm-notify/notify-main.c:151
msgid ""
"Could not create the alarm notify service factory, maybe it's already "
"running..."
@@ -4714,7 +4754,7 @@ msgid "invalid time"
msgstr "時間が正しくありません"
#. Translator: Entire string is like "Pop up an alert %d hours before start of appointment"
-#: ../calendar/gui/alarm-notify/util.c:66 ../calendar/gui/e-alarm-list.c:408
+#: ../calendar/gui/alarm-notify/util.c:66 ../calendar/gui/e-alarm-list.c:404
#: ../calendar/gui/misc.c:113
#, c-format
msgid "%d hour"
@@ -4723,7 +4763,7 @@ msgstr[0] "%d時間"
msgstr[1] "%d時間"
#. Translator: Entire string is like "Pop up an alert %d minutes before start of appointment"
-#: ../calendar/gui/alarm-notify/util.c:72 ../calendar/gui/e-alarm-list.c:414
+#: ../calendar/gui/alarm-notify/util.c:72 ../calendar/gui/e-alarm-list.c:410
#: ../calendar/gui/misc.c:119
#, c-format
msgid "%d minute"
@@ -4734,7 +4774,7 @@ msgstr[1] "%d分間"
#. TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third")
#. Translator: Entire string is like "Pop up an alert %d seconds before start of appointment"
#. TRANSLATORS: here, "second" is the time division (like "minute"), not the ordinal number (like "third")
-#: ../calendar/gui/alarm-notify/util.c:76 ../calendar/gui/e-alarm-list.c:420
+#: ../calendar/gui/alarm-notify/util.c:76 ../calendar/gui/e-alarm-list.c:416
#: ../calendar/gui/misc.c:123
#, c-format
msgid "%d second"
@@ -4923,8 +4963,8 @@ msgid ""
"Position of the vertical pane, between the task list and the task preview "
"pane, in pixels."
msgstr ""
-"タスク一覧とタスクのプレビュー・ペインの間にある垂直方向ペインの位置です (ピ"
-"クセル単位)。"
+"タスクの一覧とタスクのプレビュー・ペインの間にある垂直方向ペインの位置です "
+"(ピクセル単位)。"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:43
msgid ""
@@ -4975,12 +5015,12 @@ msgid "Show status field in the event/task/meeting editor"
msgstr "イベント/タスク/会議エディタの中にステータスを表示するかどうか"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:53
-#: ../mail/evolution-mail.schemas.in.h:111
+#: ../mail/evolution-mail.schemas.in.h:124
msgid "Show the \"Preview\" pane"
msgstr "\"プレビュー\" ウィンドウを表示するかどうか"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:54
-#: ../mail/evolution-mail.schemas.in.h:112
+#: ../mail/evolution-mail.schemas.in.h:125
msgid "Show the \"Preview\" pane."
msgstr "\"プレビュー\" ペインを表示するかどうかです。"
@@ -5030,7 +5070,7 @@ msgid "Time the last alarm ran, in time_t."
msgstr "最後にアラームを鳴らした時間 (time_t 単位) です。"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:65
-#: ../plugins/startup-wizard/startup-wizard.c:108
+#: ../plugins/startup-wizard/startup-wizard.c:107
msgid "Timezone"
msgstr "タイムゾーン"
@@ -5168,66 +5208,66 @@ msgstr "平日の開始時刻 (分)"
msgid "daylight savings time"
msgstr "サマータイムを導入するかどうか"
-#: ../calendar/gui/cal-search-bar.c:73
+#: ../calendar/gui/cal-search-bar.c:71
msgid "Summary contains"
msgstr "サマリが次のものを含む"
-#: ../calendar/gui/cal-search-bar.c:74
+#: ../calendar/gui/cal-search-bar.c:72
msgid "Description contains"
msgstr "説明が次のものを含む"
-#: ../calendar/gui/cal-search-bar.c:75
+#: ../calendar/gui/cal-search-bar.c:73
msgid "Category is"
msgstr "カテゴリが次のものを含む"
-#: ../calendar/gui/cal-search-bar.c:76
+#: ../calendar/gui/cal-search-bar.c:74
msgid "Comment contains"
msgstr "コメントが次のものを含む"
-#: ../calendar/gui/cal-search-bar.c:77
+#: ../calendar/gui/cal-search-bar.c:75
msgid "Location contains"
msgstr "場所が次のものを含む"
-#: ../calendar/gui/cal-search-bar.c:623 ../calendar/gui/cal-search-bar.c:666
-#: ../calendar/gui/cal-search-bar.c:685
+#: ../calendar/gui/cal-search-bar.c:629 ../calendar/gui/cal-search-bar.c:672
+#: ../calendar/gui/cal-search-bar.c:691
msgid "Unmatched"
msgstr "該当しないもの"
-#: ../calendar/gui/cal-search-bar.c:631
+#: ../calendar/gui/cal-search-bar.c:637
msgid "Next 7 Days' Tasks"
msgstr "次の7日間のタスク"
-#: ../calendar/gui/cal-search-bar.c:635
+#: ../calendar/gui/cal-search-bar.c:641
msgid "Active Tasks"
msgstr "実行中のタスク"
-#: ../calendar/gui/cal-search-bar.c:639
+#: ../calendar/gui/cal-search-bar.c:645
msgid "Overdue Tasks"
msgstr "期限を過ぎたタスク"
-#: ../calendar/gui/cal-search-bar.c:643
+#: ../calendar/gui/cal-search-bar.c:649
msgid "Completed Tasks"
msgstr "完了したタスク"
-#: ../calendar/gui/cal-search-bar.c:647
+#: ../calendar/gui/cal-search-bar.c:653
msgid "Tasks with Attachments"
msgstr "添付ありのタスク"
-#: ../calendar/gui/cal-search-bar.c:693
+#: ../calendar/gui/cal-search-bar.c:699
msgid "Active Appointments"
msgstr "実行中の予定"
-#: ../calendar/gui/cal-search-bar.c:697
+#: ../calendar/gui/cal-search-bar.c:703
msgid "Next 7 Days' Appointments"
msgstr "次の7日間の予定"
-#: ../calendar/gui/calendar-commands.c:99 ../ui/evolution-addressbook.xml.h:26
+#: ../calendar/gui/calendar-commands.c:92 ../ui/evolution-addressbook.xml.h:26
#: ../ui/evolution-calendar.xml.h:20 ../ui/evolution-mail-message.xml.h:75
#: ../ui/evolution-memos.xml.h:11 ../ui/evolution-tasks.xml.h:14
msgid "Print"
msgstr "印刷"
-#: ../calendar/gui/calendar-commands.c:324
+#: ../calendar/gui/calendar-commands.c:317
msgid ""
"This operation will permanently erase all events older than the selected "
"amount of time. If you continue, you will not be able to recover these "
@@ -5236,16 +5276,17 @@ msgstr ""
"この操作は選択したイベントより古いイベントを全て完全に削除します。続行する"
"と、これらのイベントを復旧できなくなります。"
-#: ../calendar/gui/calendar-commands.c:330
+#: ../calendar/gui/calendar-commands.c:323
msgid "Purge events older than"
msgstr "次より古いイベントを抹消する"
-#: ../calendar/gui/calendar-commands.c:335
+#: ../calendar/gui/calendar-commands.c:328
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:21 ../filter/filter.glade.h:14
-#: ../plugins/calendar-http/calendar-http.c:290
+#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
-#: ../plugins/google-account-setup/google-source.c:397
-#: ../widgets/misc/e-send-options.glade.h:38
+#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
+#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "日"
@@ -5254,102 +5295,98 @@ msgstr "日"
#. Create the Webcal source group
#. Create the LDAP source group
#: ../calendar/gui/calendar-component.c:273
-#: ../calendar/gui/memos-component.c:235 ../calendar/gui/migration.c:512
-#: ../calendar/gui/migration.c:610 ../calendar/gui/migration.c:1123
+#: ../calendar/gui/memos-component.c:235 ../calendar/gui/migration.c:505
+#: ../calendar/gui/migration.c:604 ../calendar/gui/migration.c:1118
#: ../calendar/gui/tasks-component.c:231
msgid "On The Web"
msgstr "ウェブ"
-#: ../calendar/gui/calendar-component.c:296 ../calendar/gui/migration.c:406
+#: ../calendar/gui/calendar-component.c:310 ../calendar/gui/migration.c:399
msgid "Birthdays & Anniversaries"
msgstr "誕生日と記念日"
#. Create the weather group
-#: ../calendar/gui/calendar-component.c:308
+#: ../calendar/gui/calendar-component.c:323
#: ../plugins/calendar-weather/calendar-weather.c:100
msgid "Weather"
msgstr "天気"
-#: ../calendar/gui/calendar-component.c:605
+#: ../calendar/gui/calendar-component.c:615
msgid "_New Calendar"
msgstr "新しいカレンダ(_N)"
-#: ../calendar/gui/calendar-component.c:606
+#: ../calendar/gui/calendar-component.c:616
#: ../calendar/gui/memos-component.c:465 ../calendar/gui/tasks-component.c:456
-#: ../mail/em-folder-tree.c:2085
+#: ../mail/em-folder-tree.c:2106
msgid "_Copy..."
msgstr "コピー(_C)..."
-#: ../calendar/gui/calendar-component.c:612
-#: ../calendar/gui/dialogs/comp-editor.c:1130
-#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
-#: ../composer/e-msg-composer.c:3631 ../mail/em-folder-tree.c:2099
-#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
-msgid "_Properties"
-msgstr "プロパティ(_P)"
-
-#: ../calendar/gui/calendar-component.c:939
+#: ../calendar/gui/calendar-component.c:949
msgid "Failed upgrading calendars."
msgstr "カレンダのアップグレードに失敗しました。"
-#: ../calendar/gui/calendar-component.c:1238
+#: ../calendar/gui/calendar-component.c:1248
#, c-format
msgid "Unable to open the calendar '%s' for creating events and meetings"
msgstr "イベントと会議の作成に必要なカレンダ '%s' を開けません"
-#: ../calendar/gui/calendar-component.c:1254
+#: ../calendar/gui/calendar-component.c:1264
msgid "There is no calendar available for creating events and meetings"
msgstr "イベントと会議の作成で利用可能なカレンダがありません"
-#: ../calendar/gui/calendar-component.c:1367
+#: ../calendar/gui/calendar-component.c:1377
msgid "Calendar Source Selector"
msgstr "カレンダの格納場所の選択"
-#: ../calendar/gui/calendar-component.c:1585
+#: ../calendar/gui/calendar-component.c:1595
msgid "New appointment"
msgstr "新しい予定"
-#: ../calendar/gui/calendar-component.c:1586
+#: ../calendar/gui/calendar-component.c:1596
+msgctxt "New"
msgid "_Appointment"
msgstr "予定(_A)"
-#: ../calendar/gui/calendar-component.c:1587
+#: ../calendar/gui/calendar-component.c:1597
msgid "Create a new appointment"
msgstr "新しい予定を作成します"
-#: ../calendar/gui/calendar-component.c:1593
+#: ../calendar/gui/calendar-component.c:1603
msgid "New meeting"
msgstr "新規の会議"
-#: ../calendar/gui/calendar-component.c:1594
+#: ../calendar/gui/calendar-component.c:1604
+msgctxt "New"
msgid "M_eeting"
msgstr "会議(_E)"
-#: ../calendar/gui/calendar-component.c:1595
+#: ../calendar/gui/calendar-component.c:1605
msgid "Create a new meeting request"
msgstr "新しい会議を召集します"
-#: ../calendar/gui/calendar-component.c:1601
+#: ../calendar/gui/calendar-component.c:1611
msgid "New all day appointment"
msgstr "新しい終日の予定"
-#: ../calendar/gui/calendar-component.c:1602
+#: ../calendar/gui/calendar-component.c:1612
+msgctxt "New"
msgid "All Day A_ppointment"
msgstr "終日の予定(_P)"
-#: ../calendar/gui/calendar-component.c:1603
+#: ../calendar/gui/calendar-component.c:1613
msgid "Create a new all-day appointment"
msgstr "新しい終日の予定を作成します"
-#: ../calendar/gui/calendar-component.c:1609
+#: ../calendar/gui/calendar-component.c:1619
msgid "New calendar"
msgstr "新しいカレンダ"
-#: ../calendar/gui/calendar-component.c:1610
+#: ../calendar/gui/calendar-component.c:1620
+msgctxt "New"
msgid "Cale_ndar"
msgstr "カレンダ(_N)"
-#: ../calendar/gui/calendar-component.c:1611
+#: ../calendar/gui/calendar-component.c:1621
msgid "Create a new calendar"
msgstr "新しいカレンダを作成します"
@@ -5370,15 +5407,219 @@ msgid "Month View"
msgstr "月間ビュー"
#: ../calendar/gui/caltypes.xml.h:2 ../calendar/gui/memotypes.xml.h:2
-#: ../calendar/gui/tasktypes.xml.h:2
+#: ../calendar/gui/tasktypes.xml.h:4
+msgid "Any Field"
+msgstr "いずれかの項目"
+
+#: ../calendar/gui/caltypes.xml.h:4 ../calendar/gui/memotypes.xml.h:4
+#: ../calendar/gui/tasktypes.xml.h:6 ../mail/em-filter-i18n.h:5
+msgid "Attachments"
+msgstr "添付ファイル"
+
+#: ../calendar/gui/caltypes.xml.h:5
+#: ../calendar/gui/e-meeting-time-sel.etspec.h:1
+#: ../calendar/gui/tasktypes.xml.h:7
+msgid "Attendee"
+msgstr "出席者"
+
+#: ../calendar/gui/caltypes.xml.h:7 ../calendar/gui/memotypes.xml.h:6
+#: ../calendar/gui/tasktypes.xml.h:9
+msgid "Business"
+msgstr "仕事"
+
+#: ../calendar/gui/caltypes.xml.h:8 ../calendar/gui/memotypes.xml.h:7
+#: ../calendar/gui/tasktypes.xml.h:11
+msgid "Category"
+msgstr "カテゴリ"
+
+#: ../calendar/gui/caltypes.xml.h:9 ../calendar/gui/memotypes.xml.h:8
+#: ../widgets/misc/e-send-options.glade.h:6
+msgid "Classification"
+msgstr "区分"
+
+#: ../calendar/gui/caltypes.xml.h:10 ../calendar/gui/memotypes.xml.h:9
+#: ../calendar/gui/tasktypes.xml.h:12
+msgid "Competition"
+msgstr "競合他社"
+
+#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
+#: ../calendar/gui/memotypes.xml.h:10
+msgid "Confidential"
+msgstr "極秘"
+
+#: ../calendar/gui/caltypes.xml.h:12 ../calendar/gui/memotypes.xml.h:11
+#: ../calendar/gui/tasktypes.xml.h:14
+#: ../plugins/plugin-manager/plugin-manager.c:43
+#: ../widgets/table/e-table-config.glade.h:6
+msgid "Description"
+msgstr "説明"
+
+#: ../calendar/gui/caltypes.xml.h:13 ../calendar/gui/memotypes.xml.h:12
+#: ../calendar/gui/tasktypes.xml.h:15
msgid "Description Contains"
msgstr "説明が次のものを含む"
-#: ../calendar/gui/caltypes.xml.h:3 ../calendar/gui/memotypes.xml.h:3
-#: ../calendar/gui/tasktypes.xml.h:3
+#: ../calendar/gui/caltypes.xml.h:14 ../calendar/gui/memotypes.xml.h:13
+#: ../calendar/gui/tasktypes.xml.h:16 ../mail/em-filter-i18n.h:22
+msgid "Do Not Exist"
+msgstr "がない"
+
+#: ../calendar/gui/caltypes.xml.h:15 ../calendar/gui/memotypes.xml.h:14
+#: ../calendar/gui/tasktypes.xml.h:17 ../mail/em-filter-i18n.h:25
+msgid "Exist"
+msgstr "がある"
+
+#: ../calendar/gui/caltypes.xml.h:16 ../calendar/gui/memotypes.xml.h:15
+#: ../calendar/gui/tasktypes.xml.h:18
+msgid "Favourites"
+msgstr "お気に入り"
+
+#: ../calendar/gui/caltypes.xml.h:17 ../calendar/gui/memotypes.xml.h:16
+#: ../calendar/gui/tasktypes.xml.h:19
+msgid "Gifts"
+msgstr "贈り物"
+
+#: ../calendar/gui/caltypes.xml.h:18 ../calendar/gui/memotypes.xml.h:17
+#: ../calendar/gui/tasktypes.xml.h:20
+msgid "Goals/Objectives"
+msgstr "目標/ゴール"
+
+#: ../calendar/gui/caltypes.xml.h:19 ../calendar/gui/memotypes.xml.h:18
+#: ../calendar/gui/tasktypes.xml.h:22
+msgid "Holiday"
+msgstr "休日"
+
+#: ../calendar/gui/caltypes.xml.h:20 ../calendar/gui/memotypes.xml.h:19
+#: ../calendar/gui/tasktypes.xml.h:23
+msgid "Holiday Cards"
+msgstr "クリスマス・カード"
+
+#: ../calendar/gui/caltypes.xml.h:21 ../calendar/gui/memotypes.xml.h:20
+#: ../calendar/gui/tasktypes.xml.h:24
+msgid "Hot Contacts"
+msgstr "最新の連絡先"
+
+#: ../calendar/gui/caltypes.xml.h:22 ../calendar/gui/memotypes.xml.h:21
+#: ../calendar/gui/tasktypes.xml.h:25
+msgid "Ideas"
+msgstr "アイディア"
+
+#: ../calendar/gui/caltypes.xml.h:23 ../calendar/gui/memotypes.xml.h:22
+#: ../calendar/gui/tasktypes.xml.h:27
+msgid "International"
+msgstr "国際"
+
+#: ../calendar/gui/caltypes.xml.h:24 ../calendar/gui/memotypes.xml.h:23
+#: ../calendar/gui/tasktypes.xml.h:28
+msgid "Key Customer"
+msgstr "重要な顧客"
+
+#: ../calendar/gui/caltypes.xml.h:26 ../calendar/gui/memotypes.xml.h:24
+#: ../calendar/gui/tasktypes.xml.h:30
+msgid "Miscellaneous"
+msgstr "その他"
+
+#: ../calendar/gui/caltypes.xml.h:27 ../calendar/gui/tasktypes.xml.h:31
+msgid "Next 7 days"
+msgstr "次の7日間"
+
+#: ../calendar/gui/caltypes.xml.h:28
+#: ../calendar/gui/dialogs/meeting-page.glade.h:6
+#: ../calendar/gui/memotypes.xml.h:26 ../calendar/gui/tasktypes.xml.h:34
+msgid "Organizer"
+msgstr "主催者"
+
+#: ../calendar/gui/caltypes.xml.h:30 ../calendar/gui/memotypes.xml.h:28
+#: ../calendar/gui/tasktypes.xml.h:36
+msgid "Phone Calls"
+msgstr "携帯電話"
+
+#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
+#: ../calendar/gui/memotypes.xml.h:29
+msgid "Private"
+msgstr "非公開"
+
+#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
+#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
+msgid "Public"
+msgstr "公開"
+
+#: ../calendar/gui/caltypes.xml.h:33
+#: ../calendar/gui/dialogs/event-editor.c:297
+msgid "Recurrence"
+msgstr "繰り返し"
+
+#: ../calendar/gui/caltypes.xml.h:34
+#: ../calendar/gui/e-calendar-table.etspec.h:10
+#: ../calendar/gui/e-meeting-list-view.c:545
+#: ../calendar/gui/e-meeting-time-sel.etspec.h:10
+#: ../calendar/gui/memotypes.xml.h:31 ../calendar/gui/tasktypes.xml.h:38
+#: ../mail/em-filter-i18n.h:70 ../mail/message-list.etspec.h:17
+msgid "Status"
+msgstr "状態"
+
+#: ../calendar/gui/caltypes.xml.h:35 ../calendar/gui/memotypes.xml.h:32
+#: ../calendar/gui/tasktypes.xml.h:39
+msgid "Strategies"
+msgstr "戦略"
+
+#: ../calendar/gui/caltypes.xml.h:36
+#: ../calendar/gui/e-cal-list-view.etspec.h:5
+#: ../calendar/gui/e-calendar-table.etspec.h:11
+#: ../calendar/gui/e-memo-table.etspec.h:4 ../calendar/gui/memotypes.xml.h:33
+#: ../calendar/gui/tasktypes.xml.h:40
+#: ../plugins/save-calendar/csv-format.c:361
+msgid "Summary"
+msgstr "サマリ"
+
+#: ../calendar/gui/caltypes.xml.h:37 ../calendar/gui/memotypes.xml.h:34
+#: ../calendar/gui/tasktypes.xml.h:41
msgid "Summary Contains"
msgstr "サマリが次のものを含む"
+#: ../calendar/gui/caltypes.xml.h:38 ../calendar/gui/memotypes.xml.h:35
+#: ../calendar/gui/tasktypes.xml.h:42
+msgid "Suppliers"
+msgstr "サプライヤー"
+
+#: ../calendar/gui/caltypes.xml.h:39 ../calendar/gui/memotypes.xml.h:36
+#: ../calendar/gui/tasktypes.xml.h:43
+msgid "Time &amp; Expenses"
+msgstr "時間と経費"
+
+#: ../calendar/gui/caltypes.xml.h:40 ../calendar/gui/memotypes.xml.h:37
+#: ../calendar/gui/tasktypes.xml.h:45
+msgid "VIP"
+msgstr "重要人物"
+
+#: ../calendar/gui/caltypes.xml.h:41 ../calendar/gui/memotypes.xml.h:38
+#: ../calendar/gui/tasktypes.xml.h:46
+msgid "Waiting"
+msgstr "給仕"
+
+#: ../calendar/gui/caltypes.xml.h:42 ../calendar/gui/memotypes.xml.h:39
+#: ../calendar/gui/tasktypes.xml.h:47 ../mail/em-filter-i18n.h:10
+msgid "contains"
+msgstr "が次を含む"
+
+#: ../calendar/gui/caltypes.xml.h:43 ../calendar/gui/memotypes.xml.h:40
+#: ../calendar/gui/tasktypes.xml.h:48 ../mail/em-filter-i18n.h:16
+msgid "does not contain"
+msgstr "が次を含まない"
+
+#: ../calendar/gui/caltypes.xml.h:44 ../calendar/gui/memotypes.xml.h:41
+#: ../calendar/gui/tasktypes.xml.h:49 ../mail/em-filter-i18n.h:30
+msgid "is"
+msgstr "が次である"
+
+#: ../calendar/gui/caltypes.xml.h:45 ../calendar/gui/memotypes.xml.h:42
+#: ../calendar/gui/tasktypes.xml.h:52 ../mail/em-filter-i18n.h:36
+msgid "is not"
+msgstr "が次ではない"
+
#: ../calendar/gui/comp-editor-factory.c:405
msgid "Error while opening the calendar"
msgstr "カレンダをオープンする際にエラーが発生しました"
@@ -5391,11 +5632,11 @@ msgstr "カレンダをオープンする際の方法がサポートされてい
msgid "Permission denied to open the calendar"
msgstr "カレンダをオープンする権限がありません"
-#: ../calendar/gui/comp-editor-factory.c:429 ../shell/e-shell.c:1290
+#: ../calendar/gui/comp-editor-factory.c:429 ../shell/e-shell.c:1288
msgid "Unknown error"
-msgstr "特定できないエラー"
+msgstr "原因不明のエラー"
-#: ../calendar/gui/dialogs/alarm-dialog.c:616
+#: ../calendar/gui/dialogs/alarm-dialog.c:601
msgid "Edit Alarm"
msgstr "アラームの編集"
@@ -5428,17 +5669,17 @@ msgid "Mes_sage:"
msgstr "メッセージ(_S):"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:8
-#: ../calendar/gui/e-alarm-list.c:446
+#: ../calendar/gui/e-alarm-list.c:442
msgid "Play a sound"
msgstr "サウンドを演奏する"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:9
-#: ../calendar/gui/e-alarm-list.c:450
+#: ../calendar/gui/e-alarm-list.c:446
msgid "Pop up an alert"
msgstr "警告をポップアップする"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:10
-#: ../calendar/gui/e-alarm-list.c:458
+#: ../calendar/gui/e-alarm-list.c:454
msgid "Run a program"
msgstr "プログラムを実行する"
@@ -5451,7 +5692,7 @@ msgid "Send To:"
msgstr "送信先:"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:13
-#: ../calendar/gui/e-alarm-list.c:454
+#: ../calendar/gui/e-alarm-list.c:450
msgid "Send an email"
msgstr "E-メールを送信する"
@@ -5506,7 +5747,7 @@ msgstr "分"
msgid "start of appointment"
msgstr "予定を開始した時"
-#: ../calendar/gui/dialogs/alarm-list-dialog.c:249
+#: ../calendar/gui/dialogs/alarm-list-dialog.c:242
msgid "Action/Trigger"
msgstr "アクション"
@@ -5517,16 +5758,15 @@ msgstr "追加(_D)"
#: ../calendar/gui/dialogs/alarm-list-dialog.glade.h:2
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:15
#: ../calendar/gui/dialogs/event-page.glade.h:4
-#: ../ui/evolution-event-editor.xml.h:1
msgid "Alarms"
msgstr "アラーム"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:92
-#: ../composer/e-msg-composer-select-file.c:93
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:82
+#: ../composer/e-composer-actions.c:64
msgid "_Suggest automatic display of attachment"
msgstr "添付ファイルを自動的に表示するか提示する(_S)"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:158
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:143
msgid "Attach file(s)"
msgstr "ファイルの添付"
@@ -5573,7 +5813,7 @@ msgstr "<span weight=\"bold\">全般</span>"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:11
msgid "<span weight=\"bold\">Task List</span>"
-msgstr "<span weight=\"bold\">タスク一覧</span>"
+msgstr "<span weight=\"bold\">タスクの一覧</span>"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:12
msgid "<span weight=\"bold\">Time</span>"
@@ -5596,8 +5836,8 @@ msgid "Display"
msgstr "表示"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:19
-#: ../calendar/gui/dialogs/recurrence-page.c:1098
-#: ../calendar/gui/e-itip-control.c:740
+#: ../calendar/gui/dialogs/recurrence-page.c:1087
+#: ../calendar/gui/e-itip-control.c:738
msgid "Friday"
msgstr "金曜日"
@@ -5612,8 +5852,8 @@ msgstr ""
"日"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:24
-#: ../calendar/gui/dialogs/recurrence-page.c:1094
-#: ../calendar/gui/e-itip-control.c:736
+#: ../calendar/gui/dialogs/recurrence-page.c:1083
+#: ../calendar/gui/e-itip-control.c:734
msgid "Monday"
msgstr "月曜日"
@@ -5636,7 +5876,7 @@ msgstr ""
"日曜日"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:32
-#: ../mail/mail-config.glade.h:109
+#: ../mail/mail-config.glade.h:113
msgid "Pick a color"
msgstr "色の選択"
@@ -5646,8 +5886,8 @@ msgid "S_un"
msgstr "日(_U)"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:35
-#: ../calendar/gui/dialogs/recurrence-page.c:1099
-#: ../calendar/gui/e-itip-control.c:741
+#: ../calendar/gui/dialogs/recurrence-page.c:1088
+#: ../calendar/gui/e-itip-control.c:739
msgid "Saturday"
msgstr "土曜日"
@@ -5664,8 +5904,8 @@ msgid "Show week _numbers in date navigator"
msgstr "期日ナビゲータの中に週番号を表示する(_N)"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:39
-#: ../calendar/gui/dialogs/recurrence-page.c:1100
-#: ../calendar/gui/e-itip-control.c:735
+#: ../calendar/gui/dialogs/recurrence-page.c:1089
+#: ../calendar/gui/e-itip-control.c:733
msgid "Sunday"
msgstr "日曜日"
@@ -5683,13 +5923,13 @@ msgid "Template:"
msgstr "テンプレート:"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:44
-#: ../calendar/gui/dialogs/recurrence-page.c:1097
-#: ../calendar/gui/e-itip-control.c:739
+#: ../calendar/gui/dialogs/recurrence-page.c:1086
+#: ../calendar/gui/e-itip-control.c:737
msgid "Thursday"
msgstr "木曜日"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
-#: ../calendar/gui/dialogs/event-page.glade.h:13
+#: ../calendar/gui/dialogs/event-page.glade.h:12
msgid "Time _zone:"
msgstr "タイムゾーン(_Z):"
@@ -5698,14 +5938,14 @@ msgid "Time format:"
msgstr "時刻の書式:"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:47
-#: ../calendar/gui/dialogs/recurrence-page.c:1095
-#: ../calendar/gui/e-itip-control.c:737
+#: ../calendar/gui/dialogs/recurrence-page.c:1084
+#: ../calendar/gui/e-itip-control.c:735
msgid "Tuesday"
msgstr "火曜日"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:48
-#: ../calendar/gui/dialogs/recurrence-page.c:1096
-#: ../calendar/gui/e-itip-control.c:738
+#: ../calendar/gui/dialogs/recurrence-page.c:1085
+#: ../calendar/gui/e-itip-control.c:736
msgid "Wednesday"
msgstr "水曜日"
@@ -5783,302 +6023,453 @@ msgstr "水(_W)"
msgid "before every appointment"
msgstr "前に表示する"
-#: ../calendar/gui/dialogs/calendar-setup.c:272
+#: ../calendar/gui/dialogs/calendar-setup.c:269
msgid "Cop_y calendar contents locally for offline operation"
msgstr "オフライン時にカレンダの内容をローカルへコピーする(_Y)"
-#: ../calendar/gui/dialogs/calendar-setup.c:274
+#: ../calendar/gui/dialogs/calendar-setup.c:271
msgid "Cop_y task list contents locally for offline operation"
-msgstr "オフライン時にタスク一覧の内容をローカルへコピーする(_Y)"
+msgstr "オフライン時にタスクの一覧の内容をローカルへコピーする(_Y)"
-#: ../calendar/gui/dialogs/calendar-setup.c:276
+#: ../calendar/gui/dialogs/calendar-setup.c:273
msgid "Cop_y memo list contents locally for offline operation"
msgstr "オフライン時にメモの一覧の内容をローカルへコピーする(_Y)"
-#: ../calendar/gui/dialogs/calendar-setup.c:346
-msgid "C_olor:"
-msgstr "色(_O):"
+#: ../calendar/gui/dialogs/calendar-setup.c:343
+msgid "Colo_r:"
+msgstr "色(_R):"
-#: ../calendar/gui/dialogs/calendar-setup.c:381
+#: ../calendar/gui/dialogs/calendar-setup.c:378
msgid "Task List"
-msgstr "タスク一覧"
+msgstr "タスクの一覧"
-#: ../calendar/gui/dialogs/calendar-setup.c:392
+#: ../calendar/gui/dialogs/calendar-setup.c:389
msgid "Memo List"
msgstr "メモの一覧"
-#: ../calendar/gui/dialogs/calendar-setup.c:478
+#: ../calendar/gui/dialogs/calendar-setup.c:474
msgid "Calendar Properties"
msgstr "カレンダのプロパティ"
-#: ../calendar/gui/dialogs/calendar-setup.c:480
+#: ../calendar/gui/dialogs/calendar-setup.c:474
msgid "New Calendar"
msgstr "新しいカレンダ"
-#: ../calendar/gui/dialogs/calendar-setup.c:536
+#: ../calendar/gui/dialogs/calendar-setup.c:530
msgid "Task List Properties"
msgstr "タスク一覧のプロパティ"
-#: ../calendar/gui/dialogs/calendar-setup.c:592
+#: ../calendar/gui/dialogs/calendar-setup.c:530
+msgid "New Task List"
+msgstr "新しいタスクの一覧"
+
+#: ../calendar/gui/dialogs/calendar-setup.c:586
+msgid "Memo List Properties"
+msgstr "タスク一覧のプロパティ"
+
+#: ../calendar/gui/dialogs/calendar-setup.c:586
msgid "New Memo List"
msgstr "新しいメモの一覧"
-#: ../calendar/gui/dialogs/changed-comp.c:60
+#: ../calendar/gui/dialogs/changed-comp.c:56
msgid "This event has been deleted."
msgstr "このイベントは削除されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:64
+#: ../calendar/gui/dialogs/changed-comp.c:60
msgid "This task has been deleted."
msgstr "このタスクは削除されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:68
+#: ../calendar/gui/dialogs/changed-comp.c:64
msgid "This memo has been deleted."
msgstr "このメモは削除されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:77
+#: ../calendar/gui/dialogs/changed-comp.c:73
#, c-format
msgid "%s You have made changes. Forget those changes and close the editor?"
msgstr "%s 変更しました。これらの変更を無視してエディタを閉じますか?"
-#: ../calendar/gui/dialogs/changed-comp.c:79
+#: ../calendar/gui/dialogs/changed-comp.c:75
#, c-format
msgid "%s You have made no changes, close the editor?"
msgstr "%s 何も変更していませんが、エディタを閉じますか?"
-#: ../calendar/gui/dialogs/changed-comp.c:84
+#: ../calendar/gui/dialogs/changed-comp.c:80
msgid "This event has been changed."
msgstr "このイベントは変更されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:88
+#: ../calendar/gui/dialogs/changed-comp.c:84
msgid "This task has been changed."
msgstr "このタスクは変更されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:92
+#: ../calendar/gui/dialogs/changed-comp.c:88
msgid "This memo has been changed."
msgstr "このメモは変更されました。"
-#: ../calendar/gui/dialogs/changed-comp.c:101
+#: ../calendar/gui/dialogs/changed-comp.c:97
#, c-format
msgid "%s You have made changes. Forget those changes and update the editor?"
msgstr "%s 変更しました。この変更を無視してエディタを更新しますか?"
-#: ../calendar/gui/dialogs/changed-comp.c:103
+#: ../calendar/gui/dialogs/changed-comp.c:99
#, c-format
msgid "%s You have made no changes, update the editor?"
msgstr "%s 何も変更していませんが、エディタを更新しますか?"
-#: ../calendar/gui/dialogs/comp-editor-page.c:519
+#: ../calendar/gui/dialogs/comp-editor-page.c:443
#, c-format
msgid "Validation error: %s"
msgstr "整合性のエラー: %s"
-#: ../calendar/gui/dialogs/comp-editor-util.c:187 ../calendar/gui/print.c:2340
+#: ../calendar/gui/dialogs/comp-editor-util.c:182 ../calendar/gui/print.c:2356
msgid " to "
msgstr " から "
-#: ../calendar/gui/dialogs/comp-editor-util.c:191 ../calendar/gui/print.c:2344
+#: ../calendar/gui/dialogs/comp-editor-util.c:186 ../calendar/gui/print.c:2360
msgid " (Completed "
msgstr "(完了 "
-#: ../calendar/gui/dialogs/comp-editor-util.c:193 ../calendar/gui/print.c:2346
+#: ../calendar/gui/dialogs/comp-editor-util.c:188 ../calendar/gui/print.c:2362
msgid "Completed "
msgstr "完了しました"
-#: ../calendar/gui/dialogs/comp-editor-util.c:198 ../calendar/gui/print.c:2351
+#: ../calendar/gui/dialogs/comp-editor-util.c:193 ../calendar/gui/print.c:2367
msgid " (Due "
msgstr " (期日 "
-#: ../calendar/gui/dialogs/comp-editor-util.c:200 ../calendar/gui/print.c:2353
+#: ../calendar/gui/dialogs/comp-editor-util.c:195 ../calendar/gui/print.c:2369
msgid "Due "
msgstr "期日 "
-#: ../calendar/gui/dialogs/comp-editor.c:209 ../composer/e-msg-composer.c:2850
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "添付されたメッセージ - %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:214
-#: ../calendar/gui/dialogs/comp-editor.c:387 ../composer/e-msg-composer.c:2855
-#: ../composer/e-msg-composer.c:3037
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
+#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
msgid_plural "%d attached messages"
msgstr[0] "添付メッセージ"
msgstr[1] "%d通の添付メッセージ"
-#: ../calendar/gui/dialogs/comp-editor.c:458 ../composer/e-msg-composer.c:3101
-#: ../mail/em-folder-tree.c:997 ../mail/em-folder-utils.c:366
-#: ../mail/em-folder-view.c:1192 ../mail/message-list.c:2066
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
+#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
+#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "移動(_M)"
-#: ../calendar/gui/dialogs/comp-editor.c:460 ../composer/e-msg-composer.c:3103
-#: ../mail/em-folder-tree.c:999 ../mail/message-list.c:2068
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
+#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr "ドラッグのキャンセル(_D)"
-#: ../calendar/gui/dialogs/comp-editor.c:663
-#: ../calendar/gui/dialogs/comp-editor.c:2821 ../mail/em-utils.c:372
-#: ../plugins/prefer-plain/prefer-plain.c:79
-#: ../widgets/misc/e-attachment-bar.c:359
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
+#: ../plugins/prefer-plain/prefer-plain.c:74
+#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr "添付"
-#: ../calendar/gui/dialogs/comp-editor.c:825
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr "オブジェクトを更新できませんでした"
-#: ../calendar/gui/dialogs/comp-editor.c:975 ../composer/e-msg-composer.c:2487
+#: ../calendar/gui/dialogs/comp-editor.c:930
+msgid "Edit Appointment"
+msgstr "予定の編集"
+
+#: ../calendar/gui/dialogs/comp-editor.c:937
+#, c-format
+msgid "Meeting - %s"
+msgstr "会議 - %s"
+
+#: ../calendar/gui/dialogs/comp-editor.c:939
+#, c-format
+msgid "Appointment - %s"
+msgstr "予定 - %s"
+
+#: ../calendar/gui/dialogs/comp-editor.c:945
+#, c-format
+msgid "Assigned Task - %s"
+msgstr "タスクの割当て - %s"
+
+#: ../calendar/gui/dialogs/comp-editor.c:947
+#, c-format
+msgid "Task - %s"
+msgstr "タスク - %s"
+
+#: ../calendar/gui/dialogs/comp-editor.c:952
+#, c-format
+msgid "Memo - %s"
+msgstr "メモ - %s"
+
+#: ../calendar/gui/dialogs/comp-editor.c:968
+msgid "No Summary"
+msgstr "サマリ無し"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1262
+msgid "Click here to close the current window"
+msgstr "このウィンドウを閉じます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1269
+msgid "Copy selected text to the clipboard"
+msgstr "選択した文字列をクリップボードにコピーします"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1276
+msgid "Cut selected text to the clipboard"
+msgstr "選択した文字列を切り取ってクリップボードにコピーします"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1283
+msgid "Click here to view help available"
+msgstr "利用可能なヘルプを表示します"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1290
+msgid "Paste text from the clipboard"
+msgstr "クリップボードから文字列を貼り付けます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1311
+msgid "Click here to save the current window"
+msgstr "この内容を保存します"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1318
+msgid "Select all text"
+msgstr "全ての文字列を選択します"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1325
+msgid "_Classification"
+msgstr "区分(_C)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1339
+#: ../mail/mail-signature-editor.c:208
+#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
+msgid "_File"
+msgstr "ファイル(_F)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1346
+#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
+msgid "_Help"
+msgstr "ヘルプ(_H)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1353
+msgid "_Insert"
+msgstr "添付(_I)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1360
+msgid "_Options"
+msgstr "オプション(_O)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
+#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
+#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
+#: ../ui/evolution.xml.h:55
+msgid "_View"
+msgstr "表示(_V)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1377
+#: ../composer/e-composer-actions.c:472
+msgid "_Attachment..."
+msgstr "ファイルの添付(_A)..."
+
+#: ../calendar/gui/dialogs/comp-editor.c:1379
+msgid "Click here to attach a file"
+msgstr "ファイルを添付します"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1387
+msgid "_Categories"
+msgstr "カテゴリ(_C)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1389
+msgid "Toggles whether to display categories"
+msgstr "カテゴリの表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1395
+msgid "Time _Zone"
+msgstr "タイムゾーン(_Z)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1397
+msgid "Toggles whether the time zone is displayed"
+msgstr "タイムゾーンの表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1406
+msgid "Pu_blic"
+msgstr "公開(_B)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1408
+msgid "Classify as public"
+msgstr "公開として分類"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1413
+msgid "_Private"
+msgstr "非公開(_P)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1415
+msgid "Classify as private"
+msgstr "非公開としての分類"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1420
+msgid "_Confidential"
+msgstr "極秘(_C)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1422
+msgid "Classify as confidential"
+msgstr "極秘としての分類"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1430
+msgid "R_ole Field"
+msgstr "役割(_O)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1432
+msgid "Toggles whether the Role field is displayed"
+msgstr "役割の表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1438
+msgid "_RSVP"
+msgstr "RSVP(_R)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1440
+msgid "Toggles whether the RSVP field is displayed"
+msgstr "RSVP の表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1446
+msgid "_Status Field"
+msgstr "ステータス(_S)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1448
+msgid "Toggles whether the Status field is displayed"
+msgstr "ステータスの表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1454
+msgid "_Type Field"
+msgstr "種類(_T)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1456
+msgid "Toggles whether the Attendee Type is displayed"
+msgstr "出席者の種類の表示/非表示を切り替えます"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1766
+#: ../widgets/misc/e-attachment-bar.c:1381
+msgid "Recent Docu_ments"
+msgstr "最近開いたドキュメント(_M)"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1785
+#: ../composer/e-composer-actions.c:700
+msgid "Attach"
+msgstr "添付"
+
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "添付ファイル: <b>%d</b>個"
msgstr[1] "添付ファイル: <b>%d</b>個"
-#: ../calendar/gui/dialogs/comp-editor.c:1007
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr "添付ファイル・バーを隠す(_B)"
-#: ../calendar/gui/dialogs/comp-editor.c:1010
-#: ../calendar/gui/dialogs/comp-editor.c:1558
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr "添付ファイル・バーを表示する(_B)"
-#: ../calendar/gui/dialogs/comp-editor.c:1129
-#: ../calendar/gui/dialogs/event-page.c:1967
-#: ../calendar/gui/dialogs/task-page.c:1266 ../composer/e-msg-composer.c:3630
+#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/event-page.c:1871
+#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
#: ../plugins/groupwise-features/properties.glade.h:13
#: ../widgets/table/e-table-config.glade.h:21
msgid "_Remove"
msgstr "削除(_R)"
-#: ../calendar/gui/dialogs/comp-editor.c:1132
-#: ../composer/e-msg-composer.c:3633
+#: ../calendar/gui/dialogs/comp-editor.c:2037
+#: ../composer/e-msg-composer.c:1048
+#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr "添付ファイルの追加(_A)..."
-#: ../calendar/gui/dialogs/comp-editor.c:1582
-#: ../mail/em-format-html-display.c:2374
+#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr "添付ファイルの表示"
-#: ../calendar/gui/dialogs/comp-editor.c:1583
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr "[SPACE] キーを押すと添付ファイル・バーの表示が切り替わります"
-#: ../calendar/gui/dialogs/comp-editor.c:2189
-#: ../calendar/gui/dialogs/comp-editor.c:2232
-msgid "Edit Appointment"
-msgstr "予定の編集"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2195
-#: ../calendar/gui/dialogs/comp-editor.c:2238
-#, c-format
-msgid "Meeting - %s"
-msgstr "会議 - %s"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2197
-#: ../calendar/gui/dialogs/comp-editor.c:2240
-#, c-format
-msgid "Appointment - %s"
-msgstr "予定 - %s"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2201
-#: ../calendar/gui/dialogs/comp-editor.c:2244
-#, c-format
-msgid "Assigned Task - %s"
-msgstr "タスクの割当て - %s"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2203
-#: ../calendar/gui/dialogs/comp-editor.c:2246
-#, c-format
-msgid "Task - %s"
-msgstr "タスク - %s"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2206
-#: ../calendar/gui/dialogs/comp-editor.c:2249
-#, c-format
-msgid "Memo - %s"
-msgstr "メモ - %s"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2217
-#: ../calendar/gui/dialogs/comp-editor.c:2259
-msgid "No summary"
-msgstr "サマリ無し"
-
-#: ../calendar/gui/dialogs/comp-editor.c:2910
-#: ../calendar/gui/dialogs/comp-editor.c:2964
-#: ../calendar/gui/dialogs/comp-editor.c:2988
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr "更新が届いたらこのアイテムに対する変更を破棄する"
-#: ../calendar/gui/dialogs/comp-editor.c:3017
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "現在のバージョンを使用できません!"
-#: ../calendar/gui/dialogs/copy-source-dialog.c:61
+#: ../calendar/gui/dialogs/copy-source-dialog.c:60
msgid "Could not open source"
msgstr "送信元ソースを開けませんでした"
-#: ../calendar/gui/dialogs/copy-source-dialog.c:69
+#: ../calendar/gui/dialogs/copy-source-dialog.c:68
msgid "Could not open destination"
msgstr "転送先ソースを開けませんでした"
-#: ../calendar/gui/dialogs/copy-source-dialog.c:78
+#: ../calendar/gui/dialogs/copy-source-dialog.c:77
msgid "Destination is read only"
msgstr "転送先は読み込み専用"
-#: ../calendar/gui/dialogs/delete-comp.c:206
+#: ../calendar/gui/dialogs/delete-comp.c:201
msgid "_Delete this item from all other recipient's mailboxes?"
msgstr "このアイテムを他の全ての受信箱から削除しますか?(_D)"
-#: ../calendar/gui/dialogs/delete-error.c:54
+#: ../calendar/gui/dialogs/delete-error.c:52
msgid "The event could not be deleted due to a corba error"
msgstr "CORBA エラーのためイベントを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:57
+#: ../calendar/gui/dialogs/delete-error.c:55
msgid "The task could not be deleted due to a corba error"
-msgstr "CORBA エラーのためタスクを削除できませんでした"
+msgstr "CORBA のエラーのためタスクを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:60
+#: ../calendar/gui/dialogs/delete-error.c:58
msgid "The memo could not be deleted due to a corba error"
-msgstr "CORBA エラーのためメモを削除できませんでした"
+msgstr "CORBA のエラーのためメモを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:63
+#: ../calendar/gui/dialogs/delete-error.c:61
msgid "The item could not be deleted due to a corba error"
-msgstr "CORBA エラーのためアイテムを削除できませんでした"
+msgstr "CORBA のエラーのためアイテムを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:70
+#: ../calendar/gui/dialogs/delete-error.c:68
msgid "The event could not be deleted because permission was denied"
msgstr "権限がないのでイベントを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:73
+#: ../calendar/gui/dialogs/delete-error.c:71
msgid "The task could not be deleted because permission was denied"
msgstr "権限がないのでタスクを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:76
+#: ../calendar/gui/dialogs/delete-error.c:74
msgid "The memo could not be deleted because permission was denied"
msgstr "権限がないのでメモを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:79
+#: ../calendar/gui/dialogs/delete-error.c:77
msgid "The item could not be deleted because permission was denied"
msgstr "権限がないのでアイテムを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:86
+#: ../calendar/gui/dialogs/delete-error.c:84
msgid "The event could not be deleted due to an error"
msgstr "エラーのためイベントを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:89
+#: ../calendar/gui/dialogs/delete-error.c:87
msgid "The task could not be deleted due to an error"
msgstr "エラーのためタスクを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:92
+#: ../calendar/gui/dialogs/delete-error.c:90
msgid "The memo could not be deleted due to an error"
msgstr "エラーのためメモを削除できませんでした"
-#: ../calendar/gui/dialogs/delete-error.c:95
+#: ../calendar/gui/dialogs/delete-error.c:93
msgid "The item could not be deleted due to an error"
msgstr "エラーのためアイテムを削除できませんでした"
@@ -6087,7 +6478,7 @@ msgid "Contacts..."
msgstr "連絡先..."
#: ../calendar/gui/dialogs/e-delegate-dialog.glade.h:2
-#: ../plugins/exchange-operations/exchange-delegates.c:421
+#: ../plugins/exchange-operations/exchange-delegates.c:415
msgid "Delegate To:"
msgstr "委任先:"
@@ -6095,135 +6486,181 @@ msgstr "委任先:"
msgid "Enter Delegate"
msgstr "委任先の入力"
-#: ../calendar/gui/dialogs/event-editor.c:602
+#: ../calendar/gui/dialogs/event-editor.c:194
+msgid "_Alarms"
+msgstr "アラーム(_A)"
+
+#: ../calendar/gui/dialogs/event-editor.c:196
+msgid "Click here to set or unset alarms for this event"
+msgstr "このイベントにアラームをセットしたり解除します"
+
+#: ../calendar/gui/dialogs/event-editor.c:201
+msgid "_Recurrence"
+msgstr "繰り返す(_R)"
+
+#: ../calendar/gui/dialogs/event-editor.c:203
+msgid "Make this a recurring event"
+msgstr "このイベントを繰り返します"
+
+#: ../calendar/gui/dialogs/event-editor.c:208
+#: ../plugins/groupwise-features/org-gnome-compose-send-options.xml.h:2
+#: ../widgets/misc/e-send-options.glade.h:19
+msgid "Send Options"
+msgstr "送信オプション"
+
+#: ../calendar/gui/dialogs/event-editor.c:210
+#: ../calendar/gui/dialogs/task-editor.c:123
+msgid "Insert advanced send options"
+msgstr "送信用の拡張オプションを挿入します"
+
+#: ../calendar/gui/dialogs/event-editor.c:218
+msgid "All _Day Event"
+msgstr "終日のイベントにする(_D)"
+
+#: ../calendar/gui/dialogs/event-editor.c:220
+msgid "Toggles whether to have All Day Event"
+msgstr "終日のイベントにするかどうかを切り替えます"
+
+#: ../calendar/gui/dialogs/event-editor.c:226
+msgid "Show Time as _Busy"
+msgstr "予定ありにする(_B)"
+
+#: ../calendar/gui/dialogs/event-editor.c:228
+msgid "Toggles whether to show time as busy"
+msgstr "予定ありとして時刻を表示するかどうかを切り替えます"
+
+#: ../calendar/gui/dialogs/event-editor.c:237
+msgid "_Free/Busy"
+msgstr "Free/Busy(_F)"
+
+#: ../calendar/gui/dialogs/event-editor.c:239
+msgid "Query free / busy information for the attendees"
+msgstr "この出席者の予定を調べてみます"
+
+#: ../calendar/gui/dialogs/event-editor.c:294
msgid "Appoint_ment"
msgstr "予定(_M)"
-#: ../calendar/gui/dialogs/event-editor.c:606
-#: ../ui/evolution-event-editor.xml.h:14
-msgid "Recurrence"
-msgstr "繰り返し"
-
-#: ../calendar/gui/dialogs/event-page.c:826
-#: ../calendar/gui/dialogs/event-page.c:2835
+#: ../calendar/gui/dialogs/event-page.c:731
+#: ../calendar/gui/dialogs/event-page.c:2714
msgid "This event has alarms"
msgstr "このイベントにはアラーム通知があります"
-#: ../calendar/gui/dialogs/event-page.c:906
-#: ../calendar/gui/dialogs/event-page.glade.h:11
+#: ../calendar/gui/dialogs/event-page.c:794
+#: ../calendar/gui/dialogs/event-page.glade.h:10
#: ../calendar/gui/dialogs/meeting-page.glade.h:5
#: ../calendar/gui/dialogs/memo-page.glade.h:2
msgid "Or_ganizer:"
msgstr "主催者(_G):"
-#: ../calendar/gui/dialogs/event-page.c:944
+#: ../calendar/gui/dialogs/event-page.c:840
msgid "_Delegatees"
msgstr "委任者(_D)"
-#: ../calendar/gui/dialogs/event-page.c:946
+#: ../calendar/gui/dialogs/event-page.c:842
msgid "Atte_ndees"
msgstr "出席者(_N)"
-#: ../calendar/gui/dialogs/event-page.c:1128
+#: ../calendar/gui/dialogs/event-page.c:1026
msgid "Event with no start date"
msgstr "開始日のないイベント"
-#: ../calendar/gui/dialogs/event-page.c:1131
+#: ../calendar/gui/dialogs/event-page.c:1029
msgid "Event with no end date"
msgstr "終了日のないイベント"
-#: ../calendar/gui/dialogs/event-page.c:1303
-#: ../calendar/gui/dialogs/memo-page.c:734
-#: ../calendar/gui/dialogs/task-page.c:893
+#: ../calendar/gui/dialogs/event-page.c:1198
+#: ../calendar/gui/dialogs/memo-page.c:636
+#: ../calendar/gui/dialogs/task-page.c:808
msgid "Start date is wrong"
msgstr "開始日が間違っています"
-#: ../calendar/gui/dialogs/event-page.c:1313
+#: ../calendar/gui/dialogs/event-page.c:1208
msgid "End date is wrong"
msgstr "終了日が間違っています"
-#: ../calendar/gui/dialogs/event-page.c:1336
+#: ../calendar/gui/dialogs/event-page.c:1231
msgid "Start time is wrong"
msgstr "開始時刻が間違っています"
-#: ../calendar/gui/dialogs/event-page.c:1343
+#: ../calendar/gui/dialogs/event-page.c:1238
msgid "End time is wrong"
msgstr "終了時刻が間違っています"
-#: ../calendar/gui/dialogs/event-page.c:1505
-#: ../calendar/gui/dialogs/memo-page.c:774
-#: ../calendar/gui/dialogs/task-page.c:952
+#: ../calendar/gui/dialogs/event-page.c:1401
+#: ../calendar/gui/dialogs/memo-page.c:677
+#: ../calendar/gui/dialogs/task-page.c:868
msgid "The organizer selected no longer has an account."
msgstr "指定した主催者のアカウントがありません。"
-#: ../calendar/gui/dialogs/event-page.c:1511
-#: ../calendar/gui/dialogs/memo-page.c:780
-#: ../calendar/gui/dialogs/task-page.c:958
+#: ../calendar/gui/dialogs/event-page.c:1407
+#: ../calendar/gui/dialogs/memo-page.c:683
+#: ../calendar/gui/dialogs/task-page.c:874
msgid "An organizer is required."
msgstr "主催者が必要です。"
-#: ../calendar/gui/dialogs/event-page.c:1536
-#: ../calendar/gui/dialogs/task-page.c:982
+#: ../calendar/gui/dialogs/event-page.c:1432
+#: ../calendar/gui/dialogs/task-page.c:898
msgid "At least one attendee is required."
msgstr "最低一名の出席者が必要です。"
-#: ../calendar/gui/dialogs/event-page.c:1968
-#: ../calendar/gui/dialogs/task-page.c:1267
+#: ../calendar/gui/dialogs/event-page.c:1872
+#: ../calendar/gui/dialogs/task-page.c:1194
msgid "_Add "
msgstr "追加(_A) "
-#: ../calendar/gui/dialogs/event-page.c:2711
+#: ../calendar/gui/dialogs/event-page.c:2590
#, c-format
msgid "Unable to open the calendar '%s'."
msgstr "カレンダ '%s' を開けません。"
-#: ../calendar/gui/dialogs/event-page.c:2755
-#: ../calendar/gui/dialogs/memo-page.c:990
-#: ../calendar/gui/dialogs/task-page.c:1928
+#: ../calendar/gui/dialogs/event-page.c:2634
+#: ../calendar/gui/dialogs/memo-page.c:886
+#: ../calendar/gui/dialogs/task-page.c:1793
#, c-format
msgid "You are acting on behalf of %s"
msgstr "%s さんの代わりに処理しています"
-#: ../calendar/gui/dialogs/event-page.c:3053
+#: ../calendar/gui/dialogs/event-page.c:2914
#, c-format
msgid "%d day before appointment"
msgid_plural "%d days before appointment"
msgstr[0] "予定の %d日前"
msgstr[1] "予定の %d日前"
-#: ../calendar/gui/dialogs/event-page.c:3059
+#: ../calendar/gui/dialogs/event-page.c:2920
#, c-format
msgid "%d hour before appointment"
msgid_plural "%d hours before appointment"
msgstr[0] "予定の %d時間前"
msgstr[1] "予定の %d時間前"
-#: ../calendar/gui/dialogs/event-page.c:3065
+#: ../calendar/gui/dialogs/event-page.c:2926
#, c-format
msgid "%d minute before appointment"
msgid_plural "%d minutes before appointment"
msgstr[0] "予定の %d分前"
msgstr[1] "予定の %d分前"
-#: ../calendar/gui/dialogs/event-page.c:3078
+#: ../calendar/gui/dialogs/event-page.c:2939
msgid "Customize"
msgstr "その他"
#. an empty string is the same as 'None'
-#: ../calendar/gui/dialogs/event-page.c:3083
+#: ../calendar/gui/dialogs/event-page.c:2944
#: ../calendar/gui/dialogs/meeting-page.glade.h:4
#: ../calendar/gui/e-cal-model-tasks.c:669
-#: ../calendar/gui/e-itip-control.c:1141 ../filter/filter-rule.c:892
-#: ../mail/em-account-editor.c:701 ../mail/em-account-editor.c:1421
-#: ../mail/em-account-prefs.c:445 ../mail/em-junk-hook.c:83
+#: ../calendar/gui/e-itip-control.c:1158 ../filter/filter-rule.c:944
+#: ../mail/em-account-editor.c:685 ../mail/em-account-editor.c:1409
+#: ../mail/em-account-prefs.c:438 ../mail/em-junk-hook.c:93
#: ../plugins/calendar-weather/calendar-weather.c:370
#: ../plugins/calendar-weather/calendar-weather.c:424
-#: ../plugins/exchange-operations/exchange-delegates-user.c:205
+#: ../plugins/exchange-operations/exchange-delegates-user.c:193
#: ../plugins/exchange-operations/exchange-delegates.glade.h:9
#: ../plugins/itip-formatter/itip-formatter.c:2021
-#: ../widgets/misc/e-cell-date-edit.c:247 ../widgets/misc/e-dateedit.c:1531
-#: ../widgets/misc/e-dateedit.c:1745
-#: ../widgets/misc/e-signature-combo-box.c:50
+#: ../widgets/misc/e-cell-date-edit.c:307 ../widgets/misc/e-dateedit.c:1517
+#: ../widgets/misc/e-dateedit.c:1731
+#: ../widgets/misc/e-signature-combo-box.c:69
msgid "None"
msgstr "なし"
@@ -6248,23 +6685,25 @@ msgid "Custom Alarm:"
msgstr "アラームのカスタマイズ:"
#: ../calendar/gui/dialogs/event-page.glade.h:9
-msgid "D_escription:"
-msgstr "説明(_E):"
-
-#: ../calendar/gui/dialogs/event-page.glade.h:10
msgid "Event Description"
msgstr "イベントの内容"
-#: ../calendar/gui/dialogs/event-page.glade.h:12
+#: ../calendar/gui/dialogs/event-page.glade.h:11
#: ../calendar/gui/dialogs/memo-page.glade.h:4
#: ../calendar/gui/dialogs/task-page.glade.h:6
msgid "Su_mmary:"
msgstr "サマリ(_M):"
-#: ../calendar/gui/dialogs/event-page.glade.h:14
+#: ../calendar/gui/dialogs/event-page.glade.h:13
msgid "_Alarm"
msgstr "アラーム(_A)"
+#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/memo-page.glade.h:6
+#: ../calendar/gui/dialogs/task-page.glade.h:8
+msgid "_Description:"
+msgstr "説明(_D):"
+
#: ../calendar/gui/dialogs/event-page.glade.h:17
msgid "_Time:"
msgstr "時刻(_T):"
@@ -6295,28 +6734,24 @@ msgstr "主催者の変更(_G)"
msgid "Co_ntacts..."
msgstr "連絡先(_N)..."
-#: ../calendar/gui/dialogs/meeting-page.glade.h:6
-msgid "Organizer"
-msgstr "主催者"
-
#: ../calendar/gui/dialogs/meeting-page.glade.h:7
#: ../calendar/gui/e-itip-control.glade.h:7
msgid "Organizer:"
msgstr "主催者:"
-#: ../calendar/gui/dialogs/memo-editor.c:219 ../calendar/gui/print.c:2448
+#: ../calendar/gui/dialogs/memo-editor.c:141 ../calendar/gui/print.c:2476
msgid "Memo"
msgstr "メモ"
-#: ../calendar/gui/dialogs/memo-page.c:952
+#: ../calendar/gui/dialogs/memo-page.c:847
#, c-format
msgid "Unable to open memos in '%s'."
msgstr "'%s' のメモを開けません。"
-#: ../calendar/gui/dialogs/memo-page.c:1136 ../mail/em-format-html.c:1545
-#: ../mail/em-format-html.c:1603 ../mail/em-format-html.c:1629
-#: ../mail/em-format-quote.c:209 ../mail/em-format.c:888
-#: ../mail/em-mailer-prefs.c:92 ../mail/message-list.etspec.h:19
+#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1562
+#: ../mail/em-format-html.c:1620 ../mail/em-format-html.c:1646
+#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
+#: ../mail/em-mailer-prefs.c:77 ../mail/message-list.etspec.h:19
msgid "To"
msgstr "宛先"
@@ -6329,63 +6764,59 @@ msgstr "開始日(_R):"
msgid "T_o:"
msgstr "共有先(_O):"
-#: ../calendar/gui/dialogs/memo-page.glade.h:6
-msgid "_Description:"
-msgstr "説明(_D):"
-
#: ../calendar/gui/dialogs/memo-page.glade.h:7
-#: ../calendar/gui/dialogs/task-page.c:451
+#: ../calendar/gui/dialogs/task-page.c:360
#: ../calendar/gui/dialogs/task-page.glade.h:9
msgid "_Group:"
msgstr "グループ(_G):"
-#: ../calendar/gui/dialogs/recur-comp.c:52
+#: ../calendar/gui/dialogs/recur-comp.c:50
#, c-format
msgid "You are modifying a recurring event. What would you like to modify?"
msgstr "繰り返しのイベントを修正中です。何を修正しますか?"
-#: ../calendar/gui/dialogs/recur-comp.c:54
+#: ../calendar/gui/dialogs/recur-comp.c:52
#, c-format
msgid "You are delegating a recurring event. What would you like to delegate?"
msgstr "繰り返しのイベントを委任中です。何を委任しますか?"
-#: ../calendar/gui/dialogs/recur-comp.c:58
+#: ../calendar/gui/dialogs/recur-comp.c:56
#, c-format
msgid "You are modifying a recurring task. What would you like to modify?"
msgstr "繰り返しのタスクを修正中です。何を修正しますか?"
-#: ../calendar/gui/dialogs/recur-comp.c:62
+#: ../calendar/gui/dialogs/recur-comp.c:60
#, c-format
msgid "You are modifying a recurring memo. What would you like to modify?"
msgstr "繰り返しのメモを修正中です。何を修正しますか?"
-#: ../calendar/gui/dialogs/recur-comp.c:87
+#: ../calendar/gui/dialogs/recur-comp.c:85
msgid "This Instance Only"
msgstr "このインスタンスのみ"
-#: ../calendar/gui/dialogs/recur-comp.c:91
+#: ../calendar/gui/dialogs/recur-comp.c:89
msgid "This and Prior Instances"
msgstr "これと以前のインスタンス"
-#: ../calendar/gui/dialogs/recur-comp.c:97
+#: ../calendar/gui/dialogs/recur-comp.c:95
msgid "This and Future Instances"
msgstr "これと将来のインスタンス"
-#: ../calendar/gui/dialogs/recur-comp.c:102
+#: ../calendar/gui/dialogs/recur-comp.c:100
msgid "All Instances"
msgstr "全てのインスタンス"
-#: ../calendar/gui/dialogs/recurrence-page.c:505
+#: ../calendar/gui/dialogs/recurrence-page.c:560
msgid "This appointment contains recurrences that Evolution cannot edit."
msgstr "この予定には Evolution が編集できない繰り返しがあります。"
-#: ../calendar/gui/dialogs/recurrence-page.c:826
+#: ../calendar/gui/dialogs/recurrence-page.c:890
msgid "Recurrence date is invalid"
msgstr "繰り返しの日付が間違っています"
#. TRANSLATORS: Entire string is for example: This appointment recurs/Every [x] week(s) on [Wednesday] [forever]'
#. * (dropdown menu options are in [square brackets]). This means that after the 'on', name of a week day always follows.
-#: ../calendar/gui/dialogs/recurrence-page.c:939
+#: ../calendar/gui/dialogs/recurrence-page.c:928
msgid "on"
msgstr "の"
@@ -6393,7 +6824,7 @@ msgstr "の"
#. * (dropdown menu options are in [square brackets]). This means that after 'first', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1003
+#: ../calendar/gui/dialogs/recurrence-page.c:992
msgid "first"
msgstr "最初の"
@@ -6402,7 +6833,7 @@ msgstr "最初の"
#. * (dropdown menu options are in [square brackets]). This means that after 'second', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1009
+#: ../calendar/gui/dialogs/recurrence-page.c:998
msgid "second"
msgstr "二番目の"
@@ -6410,7 +6841,7 @@ msgstr "二番目の"
#. * (dropdown menu options are in [square brackets]). This means that after 'third', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1014
+#: ../calendar/gui/dialogs/recurrence-page.c:1003
msgid "third"
msgstr "三番目の"
@@ -6418,7 +6849,7 @@ msgstr "三番目の"
#. * (dropdown menu options are in [square brackets]). This means that after 'fourth', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1019
+#: ../calendar/gui/dialogs/recurrence-page.c:1008
msgid "fourth"
msgstr "四番目の"
@@ -6426,13 +6857,13 @@ msgstr "四番目の"
#. * (dropdown menu options are in [square brackets]). This means that after 'last', either the string 'day' or
#. * the name of a week day (like 'Monday' or 'Friday') always follow.
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1024
+#: ../calendar/gui/dialogs/recurrence-page.c:1013
msgid "last"
msgstr "最後の"
#. TRANSLATORS: Entire string is for example: This appointment recurs/Every [x] month(s) on the [Other date] [11th to 20th] [17th] [forever]'
#. * (dropdown menu options are in [square brackets]).
-#: ../calendar/gui/dialogs/recurrence-page.c:1050
+#: ../calendar/gui/dialogs/recurrence-page.c:1039
msgid "Other Date"
msgstr "その他の日"
@@ -6440,7 +6871,7 @@ msgstr "その他の日"
#. * the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
#. * on the [Other date] [1st to 10th] [7th] [forever]' (dropdown menu options are in [square brackets]).
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1058
+#: ../calendar/gui/dialogs/recurrence-page.c:1047
msgid "1st to 10th"
msgstr "1日〜10日"
@@ -6448,7 +6879,7 @@ msgstr "1日〜10日"
#. * the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
#. * on the [Other date] [11th to 20th] [17th] [forever]' (dropdown menu options are in [square brackets]).
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1064
+#: ../calendar/gui/dialogs/recurrence-page.c:1053
msgid "11th to 20th"
msgstr "11日〜20日"
@@ -6456,45 +6887,45 @@ msgstr "11日〜20日"
#. * the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
#. * on the [Other date] [21th to 31th] [27th] [forever]' (dropdown menu options are in [square brackets]).
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1070
+#: ../calendar/gui/dialogs/recurrence-page.c:1059
msgid "21st to 31st"
msgstr "21日〜31日"
#. For Translator : 'day' is part of the sentence of the form 'appointment recurs/Every [x] month(s) on the [first] [day] [forever]'
#. (dropdown menu options are in [square brackets]). This means that after 'first', either the string 'day' or
#. the name of a week day (like 'Monday' or 'Friday') always follow.
-#: ../calendar/gui/dialogs/recurrence-page.c:1093
+#: ../calendar/gui/dialogs/recurrence-page.c:1082
msgid "day"
msgstr "日"
#. TRANSLATORS: Entire string is for example: 'This appointment recurs/Every [x] month(s) on the [second] [Tuesday] [forever]'
#. * (dropdown menu options are in [square brackets])."
#.
-#: ../calendar/gui/dialogs/recurrence-page.c:1233
+#: ../calendar/gui/dialogs/recurrence-page.c:1208
msgid "on the"
msgstr "の"
-#: ../calendar/gui/dialogs/recurrence-page.c:1426
+#: ../calendar/gui/dialogs/recurrence-page.c:1384
msgid "occurrences"
msgstr "くりかえす"
-#: ../calendar/gui/dialogs/recurrence-page.c:2167
+#: ../calendar/gui/dialogs/recurrence-page.c:2087
msgid "Add exception"
msgstr "対象外の日の追加"
-#: ../calendar/gui/dialogs/recurrence-page.c:2210
+#: ../calendar/gui/dialogs/recurrence-page.c:2128
msgid "Could not get a selection to modify."
msgstr "変更する内容を取得できませんでした"
-#: ../calendar/gui/dialogs/recurrence-page.c:2216
+#: ../calendar/gui/dialogs/recurrence-page.c:2134
msgid "Modify exception"
msgstr "対象外の日の変更"
-#: ../calendar/gui/dialogs/recurrence-page.c:2262
+#: ../calendar/gui/dialogs/recurrence-page.c:2178
msgid "Could not get a selection to delete."
msgstr "削除する内容を取得できませんでした"
-#: ../calendar/gui/dialogs/recurrence-page.c:2393
+#: ../calendar/gui/dialogs/recurrence-page.c:2302
msgid "Date/Time"
msgstr "日付/時刻"
@@ -6545,12 +6976,12 @@ msgstr "週"
msgid "year(s)"
msgstr "年"
-#: ../calendar/gui/dialogs/task-details-page.c:410
-#: ../calendar/gui/dialogs/task-details-page.c:430
+#: ../calendar/gui/dialogs/task-details-page.c:373
+#: ../calendar/gui/dialogs/task-details-page.c:393
msgid "Completed date is wrong"
msgstr "完了日が間違っています"
-#: ../calendar/gui/dialogs/task-details-page.c:515
+#: ../calendar/gui/dialogs/task-details-page.c:478
msgid "Web Page"
msgstr "ウェブ・ページ"
@@ -6560,56 +6991,60 @@ msgstr "<span weight=\"bold\">その他</span>"
#: ../calendar/gui/dialogs/task-details-page.glade.h:2
msgid "<span weight=\"bold\">Status</span>"
-msgstr "<span weight=\"bold\">状態</span>"
+msgstr "<span weight=\"bold\">ステータス</span>"
#. Pass TRUE as is_utc, so it gets converted to the current
#. timezone.
#: ../calendar/gui/dialogs/task-details-page.glade.h:4
-#: ../calendar/gui/e-cal-component-preview.c:236
+#: ../calendar/gui/e-cal-component-preview.c:253
#: ../calendar/gui/e-cal-model-tasks.c:358
#: ../calendar/gui/e-cal-model-tasks.c:675
-#: ../calendar/gui/e-calendar-table.c:234
-#: ../calendar/gui/e-calendar-table.c:435 ../calendar/gui/e-itip-control.c:933
-#: ../calendar/gui/e-meeting-store.c:184 ../calendar/gui/e-meeting-store.c:207
-#: ../calendar/gui/print.c:2520 ../plugins/save-calendar/csv-format.c:386
+#: ../calendar/gui/e-calendar-table.c:238
+#: ../calendar/gui/e-calendar-table.c:642 ../calendar/gui/e-itip-control.c:946
+#: ../calendar/gui/e-meeting-store.c:181 ../calendar/gui/e-meeting-store.c:204
+#: ../calendar/gui/print.c:2552 ../calendar/gui/tasktypes.xml.h:13
+#: ../plugins/save-calendar/csv-format.c:365
msgid "Completed"
msgstr "完了"
#: ../calendar/gui/dialogs/task-details-page.glade.h:5
-#: ../calendar/gui/e-cal-component-preview.c:255
-#: ../calendar/gui/e-calendar-table.c:360 ../mail/message-list.c:1065
+#: ../calendar/gui/e-cal-component-preview.c:272
+#: ../calendar/gui/e-calendar-table.c:567 ../calendar/gui/tasktypes.xml.h:21
+#: ../mail/message-list.c:1065
msgid "High"
msgstr "高い"
#: ../calendar/gui/dialogs/task-details-page.glade.h:6
-#: ../calendar/gui/e-cal-component-preview.c:233
+#: ../calendar/gui/e-cal-component-preview.c:250
#: ../calendar/gui/e-cal-model-tasks.c:356
#: ../calendar/gui/e-cal-model-tasks.c:673
#: ../calendar/gui/e-cal-model-tasks.c:750
-#: ../calendar/gui/e-calendar-table.c:232
-#: ../calendar/gui/e-calendar-table.c:434 ../calendar/gui/print.c:2517
+#: ../calendar/gui/e-calendar-table.c:236
+#: ../calendar/gui/e-calendar-table.c:641 ../calendar/gui/print.c:2549
msgid "In Progress"
msgstr "進行中"
#: ../calendar/gui/dialogs/task-details-page.glade.h:7
-#: ../calendar/gui/e-cal-component-preview.c:259
-#: ../calendar/gui/e-calendar-table.c:362 ../mail/message-list.c:1063
+#: ../calendar/gui/e-cal-component-preview.c:276
+#: ../calendar/gui/e-calendar-table.c:569 ../calendar/gui/tasktypes.xml.h:29
+#: ../mail/message-list.c:1063
msgid "Low"
msgstr "低い"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
-#: ../calendar/gui/e-cal-component-preview.c:257
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:361
-#: ../mail/message-list.c:1064
+#: ../calendar/gui/e-cal-component-preview.c:274
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "普通"
#: ../calendar/gui/dialogs/task-details-page.glade.h:9
-#: ../calendar/gui/e-cal-component-preview.c:243
+#: ../calendar/gui/e-cal-component-preview.c:260
#: ../calendar/gui/e-cal-model-tasks.c:354
#: ../calendar/gui/e-cal-model-tasks.c:671
-#: ../calendar/gui/e-calendar-table.c:230
-#: ../calendar/gui/e-calendar-table.c:433 ../calendar/gui/print.c:2514
+#: ../calendar/gui/e-calendar-table.c:234
+#: ../calendar/gui/e-calendar-table.c:640 ../calendar/gui/print.c:2546
+#: ../calendar/gui/tasktypes.xml.h:33
msgid "Not Started"
msgstr "開始していない"
@@ -6622,7 +7057,7 @@ msgid "Stat_us:"
msgstr "ステータス(_U):"
#: ../calendar/gui/dialogs/task-details-page.glade.h:12
-#: ../calendar/gui/e-calendar-table.c:363
+#: ../calendar/gui/e-calendar-table.c:570 ../calendar/gui/tasktypes.xml.h:44
msgid "Undefined"
msgstr "未定義"
@@ -6631,7 +7066,7 @@ msgid "_Date completed:"
msgstr "完了日(_D):"
#: ../calendar/gui/dialogs/task-details-page.glade.h:14
-#: ../widgets/misc/e-send-options.glade.h:33
+#: ../widgets/misc/e-send-options.glade.h:34
msgid "_Priority:"
msgstr "優先度(_P):"
@@ -6639,25 +7074,37 @@ msgstr "優先度(_P):"
msgid "_Web Page:"
msgstr "ウェブ・ページ(_W):"
-#: ../calendar/gui/dialogs/task-editor.c:426
-#: ../calendar/gui/tasks-component.c:1322
+#: ../calendar/gui/dialogs/task-editor.c:111
+msgid "_Status Details"
+msgstr "ステータスの詳細(_S)"
+
+#: ../calendar/gui/dialogs/task-editor.c:113
+msgid "Click to change or view the status details of the task"
+msgstr "タスクの詳細を表示したり変更します"
+
+#: ../calendar/gui/dialogs/task-editor.c:121
+#: ../composer/e-composer-actions.c:528
+msgid "_Send Options"
+msgstr "送信オプション(_S)"
+
+#: ../calendar/gui/dialogs/task-editor.c:316
msgid "_Task"
msgstr "タスク(_T)"
-#: ../calendar/gui/dialogs/task-editor.c:430
+#: ../calendar/gui/dialogs/task-editor.c:319
msgid "Task Details"
msgstr "タスクの詳細"
-#: ../calendar/gui/dialogs/task-page.c:459
+#: ../calendar/gui/dialogs/task-page.c:368
#: ../calendar/gui/dialogs/task-page.glade.h:4
msgid "Organi_zer:"
msgstr "主催者(_Z):"
-#: ../calendar/gui/dialogs/task-page.c:866
+#: ../calendar/gui/dialogs/task-page.c:781
msgid "Due date is wrong"
msgstr "期日が間違っています"
-#: ../calendar/gui/dialogs/task-page.c:1885
+#: ../calendar/gui/dialogs/task-page.c:1750
#, c-format
msgid "Unable to open tasks in '%s'."
msgstr "'%s' のタスクを開けません。"
@@ -6671,19 +7118,15 @@ msgid "Categor_ies..."
msgstr "カテゴリ(_I)..."
#: ../calendar/gui/dialogs/task-page.glade.h:3
-msgid "De_scription:"
-msgstr "説明(_S):"
+msgid "D_ue date:"
+msgstr "期日(_U):"
#: ../calendar/gui/dialogs/task-page.glade.h:7
msgid "Time zone:"
msgstr "タイムゾーン:"
-#: ../calendar/gui/dialogs/task-page.glade.h:8
-msgid "_Due date:"
-msgstr "期日(_D):"
-
#. Translator: Entire string is like "Pop up an alert %d days before start of appointment"
-#: ../calendar/gui/e-alarm-list.c:396
+#: ../calendar/gui/e-alarm-list.c:392
#, c-format
msgid "%d day"
msgid_plural "%d days"
@@ -6691,142 +7134,126 @@ msgstr[0] "%d日"
msgstr[1] "%d日間"
#. Translator: Entire string is like "Pop up an alert %d weeks before start of appointment"
-#: ../calendar/gui/e-alarm-list.c:402
+#: ../calendar/gui/e-alarm-list.c:398
#, c-format
msgid "%d week"
msgid_plural "%d weeks"
msgstr[0] "%d週間"
msgstr[1] "%d週間"
-#: ../calendar/gui/e-alarm-list.c:464
+#: ../calendar/gui/e-alarm-list.c:460
msgid "Unknown action to be performed"
msgstr "実行するアクションが不明です"
#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
-#: ../calendar/gui/e-alarm-list.c:478
+#: ../calendar/gui/e-alarm-list.c:474
#, c-format
msgid "%s %s before the start of the appointment"
msgstr "予定を開始する %2$s前に%1$s"
#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
-#: ../calendar/gui/e-alarm-list.c:483
+#: ../calendar/gui/e-alarm-list.c:479
#, c-format
msgid "%s %s after the start of the appointment"
msgstr "予定を開始する %2$s後に%1$s"
#. Translator: The %s refers to the base, which would be actions like
#. * "Play a sound"
-#: ../calendar/gui/e-alarm-list.c:490
+#: ../calendar/gui/e-alarm-list.c:486
#, c-format
msgid "%s at the start of the appointment"
msgstr "予定を開始した時点で%s"
#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
-#: ../calendar/gui/e-alarm-list.c:501
+#: ../calendar/gui/e-alarm-list.c:497
#, c-format
msgid "%s %s before the end of the appointment"
msgstr "予定を終了する %2$s前に%1$s"
#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"
-#: ../calendar/gui/e-alarm-list.c:506
+#: ../calendar/gui/e-alarm-list.c:502
#, c-format
msgid "%s %s after the end of the appointment"
msgstr "予定を終了する %2$s後に%1$s"
#. Translator: The %s refers to the base, which would be actions like
#. * "Play a sound"
-#: ../calendar/gui/e-alarm-list.c:513
+#: ../calendar/gui/e-alarm-list.c:509
#, c-format
msgid "%s at the end of the appointment"
msgstr "予定を終了した時点で%s"
#. Translator: The first %s refers to the base, which would be actions like
#. * "Play a Sound". Second %s is an absolute time, e.g. "10:00AM"
-#: ../calendar/gui/e-alarm-list.c:537
+#: ../calendar/gui/e-alarm-list.c:533
#, c-format
msgid "%s at %s"
msgstr "%2$sの時点で%1$s"
#. Translator: The %s refers to the base, which would be actions like
#. * "Play a sound". "Trigger types" are absolute or relative dates
-#: ../calendar/gui/e-alarm-list.c:545
+#: ../calendar/gui/e-alarm-list.c:541
#, c-format
msgid "%s for an unknown trigger type"
msgstr "トリガーの種類が不明な %s"
-#: ../calendar/gui/e-cal-component-memo-preview.c:74
-#: ../calendar/gui/e-cal-component-preview.c:72 ../mail/em-folder-view.c:3328
+#: ../calendar/gui/e-cal-component-memo-preview.c:75
+#: ../calendar/gui/e-cal-component-preview.c:73 ../mail/em-folder-view.c:3315
#, c-format
msgid "Click to open %s"
msgstr "クリックすると %s を開きます"
-#: ../calendar/gui/e-cal-component-memo-preview.c:160
-#: ../calendar/gui/e-cal-component-preview.c:160 ../filter/filter-rule.c:805
-#: ../shell/e-shell-folder-title-bar.c:593
+#: ../calendar/gui/e-cal-component-memo-preview.c:135
+#: ../calendar/gui/e-cal-component-preview.c:177 ../filter/filter-rule.c:857
msgid "Untitled"
msgstr "タイトルなし"
-#: ../calendar/gui/e-cal-component-memo-preview.c:212
-#: ../calendar/gui/e-cal-component-preview.c:200
-#: ../calendar/gui/e-cal-component-preview.c:211
+#: ../calendar/gui/e-cal-component-memo-preview.c:187
+#: ../calendar/gui/e-cal-component-preview.c:217
+#: ../calendar/gui/e-cal-component-preview.c:228
msgid "Start Date:"
msgstr "開始日:"
-#: ../calendar/gui/e-cal-component-memo-preview.c:225
-#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-itip-control.c:1201
+#: ../calendar/gui/e-cal-component-memo-preview.c:200
+#: ../calendar/gui/e-cal-component-preview.c:291
+#: ../calendar/gui/e-itip-control.c:1218
#: ../calendar/gui/e-itip-control.glade.h:4 ../mail/mail-config.glade.h:69
#: ../widgets/misc/e-attachment.glade.h:2
msgid "Description:"
msgstr "説明:"
-#: ../calendar/gui/e-cal-component-memo-preview.c:261
-#: ../calendar/gui/e-cal-component-preview.c:307
+#: ../calendar/gui/e-cal-component-memo-preview.c:224
+#: ../calendar/gui/e-cal-component-preview.c:315
msgid "Web Page:"
msgstr "ウェブ・ページ:"
-#: ../calendar/gui/e-cal-component-preview.c:193
-#: ../calendar/gui/e-itip-control.c:1145
+#: ../calendar/gui/e-cal-component-preview.c:210
+#: ../calendar/gui/e-itip-control.c:1162
#: ../calendar/gui/e-itip-control.glade.h:9
msgid "Summary:"
msgstr "サマリ:"
-#: ../calendar/gui/e-cal-component-preview.c:222
+#: ../calendar/gui/e-cal-component-preview.c:239
msgid "Due Date:"
msgstr "期日:"
#. write status
#. Status
-#: ../calendar/gui/e-cal-component-preview.c:229
-#: ../calendar/gui/e-itip-control.c:1169
-#: ../plugins/exchange-operations/exchange-account-setup.c:269
+#: ../calendar/gui/e-cal-component-preview.c:246
+#: ../calendar/gui/e-itip-control.c:1186
+#: ../plugins/exchange-operations/exchange-account-setup.c:267
#: ../plugins/itip-formatter/itip-view.c:1029
msgid "Status:"
msgstr "ステータス:"
-#: ../calendar/gui/e-cal-component-preview.c:253
+#: ../calendar/gui/e-cal-component-preview.c:270
msgid "Priority:"
msgstr "優先度:"
-#: ../calendar/gui/e-cal-list-view.c:257 ../calendar/gui/e-cal-model.c:318
-#: ../calendar/gui/e-cal-model.c:325 ../calendar/gui/e-calendar-table.c:338
-msgid "Public"
-msgstr "公開"
-
-#: ../calendar/gui/e-cal-list-view.c:258 ../calendar/gui/e-cal-model.c:327
-#: ../calendar/gui/e-calendar-table.c:339
-msgid "Private"
-msgstr "非公開"
-
-#: ../calendar/gui/e-cal-list-view.c:259 ../calendar/gui/e-cal-model.c:329
-#: ../calendar/gui/e-calendar-table.c:340
-msgid "Confidential"
-msgstr "極秘"
-
#: ../calendar/gui/e-cal-list-view.etspec.h:2
msgid "End Date"
msgstr "終了日"
@@ -6836,21 +7263,14 @@ msgstr "終了日"
msgid "Start Date"
msgstr "開始日"
-#: ../calendar/gui/e-cal-list-view.etspec.h:5
-#: ../calendar/gui/e-calendar-table.etspec.h:11
-#: ../calendar/gui/e-memo-table.etspec.h:4 ../mail/mail-dialogs.glade.h:20
-#: ../plugins/save-calendar/csv-format.c:382
-msgid "Summary"
-msgstr "サマリ"
-
#: ../calendar/gui/e-cal-model-calendar.c:183
-#: ../calendar/gui/e-calendar-table.c:412
+#: ../calendar/gui/e-calendar-table.c:619
msgid "Free"
msgstr "予定なし"
#: ../calendar/gui/e-cal-model-calendar.c:186
-#: ../calendar/gui/e-calendar-table.c:413
-#: ../calendar/gui/e-meeting-time-sel.c:413
+#: ../calendar/gui/e-calendar-table.c:620
+#: ../calendar/gui/e-meeting-time-sel.c:398
msgid "Busy"
msgstr "予定あり"
@@ -6864,199 +7284,225 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
-#: ../calendar/gui/e-meeting-list-view.c:193
-#: ../calendar/gui/e-meeting-store.c:156 ../calendar/gui/e-meeting-store.c:166
-#: ../calendar/gui/e-meeting-store.c:749
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
+#: ../calendar/gui/e-meeting-list-view.c:191
+#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
+#: ../calendar/gui/e-meeting-store.c:746
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:5
msgid "Yes"
msgstr "はい"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
-#: ../calendar/gui/e-meeting-list-view.c:194
-#: ../calendar/gui/e-meeting-store.c:168
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
+#: ../calendar/gui/e-meeting-list-view.c:192
+#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
msgid "No"
msgstr "いいえ"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:107
-#: ../calendar/gui/e-cal-popup.c:124 ../calendar/gui/e-cal-popup.c:171
-#: ../calendar/gui/e-itip-control.c:1186 ../calendar/gui/e-itip-control.c:1326
-#: ../calendar/gui/e-meeting-list-view.c:169
-#: ../calendar/gui/e-meeting-list-view.c:183
-#: ../calendar/gui/e-meeting-store.c:114 ../calendar/gui/e-meeting-store.c:149
-#: ../calendar/gui/e-meeting-store.c:212 ../calendar/gui/print.c:969
-#: ../calendar/gui/print.c:986 ../mail/em-utils.c:1294
-#: ../plugins/itip-formatter/itip-formatter.c:410
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
+#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
+#: ../calendar/gui/e-meeting-list-view.c:167
+#: ../calendar/gui/e-meeting-list-view.c:181
+#: ../calendar/gui/e-meeting-store.c:111 ../calendar/gui/e-meeting-store.c:146
+#: ../calendar/gui/e-meeting-store.c:209 ../calendar/gui/print.c:985
+#: ../calendar/gui/print.c:1002 ../mail/em-utils.c:1340
+#: ../plugins/itip-formatter/itip-formatter.c:409
#: ../plugins/itip-formatter/itip-formatter.c:2046
-#: ../plugins/plugin-manager/plugin-manager.c:84
-#: ../widgets/misc/e-attachment-bar.c:721
-#: ../widgets/misc/e-charset-picker.c:64
+#: ../plugins/plugin-manager/plugin-manager.c:73
+#: ../widgets/misc/e-attachment-bar.c:821
+#: ../widgets/misc/e-charset-picker.c:55
msgid "Unknown"
msgstr "不明"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "繰り返し"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "割当て済み"
-#: ../calendar/gui/e-cal-popup.c:177 ../mail/em-popup.c:426
+#: ../calendar/gui/e-cal-popup.c:183 ../mail/em-popup.c:416
msgid "Save As..."
msgstr "別名で保存..."
-#: ../calendar/gui/e-cal-popup.c:193 ../mail/em-format-html-display.c:2219
+#: ../calendar/gui/e-cal-popup.c:199 ../mail/em-format-html-display.c:2029
msgid "Select folder to save selected attachments..."
msgstr "選択した添付ファイルを保存するフォルダの選択..."
-#: ../calendar/gui/e-cal-popup.c:225 ../mail/em-popup.c:454
+#: ../calendar/gui/e-cal-popup.c:231 ../mail/em-popup.c:444
#, c-format
msgid "untitled_image.%s"
msgstr "untitled_image.%s"
-#: ../calendar/gui/e-cal-popup.c:279 ../calendar/gui/e-calendar-table.c:1367
-#: ../calendar/gui/e-calendar-view.c:1684 ../calendar/gui/e-memo-table.c:926
-#: ../mail/em-folder-view.c:1342 ../mail/em-popup.c:571 ../mail/em-popup.c:582
+#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
+#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "別名で保存(_S)..."
-#: ../calendar/gui/e-cal-popup.c:280 ../mail/em-popup.c:572
-#: ../mail/em-popup.c:583
+#: ../calendar/gui/e-cal-popup.c:286 ../mail/em-popup.c:562
+#: ../mail/em-popup.c:573
msgid "Set as _Background"
msgstr "壁紙にセットする(_B)"
-#: ../calendar/gui/e-cal-popup.c:281
+#: ../calendar/gui/e-cal-popup.c:287
msgid "_Save Selected"
msgstr "選択したものの保存(_S)"
-#: ../calendar/gui/e-cal-popup.c:402 ../mail/em-popup.c:790
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "\"%s\" で開く..."
-#: ../calendar/gui/e-calendar-table.c:382
+#: ../calendar/gui/e-calendar-table.c:338
+msgid "* No Summary *"
+msgstr "*サマリ無し*"
+
+#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
+#: ../calendar/gui/e-calendar-table.c:374
+#: ../calendar/gui/e-calendar-view.c:2215
+#, c-format
+msgid "Organizer: %s <%s>"
+msgstr "主催者: %s <%s>"
+
+#. With SunOne accounts, there may be no ':' in organiser.value
+#. With SunOne accouts, there may be no ':' in organiser.value
+#: ../calendar/gui/e-calendar-table.c:377
+#: ../calendar/gui/e-calendar-view.c:2219
+#, c-format
+msgid "Organizer: %s"
+msgstr "主催者: %s"
+
+#: ../calendar/gui/e-calendar-table.c:408
+msgid "Start: "
+msgstr "開始: "
+
+#: ../calendar/gui/e-calendar-table.c:420
+msgid "Due: "
+msgstr "期日: "
+
+#: ../calendar/gui/e-calendar-table.c:589
msgid "0%"
msgstr "0%"
-#: ../calendar/gui/e-calendar-table.c:383
+#: ../calendar/gui/e-calendar-table.c:590
msgid "10%"
msgstr "10%"
-#: ../calendar/gui/e-calendar-table.c:384
+#: ../calendar/gui/e-calendar-table.c:591
msgid "20%"
msgstr "20%"
-#: ../calendar/gui/e-calendar-table.c:385
+#: ../calendar/gui/e-calendar-table.c:592
msgid "30%"
msgstr "30%"
-#: ../calendar/gui/e-calendar-table.c:386
+#: ../calendar/gui/e-calendar-table.c:593
msgid "40%"
msgstr "40%"
-#: ../calendar/gui/e-calendar-table.c:387
+#: ../calendar/gui/e-calendar-table.c:594
msgid "50%"
msgstr "50%"
-#: ../calendar/gui/e-calendar-table.c:388
+#: ../calendar/gui/e-calendar-table.c:595
msgid "60%"
msgstr "60%"
-#: ../calendar/gui/e-calendar-table.c:389
+#: ../calendar/gui/e-calendar-table.c:596
msgid "70%"
msgstr "70%"
-#: ../calendar/gui/e-calendar-table.c:390
+#: ../calendar/gui/e-calendar-table.c:597
msgid "80%"
msgstr "80%"
-#: ../calendar/gui/e-calendar-table.c:391
+#: ../calendar/gui/e-calendar-table.c:598
msgid "90%"
msgstr "90%"
-#: ../calendar/gui/e-calendar-table.c:392
+#: ../calendar/gui/e-calendar-table.c:599
msgid "100%"
msgstr "100%"
-#: ../calendar/gui/e-calendar-table.c:670
-#: ../calendar/gui/e-calendar-view.c:677 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-table.c:879
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr "指定したオブジェクトを削除します"
-#: ../calendar/gui/e-calendar-table.c:954
-#: ../calendar/gui/e-calendar-view.c:807 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-table.c:1163
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr "オブジェクトの更新"
-#: ../calendar/gui/e-calendar-table.c:1139
-#: ../calendar/gui/e-calendar-view.c:1233 ../calendar/gui/e-memo-table.c:821
-#: ../composer/e-msg-composer.c:1472
+#: ../calendar/gui/e-calendar-table.c:1348
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
+#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "別名で保存..."
-#: ../calendar/gui/e-calendar-table.c:1362
-#: ../calendar/gui/e-calendar-view.c:1666
+#: ../calendar/gui/e-calendar-table.c:1571
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "新しいタスク(_T)"
-#: ../calendar/gui/e-calendar-table.c:1366 ../calendar/gui/e-memo-table.c:925
+#: ../calendar/gui/e-calendar-table.c:1575 ../calendar/gui/e-memo-table.c:925
msgid "Open _Web Page"
msgstr "ウェブ・ページを開く(_W)"
-#: ../calendar/gui/e-calendar-table.c:1368
-#: ../calendar/gui/e-calendar-view.c:1669 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-table.c:1577
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "印刷(_R)..."
-#: ../calendar/gui/e-calendar-table.c:1372
-#: ../calendar/gui/e-calendar-view.c:1689 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-table.c:1581
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "切り取り(_U)"
-#: ../calendar/gui/e-calendar-table.c:1374
-#: ../calendar/gui/e-calendar-view.c:1672
-#: ../calendar/gui/e-calendar-view.c:1691 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-table.c:1583
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
-#: ../ui/evolution-composer-entries.xml.h:15 ../ui/evolution-editor.xml.h:22
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
msgstr "貼り付け(_P)"
-#: ../calendar/gui/e-calendar-table.c:1378 ../ui/evolution-tasks.xml.h:22
+#: ../calendar/gui/e-calendar-table.c:1587 ../ui/evolution-tasks.xml.h:22
msgid "_Assign Task"
msgstr "タスクの割当て(_A)"
-#: ../calendar/gui/e-calendar-table.c:1379 ../calendar/gui/e-memo-table.c:937
+#: ../calendar/gui/e-calendar-table.c:1588 ../calendar/gui/e-memo-table.c:937
#: ../ui/evolution-tasks.xml.h:26
msgid "_Forward as iCalendar"
msgstr "iCalender 形式で転送(_F)"
-#: ../calendar/gui/e-calendar-table.c:1380
+#: ../calendar/gui/e-calendar-table.c:1589
msgid "_Mark as Complete"
msgstr "完了としてマーク(_M)"
-#: ../calendar/gui/e-calendar-table.c:1381
+#: ../calendar/gui/e-calendar-table.c:1590
msgid "_Mark Selected Tasks as Complete"
msgstr "選択したタスクに完了マークの付与(_M)"
-#: ../calendar/gui/e-calendar-table.c:1382
+#: ../calendar/gui/e-calendar-table.c:1591
msgid "_Mark as Incomplete"
msgstr "未完了としてマーク(_M)"
-#: ../calendar/gui/e-calendar-table.c:1383
+#: ../calendar/gui/e-calendar-table.c:1592
msgid "_Mark Selected Tasks as Incomplete"
msgstr "選択したタスクに未完了マークの付与(_M)"
-#: ../calendar/gui/e-calendar-table.c:1388
+#: ../calendar/gui/e-calendar-table.c:1597
msgid "_Delete Selected Tasks"
msgstr "指定したタスクの削除(_D)"
-#: ../calendar/gui/e-calendar-table.c:1625
+#: ../calendar/gui/e-calendar-table.c:1834
#: ../calendar/gui/e-calendar-table.etspec.h:4
msgid "Click to add a task"
msgstr "<ここをクリックしてタスクを追加して下さい>"
@@ -7079,7 +7525,8 @@ msgid "Due date"
msgstr "期日"
#: ../calendar/gui/e-calendar-table.etspec.h:8
-#: ../plugins/save-calendar/csv-format.c:393
+#: ../calendar/gui/tasktypes.xml.h:37
+#: ../plugins/save-calendar/csv-format.c:372
msgid "Priority"
msgstr "優先度"
@@ -7087,112 +7534,93 @@ msgstr "優先度"
msgid "Start date"
msgstr "開始日"
-#: ../calendar/gui/e-calendar-table.etspec.h:10
-#: ../calendar/gui/e-meeting-list-view.c:538
-#: ../calendar/gui/e-meeting-time-sel.etspec.h:10 ../mail/em-filter-i18n.h:70
-#: ../mail/message-list.etspec.h:17
-msgid "Status"
-msgstr "ステータス"
-
-#: ../calendar/gui/e-calendar-view.c:1352
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr "アイテムの移動中"
-#: ../calendar/gui/e-calendar-view.c:1354
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr "アイテムのコピー中"
-#: ../calendar/gui/e-calendar-view.c:1663
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "新しい予定(_A)..."
-#: ../calendar/gui/e-calendar-view.c:1664
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr "新しい終日のイベント(_E)"
-#: ../calendar/gui/e-calendar-view.c:1665
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "新しい会議(_M)"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr "現在のビュー(_C)"
-#: ../calendar/gui/e-calendar-view.c:1678
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "今日にする(_O)"
-#: ../calendar/gui/e-calendar-view.c:1679
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "日付の選択(_S)..."
-#: ../calendar/gui/e-calendar-view.c:1685
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "印刷(_N)..."
-#: ../calendar/gui/e-calendar-view.c:1695
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "カレンダへコピー(_Y)..."
-#: ../calendar/gui/e-calendar-view.c:1696
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "カレンダへ移動(_V)..."
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr "会議の委任(_D)..."
-#: ../calendar/gui/e-calendar-view.c:1698
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr "会議のスケジュール(_S)..."
-#: ../calendar/gui/e-calendar-view.c:1699
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr "iCalender 形式で転送(_F)..."
-#: ../calendar/gui/e-calendar-view.c:1700
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "返信(_R)"
-#: ../calendar/gui/e-calendar-view.c:1701 ../mail/em-folder-view.c:1336
-#: ../mail/em-popup.c:576 ../mail/em-popup.c:587
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
+#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "全員へ返信(_A)"
-#: ../calendar/gui/e-calendar-view.c:1706
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr "このイベントを移動可能にする(_M)"
-#: ../calendar/gui/e-calendar-view.c:1707 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr "このイベントの削除(_O)"
-#: ../calendar/gui/e-calendar-view.c:1708
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr "全てのイベントの削除(_A)"
-#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
-#: ../calendar/gui/e-calendar-view.c:2208
-#, c-format
-msgid "Organizer: %s <%s>"
-msgstr "主催者: %s <%s>"
-
-#. With SunOne accouts, there may be no ':' in organiser.value
-#: ../calendar/gui/e-calendar-view.c:2212
-#, c-format
-msgid "Organizer: %s"
-msgstr "主催者: %s"
-
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2228 ../calendar/gui/print.c:2477
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "場所: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2262
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "時刻: %s %s"
@@ -7220,7 +7648,7 @@ msgstr ""
#. * to change the length of the time division in the calendar day view, e.g.
#. * a day is displayed in 24 "60 minute divisions" or 48 "30 minute divisions"
#.
-#: ../calendar/gui/e-day-view-time-item.c:807
+#: ../calendar/gui/e-day-view-time-item.c:589
#, c-format
msgid "%02i minute divisions"
msgstr "%02i分間隔"
@@ -7231,46 +7659,34 @@ msgstr "%02i分間隔"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:1359
-#: ../calendar/gui/e-day-view.c:2145
-#: ../calendar/gui/e-week-view-main-item.c:310
-#: ../calendar/gui/e-week-view-main-item.c:524 ../calendar/gui/print.c:1656
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
+#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%B%e日 %A"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-day-view.c:1123
-#: ../calendar/gui/e-week-view.c:511 ../calendar/gui/print.c:813
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
+#: ../calendar/gui/print.c:829
msgid "am"
msgstr "午前"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:773 ../calendar/gui/e-day-view.c:1126
-#: ../calendar/gui/e-week-view.c:514 ../calendar/gui/print.c:815
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
+#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "午後"
-#: ../calendar/gui/e-itip-control.c:769
+#: ../calendar/gui/e-itip-control.c:765
msgid "Yes. (Complex Recurrence)"
msgstr "はい (複合的な繰り返し)"
-#. For Translators: In this can also be translated as "With the period of %d
-#. day/days", where %d is a number. The entire sentence is of the form "Recurring:
-#. Every %d day/days"
-#. For Translators : 'Every day' is event Recurring every day
-#. For Translators : 'Every %d days' is event Recurring every %d days. %d is a digit
-#: ../calendar/gui/e-itip-control.c:785
+#: ../calendar/gui/e-itip-control.c:782
#, c-format
msgid "Every day"
msgid_plural "Every %d days"
msgstr[0] "毎日"
msgstr[1] "%d日間毎"
-#. For Translators: In this can also be translated as "With the period of %d
-#. week/weeks", where %d is a number. The entire sentence is of the form "Recurring:
-#. Every %d week/weeks"
-#. For Translators : 'Every week' is event Recurring every week
-#. For Translators : 'Every %d weeks' is event Recurring every %d weeks. %d is a digit
#: ../calendar/gui/e-itip-control.c:795
#, c-format
msgid "Every week"
@@ -7278,9 +7694,7 @@ msgid_plural "Every %d weeks"
msgstr[0] "毎週"
msgstr[1] "%d週間毎"
-#. For Translators : 'Every week on' is event Recurring every week on (dayname) and (dayname) and (dayname)
-#. For Translators : 'Every %d weeks on' is event Recurring: every %d weeks on (dayname) and (dayname). %d is a digit
-#: ../calendar/gui/e-itip-control.c:799
+#: ../calendar/gui/e-itip-control.c:802
#, c-format
msgid "Every week on "
msgid_plural "Every %d weeks on "
@@ -7288,51 +7702,35 @@ msgstr[0] "次の毎週 "
msgstr[1] "次の %d週間毎 "
#. For Translators : 'and' is part of the sentence 'event recurring every week on (dayname) and (dayname)'
-#: ../calendar/gui/e-itip-control.c:808
+#: ../calendar/gui/e-itip-control.c:813
msgid " and "
msgstr " と "
-#. For Translators : 'The %s day of' is part of the sentence 'event recurring on the (nth) day of every month.'
-#: ../calendar/gui/e-itip-control.c:816
+#: ../calendar/gui/e-itip-control.c:822
#, c-format
msgid "The %s day of "
msgstr "次の %s 日 "
-#. For Translators : 'The %s %s of' is part of the sentence 'event recurring on the (nth) (dayname) of every month.'
-#. eg,third monday of every month
-#: ../calendar/gui/e-itip-control.c:831
+#: ../calendar/gui/e-itip-control.c:838
#, c-format
msgid "The %s %s of "
msgstr "次の %s %s "
-#. For Translators: In this can also be translated as "With the period of %d
-#. month/months", where %d is a number. The entire sentence is of the form "Recurring:
-#. Every %d month/months"
-#. For Translators : 'every month' is part of the sentence 'event recurring on the (nth) day of every month.'
-#. For Translators : 'every %d months' is part of the sentence 'event recurring on the (nth) day of every %d months.'
-#. %d is a digit
-#: ../calendar/gui/e-itip-control.c:844
+#: ../calendar/gui/e-itip-control.c:849
#, c-format
msgid "every month"
msgid_plural "every %d months"
msgstr[0] "毎月"
msgstr[1] "%dヶ月毎"
-#. For Translators: In this can also be translated as "With the period of %d
-#. year/years", where %d is a number. The entire sentence is of the form "Recurring:
-#. Every %d year/years"
-#. For Translators : 'Every year' is event Recurring every year
-#. For Translators : 'Every %d years' is event Recurring every %d years. %d is a digit
-#: ../calendar/gui/e-itip-control.c:853
+#: ../calendar/gui/e-itip-control.c:861
#, c-format
msgid "Every year"
msgid_plural "Every %d years"
msgstr[0] "毎年"
msgstr[1] "%d年毎"
-#. For Translators:'a total of %d time' is part of the sentence of the form 'event recurring every day,a total of % time.' %d is a digit
-#. For Translators:'a total of %d times' is part of the sentence of the form 'event recurring every day,a total of % times.' %d is a digit
-#: ../calendar/gui/e-itip-control.c:866
+#: ../calendar/gui/e-itip-control.c:874
#, c-format
msgid "a total of %d time"
msgid_plural " a total of %d times"
@@ -7340,47 +7738,47 @@ msgstr[0] " %d回の合計"
msgstr[1] " %d回の合計"
#. For Translators : ', ending on' is part of the sentence of the form 'event recurring every day, ending on (date).'
-#: ../calendar/gui/e-itip-control.c:876
+#: ../calendar/gui/e-itip-control.c:885
msgid ", ending on "
msgstr ", 次の終わり "
#. For Translators : 'starts' is starts:date implying a task starts on what date
-#: ../calendar/gui/e-itip-control.c:898
+#: ../calendar/gui/e-itip-control.c:907
msgid "Starts"
msgstr "ステータス"
#. For Translators : 'ends' is ends:date implying a task ends on what date
-#: ../calendar/gui/e-itip-control.c:912
+#: ../calendar/gui/e-itip-control.c:921
msgid "Ends"
msgstr "終了"
-#: ../calendar/gui/e-itip-control.c:946
-#: ../plugins/save-calendar/csv-format.c:391
+#: ../calendar/gui/e-itip-control.c:961
+#: ../plugins/save-calendar/csv-format.c:370
msgid "Due"
msgstr "期日"
-#: ../calendar/gui/e-itip-control.c:986 ../calendar/gui/e-itip-control.c:1043
+#: ../calendar/gui/e-itip-control.c:1003 ../calendar/gui/e-itip-control.c:1060
msgid "iCalendar Information"
msgstr "iCalendar 情報"
#. Title
-#: ../calendar/gui/e-itip-control.c:1003
+#: ../calendar/gui/e-itip-control.c:1020
msgid "iCalendar Error"
msgstr "iCalendar エラー"
-#: ../calendar/gui/e-itip-control.c:1075 ../calendar/gui/e-itip-control.c:1091
-#: ../calendar/gui/e-itip-control.c:1102 ../calendar/gui/e-itip-control.c:1119
-#: ../plugins/itip-formatter/itip-view.c:347
-#: ../plugins/itip-formatter/itip-view.c:348
-#: ../plugins/itip-formatter/itip-view.c:435
-#: ../plugins/itip-formatter/itip-view.c:436
-#: ../plugins/itip-formatter/itip-view.c:523
-#: ../plugins/itip-formatter/itip-view.c:524
+#: ../calendar/gui/e-itip-control.c:1092 ../calendar/gui/e-itip-control.c:1108
+#: ../calendar/gui/e-itip-control.c:1119 ../calendar/gui/e-itip-control.c:1136
+#: ../plugins/itip-formatter/itip-view.c:344
+#: ../plugins/itip-formatter/itip-view.c:345
+#: ../plugins/itip-formatter/itip-view.c:432
+#: ../plugins/itip-formatter/itip-view.c:433
+#: ../plugins/itip-formatter/itip-view.c:520
+#: ../plugins/itip-formatter/itip-view.c:521
msgid "An unknown person"
msgstr "身元が不明な人"
#. Describe what the user can do
-#: ../calendar/gui/e-itip-control.c:1126
+#: ../calendar/gui/e-itip-control.c:1143
msgid ""
"<br> Please review the following information, and then select an action from "
"the menu below."
@@ -7388,289 +7786,289 @@ msgstr ""
"<br> 次の情報を再表示して下さい。それから下にあるメニューから行動を選択して下"
"さい。"
-#: ../calendar/gui/e-itip-control.c:1174
-#: ../calendar/gui/e-meeting-list-view.c:205
-#: ../calendar/gui/e-meeting-store.c:176 ../calendar/gui/e-meeting-store.c:199
-#: ../calendar/gui/itip-utils.c:728
+#: ../calendar/gui/e-itip-control.c:1191
+#: ../calendar/gui/e-meeting-list-view.c:203
+#: ../calendar/gui/e-meeting-store.c:173 ../calendar/gui/e-meeting-store.c:196
+#: ../calendar/gui/itip-utils.c:664
#: ../plugins/itip-formatter/itip-formatter.c:2034
msgid "Accepted"
msgstr "受諾済"
-#: ../calendar/gui/e-itip-control.c:1178 ../calendar/gui/itip-utils.c:731
+#: ../calendar/gui/e-itip-control.c:1195 ../calendar/gui/itip-utils.c:667
#: ../plugins/itip-formatter/itip-formatter.c:2037
msgid "Tentatively Accepted"
msgstr "仮承認済"
-#: ../calendar/gui/e-itip-control.c:1182
-#: ../calendar/gui/e-meeting-list-view.c:206
-#: ../calendar/gui/e-meeting-store.c:178 ../calendar/gui/e-meeting-store.c:201
-#: ../calendar/gui/itip-utils.c:734 ../calendar/gui/itip-utils.c:763
+#: ../calendar/gui/e-itip-control.c:1199
+#: ../calendar/gui/e-meeting-list-view.c:204
+#: ../calendar/gui/e-meeting-store.c:175 ../calendar/gui/e-meeting-store.c:198
+#: ../calendar/gui/itip-utils.c:670 ../calendar/gui/itip-utils.c:699
#: ../plugins/itip-formatter/itip-formatter.c:2040
msgid "Declined"
msgstr "辞退済"
-#: ../calendar/gui/e-itip-control.c:1266
+#: ../calendar/gui/e-itip-control.c:1283
msgid ""
"The meeting has been canceled, however it could not be found in your "
"calendars"
msgstr ""
"会議がキャンセルされましたが、お使いのカレンダの中に見つかりませんでした"
-#: ../calendar/gui/e-itip-control.c:1268
+#: ../calendar/gui/e-itip-control.c:1285
msgid ""
"The task has been canceled, however it could not be found in your task lists"
msgstr ""
-"タスクがキャンセルされましたが、お使いのタスク一覧の中に見つかりませんでした"
+"タスクがキャンセルされましたが、そのタスクはタスク一覧の中にはありません"
-#: ../calendar/gui/e-itip-control.c:1346
+#: ../calendar/gui/e-itip-control.c:1363
#, c-format
msgid "<b>%s</b> has published meeting information."
msgstr "<b>%s</b> さんが会議の情報を公開しました。"
-#: ../calendar/gui/e-itip-control.c:1347
+#: ../calendar/gui/e-itip-control.c:1364
msgid "Meeting Information"
msgstr "会議の情報"
-#: ../calendar/gui/e-itip-control.c:1353
+#: ../calendar/gui/e-itip-control.c:1370
#, c-format
msgid "<b>%s</b> requests the presence of %s at a meeting."
msgstr "<b>%s</b> さんが %s の会議への出席を要求してきました。"
-#: ../calendar/gui/e-itip-control.c:1355
+#: ../calendar/gui/e-itip-control.c:1372
#, c-format
msgid "<b>%s</b> requests your presence at a meeting."
msgstr "<b>%s</b> さんが貴方の会議への出席を要求してきました。"
-#: ../calendar/gui/e-itip-control.c:1356
+#: ../calendar/gui/e-itip-control.c:1373
msgid "Meeting Proposal"
msgstr "会議の提案"
#. FIXME Whats going on here?
-#: ../calendar/gui/e-itip-control.c:1362
+#: ../calendar/gui/e-itip-control.c:1379
#, c-format
msgid "<b>%s</b> wishes to be added to an existing meeting."
msgstr "<b>%s</b> さんは既存の会議への追加を希望しています。"
-#: ../calendar/gui/e-itip-control.c:1363
+#: ../calendar/gui/e-itip-control.c:1380
msgid "Meeting Update"
msgstr "会議の更新"
-#: ../calendar/gui/e-itip-control.c:1367
+#: ../calendar/gui/e-itip-control.c:1384
#, c-format
msgid "<b>%s</b> wishes to receive the latest meeting information."
msgstr "<b>%s</b> さんは会議の最新情報を希望しています。"
-#: ../calendar/gui/e-itip-control.c:1368
+#: ../calendar/gui/e-itip-control.c:1385
msgid "Meeting Update Request"
msgstr "会議の更新要求"
-#: ../calendar/gui/e-itip-control.c:1375
+#: ../calendar/gui/e-itip-control.c:1392
#, c-format
msgid "<b>%s</b> has replied to a meeting request."
msgstr "<b>%s</b> さんが会議開催要求に対して返信してきました。"
-#: ../calendar/gui/e-itip-control.c:1376
+#: ../calendar/gui/e-itip-control.c:1393
msgid "Meeting Reply"
msgstr "会議への返信"
-#: ../calendar/gui/e-itip-control.c:1383
+#: ../calendar/gui/e-itip-control.c:1400
#, c-format
msgid "<b>%s</b> has canceled a meeting."
msgstr "<b>%s</b> さんが会議をキャンセルしました。"
-#: ../calendar/gui/e-itip-control.c:1384
+#: ../calendar/gui/e-itip-control.c:1401
msgid "Meeting Cancelation"
msgstr "会議のキャンセル"
-#: ../calendar/gui/e-itip-control.c:1394 ../calendar/gui/e-itip-control.c:1471
-#: ../calendar/gui/e-itip-control.c:1511
+#: ../calendar/gui/e-itip-control.c:1411 ../calendar/gui/e-itip-control.c:1488
+#: ../calendar/gui/e-itip-control.c:1528
#, c-format
msgid "<b>%s</b> has sent an unintelligible message."
msgstr "<b>%s</b> さんが意味不明なメッセージを送信してきました。"
-#: ../calendar/gui/e-itip-control.c:1395
+#: ../calendar/gui/e-itip-control.c:1412
msgid "Bad Meeting Message"
msgstr "おかしな会議メッセージ"
-#: ../calendar/gui/e-itip-control.c:1422
+#: ../calendar/gui/e-itip-control.c:1439
#, c-format
msgid "<b>%s</b> has published task information."
msgstr "<b>%s</b> さんがタスク情報を公開しました。"
-#: ../calendar/gui/e-itip-control.c:1423
+#: ../calendar/gui/e-itip-control.c:1440
msgid "Task Information"
msgstr "タスク情報"
-#: ../calendar/gui/e-itip-control.c:1430
+#: ../calendar/gui/e-itip-control.c:1447
#, c-format
msgid "<b>%s</b> requests %s to perform a task."
msgstr "<b>%s</b> さんが %s のタスクを実行に移すよう要求してきました。"
-#: ../calendar/gui/e-itip-control.c:1432
+#: ../calendar/gui/e-itip-control.c:1449
#, c-format
msgid "<b>%s</b> requests you perform a task."
msgstr "<b>%s</b> さんがタスクを実行に移すよう要求してきました。"
-#: ../calendar/gui/e-itip-control.c:1433
+#: ../calendar/gui/e-itip-control.c:1450
msgid "Task Proposal"
msgstr "タスクの提案"
#. FIXME Whats going on here?
-#: ../calendar/gui/e-itip-control.c:1439
+#: ../calendar/gui/e-itip-control.c:1456
#, c-format
msgid "<b>%s</b> wishes to be added to an existing task."
msgstr "<b>%s</b> さんは既存のタスクへの追加を希望しています。"
-#: ../calendar/gui/e-itip-control.c:1440
+#: ../calendar/gui/e-itip-control.c:1457
msgid "Task Update"
msgstr "タスクの更新"
-#: ../calendar/gui/e-itip-control.c:1444
+#: ../calendar/gui/e-itip-control.c:1461
#, c-format
msgid "<b>%s</b> wishes to receive the latest task information."
msgstr "<b>%s</b> さんはタスクの最新情報を希望しています。"
-#: ../calendar/gui/e-itip-control.c:1445
+#: ../calendar/gui/e-itip-control.c:1462
msgid "Task Update Request"
msgstr "タスクの更新要求"
-#: ../calendar/gui/e-itip-control.c:1452
+#: ../calendar/gui/e-itip-control.c:1469
#, c-format
msgid "<b>%s</b> has replied to a task assignment."
msgstr "<b>%s</b> さんはタスクの割り当てに対して返信してきました。"
-#: ../calendar/gui/e-itip-control.c:1453
+#: ../calendar/gui/e-itip-control.c:1470
msgid "Task Reply"
msgstr "タスクへの返信"
-#: ../calendar/gui/e-itip-control.c:1460
+#: ../calendar/gui/e-itip-control.c:1477
#, c-format
msgid "<b>%s</b> has canceled a task."
msgstr "<b>%s</b> さんがタスクをキャンセルしました。"
-#: ../calendar/gui/e-itip-control.c:1461
+#: ../calendar/gui/e-itip-control.c:1478
msgid "Task Cancelation"
msgstr "タスクの取り消し"
-#: ../calendar/gui/e-itip-control.c:1472
+#: ../calendar/gui/e-itip-control.c:1489
msgid "Bad Task Message"
msgstr "おかしなタスクメッセージ"
-#: ../calendar/gui/e-itip-control.c:1496
+#: ../calendar/gui/e-itip-control.c:1513
#, c-format
msgid "<b>%s</b> has published free/busy information."
msgstr "<b>%s</b> さんが予定を公開しました。"
-#: ../calendar/gui/e-itip-control.c:1497
+#: ../calendar/gui/e-itip-control.c:1514
msgid "Free/Busy Information"
msgstr "Free/Busy の情報"
-#: ../calendar/gui/e-itip-control.c:1501
+#: ../calendar/gui/e-itip-control.c:1518
#, c-format
msgid "<b>%s</b> requests your free/busy information."
msgstr "<b>%s</b> さんが予定を要求してきました。"
-#: ../calendar/gui/e-itip-control.c:1502
+#: ../calendar/gui/e-itip-control.c:1519
msgid "Free/Busy Request"
msgstr "Free/Busy の要求"
-#: ../calendar/gui/e-itip-control.c:1506
+#: ../calendar/gui/e-itip-control.c:1523
#, c-format
msgid "<b>%s</b> has replied to a free/busy request."
msgstr "予定の有無の要求に対して <b>%s</s> さんが返信してきました。"
-#: ../calendar/gui/e-itip-control.c:1507
+#: ../calendar/gui/e-itip-control.c:1524
msgid "Free/Busy Reply"
msgstr "Free/Busy の返信"
-#: ../calendar/gui/e-itip-control.c:1512
+#: ../calendar/gui/e-itip-control.c:1529
msgid "Bad Free/Busy Message"
msgstr "Free/Busy のメッセージが間違っています"
-#: ../calendar/gui/e-itip-control.c:1588
+#: ../calendar/gui/e-itip-control.c:1605
msgid "The message does not appear to be properly formed"
msgstr "メッセージが正しい形式になっていません"
-#: ../calendar/gui/e-itip-control.c:1647
+#: ../calendar/gui/e-itip-control.c:1664
msgid "The message contains only unsupported requests."
msgstr "メッセージの中に未サポートの要求だけあります。"
-#: ../calendar/gui/e-itip-control.c:1680
+#: ../calendar/gui/e-itip-control.c:1697
msgid "The attachment does not contain a valid calendar message"
msgstr "添付ファイルに含まれているカレンダ・メッセージは正しくありません"
-#: ../calendar/gui/e-itip-control.c:1712
+#: ../calendar/gui/e-itip-control.c:1735
msgid "The attachment has no viewable calendar items"
msgstr "添付ファイルには表示可能なカレンダ情報がありません"
-#: ../calendar/gui/e-itip-control.c:1957
+#: ../calendar/gui/e-itip-control.c:1980
msgid "Update complete\n"
msgstr "更新が完了しました\n"
-#: ../calendar/gui/e-itip-control.c:1991
+#: ../calendar/gui/e-itip-control.c:2014
msgid "Object is invalid and cannot be updated\n"
msgstr "オブジェクトが不正なので更新できません\n"
-#: ../calendar/gui/e-itip-control.c:2008
+#: ../calendar/gui/e-itip-control.c:2031
msgid "This response is not from a current attendee. Add as an attendee?"
msgstr "これは現在の出席者からの応答ではありません。出席者として追加しますか?"
-#: ../calendar/gui/e-itip-control.c:2026
+#: ../calendar/gui/e-itip-control.c:2049
msgid "Attendee status could not be updated because of an invalid status!\n"
msgstr "不正なステータスのため出席状況が更新できませんでした!\n"
-#: ../calendar/gui/e-itip-control.c:2050
+#: ../calendar/gui/e-itip-control.c:2073
msgid "Attendee status updated\n"
msgstr "出席状況が更新されました\n"
-#: ../calendar/gui/e-itip-control.c:2057
-#: ../plugins/itip-formatter/itip-formatter.c:1251
+#: ../calendar/gui/e-itip-control.c:2080
+#: ../plugins/itip-formatter/itip-formatter.c:1253
msgid "Attendee status can not be updated because the item no longer exists"
msgstr "アイテムがまだ存在していないので出席状況を更新できませんでした"
-#: ../calendar/gui/e-itip-control.c:2088 ../calendar/gui/e-itip-control.c:2145
+#: ../calendar/gui/e-itip-control.c:2111 ../calendar/gui/e-itip-control.c:2168
msgid "Item sent!\n"
msgstr "アイテムが送信されました!\n"
-#: ../calendar/gui/e-itip-control.c:2094 ../calendar/gui/e-itip-control.c:2153
+#: ../calendar/gui/e-itip-control.c:2117 ../calendar/gui/e-itip-control.c:2176
msgid "The item could not be sent!\n"
msgstr "そのアイテムは送信できませんでした!\n"
-#: ../calendar/gui/e-itip-control.c:2233
+#: ../calendar/gui/e-itip-control.c:2256
msgid "Choose an action:"
msgstr "アクションの選択:"
-#: ../calendar/gui/e-itip-control.c:2304
+#: ../calendar/gui/e-itip-control.c:2327
msgid "Update"
msgstr "更新"
-#: ../calendar/gui/e-itip-control.c:2332
+#: ../calendar/gui/e-itip-control.c:2355
#: ../plugins/groupwise-features/process-meeting.c:48
msgid "Accept"
msgstr "受諾"
-#: ../calendar/gui/e-itip-control.c:2333
+#: ../calendar/gui/e-itip-control.c:2356
msgid "Tentatively accept"
msgstr "仮承認"
-#: ../calendar/gui/e-itip-control.c:2334
+#: ../calendar/gui/e-itip-control.c:2357
#: ../plugins/groupwise-features/process-meeting.c:50
msgid "Decline"
msgstr "辞退"
-#: ../calendar/gui/e-itip-control.c:2363
+#: ../calendar/gui/e-itip-control.c:2386
msgid "Send Free/Busy Information"
msgstr "Free/Busy 情報の送信"
-#: ../calendar/gui/e-itip-control.c:2391
+#: ../calendar/gui/e-itip-control.c:2414
msgid "Update respondent status"
msgstr "応答者ステータスの更新"
-#: ../calendar/gui/e-itip-control.c:2419
+#: ../calendar/gui/e-itip-control.c:2442
msgid "Send Latest Information"
msgstr "最新情報の送信"
-#: ../calendar/gui/e-itip-control.c:2447 ../calendar/gui/itip-utils.c:751
+#: ../calendar/gui/e-itip-control.c:2470 ../calendar/gui/itip-utils.c:687
#: ../ui/evolution-mail-global.xml.h:1
msgid "Cancel"
msgstr "キャンセル"
@@ -7699,112 +8097,112 @@ msgstr "カレンダの読み込み中..."
msgid "Server Message:"
msgstr "サーバのメッセージ:"
-#: ../calendar/gui/e-meeting-list-view.c:70
+#: ../calendar/gui/e-meeting-list-view.c:68
msgid "Chair Persons"
msgstr "議長"
-#: ../calendar/gui/e-meeting-list-view.c:71
+#: ../calendar/gui/e-meeting-list-view.c:69
msgid "Required Participants"
msgstr "必須の参加者"
-#: ../calendar/gui/e-meeting-list-view.c:72
+#: ../calendar/gui/e-meeting-list-view.c:70
msgid "Optional Participants"
msgstr "任意の参加者"
-#: ../calendar/gui/e-meeting-list-view.c:73
+#: ../calendar/gui/e-meeting-list-view.c:71
msgid "Resources"
msgstr "リソース"
-#: ../calendar/gui/e-meeting-list-view.c:154
+#: ../calendar/gui/e-meeting-list-view.c:152
msgid "Attendees"
msgstr "出席者"
-#: ../calendar/gui/e-meeting-list-view.c:165
-#: ../calendar/gui/e-meeting-store.c:89 ../calendar/gui/e-meeting-store.c:106
-#: ../calendar/gui/e-meeting-store.c:743 ../calendar/gui/print.c:965
+#: ../calendar/gui/e-meeting-list-view.c:163
+#: ../calendar/gui/e-meeting-store.c:86 ../calendar/gui/e-meeting-store.c:103
+#: ../calendar/gui/e-meeting-store.c:740 ../calendar/gui/print.c:981
msgid "Individual"
msgstr "個人"
-#: ../calendar/gui/e-meeting-list-view.c:166
-#: ../calendar/gui/e-meeting-store.c:91 ../calendar/gui/e-meeting-store.c:108
-#: ../calendar/gui/print.c:966 ../widgets/table/e-table-config.glade.h:7
+#: ../calendar/gui/e-meeting-list-view.c:164
+#: ../calendar/gui/e-meeting-store.c:88 ../calendar/gui/e-meeting-store.c:105
+#: ../calendar/gui/print.c:982 ../widgets/table/e-table-config.glade.h:7
msgid "Group"
msgstr "グループ"
-#: ../calendar/gui/e-meeting-list-view.c:167
-#: ../calendar/gui/e-meeting-store.c:93 ../calendar/gui/e-meeting-store.c:110
-#: ../calendar/gui/print.c:967
+#: ../calendar/gui/e-meeting-list-view.c:165
+#: ../calendar/gui/e-meeting-store.c:90 ../calendar/gui/e-meeting-store.c:107
+#: ../calendar/gui/print.c:983
msgid "Resource"
msgstr "リソース"
-#: ../calendar/gui/e-meeting-list-view.c:168
-#: ../calendar/gui/e-meeting-store.c:95 ../calendar/gui/e-meeting-store.c:112
-#: ../calendar/gui/print.c:968
+#: ../calendar/gui/e-meeting-list-view.c:166
+#: ../calendar/gui/e-meeting-store.c:92 ../calendar/gui/e-meeting-store.c:109
+#: ../calendar/gui/print.c:984
msgid "Room"
msgstr "ルーム"
-#: ../calendar/gui/e-meeting-list-view.c:179
-#: ../calendar/gui/e-meeting-store.c:124 ../calendar/gui/e-meeting-store.c:141
-#: ../calendar/gui/print.c:982
+#: ../calendar/gui/e-meeting-list-view.c:177
+#: ../calendar/gui/e-meeting-store.c:121 ../calendar/gui/e-meeting-store.c:138
+#: ../calendar/gui/print.c:998
msgid "Chair"
msgstr "議長"
-#: ../calendar/gui/e-meeting-list-view.c:180
-#: ../calendar/gui/e-meeting-store.c:126 ../calendar/gui/e-meeting-store.c:143
-#: ../calendar/gui/e-meeting-store.c:746 ../calendar/gui/print.c:983
+#: ../calendar/gui/e-meeting-list-view.c:178
+#: ../calendar/gui/e-meeting-store.c:123 ../calendar/gui/e-meeting-store.c:140
+#: ../calendar/gui/e-meeting-store.c:743 ../calendar/gui/print.c:999
msgid "Required Participant"
msgstr "必須の参加者"
-#: ../calendar/gui/e-meeting-list-view.c:181
-#: ../calendar/gui/e-meeting-store.c:128 ../calendar/gui/e-meeting-store.c:145
-#: ../calendar/gui/print.c:984
+#: ../calendar/gui/e-meeting-list-view.c:179
+#: ../calendar/gui/e-meeting-store.c:125 ../calendar/gui/e-meeting-store.c:142
+#: ../calendar/gui/print.c:1000
msgid "Optional Participant"
msgstr "任意の参加者"
-#: ../calendar/gui/e-meeting-list-view.c:182
-#: ../calendar/gui/e-meeting-store.c:130 ../calendar/gui/e-meeting-store.c:147
-#: ../calendar/gui/print.c:985
+#: ../calendar/gui/e-meeting-list-view.c:180
+#: ../calendar/gui/e-meeting-store.c:127 ../calendar/gui/e-meeting-store.c:144
+#: ../calendar/gui/print.c:1001
msgid "Non-Participant"
msgstr "不参加者"
-#: ../calendar/gui/e-meeting-list-view.c:204
-#: ../calendar/gui/e-meeting-store.c:174 ../calendar/gui/e-meeting-store.c:197
-#: ../calendar/gui/e-meeting-store.c:756
+#: ../calendar/gui/e-meeting-list-view.c:202
+#: ../calendar/gui/e-meeting-store.c:171 ../calendar/gui/e-meeting-store.c:194
+#: ../calendar/gui/e-meeting-store.c:753
msgid "Needs Action"
msgstr "要アクション"
-#: ../calendar/gui/e-meeting-list-view.c:207
-#: ../calendar/gui/e-meeting-store.c:180 ../calendar/gui/e-meeting-store.c:203
-#: ../calendar/gui/e-meeting-time-sel.c:412
+#: ../calendar/gui/e-meeting-list-view.c:205
+#: ../calendar/gui/e-meeting-store.c:177 ../calendar/gui/e-meeting-store.c:200
+#: ../calendar/gui/e-meeting-time-sel.c:397
msgid "Tentative"
msgstr "仮承認"
-#: ../calendar/gui/e-meeting-list-view.c:208
-#: ../calendar/gui/e-meeting-store.c:182 ../calendar/gui/e-meeting-store.c:205
-#: ../calendar/gui/itip-utils.c:737
+#: ../calendar/gui/e-meeting-list-view.c:206
+#: ../calendar/gui/e-meeting-store.c:179 ../calendar/gui/e-meeting-store.c:202
+#: ../calendar/gui/itip-utils.c:673
#: ../plugins/itip-formatter/itip-formatter.c:2043
msgid "Delegated"
msgstr "委任済"
#. The extra space is just a hack to occupy more space for Attendee
-#: ../calendar/gui/e-meeting-list-view.c:484
+#: ../calendar/gui/e-meeting-list-view.c:491
msgid "Attendee "
msgstr "出席者 "
#. To translators: RSVP means "please reply"
-#: ../calendar/gui/e-meeting-list-view.c:526
+#: ../calendar/gui/e-meeting-list-view.c:533
#: ../calendar/gui/e-meeting-time-sel.etspec.h:8
msgid "RSVP"
msgstr "返信の有無"
-#: ../calendar/gui/e-meeting-store.c:186 ../calendar/gui/e-meeting-store.c:209
+#: ../calendar/gui/e-meeting-store.c:183 ../calendar/gui/e-meeting-store.c:206
msgid "In Process"
msgstr "進行中"
#. This is a strftime() format string %A = full weekday name,
#. %B = full month name, %d = month day, %Y = full year.
-#: ../calendar/gui/e-meeting-time-sel-item.c:464
-#: ../calendar/gui/e-meeting-time-sel.c:2137
+#: ../calendar/gui/e-meeting-time-sel-item.c:473
+#: ../calendar/gui/e-meeting-time-sel.c:2122
msgid "%A, %B %d, %Y"
msgstr "%Y年%B%e日 %A"
@@ -7812,85 +8210,81 @@ msgstr "%Y年%B%e日 %A"
#. name, %m = month number, %d = month day, %Y = full year.
#. This is a strftime() format string %a = abbreviated weekday name,
#. %m = month number, %d = month day, %Y = full year.
-#: ../calendar/gui/e-meeting-time-sel-item.c:468
-#: ../calendar/gui/e-meeting-time-sel.c:2168
+#: ../calendar/gui/e-meeting-time-sel-item.c:477
+#: ../calendar/gui/e-meeting-time-sel.c:2153
msgid "%a %m/%d/%Y"
msgstr "%Y/%m/%d (%a)"
#. This is a strftime() format string %m = month number,
#. %d = month day, %Y = full year.
-#: ../calendar/gui/e-meeting-time-sel-item.c:472
+#: ../calendar/gui/e-meeting-time-sel-item.c:481
msgid "%m/%d/%Y"
msgstr "%Y/%m/%d"
-#: ../calendar/gui/e-meeting-time-sel.c:414
+#: ../calendar/gui/e-meeting-time-sel.c:399
msgid "Out of Office"
msgstr "外出中"
-#: ../calendar/gui/e-meeting-time-sel.c:415
+#: ../calendar/gui/e-meeting-time-sel.c:400
msgid "No Information"
msgstr "情報なし"
-#: ../calendar/gui/e-meeting-time-sel.c:430
+#: ../calendar/gui/e-meeting-time-sel.c:415
msgid "A_ttendees..."
msgstr "出席者(_T)..."
-#: ../calendar/gui/e-meeting-time-sel.c:451
+#: ../calendar/gui/e-meeting-time-sel.c:436
msgid "O_ptions"
msgstr "オプション(_P)"
-#: ../calendar/gui/e-meeting-time-sel.c:468
+#: ../calendar/gui/e-meeting-time-sel.c:453
msgid "Show _only working hours"
msgstr "仕事中の時間だけ表示する(_O)"
-#: ../calendar/gui/e-meeting-time-sel.c:478
+#: ../calendar/gui/e-meeting-time-sel.c:463
msgid "Show _zoomed out"
msgstr "縮小して表示する(_Z)"
-#: ../calendar/gui/e-meeting-time-sel.c:493
+#: ../calendar/gui/e-meeting-time-sel.c:478
msgid "_Update free/busy"
msgstr "予定の有無の更新(_U)"
-#: ../calendar/gui/e-meeting-time-sel.c:508
+#: ../calendar/gui/e-meeting-time-sel.c:493
msgid "_<<"
msgstr "_<<"
-#: ../calendar/gui/e-meeting-time-sel.c:526
+#: ../calendar/gui/e-meeting-time-sel.c:511
msgid "_Autopick"
msgstr "自動ピックアップ(_A)"
-#: ../calendar/gui/e-meeting-time-sel.c:541
+#: ../calendar/gui/e-meeting-time-sel.c:526
msgid ">_>"
msgstr ">_>"
-#: ../calendar/gui/e-meeting-time-sel.c:558
+#: ../calendar/gui/e-meeting-time-sel.c:543
msgid "_All people and resources"
msgstr "全ての人達とリソース(_A)"
-#: ../calendar/gui/e-meeting-time-sel.c:567
+#: ../calendar/gui/e-meeting-time-sel.c:552
msgid "All _people and one resource"
msgstr "全ての人達とひとつのリソース(_P)"
-#: ../calendar/gui/e-meeting-time-sel.c:576
+#: ../calendar/gui/e-meeting-time-sel.c:561
msgid "_Required people"
msgstr "必須な人達(_R)"
-#: ../calendar/gui/e-meeting-time-sel.c:585
+#: ../calendar/gui/e-meeting-time-sel.c:570
msgid "Required people and _one resource"
msgstr "必須な人達とひとつのリソース(_O)"
-#: ../calendar/gui/e-meeting-time-sel.c:621
+#: ../calendar/gui/e-meeting-time-sel.c:606
msgid "_Start time:"
msgstr "開始時刻(_S):"
-#: ../calendar/gui/e-meeting-time-sel.c:648
+#: ../calendar/gui/e-meeting-time-sel.c:633
msgid "_End time:"
msgstr "終了時刻(_E):"
-#: ../calendar/gui/e-meeting-time-sel.etspec.h:1
-msgid "Attendee"
-msgstr "出席者"
-
#: ../calendar/gui/e-meeting-time-sel.etspec.h:2
msgid "Click here to add an attendee"
msgstr "<ここをクリックして出席者を追加して下さい>"
@@ -7923,8 +8317,8 @@ msgstr "指定したメモの削除(_D)"
msgid "Click to add a memo"
msgstr "<ここをクリックしてメモを追加して下さい>"
-#: ../calendar/gui/e-memos.c:791 ../calendar/gui/e-tasks.c:923
-#: ../calendar/gui/gnome-cal.c:2871
+#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
+#: ../calendar/gui/gnome-cal.c:2960
#, c-format
msgid ""
"Error on %s:\n"
@@ -7933,85 +8327,80 @@ msgstr ""
"%s でエラー:\n"
" %s"
-#: ../calendar/gui/e-memos.c:840
+#: ../calendar/gui/e-memos.c:809
msgid "Loading memos"
msgstr "メモの読み込み中"
-#: ../calendar/gui/e-memos.c:921
+#: ../calendar/gui/e-memos.c:890
#, c-format
msgid "Opening memos at %s"
msgstr "%s のメモを開きます"
-#: ../calendar/gui/e-memos.c:1094 ../calendar/gui/e-tasks.c:1334
+#: ../calendar/gui/e-memos.c:1062 ../calendar/gui/e-tasks.c:1321
msgid "Deleting selected objects..."
msgstr "指定したオブジェクトの削除..."
-#: ../calendar/gui/e-tasks.c:976
+#: ../calendar/gui/e-tasks.c:963
msgid "Loading tasks"
msgstr "タスクの読み込み中"
-#: ../calendar/gui/e-tasks.c:1066
+#: ../calendar/gui/e-tasks.c:1053
#, c-format
msgid "Opening tasks at %s"
msgstr "%s のタスクを開きます"
-#: ../calendar/gui/e-tasks.c:1311
+#: ../calendar/gui/e-tasks.c:1298
msgid "Completing tasks..."
msgstr "タスクの完了..."
-#: ../calendar/gui/e-tasks.c:1361
+#: ../calendar/gui/e-tasks.c:1348
msgid "Expunging"
msgstr "抹消"
-#: ../calendar/gui/e-timezone-entry.c:135
+#: ../calendar/gui/e-timezone-entry.c:129
msgid "Select Timezone"
msgstr "タイムゾーンの選択"
#. strftime format %d = day of month, %B = full
#. month name. You can change the order but don't
#. change the specifiers or add anything.
-#: ../calendar/gui/e-week-view-main-item.c:327
-#: ../calendar/gui/e-week-view-main-item.c:541 ../calendar/gui/print.c:1637
+#: ../calendar/gui/e-week-view-main-item.c:348 ../calendar/gui/print.c:1653
msgid "%d %B"
msgstr "%B%e日"
-#: ../calendar/gui/gnome-cal.c:828
-msgid "Updating query"
-msgstr "クエリの更新中"
-
-#: ../calendar/gui/gnome-cal.c:2508
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr "カスタム表示(_C)"
-#: ../calendar/gui/gnome-cal.c:2509
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr "カスタム表示の保存(_S)"
-#: ../calendar/gui/gnome-cal.c:2514
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr "ビューの定義(_D)..."
-#: ../calendar/gui/gnome-cal.c:2695
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "%s にある予定の読み込み中"
-#: ../calendar/gui/gnome-cal.c:2714
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "%s にあるタスクの読み込み中"
-#: ../calendar/gui/gnome-cal.c:2723
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "%s のメモの読み込み中"
-#: ../calendar/gui/gnome-cal.c:2830
+#: ../calendar/gui/gnome-cal.c:2919
#, c-format
msgid "Opening %s"
msgstr "%s を開きます"
-#: ../calendar/gui/gnome-cal.c:3787
+#: ../calendar/gui/gnome-cal.c:3873
msgid "Purging"
msgstr "抹消中"
@@ -8071,57 +8460,57 @@ msgstr "9月"
msgid "_Select Today"
msgstr "今日にする(_S)"
-#: ../calendar/gui/itip-utils.c:449 ../calendar/gui/itip-utils.c:498
-#: ../calendar/gui/itip-utils.c:604
+#: ../calendar/gui/itip-utils.c:404 ../calendar/gui/itip-utils.c:456
+#: ../calendar/gui/itip-utils.c:544
msgid "An organizer must be set."
msgstr "主催者をセットして下さい"
-#: ../calendar/gui/itip-utils.c:485
+#: ../calendar/gui/itip-utils.c:448
msgid "At least one attendee is necessary"
msgstr "最低一名の出席者が必要です"
-#: ../calendar/gui/itip-utils.c:690 ../calendar/gui/itip-utils.c:813
+#: ../calendar/gui/itip-utils.c:626 ../calendar/gui/itip-utils.c:741
msgid "Event information"
msgstr "イベントの情報"
-#: ../calendar/gui/itip-utils.c:692 ../calendar/gui/itip-utils.c:815
+#: ../calendar/gui/itip-utils.c:628 ../calendar/gui/itip-utils.c:744
msgid "Task information"
msgstr "タスクの情報"
-#: ../calendar/gui/itip-utils.c:694 ../calendar/gui/itip-utils.c:817
+#: ../calendar/gui/itip-utils.c:630 ../calendar/gui/itip-utils.c:747
msgid "Memo information"
msgstr "メモの情報"
-#: ../calendar/gui/itip-utils.c:696 ../calendar/gui/itip-utils.c:835
+#: ../calendar/gui/itip-utils.c:632 ../calendar/gui/itip-utils.c:765
msgid "Free/Busy information"
msgstr "Free/Busy の情報"
-#: ../calendar/gui/itip-utils.c:698
+#: ../calendar/gui/itip-utils.c:634
msgid "Calendar information"
msgstr "カレンダの情報"
-#: ../calendar/gui/itip-utils.c:747
+#: ../calendar/gui/itip-utils.c:683
msgid "Updated"
msgstr "更新済"
-#: ../calendar/gui/itip-utils.c:755
+#: ../calendar/gui/itip-utils.c:691
msgid "Refresh"
msgstr "リフレッシュ"
-#: ../calendar/gui/itip-utils.c:759
+#: ../calendar/gui/itip-utils.c:695
msgid "Counter-proposal"
msgstr "カウンタープロポーザル"
-#: ../calendar/gui/itip-utils.c:831
+#: ../calendar/gui/itip-utils.c:762
#, c-format
msgid "Free/Busy information (%s to %s)"
msgstr "Free/Busy の情報 (%s から %s)"
-#: ../calendar/gui/itip-utils.c:841
+#: ../calendar/gui/itip-utils.c:770
msgid "iCalendar information"
msgstr "iCalendar 情報"
-#: ../calendar/gui/itip-utils.c:1009
+#: ../calendar/gui/itip-utils.c:941
msgid "You must be an attendee of the event."
msgstr "イベントの出席しなければなりません。"
@@ -8140,8 +8529,8 @@ msgstr[1] "%d個のメモ"
#, c-format
msgid ", %d selected"
msgid_plural ", %d selected"
-msgstr[0] ", 選択済 %d個"
-msgstr[1] ", 選択済 %d個"
+msgstr[0] "、選択済 %d個"
+msgstr[1] "、選択済 %d個"
#: ../calendar/gui/memos-component.c:593
msgid "Failed upgrading memos."
@@ -8165,6 +8554,7 @@ msgid "New memo"
msgstr "新しいメモ"
#: ../calendar/gui/memos-component.c:1260
+msgctxt "New"
msgid "Mem_o"
msgstr "メモ(_O)"
@@ -8177,6 +8567,7 @@ msgid "New shared memo"
msgstr "新しい共有メモ"
#: ../calendar/gui/memos-component.c:1268
+msgctxt "New"
msgid "_Shared memo"
msgstr "メモの共有(_S)"
@@ -8189,6 +8580,7 @@ msgid "New memo list"
msgstr "新しいメモの一覧"
#: ../calendar/gui/memos-component.c:1276
+msgctxt "New"
msgid "Memo li_st"
msgstr "メモの一覧(_S)"
@@ -8196,11 +8588,15 @@ msgstr "メモの一覧(_S)"
msgid "Create a new memo list"
msgstr "新しいメモの一覧を作成します"
-#: ../calendar/gui/memos-control.c:356 ../calendar/gui/memos-control.c:372
+#: ../calendar/gui/memos-control.c:353 ../calendar/gui/memos-control.c:369
msgid "Print Memos"
msgstr "メモの印刷"
-#: ../calendar/gui/migration.c:164
+#: ../calendar/gui/memotypes.xml.h:25
+msgid "Next 7 Days"
+msgstr "次の7日間"
+
+#: ../calendar/gui/migration.c:157
msgid ""
"The location and hierarchy of the Evolution task folders has changed since "
"Evolution 1.x.\n"
@@ -8212,7 +8608,7 @@ msgstr ""
"\n"
"Evolution がお使いのフォルダを移行している間、少々お待ち下さい..."
-#: ../calendar/gui/migration.c:168
+#: ../calendar/gui/migration.c:161
msgid ""
"The location and hierarchy of the Evolution calendar folders has changed "
"since Evolution 1.x.\n"
@@ -8225,27 +8621,27 @@ msgstr ""
"Evolution がお使いのフォルダを移行している間、少々お待ち下さい..."
#. FIXME: set proper domain/code
-#: ../calendar/gui/migration.c:781 ../calendar/gui/migration.c:949
+#: ../calendar/gui/migration.c:775 ../calendar/gui/migration.c:943
#, c-format
msgid "Unable to migrate old settings from evolution/config.xmldb"
msgstr "${HOME}/evolution/config.xmldb から古い設定を移行できません"
#. FIXME: domain/code
-#: ../calendar/gui/migration.c:810
+#: ../calendar/gui/migration.c:804
#, c-format
msgid "Unable to migrate calendar `%s'"
msgstr "カレンダ '%s' を移行できません"
#. FIXME: domain/code
-#: ../calendar/gui/migration.c:978
+#: ../calendar/gui/migration.c:972
#, c-format
msgid "Unable to migrate tasks `%s'"
msgstr "タスク '%s' を移行できません"
#: ../calendar/gui/migration.c:1227
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:402
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:433
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:546
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:427
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:458
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:571
msgid "Notes"
msgstr "注釈"
@@ -8402,60 +8798,60 @@ msgstr "金"
msgid "Sa"
msgstr "土"
-#: ../calendar/gui/print.c:2444
+#: ../calendar/gui/print.c:2472
msgid "Appointment"
msgstr "予定"
-#: ../calendar/gui/print.c:2446
+#: ../calendar/gui/print.c:2474
msgid "Task"
msgstr "タスク"
-#: ../calendar/gui/print.c:2468
+#: ../calendar/gui/print.c:2499
#, c-format
msgid "Summary: %s"
msgstr "サマリ: %s"
-#: ../calendar/gui/print.c:2490
+#: ../calendar/gui/print.c:2522
msgid "Attendees: "
msgstr "出席者: "
-#: ../calendar/gui/print.c:2530
+#: ../calendar/gui/print.c:2562
#, c-format
msgid "Status: %s"
msgstr "状態: %s"
-#: ../calendar/gui/print.c:2547
+#: ../calendar/gui/print.c:2579
#, c-format
msgid "Priority: %s"
msgstr "優先度: %s"
-#: ../calendar/gui/print.c:2559
+#: ../calendar/gui/print.c:2591
#, c-format
msgid "Percent Complete: %i"
msgstr "達成率: %i"
-#: ../calendar/gui/print.c:2571
+#: ../calendar/gui/print.c:2603
#, c-format
msgid "URL: %s"
msgstr "URL: %s"
-#: ../calendar/gui/print.c:2584
+#: ../calendar/gui/print.c:2616
#, c-format
msgid "Categories: %s"
msgstr "カテゴリ: %s"
-#: ../calendar/gui/print.c:2595
+#: ../calendar/gui/print.c:2627
msgid "Contacts: "
msgstr "連絡先: "
#. TODO Allow the user to customize the title.
-#: ../calendar/gui/print.c:2697
+#: ../calendar/gui/print.c:2762
msgid "Upcoming Appointments"
msgstr "次の予定"
#: ../calendar/gui/tasks-component.c:455
msgid "_New Task List"
-msgstr "新しいタスク一覧(_N)"
+msgstr "新しいタスクの一覧(_N)"
#: ../calendar/gui/tasks-component.c:535
#, c-format
@@ -8471,7 +8867,7 @@ msgstr "タスクの移行に失敗しました。"
#: ../calendar/gui/tasks-component.c:941
#, c-format
msgid "Unable to open the task list '%s' for creating events and meetings"
-msgstr "イベントと会議の作成に必要なタスク一覧 '%s' を開けません"
+msgstr "イベントと会議の作成に必要なタスクの一覧 '%s' を開けません"
#: ../calendar/gui/tasks-component.c:954
msgid "There is no calendar available for creating tasks"
@@ -8481,39 +8877,46 @@ msgstr "タスクを作成できるカレンダがありません"
msgid "Task Source Selector"
msgstr "タスクの格納場所の選択"
-#: ../calendar/gui/tasks-component.c:1321
+#: ../calendar/gui/tasks-component.c:1324
msgid "New task"
msgstr "新規のタスク"
-#: ../calendar/gui/tasks-component.c:1323
+#: ../calendar/gui/tasks-component.c:1325
+msgctxt "New"
+msgid "_Task"
+msgstr "タスク(_T)"
+
+#: ../calendar/gui/tasks-component.c:1326
msgid "Create a new task"
msgstr "新しいタスクを作成します"
-#: ../calendar/gui/tasks-component.c:1329
+#: ../calendar/gui/tasks-component.c:1332
msgid "New assigned task"
msgstr "新しいタスクの割当て"
-#: ../calendar/gui/tasks-component.c:1330
+#: ../calendar/gui/tasks-component.c:1333
+msgctxt "New"
msgid "Assigne_d Task"
msgstr "タスクの割当て(_D)"
-#: ../calendar/gui/tasks-component.c:1331
+#: ../calendar/gui/tasks-component.c:1334
msgid "Create a new assigned task"
msgstr "新しいタスクの割り当てを作成します"
-#: ../calendar/gui/tasks-component.c:1337
+#: ../calendar/gui/tasks-component.c:1340
msgid "New task list"
-msgstr "新しいタスク一覧"
+msgstr "新しいタスクの一覧"
-#: ../calendar/gui/tasks-component.c:1338
+#: ../calendar/gui/tasks-component.c:1341
+msgctxt "New"
msgid "Tas_k list"
-msgstr "タスク一覧(_K)"
+msgstr "タスクの一覧(_K)"
-#: ../calendar/gui/tasks-component.c:1339
+#: ../calendar/gui/tasks-component.c:1342
msgid "Create a new task list"
-msgstr "新しいタスク一覧を作成します"
+msgstr "新しいタスクの一覧を作成します"
-#: ../calendar/gui/tasks-control.c:455
+#: ../calendar/gui/tasks-control.c:452
msgid ""
"This operation will permanently erase all tasks marked as completed. If you "
"continue, you will not be able to recover these tasks.\n"
@@ -8525,49 +8928,70 @@ msgstr ""
"\n"
"本当にこれらのタスクを削除しますか?"
-#: ../calendar/gui/tasks-control.c:458 ../mail/em-folder-view.c:1132
+#: ../calendar/gui/tasks-control.c:455 ../mail/em-folder-view.c:1126
msgid "Do not ask me again."
msgstr "次回からこのメッセージを表示しない"
-#: ../calendar/gui/tasks-control.c:495 ../calendar/gui/tasks-control.c:511
+#: ../calendar/gui/tasks-control.c:492 ../calendar/gui/tasks-control.c:508
msgid "Print Tasks"
msgstr "タスクの印刷"
-#: ../calendar/importers/icalendar-importer.c:79
+#: ../calendar/gui/tasktypes.xml.h:2
+#, no-c-format
+msgid "% Completed"
+msgstr "進捗率"
+
+#: ../calendar/gui/tasktypes.xml.h:10
+msgid "Cancelled"
+msgstr "キャンセルされた"
+
+#: ../calendar/gui/tasktypes.xml.h:26
+msgid "In progress"
+msgstr "進行中である"
+
+#: ../calendar/gui/tasktypes.xml.h:50 ../mail/em-filter-i18n.h:34
+msgid "is greater than"
+msgstr "が次より大きい"
+
+#: ../calendar/gui/tasktypes.xml.h:51 ../mail/em-filter-i18n.h:35
+msgid "is less than"
+msgstr "が次より小さい"
+
+#: ../calendar/importers/icalendar-importer.c:73
msgid "Appointments and Meetings"
msgstr "予定と会議"
-#: ../calendar/importers/icalendar-importer.c:337
-#: ../calendar/importers/icalendar-importer.c:620
-#: ../plugins/itip-formatter/itip-formatter.c:1580
+#: ../calendar/importers/icalendar-importer.c:331
+#: ../calendar/importers/icalendar-importer.c:614
+#: ../plugins/itip-formatter/itip-formatter.c:1577
msgid "Opening calendar"
msgstr "カレンダを開く"
-#: ../calendar/importers/icalendar-importer.c:444
+#: ../calendar/importers/icalendar-importer.c:438
msgid "iCalendar files (.ics)"
msgstr "iCalendar ファイル (.ics)"
-#: ../calendar/importers/icalendar-importer.c:445
+#: ../calendar/importers/icalendar-importer.c:439
msgid "Evolution iCalendar importer"
msgstr "Evolution iCalendar インポータ"
-#: ../calendar/importers/icalendar-importer.c:521
+#: ../calendar/importers/icalendar-importer.c:515
msgid "Reminder!"
msgstr "リマインダです!"
-#: ../calendar/importers/icalendar-importer.c:573
+#: ../calendar/importers/icalendar-importer.c:567
msgid "vCalendar files (.vcf)"
msgstr "vCalendar ファイル (.vcf)"
-#: ../calendar/importers/icalendar-importer.c:574
+#: ../calendar/importers/icalendar-importer.c:568
msgid "Evolution vCalendar importer"
msgstr "Evolution vCalendar インポータ"
-#: ../calendar/importers/icalendar-importer.c:736
+#: ../calendar/importers/icalendar-importer.c:730
msgid "Calendar Events"
msgstr "カレンダのイベント"
-#: ../calendar/importers/icalendar-importer.c:773
+#: ../calendar/importers/icalendar-importer.c:767
msgid "Evolution Calendar intelligent importer"
msgstr "Evolution カレンダ・インテリジェント・インポータ"
@@ -10102,56 +10526,213 @@ msgstr "太平洋/ウォーリス"
msgid "Pacific/Yap"
msgstr "太平洋/ヤップ"
-#: ../composer/e-composer-name-header.c:95
-msgid "Click here for the address book"
-msgstr "ここをクリックするとアドレス帳が表示されます"
+#: ../composer/e-composer-autosave.c:275
+msgid "Could not open autosave file"
+msgstr "自動保存用のファイルを開けませんでした"
-#: ../composer/e-composer-post-header.c:117
-msgid "Posting destination"
-msgstr "送信先を指定します"
+#: ../composer/e-composer-autosave.c:282
+msgid "Unable to retrieve message from editor"
+msgstr "エディタからメッセージを取得できません"
-#: ../composer/e-composer-post-header.c:118
-msgid "Choose folders to post the message to."
-msgstr "メッセージを投稿するフォルダを選択して下さい。"
+#: ../composer/e-composer-actions.c:47
+msgid "Insert Attachment"
+msgstr "添付ファイルの挿入"
-#: ../composer/e-composer-post-header.c:152
-msgid "Click here to select folders to post to"
-msgstr "<ここをクリックして投稿するフォルダを選択して下さい>"
+#: ../composer/e-composer-actions.c:51
+msgid "A_ttach"
+msgstr "添付する(_T)"
-#. Now add the signature stuff.
-#: ../composer/e-msg-composer-hdrs.c:221
-msgid "Si_gnature:"
-msgstr "署名(_G):"
+#: ../composer/e-composer-actions.c:143
+msgid "Untitled Message"
+msgstr "タイトルなしのメッセージ"
-#: ../composer/e-msg-composer-hdrs.c:326
-msgid "Fr_om:"
-msgstr "差出人(_O):"
+#: ../composer/e-composer-actions.c:474
+msgid "Attach a file"
+msgstr "ファイルを添付します"
-#: ../composer/e-msg-composer-hdrs.c:332
-msgid "_Reply-To:"
-msgstr "返信先(_R):"
+#: ../composer/e-composer-actions.c:479 ../mail/mail-signature-editor.c:194
+#: ../ui/evolution-mail-messagedisplay.xml.h:4
+msgid "_Close"
+msgstr "閉じる(_C)"
-#: ../composer/e-msg-composer-hdrs.c:335
-msgid "_To:"
-msgstr "宛先(_T):"
+#: ../composer/e-composer-actions.c:481
+msgid "Close the current file"
+msgstr "現在のファイルを閉じます"
+
+#: ../composer/e-composer-actions.c:486 ../mail/em-folder-view.c:1337
+#: ../ui/evolution-addressbook.xml.h:58 ../ui/evolution-calendar.xml.h:44
+#: ../ui/evolution-mail-message.xml.h:123 ../ui/evolution-memos.xml.h:20
+#: ../ui/evolution-tasks.xml.h:29
+msgid "_Print..."
+msgstr "印刷(_P)..."
+
+#: ../composer/e-composer-actions.c:493 ../ui/evolution-addressbook.xml.h:27
+#: ../ui/evolution-calendar.xml.h:21 ../ui/evolution-mail-message.xml.h:76
+#: ../ui/evolution-memos.xml.h:12 ../ui/evolution-tasks.xml.h:15
+msgid "Print Pre_view"
+msgstr "印刷プレビュー(_V)"
+
+#: ../composer/e-composer-actions.c:502
+msgid "Save the current file"
+msgstr "現在のファイルを保存します"
+
+#: ../composer/e-composer-actions.c:507
+msgid "Save _As..."
+msgstr "別名で保存(_A)..."
+
+#: ../composer/e-composer-actions.c:509
+msgid "Save the current file with a different name"
+msgstr "現在のファイルを別名で保存します"
+
+#: ../composer/e-composer-actions.c:514
+msgid "Save _Draft"
+msgstr "草案の保存(_D)"
+
+#: ../composer/e-composer-actions.c:516
+msgid "Save as draft"
+msgstr "草案として保存します"
+
+#: ../composer/e-composer-actions.c:521
+msgid "S_end"
+msgstr "送信(_E)"
+
+#: ../composer/e-composer-actions.c:523
+msgid "Send this message"
+msgstr "メッセージを送信します"
+
+#: ../composer/e-composer-actions.c:530
+msgid "Insert Send options"
+msgstr "送信用の拡張オプションを挿入します"
+
+#: ../composer/e-composer-actions.c:535
+msgid "New _Message"
+msgstr "新しいメッセージ(_M)"
+
+#: ../composer/e-composer-actions.c:537
+msgid "Open New Message window"
+msgstr "新しいメッセージ作成ウィンドウを開きます"
+
+#: ../composer/e-composer-actions.c:544
+msgid "Character _Encoding"
+msgstr "文字エンコーディング(_E)"
+
+#: ../composer/e-composer-actions.c:551
+msgid "_Security"
+msgstr "セキュリティ(_S)"
+
+#: ../composer/e-composer-actions.c:561
+msgid "PGP _Encrypt"
+msgstr "PGP による暗号化(_E)"
+
+#: ../composer/e-composer-actions.c:563
+msgid "Encrypt this message with PGP"
+msgstr "PGP でこのメッセージを暗号化します"
+
+#: ../composer/e-composer-actions.c:569
+msgid "PGP _Sign"
+msgstr "PGP の署名(_S)"
+
+#: ../composer/e-composer-actions.c:571
+msgid "Sign this message with your PGP key"
+msgstr "PGP 鍵でこのメッセージに署名します"
+
+#: ../composer/e-composer-actions.c:577
+msgid "_Prioritize Message"
+msgstr "メッセージの優先度を上げる(_P)"
+
+#: ../composer/e-composer-actions.c:579
+msgid "Set the message priority to high"
+msgstr "メッセージの優先度を高くします"
+
+#: ../composer/e-composer-actions.c:585
+msgid "Re_quest Read Receipt"
+msgstr "開封通知を要求する(_Q)"
-#: ../composer/e-msg-composer-hdrs.c:337
+#: ../composer/e-composer-actions.c:587
+msgid "Get delivery notification when your message is read"
+msgstr "相手がメッセージを読んだ時に配送通知を取得します"
+
+#: ../composer/e-composer-actions.c:593
+msgid "S/MIME En_crypt"
+msgstr "S/MIME による暗号化(_C)"
+
+#: ../composer/e-composer-actions.c:595
+msgid "Encrypt this message with your S/MIME Encryption Certificate"
+msgstr "このメッセージを S/MIME 暗号認証を用いて暗号化します"
+
+#: ../composer/e-composer-actions.c:601
+msgid "S/MIME Sig_n"
+msgstr "S/MIME の署名(_N)"
+
+#: ../composer/e-composer-actions.c:603
+msgid "Sign this message with your S/MIME Signature Certificate"
+msgstr "S/MIME 署名証明書でこのメッセージに署名します"
+
+#: ../composer/e-composer-actions.c:609
+msgid "_Bcc Field"
+msgstr "Bcc(_B)"
+
+#: ../composer/e-composer-actions.c:611
+msgid "Toggles whether the BCC field is displayed"
+msgstr "Bcc の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:617
+msgid "_Cc Field"
+msgstr "Cc(_C)"
+
+#: ../composer/e-composer-actions.c:619
+msgid "Toggles whether the CC field is displayed"
+msgstr "Cc の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:625
+msgid "_From Field"
+msgstr "差出人(_F)"
+
+#: ../composer/e-composer-actions.c:627
+msgid "Toggles whether the From chooser is displayed"
+msgstr "差出人の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:633
+msgid "_Post-To Field"
+msgstr "送信先(_P)"
+
+#: ../composer/e-composer-actions.c:635
+msgid "Toggles whether the Post-To field is displayed"
+msgstr "送信先の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:641
+msgid "_Reply-To Field"
+msgstr "返信先(_R)"
+
+#: ../composer/e-composer-actions.c:643
+msgid "Toggles whether the Reply-To field is displayed"
+msgstr "返信先の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:649
+msgid "_Subject Field"
+msgstr "件名(_S)"
+
+#: ../composer/e-composer-actions.c:651
+msgid "Toggles whether the Subject field is displayed"
+msgstr "件名の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-actions.c:657
+msgid "_To Field"
+msgstr "宛先(_T)"
+
+#: ../composer/e-composer-actions.c:659
+msgid "Toggles whether the To field is displayed"
+msgstr "宛先の表示/非表示を切り替えます"
+
+#: ../composer/e-composer-header-table.c:66
msgid "Enter the recipients of the message"
msgstr "メッセージの宛先を入力します"
-#: ../composer/e-msg-composer-hdrs.c:340
-msgid "_Cc:"
-msgstr "Cc(_C):"
-
-#: ../composer/e-msg-composer-hdrs.c:342
+#: ../composer/e-composer-header-table.c:68
msgid "Enter the addresses that will receive a carbon copy of the message"
msgstr "メッセージのカーボン・コピー (Cc) を受けとる人のアドレスを入力します"
-#: ../composer/e-msg-composer-hdrs.c:346
-msgid "_Bcc:"
-msgstr "Bcc(_B):"
-
-#: ../composer/e-msg-composer-hdrs.c:348
+#: ../composer/e-composer-header-table.c:71
msgid ""
"Enter the addresses that will receive a carbon copy of the message without "
"appearing in the recipient list of the message"
@@ -10159,30 +10740,70 @@ msgstr ""
"メッセージの宛先には入れずにカーボン・コピー (Bcc) としてメッセージを受け取る"
"人のアドレスを入力します"
-#: ../composer/e-msg-composer-hdrs.c:353
+#: ../composer/e-composer-header-table.c:645
+msgid "Fr_om:"
+msgstr "差出人(_O):"
+
+#: ../composer/e-composer-header-table.c:654
+msgid "_Reply-To:"
+msgstr "返信先(_R):"
+
+#: ../composer/e-composer-header-table.c:658
+msgid "_To:"
+msgstr "宛先(_T):"
+
+#: ../composer/e-composer-header-table.c:663
+msgid "_Cc:"
+msgstr "Cc(_C):"
+
+#: ../composer/e-composer-header-table.c:668
+msgid "_Bcc:"
+msgstr "Bcc(_B):"
+
+#: ../composer/e-composer-header-table.c:673
msgid "_Post To:"
msgstr "送信先(_P):"
-#: ../composer/e-msg-composer-hdrs.c:356
+#: ../composer/e-composer-header-table.c:677
msgid "S_ubject:"
msgstr "件名(_U):"
-#: ../composer/e-msg-composer-select-file.c:77
-msgid "A_ttach"
-msgstr "添付する(_T)"
+#: ../composer/e-composer-header-table.c:686
+msgid "Si_gnature:"
+msgstr "署名(_G):"
-#: ../composer/e-msg-composer-select-file.c:198
-msgid "Insert Attachment"
-msgstr "添付ファイルの挿入"
+#: ../composer/e-composer-name-header.c:114
+msgid "Click here for the address book"
+msgstr "ここをクリックするとアドレス帳が表示されます"
+
+#: ../composer/e-composer-post-header.c:136
+msgid "Posting destination"
+msgstr "送信先を指定します"
+
+#: ../composer/e-composer-post-header.c:137
+msgid "Choose folders to post the message to."
+msgstr "メッセージを投稿するフォルダを選択して下さい。"
+
+#: ../composer/e-composer-post-header.c:171
+msgid "Click here to select folders to post to"
+msgstr "<ここをクリックして投稿するフォルダを選択して下さい>"
+
+#: ../composer/e-composer-private.c:65
+msgid "Recent _Documents"
+msgstr "最近開いたドキュメント(_D)"
+
+#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1558
+msgid "Show _Attachment Bar"
+msgstr "添付ファイル・バーを表示する(_A)"
-#: ../composer/e-msg-composer.c:819
+#: ../composer/e-msg-composer.c:872
msgid ""
"Cannot sign outgoing message: No signing certificate set for this account"
msgstr ""
"送信メッセージに署名できません: このアカウントに対して署名付きの証明書がセッ"
"トされていません"
-#: ../composer/e-msg-composer.c:826
+#: ../composer/e-msg-composer.c:879
msgid ""
"Cannot encrypt outgoing message: No encryption certificate set for this "
"account"
@@ -10190,42 +10811,23 @@ msgstr ""
"送信するメッセージを暗号化できません: このアカウントに対して暗号化された証明"
"書がセットされていません"
-#: ../composer/e-msg-composer.c:1418 ../composer/e-msg-composer.c:2516
+#: ../composer/e-msg-composer.c:1500 ../mail/em-format-html-display.c:1913
+#: ../mail/em-format-html-display.c:2405 ../mail/mail-config.glade.h:45
+#: ../mail/message-list.etspec.h:1
+msgid "Attachment"
+msgid_plural "Attachments"
+msgstr[0] "添付ファイル"
+msgstr[1] "添付ファイル"
+
+#: ../composer/e-msg-composer.c:1556
msgid "Hide _Attachment Bar"
msgstr "添付ファイル・バーを隠す(_A)"
-#: ../composer/e-msg-composer.c:1421 ../composer/e-msg-composer.c:2519
-#: ../composer/e-msg-composer.c:3878
-msgid "Show _Attachment Bar"
-msgstr "添付ファイル・バーを表示する(_A)"
-
-#: ../composer/e-msg-composer.c:1453 ../composer/e-msg-composer.c:1487
-msgid "Unknown reason"
-msgstr "原因不明"
-
-#: ../composer/e-msg-composer.c:1525
-msgid "Could not open file"
-msgstr "ファイルを開けませんでした"
-
-#: ../composer/e-msg-composer.c:1533
-msgid "Unable to retrieve message from editor"
-msgstr "エディタからメッセージを取得できません"
-
-#: ../composer/e-msg-composer.c:1820
-msgid "Untitled Message"
-msgstr "タイトルなしのメッセージ"
-
-#. NB: This function is never used anymore
-#: ../composer/e-msg-composer.c:1856
-msgid "Open File"
-msgstr "ファイルを開く"
-
-#: ../composer/e-msg-composer.c:2530 ../composer/e-msg-composer.c:3758
-#: ../composer/e-msg-composer.c:3761
+#: ../composer/e-msg-composer.c:1573 ../composer/e-msg-composer.c:2780
msgid "Compose Message"
msgstr "メッセージの作成"
-#: ../composer/e-msg-composer.c:5031
+#: ../composer/e-msg-composer.c:4055
msgid ""
"<b>(The composer contains a non-text message body, which cannot be edited.)</"
"b>"
@@ -10257,10 +10859,9 @@ msgstr ""
"&quot;{0}&quot; のため、別のメール・オプションを選択した方が良いかもしれませ"
"ん。"
-#: ../composer/mail-composer.error.xml.h:5 ../e-util/e-system.error.xml.h:1
-#: ../mail/mail.error.xml.h:19
+#: ../composer/mail-composer.error.xml.h:5
msgid "Because &quot;{1}&quot;."
-msgstr "理由は &quot;{1}&quot; です。"
+msgstr "原因は &quot;{1}&quot; です。"
#: ../composer/mail-composer.error.xml.h:6
msgid ""
@@ -10371,23 +10972,27 @@ msgstr "このメッセージにファイル `{0}' を添付できません"
msgid "You need to configure an account before you can compose mail."
msgstr "メールを作成する前にアカウントを設定して下さい。"
-#: ../composer/mail-composer.error.xml.h:30
+#: ../composer/mail-composer.error.xml.h:29
+msgid "_Continue Editing"
+msgstr "編集を続行する(_C)"
+
+#: ../composer/mail-composer.error.xml.h:31
msgid "_Do not Recover"
msgstr "復旧しない(_D)"
-#: ../composer/mail-composer.error.xml.h:31 ../shell/main.c:317
+#: ../composer/mail-composer.error.xml.h:32 ../shell/main.c:306
msgid "_Recover"
msgstr "復旧する(_R)"
-#: ../composer/mail-composer.error.xml.h:32
-msgid "_Save Message"
-msgstr "メッセージの保存(_S)"
+#: ../composer/mail-composer.error.xml.h:33
+msgid "_Save Draft"
+msgstr "草案を保存する(_S)"
#: ../data/evolution.desktop.in.in.h:1
msgid "Evolution Mail and Calendar"
msgstr "Evolution のメールとカレンダ"
-#: ../data/evolution.desktop.in.in.h:2 ../shell/e-shell-window-commands.c:753
+#: ../data/evolution.desktop.in.in.h:2 ../shell/e-shell-window-commands.c:738
msgid "Groupware Suite"
msgstr "グループウェア・スイートです。"
@@ -10403,56 +11008,79 @@ msgstr "アドレス・カード"
msgid "calendar information"
msgstr "カレンダ情報"
-#: ../e-util/e-error.c:86 ../e-util/e-error.c:87 ../e-util/e-error.c:129
+#: ../e-util/e-error.c:77 ../e-util/e-error.c:78 ../e-util/e-error.c:120
msgid "Evolution Error"
msgstr "Evolution のエラー"
-#: ../e-util/e-error.c:88 ../e-util/e-error.c:89 ../e-util/e-error.c:127
+#: ../e-util/e-error.c:79 ../e-util/e-error.c:80 ../e-util/e-error.c:118
msgid "Evolution Warning"
msgstr "Evolution の警告"
-#: ../e-util/e-error.c:126
+#: ../e-util/e-error.c:117
msgid "Evolution Information"
msgstr "Evolution の情報"
-#: ../e-util/e-error.c:128
+#: ../e-util/e-error.c:119
msgid "Evolution Query"
msgstr "Evolution からの確認"
#. setup a dummy error
-#: ../e-util/e-error.c:454
+#: ../e-util/e-error.c:449
#, c-format
msgid "Internal error, unknown error '%s' requested"
msgstr "内部エラー (特定できないエラー '%s' を要求しました)"
-#: ../e-util/e-print.c:138
+#: ../e-util/e-logger.c:154
+msgid "Component"
+msgstr "コンポーネント"
+
+#: ../e-util/e-logger.c:155
+msgid "Name of the component being logged"
+msgstr "ログを記録するコンポーネントの名前です"
+
+#: ../e-util/e-plugin.c:308 ../filter/rule-editor.c:776
+#: ../mail/em-account-prefs.c:482 ../mail/em-composer-prefs.c:988
+#: ../plugins/plugin-manager/plugin-manager.c:339
+#: ../plugins/publish-calendar/publish-calendar.c:689
+msgid "Enabled"
+msgstr "有効"
+
+#: ../e-util/e-plugin.c:309
+msgid "Whether the plugin is enabled"
+msgstr "プラグインが有効になっているかどうか"
+
+#: ../e-util/e-print.c:158
msgid "An error occurred while printing"
msgstr "印刷する際にエラーが発生しました"
-#: ../e-util/e-print.c:145
+#: ../e-util/e-print.c:165
msgid "The printing system reported the following details about the error:"
msgstr "エラーに関して印刷システムから次のような詳細情報が報告されました:"
-#: ../e-util/e-print.c:151
+#: ../e-util/e-print.c:171
msgid ""
"The printing system did not report any additional details about the error."
msgstr "印刷システムはエラーに関して何も詳細を報告してきませんでした。"
+#: ../e-util/e-system.error.xml.h:1 ../mail/mail.error.xml.h:19
+msgid "Because \"{1}\"."
+msgstr "原因は \"{1}\" です。"
+
#: ../e-util/e-system.error.xml.h:2
-msgid "Cannot open file &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というファイルを開けません。"
+msgid "Cannot open file \"{0}\"."
+msgstr "\"{0}\" というファイルを開けません。"
#: ../e-util/e-system.error.xml.h:3
-msgid "Cannot save file &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というファイルを保存できません。"
+msgid "Cannot save file \"{0}\"."
+msgstr "\"{0}\" というファイルを保存できません。"
#: ../e-util/e-system.error.xml.h:4
msgid "Do you wish to overwrite it?"
msgstr "上書きしてもよろしいですか?"
#: ../e-util/e-system.error.xml.h:5
-msgid "File exists &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というファイルが存在します。"
+msgid "File exists \"{0}\"."
+msgstr "ファイルが存在しています: \"{0}\""
#: ../e-util/e-system.error.xml.h:6
msgid "Overwrite file?"
@@ -10462,49 +11090,66 @@ msgstr "ファイルを上書きしますか?"
msgid "_Overwrite"
msgstr "上書きする(_O)"
-#: ../e-util/e-util-labels.c:45
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "Evolution のヘルプを表示できませんでした。"
+
+#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "重要(_M)"
#. red
-#: ../e-util/e-util-labels.c:46
+#: ../e-util/e-util-labels.c:38
msgid "_Work"
msgstr "仕事(_W)"
#. orange
-#: ../e-util/e-util-labels.c:47
+#: ../e-util/e-util-labels.c:39
msgid "_Personal"
msgstr "プライベート(_P)"
#. green
-#: ../e-util/e-util-labels.c:48
+#: ../e-util/e-util-labels.c:40
msgid "_To Do"
msgstr "ToDo(_T)"
#. blue
-#: ../e-util/e-util-labels.c:49
+#: ../e-util/e-util-labels.c:41
msgid "_Later"
msgstr "保留(_L)"
-#: ../e-util/e-util-labels.c:317
+#: ../e-util/e-util-labels.c:309
msgid "Label _Name:"
msgstr "ラベルの名前(_N):"
-#: ../e-util/e-util-labels.c:339
+#: ../e-util/e-util-labels.c:332
msgid "Edit Label"
msgstr "ラベルの編集"
-#: ../e-util/e-util-labels.c:339
+#: ../e-util/e-util-labels.c:332
msgid "Add Label"
msgstr "ラベルの追加"
-#: ../e-util/e-util-labels.c:357
+#: ../e-util/e-util-labels.c:351
msgid "Label name cannot be empty."
msgstr "ラベルの名前を指定して下さい。"
-#: ../e-util/e-util-labels.c:362
-msgid "Label with same tag already exists. Rename your label please."
-msgstr "同じ名前のラベルが既に存在しているので、別の名前を指定して下さい。"
+#: ../e-util/e-util-labels.c:356
+msgid ""
+"A label having the same tag already exists on the server. Please rename your "
+"label."
+msgstr ""
+"既に同じタグを持つラベルがサーバに存在しているので、別の名前に変更して下さ"
+"い。"
+
+#: ../e-util/gconf-bridge.c:1218
+#, c-format
+msgid "GConf error: %s"
+msgstr "GConf のエラー: %s"
+
+#: ../e-util/gconf-bridge.c:1228
+msgid "All further errors shown only on terminal."
+msgstr "これ以上のエラーは全て端末にだけ表示されます。"
#: ../filter/filter-datespec.c:80
#, c-format
@@ -10622,65 +11267,65 @@ msgstr "%Y-%m-%d"
msgid "Select a time to compare against"
msgstr "比較するもう一つの時間の選択"
-#: ../filter/filter-file.c:288
+#: ../filter/filter-file.c:284
msgid "Choose a file"
msgstr "ファイルの選択"
-#: ../filter/filter-part.c:533
+#: ../filter/filter-part.c:532
#: ../shell/test/GNOME_Evolution_Test.server.in.in.h:3
msgid "Test"
msgstr "テスト"
-#: ../filter/filter-rule.c:800
+#: ../filter/filter-rule.c:852
msgid "R_ule name:"
msgstr "ルール名(_U):"
-#: ../filter/filter-rule.c:828
+#: ../filter/filter-rule.c:880
msgid "Find items that meet the following criteria"
msgstr "次の条件に一致するアイテムを検索する"
-#: ../filter/filter-rule.c:862
+#: ../filter/filter-rule.c:914
msgid "A_dd Filter Criteria"
msgstr "条件の追加(_D)"
-#: ../filter/filter-rule.c:868
+#: ../filter/filter-rule.c:920
msgid "If all criteria are met"
msgstr "全ての条件が一致した時"
-#: ../filter/filter-rule.c:868
+#: ../filter/filter-rule.c:920
msgid "If any criteria are met"
msgstr "幾つかの条件が一致した時"
-#: ../filter/filter-rule.c:870
+#: ../filter/filter-rule.c:922
msgid "_Find items:"
msgstr " 検索する条件(_F):"
-#: ../filter/filter-rule.c:892
+#: ../filter/filter-rule.c:944
msgid "All related"
msgstr "関係するもの全て"
-#: ../filter/filter-rule.c:892
+#: ../filter/filter-rule.c:944
msgid "Replies"
msgstr "返信だけ"
-#: ../filter/filter-rule.c:892
+#: ../filter/filter-rule.c:944
msgid "Replies and parents"
msgstr "返信とその親"
-#: ../filter/filter-rule.c:892
+#: ../filter/filter-rule.c:944
msgid "No reply or parent"
msgstr "返信とその親以外"
-#: ../filter/filter-rule.c:894
+#: ../filter/filter-rule.c:946
msgid "I_nclude threads"
msgstr " スレッドの種類(_N):"
-#: ../filter/filter-rule.c:990 ../filter/filter.glade.h:3
-#: ../mail/em-utils.c:309
+#: ../filter/filter-rule.c:1044 ../filter/filter.glade.h:3
+#: ../mail/em-utils.c:308
msgid "Incoming"
msgstr "受信したメッセージ"
-#: ../filter/filter-rule.c:990 ../mail/em-utils.c:310
+#: ../filter/filter-rule.c:1044 ../mail/em-utils.c:309
msgid "Outgoing"
msgstr "送信するメッセージ"
@@ -10706,7 +11351,7 @@ msgstr "日付がありません。"
msgid "Missing file name."
msgstr "氏名がありません。"
-#: ../filter/filter.error.xml.h:6 ../mail/mail.error.xml.h:76
+#: ../filter/filter.error.xml.h:6 ../mail/mail.error.xml.h:75
msgid "Missing name."
msgstr "名前がありません。"
@@ -10782,7 +11427,7 @@ msgstr "後"
msgid "months"
msgstr "月"
-#: ../filter/filter.glade.h:19 ../mail/mail-config.glade.h:182
+#: ../filter/filter.glade.h:19 ../mail/mail-config.glade.h:195
msgid "seconds"
msgstr "秒"
@@ -10794,9 +11439,10 @@ msgstr "現在時刻"
msgid "the time you specify"
msgstr "指定した時間"
-#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:291
+#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
-#: ../plugins/google-account-setup/google-source.c:398
+#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "週"
@@ -10812,7 +11458,7 @@ msgstr "ルールの追加"
msgid "Edit Rule"
msgstr "ルールの編集"
-#: ../filter/rule-editor.c:747
+#: ../filter/rule-editor.c:786
msgid "Rule name"
msgstr "ルール名"
@@ -10834,57 +11480,69 @@ msgid "Configure your email accounts here"
msgstr "使用する E-メールアカウントをここで設定します。"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:5
+msgid "Configure your network connection settings here"
+msgstr "使用するネットワーク接続をここで設定します。"
+
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:6
msgid "Evolution Mail"
msgstr "Evolution メール"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:6
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:7
msgid "Evolution Mail accounts configuration control"
-msgstr "Evolution メール・アカウント設定コントロール"
+msgstr "Evolution のメール・アカウントを設定するコントロール"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:7
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:8
msgid "Evolution Mail component"
-msgstr "Evolution メール・コンポーネント"
+msgstr "Evolution のメール・コンポーネント"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:8
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:9
msgid "Evolution Mail composer"
-msgstr "Evolution メール作成ウィンドウ"
+msgstr "Evolution のメール作成ウィンドウ"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:9
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:10
msgid "Evolution Mail composer configuration control"
-msgstr "Evolution メール作成ウィンドウの設定コントロール"
+msgstr "Evolution のメール作成ウィンドウを設定するコントロール"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:10
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:11
msgid "Evolution Mail preferences control"
-msgstr "Evolution メール設定コントロール"
+msgstr "Evolution のメールを設定するコントロール"
+
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:12
+msgid "Evolution Network configuration control"
+msgstr "Evolution のネットワーク接続を設定するコントロール"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:11 ../mail/em-folder-view.c:611
-#: ../mail/importers/elm-importer.c:329 ../mail/importers/pine-importer.c:382
-#: ../mail/mail-component.c:575 ../mail/mail-component.c:576
-#: ../mail/mail-component.c:740
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:13 ../mail/em-folder-view.c:605
+#: ../mail/importers/elm-importer.c:327 ../mail/importers/pine-importer.c:380
+#: ../mail/mail-component.c:595 ../mail/mail-component.c:596
+#: ../mail/mail-component.c:760
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:6
msgid "Mail"
msgstr "メール"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:12
-#: ../mail/em-account-prefs.c:502
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:14
+#: ../mail/em-account-prefs.c:495
msgid "Mail Accounts"
msgstr "メールのアカウント"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:13
-#: ../mail/mail-config.glade.h:102
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:15
+#: ../mail/mail-config.glade.h:103
msgid "Mail Preferences"
msgstr "メールの設定"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:14
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:16
+msgid "Network Preferences"
+msgstr "ネットワークの設定"
+
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:17
msgid "_Mail"
msgstr "メール(_M)"
-#: ../mail/em-account-editor.c:403
+#: ../mail/em-account-editor.c:387
#, c-format
msgid "%s License Agreement"
msgstr "%s のライセンス同意書"
-#: ../mail/em-account-editor.c:410
+#: ../mail/em-account-editor.c:394
#, c-format
msgid ""
"\n"
@@ -10897,115 +11555,109 @@ msgstr ""
"注意深く読んで、同意する場合は\n"
"チェック・ボックスにチェックを入れて下さい。\n"
-#: ../mail/em-account-editor.c:482 ../mail/em-filter-folder-element.c:237
+#: ../mail/em-account-editor.c:466 ../mail/em-filter-folder-element.c:237
#: ../mail/em-vfolder-rule.c:512
msgid "Select Folder"
msgstr "フォルダの選択"
-#: ../mail/em-account-editor.c:606 ../mail/em-account-editor.c:651
-#: ../mail/em-account-editor.c:718 ../widgets/misc/e-signature-combo-box.c:78
+#: ../mail/em-account-editor.c:590 ../mail/em-account-editor.c:635
+#: ../mail/em-account-editor.c:702 ../widgets/misc/e-signature-combo-box.c:97
msgid "Autogenerated"
msgstr "自動生成"
-#: ../mail/em-account-editor.c:778
+#: ../mail/em-account-editor.c:762
msgid "Ask for each message"
msgstr "送信する度に確認する"
-#: ../mail/em-account-editor.c:1822 ../mail/mail-config.glade.h:93
+#: ../mail/em-account-editor.c:1810 ../mail/mail-config.glade.h:94
msgid "Identity"
msgstr "身元情報"
-#: ../mail/em-account-editor.c:1871 ../mail/mail-config.glade.h:120
+#: ../mail/em-account-editor.c:1859 ../mail/mail-config.glade.h:124
msgid "Receiving Email"
msgstr "メールの受信"
-#: ../mail/em-account-editor.c:2053
+#: ../mail/em-account-editor.c:2131
msgid "Check for _new messages every"
msgstr "新着メールをチェックする周期(_N): "
-#: ../mail/em-account-editor.c:2061
+#: ../mail/em-account-editor.c:2139
msgid "minu_tes"
msgstr "分単位(_T)"
-#: ../mail/em-account-editor.c:2235 ../mail/mail-config.glade.h:131
+#: ../mail/em-account-editor.c:2327 ../mail/mail-config.glade.h:136
msgid "Sending Email"
msgstr "メールの送信"
-#: ../mail/em-account-editor.c:2294 ../mail/mail-config.glade.h:67
+#: ../mail/em-account-editor.c:2386 ../mail/mail-config.glade.h:67
msgid "Defaults"
msgstr "デフォルト"
#. Security settings
-#: ../mail/em-account-editor.c:2360 ../mail/mail-config.glade.h:126
-#: ../plugins/exchange-operations/exchange-account-setup.c:317
+#: ../mail/em-account-editor.c:2452 ../mail/mail-config.glade.h:131
+#: ../plugins/exchange-operations/exchange-account-setup.c:315
msgid "Security"
msgstr "セキュリティ"
#. Most sections for this is auto-generated fromt the camel config
-#: ../mail/em-account-editor.c:2397 ../mail/em-account-editor.c:2488
+#: ../mail/em-account-editor.c:2489 ../mail/em-account-editor.c:2580
msgid "Receiving Options"
-msgstr "返信オプション"
+msgstr "返信のオプション"
-#: ../mail/em-account-editor.c:2398 ../mail/em-account-editor.c:2489
+#: ../mail/em-account-editor.c:2490 ../mail/em-account-editor.c:2581
msgid "Checking for New Messages"
msgstr "新着メールの確認"
-#: ../mail/em-account-editor.c:2840 ../mail/mail-config.glade.h:33
+#: ../mail/em-account-editor.c:2932 ../mail/mail-config.glade.h:34
msgid "Account Editor"
msgstr "アカウント・エディタ"
-#: ../mail/em-account-editor.c:2840 ../mail/mail-config.glade.h:83
+#: ../mail/em-account-editor.c:2932 ../mail/mail-config.glade.h:83
msgid "Evolution Account Assistant"
msgstr "Evolution アカウント・アシスタント"
#. translators: default account indicator
-#: ../mail/em-account-prefs.c:436
+#: ../mail/em-account-prefs.c:429
msgid "[Default]"
msgstr "[デフォルト]"
-#: ../mail/em-account-prefs.c:489 ../mail/em-composer-prefs.c:947
-#: ../plugins/plugin-manager/plugin-manager.c:323
-#: ../plugins/publish-calendar/publish-calendar.c:510
-msgid "Enabled"
-msgstr "有効"
-
-#: ../mail/em-account-prefs.c:495
+#: ../mail/em-account-prefs.c:488
msgid "Account name"
msgstr "アカウント名"
-#: ../mail/em-account-prefs.c:497
+#: ../mail/em-account-prefs.c:490
msgid "Protocol"
msgstr "プロトコル"
-#: ../mail/em-composer-prefs.c:304 ../mail/em-composer-prefs.c:430
-#: ../mail/mail-config.c:1062
+#: ../mail/em-composer-prefs.c:303 ../mail/em-composer-prefs.c:438
+#: ../mail/mail-config.c:1158 ../mail/mail-signature-editor.c:478
msgid "Unnamed"
msgstr "名前なし"
-#: ../mail/em-composer-prefs.c:953
+#: ../mail/em-composer-prefs.c:992
msgid "Language(s)"
msgstr "言語"
-#: ../mail/em-composer-prefs.c:996
+#: ../mail/em-composer-prefs.c:1041
msgid "Add signature script"
msgstr "署名スクリプトの追加"
-#: ../mail/em-composer-prefs.c:1016
+#: ../mail/em-composer-prefs.c:1083
msgid "Signature(s)"
msgstr "署名"
-#: ../mail/em-composer-utils.c:898 ../mail/em-format-quote.c:399
+#: ../mail/em-composer-utils.c:1148 ../mail/em-format-quote.c:415
msgid "-------- Forwarded Message --------"
msgstr "-------- 転送するメッセージ --------"
-#: ../mail/em-composer-utils.c:1703
+#: ../mail/em-composer-utils.c:1960
msgid "an unknown sender"
msgstr "差出人が不明"
#. Note to translators: this is the attribution string used when quoting messages.
#. * each ${Variable} gets replaced with a value. To see a full list of available
#. * variables, see em-composer-utils.c:1514
-#: ../mail/em-composer-utils.c:1750
+#: ../mail/em-composer-utils.c:2007
msgid ""
"On ${AbbrevWeekdayName}, ${Year}-${Month}-${Day} at ${24Hour}:${Minute} "
"${TimeZone}, ${Sender} wrote:"
@@ -11013,11 +11665,11 @@ msgstr ""
"${Year}-${Month}-${Day} (${AbbrevWeekdayName}) の ${24Hour}:${Minute} "
"${TimeZone} に ${Sender} さんは書きました:"
-#: ../mail/em-composer-utils.c:1891
+#: ../mail/em-composer-utils.c:2150
msgid "-----Original Message-----"
msgstr "-------- オリジナルのメッセージ --------"
-#: ../mail/em-filter-editor.c:155
+#: ../mail/em-filter-editor.c:156
msgid "_Filter Rules"
msgstr "フィルタのルール(_F)"
@@ -11034,10 +11686,6 @@ msgstr "色を付ける"
msgid "Assign Score"
msgstr "スコアを付ける"
-#: ../mail/em-filter-i18n.h:5
-msgid "Attachments"
-msgstr "添付ファイル"
-
#: ../mail/em-filter-i18n.h:6
msgid "BCC"
msgstr "Bcc"
@@ -11054,10 +11702,6 @@ msgstr "Cc"
msgid "Completed On"
msgstr "完了フラグ"
-#: ../mail/em-filter-i18n.h:10
-msgid "contains"
-msgstr "が次を含む"
-
#: ../mail/em-filter-i18n.h:11
msgid "Copy to Folder"
msgstr "フォルダへコピーする"
@@ -11071,7 +11715,7 @@ msgid "Date sent"
msgstr "送信日"
#: ../mail/em-filter-i18n.h:14
-#: ../plugins/groupwise-features/share-folder.c:778
+#: ../plugins/groupwise-features/share-folder.c:767
#: ../ui/evolution-addressbook.xml.h:15 ../ui/evolution-calendar.xml.h:5
#: ../ui/evolution-mail-message.xml.h:25 ../ui/evolution-memos.xml.h:6
#: ../ui/evolution-tasks.xml.h:6
@@ -11082,10 +11726,6 @@ msgstr "削除する"
msgid "Deleted"
msgstr "削除済み"
-#: ../mail/em-filter-i18n.h:16
-msgid "does not contain"
-msgstr "が次を含まない"
-
#: ../mail/em-filter-i18n.h:17
msgid "does not end with"
msgstr "が次で終わらない"
@@ -11106,10 +11746,6 @@ msgstr "が次のようではない"
msgid "does not start with"
msgstr "が次で始まらない"
-#: ../mail/em-filter-i18n.h:22
-msgid "Do Not Exist"
-msgstr "がない"
-
#: ../mail/em-filter-i18n.h:23
msgid "Draft"
msgstr "草案"
@@ -11118,10 +11754,6 @@ msgstr "草案"
msgid "ends with"
msgstr "が次で終わる"
-#: ../mail/em-filter-i18n.h:25
-msgid "Exist"
-msgstr "がある"
-
#: ../mail/em-filter-i18n.h:26
msgid "exists"
msgstr "が存在する"
@@ -11134,14 +11766,10 @@ msgstr "表現"
msgid "Follow Up"
msgstr "フローアップ"
-#: ../mail/em-filter-i18n.h:29 ../mail/em-migrate.c:1054
+#: ../mail/em-filter-i18n.h:29 ../mail/em-migrate.c:1056
msgid "Important"
msgstr "重要"
-#: ../mail/em-filter-i18n.h:30
-msgid "is"
-msgstr "が次である"
-
#: ../mail/em-filter-i18n.h:31
msgid "is after"
msgstr "が次の日より後にある"
@@ -11154,18 +11782,6 @@ msgstr "が次の日より前にある"
msgid "is Flagged"
msgstr "にフラグが付いている"
-#: ../mail/em-filter-i18n.h:34
-msgid "is greater than"
-msgstr "が次より大きい"
-
-#: ../mail/em-filter-i18n.h:35
-msgid "is less than"
-msgstr "が次より小さい"
-
-#: ../mail/em-filter-i18n.h:36
-msgid "is not"
-msgstr "が次ではない"
-
#: ../mail/em-filter-i18n.h:37
msgid "is not Flagged"
msgstr "にフラグが付いていない"
@@ -11178,7 +11794,7 @@ msgstr "が付与されていない"
msgid "is set"
msgstr "が付与されている"
-#: ../mail/em-filter-i18n.h:40 ../mail/mail-config.glade.h:96
+#: ../mail/em-filter-i18n.h:40 ../mail/mail-config.glade.h:97
#: ../ui/evolution-mail-message.xml.h:48
msgid "Junk"
msgstr "ジャンク"
@@ -11187,7 +11803,7 @@ msgstr "ジャンク"
msgid "Junk Test"
msgstr "ジャンク・テストの結果"
-#: ../mail/em-filter-i18n.h:42 ../widgets/misc/e-expander.c:190
+#: ../mail/em-filter-i18n.h:42 ../widgets/misc/e-expander.c:188
msgid "Label"
msgstr "ラベル"
@@ -11229,7 +11845,7 @@ msgstr "サウンドを演奏する"
#. Translators: "Read" as in "has been read" (em-filter-i18n.h)
#. Translators: "Read" as in "has been read" (message-tag-followup.c)
-#: ../mail/em-filter-i18n.h:53 ../mail/message-tag-followup.c:82
+#: ../mail/em-filter-i18n.h:53 ../mail/message-tag-followup.c:62
msgid "Read"
msgstr "既読"
@@ -11301,10 +11917,9 @@ msgstr "が次で始まる"
msgid "Stop Processing"
msgstr "読み込みを停止する"
-#: ../mail/em-filter-i18n.h:72 ../mail/em-format-html.c:1702
-#: ../mail/em-format-quote.c:322 ../mail/em-format.c:891
-#: ../mail/em-mailer-prefs.c:95 ../mail/message-list.etspec.h:18
-#: ../mail/message-tag-followup.c:337
+#: ../mail/em-filter-i18n.h:72 ../mail/em-format-quote.c:341
+#: ../mail/em-format.c:889 ../mail/em-mailer-prefs.c:80
+#: ../mail/message-list.etspec.h:18 ../mail/message-tag-followup.c:311
#: ../plugins/groupwise-features/properties.glade.h:7
#: ../smime/lib/e-cert.c:1132
msgid "Subject"
@@ -11315,11 +11930,11 @@ msgid "Unset Status"
msgstr "ステータスを外す"
#. and now for the action area
-#: ../mail/em-filter-rule.c:489
+#: ../mail/em-filter-rule.c:521
msgid "Then"
msgstr "一致した時のアクション"
-#: ../mail/em-filter-rule.c:517
+#: ../mail/em-filter-rule.c:549
msgid "Add Ac_tion"
msgstr "アクションの追加(_T)"
@@ -11363,16 +11978,16 @@ msgstr "重要なメッセージ"
msgid "Messages Not Junk"
msgstr "ジャンクではないメッセージ"
-#: ../mail/em-folder-browser.c:1123
+#: ../mail/em-folder-browser.c:1170
msgid "Account Search"
msgstr "アカウントの検索"
-#: ../mail/em-folder-browser.c:1176
+#: ../mail/em-folder-browser.c:1223
msgid "All Account Search"
msgstr "全てのアカウントの検索"
#. to be on the safe side, ngettext is used here, see e.g. comment #3 at bug 272567
-#: ../mail/em-folder-properties.c:149
+#: ../mail/em-folder-properties.c:173
msgid "Unread messages:"
msgid_plural "Unread messages:"
msgstr[0] "未読のメッセージ数:"
@@ -11380,32 +11995,46 @@ msgstr[1] "未読のメッセージ数:"
#. TODO: can this be done in a loop?
#. to be on the safe side, ngettext is used here, see e.g. comment #3 at bug 272567
-#: ../mail/em-folder-properties.c:163
+#: ../mail/em-folder-properties.c:177
msgid "Total messages:"
msgid_plural "Total messages:"
msgstr[0] "メッセージの総数:"
msgstr[1] "メッセージの総数:"
-#: ../mail/em-folder-properties.c:323
+#: ../mail/em-folder-properties.c:193 ../mail/em-folder-properties.c:195
+msgid "Quota usage"
+msgstr "クォータの使用量"
+
+#. translators: standard local mailbox names
+#: ../mail/em-folder-properties.c:355 ../mail/em-folder-tree-model.c:507
+#: ../mail/em-folder-tree.c:2556 ../mail/mail-component.c:160
+#: ../mail/mail-component.c:583
+#: ../plugins/exchange-operations/exchange-delegates-user.c:76
+#: ../plugins/exchange-operations/exchange-folder.c:592
+msgid "Inbox"
+msgstr "受信箱"
+
+#: ../mail/em-folder-properties.c:386
#: ../plugins/groupwise-features/properties.glade.h:4
msgid "Folder Properties"
msgstr "フォルダのプロパティ"
-#: ../mail/em-folder-selection-button.c:124
+#: ../mail/em-folder-selection-button.c:120
msgid "<click here to select a folder>"
msgstr "<ここをクリックしてフォルダを選択して下さい>"
-#: ../mail/em-folder-selector.c:262
+#: ../mail/em-folder-selector.c:254
msgid "C_reate"
msgstr "作成(_R)"
-#: ../mail/em-folder-selector.c:266
+#: ../mail/em-folder-selector.c:258
msgid "Folder _name:"
msgstr "フォルダ名(_N):"
# "検索フォルダ"は適訳ではない
+#. load store to mail component at the end, when everything is loaded
#: ../mail/em-folder-tree-model.c:204 ../mail/em-folder-tree-model.c:206
-#: ../mail/mail-vfolder.c:935 ../mail/mail-vfolder.c:1020
+#: ../mail/mail-vfolder.c:970 ../mail/mail-vfolder.c:1027
msgid "Search Folders"
msgstr "仮想フォルダ"
@@ -11414,27 +12043,19 @@ msgstr "仮想フォルダ"
msgid "UNMATCHED"
msgstr "該当しないもの"
-#: ../mail/em-folder-tree-model.c:494 ../mail/mail-component.c:157
+#: ../mail/em-folder-tree-model.c:504 ../mail/mail-component.c:161
msgid "Drafts"
msgstr "草案"
-#. translators: standard local mailbox names
-#: ../mail/em-folder-tree-model.c:497 ../mail/em-folder-tree.c:2535
-#: ../mail/mail-component.c:156
-#: ../plugins/exchange-operations/exchange-delegates-user.c:88
-#: ../plugins/exchange-operations/exchange-folder.c:593
-msgid "Inbox"
-msgstr "受信箱"
-
-#: ../mail/em-folder-tree-model.c:500 ../mail/mail-component.c:158
+#: ../mail/em-folder-tree-model.c:510 ../mail/mail-component.c:162
msgid "Outbox"
msgstr "送信トレイ"
-#: ../mail/em-folder-tree-model.c:502 ../mail/mail-component.c:159
+#: ../mail/em-folder-tree-model.c:512 ../mail/mail-component.c:163
msgid "Sent"
msgstr "送信済み"
-#: ../mail/em-folder-tree-model.c:524 ../mail/em-folder-tree-model.c:831
+#: ../mail/em-folder-tree-model.c:534 ../mail/em-folder-tree-model.c:841
msgid "Loading..."
msgstr "読み込み中..."
@@ -11453,334 +12074,324 @@ msgstr "読み込み中..."
#. * Do not translate the "folder-display|" part. Remove it
#. * from your translation.
#.
-#: ../mail/em-folder-tree.c:372
+#: ../mail/em-folder-tree.c:380
#, c-format
-msgid "folder-display|%s (%u)"
+msgctxt "folder-display"
+msgid "%s (%u)"
msgstr "%s (%u)"
-#: ../mail/em-folder-tree.c:732
+#: ../mail/em-folder-tree.c:741
msgid "Mail Folder Tree"
msgstr "メール・フォルダのツリー"
-#: ../mail/em-folder-tree.c:891
+#: ../mail/em-folder-tree.c:900
#, c-format
msgid "Moving folder %s"
msgstr "フォルダ %s の移動中"
-#: ../mail/em-folder-tree.c:893
+#: ../mail/em-folder-tree.c:902
#, c-format
msgid "Copying folder %s"
msgstr "フォルダ %s のコピー中"
-#: ../mail/em-folder-tree.c:900 ../mail/message-list.c:1974
+#: ../mail/em-folder-tree.c:909 ../mail/message-list.c:1953
#, c-format
msgid "Moving messages into folder %s"
msgstr "フォルダ %s へメッセージの移動中"
-#: ../mail/em-folder-tree.c:902 ../mail/message-list.c:1976
+#: ../mail/em-folder-tree.c:911 ../mail/message-list.c:1955
#, c-format
msgid "Copying messages into folder %s"
msgstr "フォルダ %s へメッセージのコピー中"
-#: ../mail/em-folder-tree.c:917
+#: ../mail/em-folder-tree.c:926
msgid "Cannot drop message(s) into toplevel store"
msgstr "メッセージをトップレベルの中に移せません"
-#: ../mail/em-folder-tree.c:994 ../ui/evolution-mail-message.xml.h:105
+#: ../mail/em-folder-tree.c:1003 ../ui/evolution-mail-message.xml.h:104
msgid "_Copy to Folder"
msgstr "フォルダへコピー(_C)"
-#: ../mail/em-folder-tree.c:995 ../ui/evolution-mail-message.xml.h:118
+#: ../mail/em-folder-tree.c:1004 ../ui/evolution-mail-message.xml.h:117
msgid "_Move to Folder"
msgstr "フォルダへ移動(_M)"
-#: ../mail/em-folder-tree.c:1704 ../mail/mail-ops.c:1056
+#: ../mail/em-folder-tree.c:1718 ../mail/mail-ops.c:1056
#, c-format
msgid "Scanning folders in \"%s\""
msgstr "\"%s\" フォルダの走査中"
-#: ../mail/em-folder-tree.c:2077 ../ui/evolution-addressbook.xml.h:64
-#: ../ui/evolution-editor.xml.h:24 ../ui/evolution-mail-global.xml.h:34
-#: ../ui/evolution-mail-messagedisplay.xml.h:8
-#: ../ui/evolution-message-composer.xml.h:63 ../ui/evolution-tasks.xml.h:30
-#: ../ui/evolution.xml.h:54
-msgid "_View"
-msgstr "表示(_V)"
-
-#: ../mail/em-folder-tree.c:2078
+#: ../mail/em-folder-tree.c:2099
msgid "Open in _New Window"
msgstr "新しいウィンドウで開く(_N)"
#. FIXME: need to disable for nochildren folders
-#: ../mail/em-folder-tree.c:2083
+#: ../mail/em-folder-tree.c:2104
msgid "_New Folder..."
msgstr "新しいフォルダ(_N)"
-#: ../mail/em-folder-tree.c:2086
+#: ../mail/em-folder-tree.c:2107
msgid "_Move..."
msgstr "移動(_M)..."
-#: ../mail/em-folder-tree.c:2093 ../ui/evolution-mail-list.xml.h:39
+#: ../mail/em-folder-tree.c:2114 ../ui/evolution-mail-list.xml.h:39
msgid "_Rename..."
msgstr "名前の変更(_R)..."
-#: ../mail/em-folder-tree.c:2094
+#: ../mail/em-folder-tree.c:2115
msgid "Re_fresh"
msgstr "リフレッシュ(_F)"
-#: ../mail/em-folder-tree.c:2095
+#: ../mail/em-folder-tree.c:2116
msgid "Fl_ush Outbox"
msgstr "送信トレイのフラッシュ(_U)"
-#: ../mail/em-folder-tree.c:2101 ../mail/mail.error.xml.h:138
+#: ../mail/em-folder-tree.c:2122 ../mail/mail.error.xml.h:138
msgid "_Empty Trash"
msgstr "ゴミ箱を空にする(_E)"
-#: ../mail/em-folder-utils.c:103
+#: ../mail/em-folder-utils.c:102
#, c-format
msgid "Copying `%s' to `%s'"
msgstr "'%s' を '%s' へコピー中"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1192
-#: ../mail/em-folder-view.c:1207
-#: ../mail/importers/evolution-mbox-importer.c:86
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1186
+#: ../mail/em-folder-view.c:1201
+#: ../mail/importers/evolution-mbox-importer.c:83
msgid "Select folder"
msgstr "フォルダの選択"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1207
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1201
msgid "C_opy"
msgstr "コピー(_O)"
-#: ../mail/em-folder-utils.c:587
+#: ../mail/em-folder-utils.c:586
#: ../plugins/groupwise-features/share-folder-common.c:143
#, c-format
msgid "Creating folder `%s'"
msgstr "フォルダ '%s' の作成中"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Create folder"
msgstr "フォルダの作成"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Specify where to create the folder:"
msgstr "フォルダを作成する場所を指定して下さい:"
-#: ../mail/em-folder-view.c:1096 ../mail/mail.error.xml.h:70
+#: ../mail/em-folder-view.c:1090 ../mail/mail.error.xml.h:70
msgid "Mail Deletion Failed"
msgstr "メールの削除に失敗しました"
-#: ../mail/em-folder-view.c:1097 ../mail/mail.error.xml.h:126
+#: ../mail/em-folder-view.c:1091 ../mail/mail.error.xml.h:126
msgid "You do not have sufficient permissions to delete this mail."
-msgstr "このメールを削除するのに必要な権限がありません。"
+msgstr "このメールを削除するために必要な権限がありません。"
-#: ../mail/em-folder-view.c:1335 ../ui/evolution-mail-message.xml.h:128
+#: ../mail/em-folder-view.c:1329 ../ui/evolution-mail-message.xml.h:127
msgid "_Reply to Sender"
msgstr "差出人へ返信(_R)"
-#: ../mail/em-folder-view.c:1337 ../mail/em-popup.c:578 ../mail/em-popup.c:589
-#: ../ui/evolution-mail-message.xml.h:110
+#: ../mail/em-folder-view.c:1331 ../mail/em-popup.c:568 ../mail/em-popup.c:579
+#: ../ui/evolution-mail-message.xml.h:109
msgid "_Forward"
msgstr "転送(_F)"
#. EM_POPUP_EDIT was used here. This is changed to EM_POPUP_SELECT_ONE as Edit-as-new-messaeg need not be restricted to Sent-Items folder alone
-#: ../mail/em-folder-view.c:1341 ../ui/evolution-mail-message.xml.h:107
+#: ../mail/em-folder-view.c:1335 ../ui/evolution-mail-message.xml.h:106
msgid "_Edit as New Message..."
msgstr "新規のメッセージとして編集(_E)..."
-#: ../mail/em-folder-view.c:1343
-#: ../plugins/print-message/org-gnome-print-message.xml.h:3
-#: ../ui/evolution-addressbook.xml.h:58 ../ui/evolution-calendar.xml.h:44
-#: ../ui/evolution-mail-message.xml.h:124 ../ui/evolution-memos.xml.h:20
-#: ../ui/evolution-tasks.xml.h:29
-msgid "_Print..."
-msgstr "印刷(_P)..."
-
-#: ../mail/em-folder-view.c:1347
+#: ../mail/em-folder-view.c:1341
msgid "U_ndelete"
msgstr "削除の取り消し(_N)"
-#: ../mail/em-folder-view.c:1348
+#: ../mail/em-folder-view.c:1342
msgid "_Move to Folder..."
msgstr "フォルダへ移動(_M)..."
-#: ../mail/em-folder-view.c:1349
+#: ../mail/em-folder-view.c:1343
msgid "_Copy to Folder..."
msgstr "フォルダへコピー(_C)..."
-#: ../mail/em-folder-view.c:1352
+#: ../mail/em-folder-view.c:1346
msgid "Mar_k as Read"
msgstr "既読としてマーク(_K)"
-#: ../mail/em-folder-view.c:1353
+#: ../mail/em-folder-view.c:1347
msgid "Mark as _Unread"
msgstr "未読としてマーク(_U)"
-#: ../mail/em-folder-view.c:1354
+#: ../mail/em-folder-view.c:1348
msgid "Mark as _Important"
msgstr "重要としてマーク(_I)"
-#: ../mail/em-folder-view.c:1355
+#: ../mail/em-folder-view.c:1349
msgid "Mark as Un_important"
msgstr "重要でないとしてマーク(_I)"
-#: ../mail/em-folder-view.c:1356
+#: ../mail/em-folder-view.c:1350
msgid "Mark as _Junk"
msgstr "ジャンクとしてマーク(_J)"
-#: ../mail/em-folder-view.c:1357
+#: ../mail/em-folder-view.c:1351
msgid "Mark as _Not Junk"
msgstr "ジャンクではないとしてマーク(_N)"
-#: ../mail/em-folder-view.c:1358
+#: ../mail/em-folder-view.c:1352
msgid "Mark for Follo_w Up..."
msgstr "フォロー・アップとしてマーク(_W)"
-#: ../mail/em-folder-view.c:1360
+#: ../mail/em-folder-view.c:1354
msgid "_Label"
msgstr "ラベル(_L)"
#. Note that we don't show this here, since by default a 'None' date
#. is not permitted.
-#: ../mail/em-folder-view.c:1361 ../widgets/misc/e-dateedit.c:498
+#: ../mail/em-folder-view.c:1355 ../widgets/misc/e-dateedit.c:484
msgid "_None"
msgstr "なし(_N)"
-#: ../mail/em-folder-view.c:1364
+#: ../mail/em-folder-view.c:1358
msgid "_New Label"
msgstr "新しいラベル(_N)"
-#: ../mail/em-folder-view.c:1368
+#: ../mail/em-folder-view.c:1362
msgid "Fla_g Completed"
msgstr "完了フラグの付与(_G)"
-#: ../mail/em-folder-view.c:1369
+#: ../mail/em-folder-view.c:1363
msgid "Cl_ear Flag"
msgstr "フラグの解除(_E)"
-#: ../mail/em-folder-view.c:1372
+#: ../mail/em-folder-view.c:1366
msgid "Crea_te Rule From Message"
msgstr "メッセージからルールの作成(_T)"
#. Translators: The following strings are used while creating a new search folder, to specify what parameter the search folder would be based on.
-#: ../mail/em-folder-view.c:1374
+#: ../mail/em-folder-view.c:1368
msgid "Search Folder based on _Subject"
msgstr "件名の仮想フォルダ(_S)"
-#: ../mail/em-folder-view.c:1375
+#: ../mail/em-folder-view.c:1369
msgid "Search Folder based on Se_nder"
msgstr "差出人の仮想フォルダ(_N)"
-#: ../mail/em-folder-view.c:1376
+#: ../mail/em-folder-view.c:1370
msgid "Search Folder based on _Recipients"
msgstr "宛先の仮想フォルダ(_R)"
-#: ../mail/em-folder-view.c:1377
+#: ../mail/em-folder-view.c:1371
msgid "Search Folder based on Mailing _List"
msgstr "メーリング・リストの仮想フォルダ(_L)"
#. Translators: The following strings are used while creating a new message filter, to specify what parameter the filter would be based on.
-#: ../mail/em-folder-view.c:1382
+#: ../mail/em-folder-view.c:1376
msgid "Filter based on Sub_ject"
msgstr "件名のフィルタ(_J)"
-#: ../mail/em-folder-view.c:1383
+#: ../mail/em-folder-view.c:1377
msgid "Filter based on Sen_der"
msgstr "差出人のフィルタ(_D)"
-#: ../mail/em-folder-view.c:1384
+#: ../mail/em-folder-view.c:1378
msgid "Filter based on Re_cipients"
msgstr "宛先のフィルタ(_C)"
-#: ../mail/em-folder-view.c:1385
+#: ../mail/em-folder-view.c:1379
msgid "Filter based on _Mailing List"
msgstr "メーリング・リストのフィルタ(_M)"
#. default charset used in mail view
-#: ../mail/em-folder-view.c:2267 ../mail/em-folder-view.c:2311
+#. we changed user, thus reset the chosen calendar combo too, because
+#. other user means other calendars subscribed
+#: ../mail/em-folder-view.c:2255 ../mail/em-folder-view.c:2298
+#: ../plugins/google-account-setup/google-source.c:301
+#: ../plugins/google-account-setup/google-source.c:586
+#: ../plugins/google-account-setup/google-source.c:772
msgid "Default"
msgstr "デフォルト"
-#: ../mail/em-folder-view.c:2529
+#: ../mail/em-folder-view.c:2516
msgid "Unable to retrieve message"
msgstr "メッセージを取得できません"
-#: ../mail/em-folder-view.c:2548
+#: ../mail/em-folder-view.c:2535
msgid "Retrieving Message..."
msgstr "メッセージの取得中..."
-#: ../mail/em-folder-view.c:2807
+#: ../mail/em-folder-view.c:2794
msgid "C_all To..."
msgstr "呼び出す(_A)..."
-#: ../mail/em-folder-view.c:2810
+#: ../mail/em-folder-view.c:2797
msgid "Create _Search Folder"
msgstr "仮想フォルダの作成(_S)"
-#: ../mail/em-folder-view.c:2811
+#: ../mail/em-folder-view.c:2798
msgid "_From this Address"
msgstr "この宛先から(_F)"
-#: ../mail/em-folder-view.c:2812
+#: ../mail/em-folder-view.c:2799
msgid "_To this Address"
msgstr "この宛先へ(_T)"
-#: ../mail/em-folder-view.c:3309
+#: ../mail/em-folder-view.c:3296
#, c-format
msgid "Click to mail %s"
msgstr "クリックすると %s さんにメールします"
-#: ../mail/em-folder-view.c:3321
+#: ../mail/em-folder-view.c:3308
#, c-format
msgid "Click to call %s"
msgstr "クリックすると %s さんを呼び出します"
-#: ../mail/em-folder-view.c:3326
+#: ../mail/em-folder-view.c:3313
msgid "Click to hide/unhide addresses"
msgstr "クリックすると E-メール・アドレスの表示/非表示を切り替えます"
#. message-search popup match count string
-#: ../mail/em-format-html-display.c:515
+#: ../mail/em-format-html-display.c:470
#, c-format
msgid "Matches: %d"
msgstr "検索結果: %d個"
-#: ../mail/em-format-html-display.c:659
+#: ../mail/em-format-html-display.c:614
msgid "Fin_d:"
msgstr "検索(_D):"
#. gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, TRUE, TRUE, 5);
-#: ../mail/em-format-html-display.c:683
+#: ../mail/em-format-html-display.c:638
msgid "_Previous"
msgstr "前へ(_P)"
-#: ../mail/em-format-html-display.c:688
+#: ../mail/em-format-html-display.c:643
msgid "_Next"
msgstr "次へ(_N)"
-#: ../mail/em-format-html-display.c:693
+#: ../mail/em-format-html-display.c:648
msgid "M_atch case"
msgstr "全てに一致する(_A)"
-#: ../mail/em-format-html-display.c:992 ../mail/em-format-html.c:641
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr "署名なし"
-#: ../mail/em-format-html-display.c:992
+#: ../mail/em-format-html-display.c:947
msgid ""
"This message is not signed. There is no guarantee that this message is "
"authentic."
msgstr ""
"このメッセージは署名されていません。このメッセージの信頼性を保証できません。"
-#: ../mail/em-format-html-display.c:993 ../mail/em-format-html.c:642
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr "妥当な署名"
-#: ../mail/em-format-html-display.c:993
+#: ../mail/em-format-html-display.c:948
msgid ""
"This message is signed and is valid meaning that it is very likely that this "
"message is authentic."
@@ -11788,21 +12399,21 @@ msgstr ""
"このメッセージには署名が付与されています。このメッセージは非常に信頼できるも"
"のであることを意味します。"
-#: ../mail/em-format-html-display.c:994 ../mail/em-format-html.c:643
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr "不正な署名"
-#: ../mail/em-format-html-display.c:994
+#: ../mail/em-format-html-display.c:949
msgid ""
"The signature of this message cannot be verified, it may have been altered "
"in transit."
msgstr "転送中に改鼠されているので、このメッセージの署名を検証できません。"
-#: ../mail/em-format-html-display.c:995 ../mail/em-format-html.c:644
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr "署名は妥当ですが、差出人を検証できません"
-#: ../mail/em-format-html-display.c:995
+#: ../mail/em-format-html-display.c:950
msgid ""
"This message is signed with a valid signature, but the sender of the message "
"cannot be verified."
@@ -11810,11 +12421,11 @@ msgstr ""
"このメッセージには妥当な署名が付与されていますが、メッセージの差出人を検証で"
"きません。"
-#: ../mail/em-format-html-display.c:996 ../mail/em-format-html.c:645
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr "署名はありますが公開鍵が必要です"
-#: ../mail/em-format-html-display.c:996
+#: ../mail/em-format-html-display.c:951
msgid ""
"This message is signed with a signature, but there is no corresponding "
"public key."
@@ -11822,11 +12433,11 @@ msgstr ""
"このメッセージは署名が付与されていますが、それに対応する公開鍵が付与されてい"
"ません。"
-#: ../mail/em-format-html-display.c:1003 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "暗号化なし"
-#: ../mail/em-format-html-display.c:1003
+#: ../mail/em-format-html-display.c:958
msgid ""
"This message is not encrypted. Its content may be viewed in transit across "
"the Internet."
@@ -11834,11 +12445,11 @@ msgstr ""
"このメッセージは暗号化されていません。その内容がインターネットを介して閲覧さ"
"れる可能性があります。"
-#: ../mail/em-format-html-display.c:1004 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr "暗号化済み (レベルは不十分)"
-#: ../mail/em-format-html-display.c:1004
+#: ../mail/em-format-html-display.c:959
msgid ""
"This message is encrypted, but with a weak encryption algorithm. It would be "
"difficult, but not impossible for an outsider to view the content of this "
@@ -11848,11 +12459,11 @@ msgstr ""
"です。(現実的には困難ですが)、このメッセージの内容を部外者が閲覧する可能性が"
"あります。"
-#: ../mail/em-format-html-display.c:1005 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "暗号化済み"
-#: ../mail/em-format-html-display.c:1005
+#: ../mail/em-format-html-display.c:960
msgid ""
"This message is encrypted. It would be difficult for an outsider to view "
"the content of this message."
@@ -11860,11 +12471,11 @@ msgstr ""
"このメッセージは暗号化されています。このメッセージの内容を部外者が閲覧するこ"
"とは困難と思われます。"
-#: ../mail/em-format-html-display.c:1006 ../mail/em-format-html.c:654
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr "暗号化済み (レベルは強力)"
-#: ../mail/em-format-html-display.c:1006
+#: ../mail/em-format-html-display.c:961
msgid ""
"This message is encrypted, with a strong encryption algorithm. It would be "
"very difficult for an outsider to view the content of this message in a "
@@ -11873,303 +12484,297 @@ msgstr ""
"このメッセージは強力なアルゴリズムで暗号化されています。このメッセージの内容"
"を部外者が閲覧することは非常に困難と思われます。"
-#: ../mail/em-format-html-display.c:1107 ../smime/gui/smime-ui.glade.h:48
+#: ../mail/em-format-html-display.c:1062 ../smime/gui/smime-ui.glade.h:48
msgid "_View Certificate"
msgstr "証明書の表示(_V)"
-#: ../mail/em-format-html-display.c:1122
+#: ../mail/em-format-html-display.c:1077
msgid "This certificate is not viewable"
msgstr "この証明書は表示可能な形式ではありません"
-#: ../mail/em-format-html-display.c:1441
+#: ../mail/em-format-html-display.c:1371
msgid "Completed on %B %d, %Y, %l:%M %p"
msgstr "%Y年%B%e日 %p%l:%M に完了"
-#: ../mail/em-format-html-display.c:1449
+#: ../mail/em-format-html-display.c:1379
msgid "Overdue:"
msgstr "期限切れ:"
-#: ../mail/em-format-html-display.c:1452
+#: ../mail/em-format-html-display.c:1382
msgid "by %B %d, %Y, %l:%M %p"
msgstr "%Y年%B%e日 %p%l:%M まで"
-#: ../mail/em-format-html-display.c:1512
+#: ../mail/em-format-html-display.c:1460
msgid "_View Inline"
msgstr "インライン表示(_V)"
-#: ../mail/em-format-html-display.c:1513
+#: ../mail/em-format-html-display.c:1461
msgid "_Hide"
msgstr "隠す(_H)"
-#: ../mail/em-format-html-display.c:1514
+#: ../mail/em-format-html-display.c:1462
msgid "_Fit to Width"
msgstr "幅を合わせる(_F)"
-#: ../mail/em-format-html-display.c:1515
+#: ../mail/em-format-html-display.c:1463
msgid "Show _Original Size"
msgstr "通常のサイズ(_O)"
-#: ../mail/em-format-html-display.c:1959 ../mail/em-format-html-display.c:2572
-#: ../mail/mail-config.glade.h:45 ../mail/message-list.etspec.h:1
-msgid "Attachment"
-msgstr "ファイルを添付する"
-
-#: ../mail/em-format-html-display.c:2173
+#: ../mail/em-format-html-display.c:1983
msgid "Save attachment as"
msgstr "別名で添付ファイルの保存"
-#: ../mail/em-format-html-display.c:2177
+#: ../mail/em-format-html-display.c:1987
msgid "Select folder to save all attachments"
msgstr "添付ファイルを全て保存するフォルダの選択"
-#: ../mail/em-format-html-display.c:2228
+#: ../mail/em-format-html-display.c:2038
msgid "_Save Selected..."
msgstr "選択範囲の保存(_S)..."
#. Cant i put in the number of attachments here ?
-#: ../mail/em-format-html-display.c:2295
+#: ../mail/em-format-html-display.c:2105
#, c-format
msgid "%d at_tachment"
msgid_plural "%d at_tachments"
msgstr[0] "%d個の添付ファイル(_T)"
msgstr[1] "%d個の添付ファイル(_T)"
-#: ../mail/em-format-html-display.c:2302 ../mail/em-format-html-display.c:2380
+#: ../mail/em-format-html-display.c:2112 ../mail/em-format-html-display.c:2201
msgid "S_ave"
msgstr "保存する(_A)"
-#: ../mail/em-format-html-display.c:2313
+#: ../mail/em-format-html-display.c:2123
msgid "S_ave All"
msgstr "全て保存する(_A)"
-#: ../mail/em-format-html-display.c:2376
+#: ../mail/em-format-html-display.c:2197
msgid "No Attachment"
msgstr "添付ファイルなし"
-#: ../mail/em-format-html-display.c:2507 ../mail/em-format-html-display.c:2545
+#: ../mail/em-format-html-display.c:2338 ../mail/em-format-html-display.c:2377
msgid "View _Unformatted"
msgstr "未整形で表示する(_U)"
-#: ../mail/em-format-html-display.c:2509
+#: ../mail/em-format-html-display.c:2340
msgid "Hide _Unformatted"
msgstr "未整形を表示しない(_U)"
-#: ../mail/em-format-html-display.c:2564
+#: ../mail/em-format-html-display.c:2397
msgid "O_pen With"
msgstr "次で開く(_P)"
-#: ../mail/em-format-html-display.c:2635
+#: ../mail/em-format-html-display.c:2468
msgid ""
-"Evolution cannot render this email as it is too large to handle. You can "
+"Evolution cannot render this email as it is too large to process. You can "
"view it unformatted or with an external text editor."
msgstr ""
-"このメールは Evolution で処理できる大きさ以上なので描画できません。整形してい"
-"ない状態であれば外部のテキスト・エディタで表示できます。"
+"このメールは Evolution で処理できる大きさを越えているため表示することができま"
+"せん。整形していない状態であれば外部のテキスト・エディタを使って表示できま"
+"す。"
#: ../mail/em-format-html-print.c:156
#, c-format
msgid "Page %d of %d"
msgstr "%d / %d ページ"
-#: ../mail/em-format-html.c:495 ../mail/em-format-html.c:504
+#: ../mail/em-format-html.c:504 ../mail/em-format-html.c:513
#, c-format
msgid "Retrieving `%s'"
msgstr "'%s' の取得中"
-#: ../mail/em-format-html.c:916
+#: ../mail/em-format-html.c:925
msgid "Unknown external-body part."
msgstr "external-body の内容を確認できません"
-#: ../mail/em-format-html.c:924
+#: ../mail/em-format-html.c:933
msgid "Malformed external-body part."
msgstr "external-body の内容が壊れています"
-#: ../mail/em-format-html.c:954
+#: ../mail/em-format-html.c:963
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr "FTP サイト (%s) を指しています"
-#: ../mail/em-format-html.c:965
+#: ../mail/em-format-html.c:974
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr "ローカル・ファイル (%s) はサイト \"%s\" に正しくリンクしています"
-#: ../mail/em-format-html.c:967
+#: ../mail/em-format-html.c:976
#, c-format
msgid "Pointer to local file (%s)"
msgstr "ローカル・ファイル (%s) にリンクしています"
-#: ../mail/em-format-html.c:988
+#: ../mail/em-format-html.c:997
#, c-format
msgid "Pointer to remote data (%s)"
msgstr "リモート・データ (%s) にリンクしています"
-#: ../mail/em-format-html.c:999
+#: ../mail/em-format-html.c:1008
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr "不明な外部データ (\"%s\" タイプ) にリンクしています"
-#: ../mail/em-format-html.c:1227
+#: ../mail/em-format-html.c:1236
msgid "Formatting message"
msgstr "メッセージの整形"
-#: ../mail/em-format-html.c:1394
+#: ../mail/em-format-html.c:1410
msgid "Formatting Message..."
msgstr "メッセージの整形中..."
-#: ../mail/em-format-html.c:1546 ../mail/em-format-html.c:1610
-#: ../mail/em-format-html.c:1632 ../mail/em-format-quote.c:209
-#: ../mail/em-format.c:889 ../mail/em-mailer-prefs.c:93
+#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1627
+#: ../mail/em-format-html.c:1649 ../mail/em-format-quote.c:209
+#: ../mail/em-format.c:887 ../mail/em-mailer-prefs.c:78
msgid "Cc"
msgstr "Cc"
-#: ../mail/em-format-html.c:1547 ../mail/em-format-html.c:1616
-#: ../mail/em-format-html.c:1635 ../mail/em-format-quote.c:209
-#: ../mail/em-format.c:890 ../mail/em-mailer-prefs.c:94
+#: ../mail/em-format-html.c:1564 ../mail/em-format-html.c:1633
+#: ../mail/em-format-html.c:1652 ../mail/em-format-quote.c:209
+#: ../mail/em-format.c:888 ../mail/em-mailer-prefs.c:79
msgid "Bcc"
msgstr "Bcc"
#. pseudo-header
-#: ../mail/em-format-html.c:1706 ../mail/em-format-quote.c:331
-#: ../mail/em-mailer-prefs.c:1458
+#: ../mail/em-format-html.c:1744 ../mail/em-format-quote.c:352
+#: ../mail/em-mailer-prefs.c:1450
msgid "Mailer"
msgstr "メーラー"
#. translators: strftime format for local time equivalent in Date header display, with day
-#: ../mail/em-format-html.c:1733
+#: ../mail/em-format-html.c:1771
msgid " (%a, %R %Z)"
msgstr " (%a, %R %Z)"
#. translators: strftime format for local time equivalent in Date header display, without day
-#: ../mail/em-format-html.c:1738
+#: ../mail/em-format-html.c:1776
msgid " (%R %Z)"
msgstr " (%R %Z)"
-#: ../mail/em-format-html.c:1750 ../mail/em-format-quote.c:338
-#: ../mail/em-format.c:892 ../mail/em-mailer-prefs.c:96
-#: ../mail/message-list.etspec.h:2 ../widgets/misc/e-dateedit.c:346
-#: ../widgets/misc/e-dateedit.c:368
-msgid "Date"
-msgstr "日付"
-
-#: ../mail/em-format-html.c:1773 ../mail/em-format.c:893
-#: ../mail/em-mailer-prefs.c:97
-msgid "Newsgroups"
-msgstr "ニュースグループ"
-
#. To translators: This message suggests to the receipients that the sender of the mail is
#. different from the one listed in From field.
#.
-#: ../mail/em-format-html.c:1866
+#: ../mail/em-format-html.c:1907
#, c-format
msgid "This message was sent by <b>%s</b> on behalf of <b>%s</b>"
msgstr ""
"このメッセージは <b>%s</b> さんが <b>%s</b> さんに代わって送信したものです"
-#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
-#: ../mail/em-mailer-prefs.c:90 ../mail/message-list.etspec.h:7
-#: ../mail/message-tag-followup.c:333
+#: ../mail/em-format-quote.c:209 ../mail/em-format.c:884
+#: ../mail/em-mailer-prefs.c:75 ../mail/message-list.etspec.h:7
+#: ../mail/message-tag-followup.c:307
msgid "From"
msgstr "差出人"
-#: ../mail/em-format-quote.c:209 ../mail/em-format.c:887
-#: ../mail/em-mailer-prefs.c:91
+#: ../mail/em-format-quote.c:209 ../mail/em-format.c:885
+#: ../mail/em-mailer-prefs.c:76
msgid "Reply-To"
msgstr "返信先"
+#: ../mail/em-format.c:890 ../mail/em-mailer-prefs.c:81
+#: ../mail/message-list.etspec.h:2 ../widgets/misc/e-dateedit.c:331
+#: ../widgets/misc/e-dateedit.c:353
+msgid "Date"
+msgstr "日付"
+
+#: ../mail/em-format.c:891 ../mail/em-mailer-prefs.c:82
+msgid "Newsgroups"
+msgstr "ニュースグループ"
+
#: ../mail/em-format.c:1157
#, c-format
msgid "%s attachment"
msgstr "添付ファイル: %s"
-#: ../mail/em-format.c:1196
+#: ../mail/em-format.c:1199
msgid "Could not parse S/MIME message: Unknown error"
msgstr "S/MIME メッセージを解析できませんでした: 原因不明のエラーです"
-#: ../mail/em-format.c:1333 ../mail/em-format.c:1489
+#: ../mail/em-format.c:1336 ../mail/em-format.c:1492
msgid "Could not parse MIME message. Displaying as source."
msgstr "MIME メッセージを解析できませんでした。ソースを表示します。"
-#: ../mail/em-format.c:1341
+#: ../mail/em-format.c:1344
msgid "Unsupported encryption type for multipart/encrypted"
msgstr "サポートしていない S/MIME の暗号化の種類"
-#: ../mail/em-format.c:1351
+#: ../mail/em-format.c:1354
msgid "Could not parse PGP/MIME message"
msgstr "PGP/MIME メッセージを解析できませんでした"
-#: ../mail/em-format.c:1351
+#: ../mail/em-format.c:1354
msgid "Could not parse PGP/MIME message: Unknown error"
msgstr "PGP/MIME メッセージを解析できませんでした: 原因不明のエラーです"
-#: ../mail/em-format.c:1508
+#: ../mail/em-format.c:1511
msgid "Unsupported signature format"
msgstr "サポートしていない署名の書式"
-#: ../mail/em-format.c:1516 ../mail/em-format.c:1587
+#: ../mail/em-format.c:1519 ../mail/em-format.c:1590
msgid "Error verifying signature"
msgstr "署名を検証する際にエラーが発生しました"
-#: ../mail/em-format.c:1516 ../mail/em-format.c:1578 ../mail/em-format.c:1587
+#: ../mail/em-format.c:1519 ../mail/em-format.c:1581 ../mail/em-format.c:1590
msgid "Unknown error verifying signature"
msgstr "署名を検証する際に原因不明のエラーが発生しました"
-#: ../mail/em-format.c:1659
+#: ../mail/em-format.c:1662
msgid "Could not parse PGP message"
msgstr "PGP メッセージを作成できませんでした"
-#: ../mail/em-format.c:1659
+#: ../mail/em-format.c:1662
msgid "Could not parse PGP message: Unknown error"
msgstr "PGP メッセージを解析できませんでした: 原因不明のエラーです"
-#: ../mail/em-mailer-prefs.c:108
+#: ../mail/em-mailer-prefs.c:93
msgid "Every time"
msgstr "毎回"
-#: ../mail/em-mailer-prefs.c:109
+#: ../mail/em-mailer-prefs.c:94
msgid "Once per day"
msgstr "日に一度"
-#: ../mail/em-mailer-prefs.c:110
+#: ../mail/em-mailer-prefs.c:95
msgid "Once per week"
msgstr "週に一度"
-#: ../mail/em-mailer-prefs.c:111
+#: ../mail/em-mailer-prefs.c:96
msgid "Once per month"
msgstr "月に一度"
-#: ../mail/em-mailer-prefs.c:341
+#: ../mail/em-mailer-prefs.c:326
msgid "Add Custom Junk Header"
msgstr "独自ヘッダの追加"
-#: ../mail/em-mailer-prefs.c:345
+#: ../mail/em-mailer-prefs.c:330
msgid "Header Name:"
msgstr "対象となるヘッダ:"
-#: ../mail/em-mailer-prefs.c:346
+#: ../mail/em-mailer-prefs.c:331
msgid "Header Value Contains:"
msgstr "ジャンクと判定する値:"
-#: ../mail/em-mailer-prefs.c:451
+#: ../mail/em-mailer-prefs.c:436
msgid "Contains Value"
msgstr "ジャンクと判定する値"
-#: ../mail/em-mailer-prefs.c:473
+#: ../mail/em-mailer-prefs.c:458
msgid "Color"
msgstr "色"
-#: ../mail/em-mailer-prefs.c:476
+#: ../mail/em-mailer-prefs.c:461
msgid "Tag"
msgstr "タグ"
#. May be a better text
-#: ../mail/em-mailer-prefs.c:1086 ../mail/em-mailer-prefs.c:1140
+#: ../mail/em-mailer-prefs.c:1078 ../mail/em-mailer-prefs.c:1132
#, c-format
msgid "%s plugin is available and the binary is installed."
msgstr "\"%s\" のプラグインがインストールされて利用可能になりました。"
#. May be a better text
-#: ../mail/em-mailer-prefs.c:1094 ../mail/em-mailer-prefs.c:1149
+#: ../mail/em-mailer-prefs.c:1086 ../mail/em-mailer-prefs.c:1141
#, c-format
msgid ""
"%s plugin is not available. Please check whether the package is installed."
@@ -12177,73 +12782,85 @@ msgstr ""
"\"%s\" のプラグインは利用できません (パッケージがインストールされているか確認"
"して下さい)。"
-#: ../mail/em-mailer-prefs.c:1115
+#: ../mail/em-mailer-prefs.c:1107
msgid "No Junk plugin available"
msgstr "ジャンク対応のプラグインは利用できません。"
#. green
-#: ../mail/em-migrate.c:1057
+#: ../mail/em-migrate.c:1059
msgid "To Do"
msgstr "ToDo"
#. blue
-#: ../mail/em-migrate.c:1058
+#: ../mail/em-migrate.c:1060
msgid "Later"
msgstr "保留"
-#: ../mail/em-migrate.c:1211
-msgid ""
-"The location and hierarchy of the Evolution mailbox folders has changed "
-"since Evolution 1.x.\n"
-"\n"
-"Please be patient while Evolution migrates your folders..."
-msgstr ""
-"Evolution 受信箱フォルダの格納場所とその階層は Evolution バージョン 1.x から"
-"変更されました。\n"
-"\n"
-"Evolution がお使いのフォルダを移行している間、少々お待ち下さい..."
-
-#: ../mail/em-migrate.c:1650
+#: ../mail/em-migrate.c:1652
#, c-format
msgid "Unable to create new folder `%s': %s"
msgstr "新しいフォルダ '%s' を作成できません: %s"
-#: ../mail/em-migrate.c:1676
+#: ../mail/em-migrate.c:1678
#, c-format
msgid "Unable to copy folder `%s' to `%s': %s"
msgstr "フォルダ '%s' を '%s' へコピーできません: %s"
-#: ../mail/em-migrate.c:1861
+#: ../mail/em-migrate.c:1863
#, c-format
msgid "Unable to scan for existing mailboxes at `%s': %s"
msgstr "'%s' にある受信箱をスキャンできません: %s"
-#: ../mail/em-migrate.c:2065
+#: ../mail/em-migrate.c:1868
+msgid ""
+"The location and hierarchy of the Evolution mailbox folders has changed "
+"since Evolution 1.x.\n"
+"\n"
+"Please be patient while Evolution migrates your folders..."
+msgstr ""
+"Evolution 受信箱フォルダの格納場所とその階層は Evolution バージョン 1.x から"
+"変更されました。\n"
+"\n"
+"Evolution がお使いのフォルダを移行している間、少々お待ち下さい..."
+
+#: ../mail/em-migrate.c:2069
#, c-format
msgid "Unable to open old POP keep-on-server data `%s': %s"
msgstr "POP keep-on-server のデータ '%s' を開けません: %s"
-#: ../mail/em-migrate.c:2079
+#: ../mail/em-migrate.c:2083
#, c-format
msgid "Unable to create POP3 keep-on-server data directory `%s': %s"
msgstr "POP3 keep-on-server のデータ・フォルダ '%s' を作成できません: %s"
-#: ../mail/em-migrate.c:2108
+#: ../mail/em-migrate.c:2112
#, c-format
msgid "Unable to copy POP3 keep-on-server data `%s': %s"
msgstr "POP3 keep-on-server のデータ '%s' をコピーできません: %s"
-#: ../mail/em-migrate.c:2579 ../mail/em-migrate.c:2591
+#: ../mail/em-migrate.c:2583 ../mail/em-migrate.c:2595
#, c-format
msgid "Failed to create local mail storage `%s': %s"
msgstr "ローカルのメール・フォルダ '%s' の作成に失敗しました: %s"
-#: ../mail/em-migrate.c:2827
+#: ../mail/em-migrate.c:2898
+msgid ""
+"The summary format of the Evolution mailbox folders has been moved to sqlite "
+"since Evolution 2.24.\n"
+"\n"
+"Please be patient while Evolution migrates your folders..."
+msgstr ""
+"Evolution のバージョン 2.24 からメール・フォルダが持つサマリが sqlite 形式に"
+"変更されました。\n"
+"\n"
+"Evolution がお使いのフォルダを変換している間、少々お待ち下さい..."
+
+#: ../mail/em-migrate.c:2963
#, c-format
msgid "Unable to create local mail folders at `%s': %s"
msgstr "'%s' にあるローカルのメール・フォルダを作成できません: %s"
-#: ../mail/em-migrate.c:2846
+#: ../mail/em-migrate.c:2982
msgid ""
"Unable to read settings from previous Evolution install, `evolution/config."
"xmldb' does not exist or is corrupt."
@@ -12251,62 +12868,65 @@ msgstr ""
"Evolution の以前の設定を読み込むことができません。'${HOME}/evolution/config."
"xmldb' が存在しないかデータが壊れています。"
-#: ../mail/em-popup.c:574 ../mail/em-popup.c:585
+#: ../mail/em-popup.c:564 ../mail/em-popup.c:575
msgid "_Reply to sender"
msgstr "差出人へ返信(_R)"
-#: ../mail/em-popup.c:575 ../mail/em-popup.c:586
+#: ../mail/em-popup.c:565 ../mail/em-popup.c:576
#: ../ui/evolution-mail-message.xml.h:83
msgid "Reply to _List"
msgstr "メーリング・リストへ返信(_L)"
-#: ../mail/em-popup.c:639
+#. make it first item
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "アドレス帳に追加(_A)"
-#: ../mail/em-subscribe-editor.c:595
+#: ../mail/em-subscribe-editor.c:583
msgid "This store does not support subscriptions, or they are not enabled."
msgstr "この格納場所は購読をサポートしていないか、有効になっていません。"
-#: ../mail/em-subscribe-editor.c:628
+#: ../mail/em-subscribe-editor.c:616
msgid "Subscribed"
msgstr "購読済み"
-#: ../mail/em-subscribe-editor.c:632
+#: ../mail/em-subscribe-editor.c:620
msgid "Folder"
msgstr "フォルダ"
#. FIXME: This is just to get the shadow, is there a better way?
-#: ../mail/em-subscribe-editor.c:834
+#: ../mail/em-subscribe-editor.c:822
msgid "Please select a server."
msgstr "サーバを一つ選択して下さい。"
-#: ../mail/em-subscribe-editor.c:855
+#: ../mail/em-subscribe-editor.c:843
msgid "No server has been selected"
msgstr "サーバが指定されていません"
-#: ../mail/em-utils.c:121
+#. Check buttons
+#: ../mail/em-utils.c:120
+#: ../plugins/attachment-reminder/attachment-reminder.c:127
msgid "_Do not show this message again."
msgstr "次回からこのメッセージを表示しない(_D)"
-#: ../mail/em-utils.c:317
+#: ../mail/em-utils.c:316
msgid "Message Filters"
msgstr "フィルタの定義"
-#: ../mail/em-utils.c:370
+#: ../mail/em-utils.c:369
msgid "message"
msgstr "メッセージ"
-#: ../mail/em-utils.c:645
+#: ../mail/em-utils.c:653
msgid "Save Message..."
msgstr "メッセージの保存..."
-#: ../mail/em-utils.c:694
+#: ../mail/em-utils.c:703
msgid "Add address"
msgstr "住所の追加"
#. Drop filename for messages from a mailbox
-#: ../mail/em-utils.c:1178
+#: ../mail/em-utils.c:1224
#, c-format
msgid "Messages from %s"
msgstr "%s さんからのメッセージ"
@@ -12320,54 +12940,66 @@ msgid "Search Folder source"
msgstr "仮想フォルダのソース"
#: ../mail/evolution-mail.schemas.in.h:1
+msgid "\"Send and Receive Mail\" window height"
+msgstr "メールの送/受信ウィンドウの高さ"
+
+#: ../mail/evolution-mail.schemas.in.h:2
+msgid "\"Send and Receive Mail\" window maximize state"
+msgstr "メールの送/受信ウィンドウを最大化しているかどうか"
+
+#: ../mail/evolution-mail.schemas.in.h:3
+msgid "\"Send and Receive Mail\" window width"
+msgstr "メールの送/受信ウィンドウの幅"
+
+#: ../mail/evolution-mail.schemas.in.h:4
msgid "Allows evolution to display text part of limited size"
msgstr "大きさを制限したメールの一部を表示できるようにするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:2
+#: ../mail/evolution-mail.schemas.in.h:5
msgid "Always request read receipt"
msgstr "常に開封通知を要求するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:3
+#: ../mail/evolution-mail.schemas.in.h:6
msgid "Amount of time in seconds the error should be shown on the status bar."
msgstr "ステータス・バーにエラーを表示しておく時間 (秒単位)"
-#: ../mail/evolution-mail.schemas.in.h:4
+#: ../mail/evolution-mail.schemas.in.h:7
msgid "Automatic emoticon recognition"
msgstr "スマイリーを自動的に識別するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:5
+#: ../mail/evolution-mail.schemas.in.h:8
msgid "Automatic link recognition"
msgstr "リンクを自動的に識別するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:6
+#: ../mail/evolution-mail.schemas.in.h:9
msgid "Check incoming mail being junk"
msgstr "受信メールがジャンクかどうかをチェックするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:7
+#: ../mail/evolution-mail.schemas.in.h:10
msgid "Citation highlight color"
msgstr "引用を強調表示する時の色"
-#: ../mail/evolution-mail.schemas.in.h:8
+#: ../mail/evolution-mail.schemas.in.h:11
msgid "Citation highlight color."
msgstr "引用を強調表示する時の色です。"
-#: ../mail/evolution-mail.schemas.in.h:9
+#: ../mail/evolution-mail.schemas.in.h:12
msgid "Composer Window default height"
msgstr "メッセージ作成ウィンドウの高さ (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:10
+#: ../mail/evolution-mail.schemas.in.h:13
msgid "Composer Window default width"
msgstr "メッセージ作成ウィンドウの幅 (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:11
+#: ../mail/evolution-mail.schemas.in.h:14
msgid "Composer load/attach directory"
msgstr "メール作成ウィンドウが使用するフォルダ"
-#: ../mail/evolution-mail.schemas.in.h:12
+#: ../mail/evolution-mail.schemas.in.h:15
msgid "Compress display of addresses in TO/CC/BCC"
msgstr "差出人/Cc/Bcc で E-メール・アドレスの表示を隠すかどうか"
-#: ../mail/evolution-mail.schemas.in.h:13
+#: ../mail/evolution-mail.schemas.in.h:16
msgid ""
"Compress display of addresses in TO/CC/BCC to the number specified in "
"address_count."
@@ -12375,63 +13007,91 @@ msgstr ""
"差出人/Cc/Bcc の E-メール・アドレスが指定した数だけ存在している場合、折りたた"
"んで表示しないようにします。"
-#: ../mail/evolution-mail.schemas.in.h:14
+#: ../mail/evolution-mail.schemas.in.h:17
+msgid ""
+"Controls how frequently local changes are synchronized with the remote mail "
+"server. The interval must be at least 30 seconds."
+msgstr ""
+"どれぐらいの間隔でローカルでの変更点をリモートのメール・サーバと同期するかを"
+"指定します。この値は 30秒以上にして下さい。"
+
+#: ../mail/evolution-mail.schemas.in.h:18
+msgid "Custom headers to use while checking for junk."
+msgstr "ジャンクかどうかをチェックする際に使用する独自のヘッダ"
+
+#: ../mail/evolution-mail.schemas.in.h:19
+msgid ""
+"Custom headers to use while checking for junk. The list elements are string "
+"in the format \"headername=value\"."
+msgstr ""
+"ジャンクかどうか判定する際に使用する独自のヘッダの項目からなるリストです。リ"
+"ストの要素は \"ヘッダ名=値\" という形式の文字列です。"
+
+#: ../mail/evolution-mail.schemas.in.h:20
msgid "Default charset in which to compose messages"
msgstr "メッセージ作成時のデフォルトの文字集合"
-#: ../mail/evolution-mail.schemas.in.h:15
+#: ../mail/evolution-mail.schemas.in.h:21
msgid "Default charset in which to compose messages."
msgstr "メッセージを作成する際に使用するデフォルトの文字集合です。"
-#: ../mail/evolution-mail.schemas.in.h:16
+#: ../mail/evolution-mail.schemas.in.h:22
msgid "Default charset in which to display messages"
msgstr "メッセージ表示時のデフォルトの文字集合"
-#: ../mail/evolution-mail.schemas.in.h:17
+#: ../mail/evolution-mail.schemas.in.h:23
msgid "Default charset in which to display messages."
msgstr "メッセージを表示する際に使用するデフォルトの文字集合です。"
-#: ../mail/evolution-mail.schemas.in.h:18
+#: ../mail/evolution-mail.schemas.in.h:24
msgid "Default forward style"
msgstr "デフォルトの転送スタイル"
-#: ../mail/evolution-mail.schemas.in.h:19
+#: ../mail/evolution-mail.schemas.in.h:25
msgid "Default height of the Composer Window."
msgstr "メッセージ作成ウィンドウのデフォルトの高さです。"
-#: ../mail/evolution-mail.schemas.in.h:20
+#: ../mail/evolution-mail.schemas.in.h:26
msgid "Default height of the message window."
msgstr "メッセージ・ウィンドウのデフォルトの高さです。"
-#: ../mail/evolution-mail.schemas.in.h:21
+#: ../mail/evolution-mail.schemas.in.h:27
msgid "Default height of the subscribe dialog."
msgstr "購読ダイアログのデフォルトの高さです。"
-#: ../mail/evolution-mail.schemas.in.h:22
+#: ../mail/evolution-mail.schemas.in.h:28
msgid "Default reply style"
msgstr "デフォルトの返信スタイル"
-#: ../mail/evolution-mail.schemas.in.h:23
+#: ../mail/evolution-mail.schemas.in.h:29
msgid "Default value for thread expand state"
msgstr "デフォルトでスレッドを展開した状態にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:24
+#: ../mail/evolution-mail.schemas.in.h:30
msgid "Default width of the Composer Window."
msgstr "メッセージ作成ウィンドウのデフォルトの幅です。"
-#: ../mail/evolution-mail.schemas.in.h:25
+#: ../mail/evolution-mail.schemas.in.h:31
msgid "Default width of the message window."
msgstr "メッセージ・ウィンドウのデフォルトの幅です。"
-#: ../mail/evolution-mail.schemas.in.h:26
+#: ../mail/evolution-mail.schemas.in.h:32
msgid "Default width of the subscribe dialog."
msgstr "購読ダイアログのデフォルトの幅です。"
-#: ../mail/evolution-mail.schemas.in.h:27
+#: ../mail/evolution-mail.schemas.in.h:33
+msgid ""
+"Determines whether to look up addresses for junk filtering in local "
+"addressbook only"
+msgstr ""
+"ジャンク・フィルタリングする際にローカルのアドレス帳のみ E-メール・アドレスの"
+"検索を行うかどうかです。"
+
+#: ../mail/evolution-mail.schemas.in.h:34
msgid "Determines whether to lookup in addressbook for sender email"
msgstr "差出人をアドレス帳から検索するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:28
+#: ../mail/evolution-mail.schemas.in.h:35
msgid ""
"Determines whether to loopup the sender email in addressbook. If found, it "
"shouldn't be a spam. It looks up in the books marked for autocompletion. It "
@@ -12443,11 +13103,11 @@ msgstr ""
"レス帳が対象になります。そこで、リモートにあるアドレス帳を指定した場合 (例え"
"ば LDAP 上にある場合)、検索処理が遅くなることがあります。"
-#: ../mail/evolution-mail.schemas.in.h:29
+#: ../mail/evolution-mail.schemas.in.h:36
msgid "Determines whether to use custom headers to check for junk"
msgstr "独自のヘッダを利用してジャンクをチェックするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:30
+#: ../mail/evolution-mail.schemas.in.h:37
msgid ""
"Determines whether to use custom headers to check for junk. If this option "
"is enabled and the headers are mentioned, it will be improve the junk "
@@ -12457,65 +13117,69 @@ msgstr ""
"ションを TRUE にし custom_header を指定した場合、ジャンク・メールをチェックす"
"るスピードが改善されます。"
-#: ../mail/evolution-mail.schemas.in.h:31
+#: ../mail/evolution-mail.schemas.in.h:38
msgid ""
"Determines whether to use the same fonts for both \"From\" and \"Subject\" "
"lines in the \"Messages\" column in vertical view."
msgstr ""
"縦型の表示の際に \"差出人\" と \"件名\" に同じフォントを使用するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:32
+#: ../mail/evolution-mail.schemas.in.h:39
msgid "Directory for loading/attaching files to composer."
msgstr "メール作成ウィンドウがファイルの読み込みや添付で使用するフォルダです。"
-#: ../mail/evolution-mail.schemas.in.h:33
+#: ../mail/evolution-mail.schemas.in.h:40
msgid "Directory for saving mail component files."
msgstr "メールに添付されたファイルを保存する先のフォルダです。"
-#: ../mail/evolution-mail.schemas.in.h:34
+#: ../mail/evolution-mail.schemas.in.h:41
+msgid "Disable or enable ellipsizing of folder names in folder tree"
+msgstr "フォルダ・ツリーでフォルダ名の省略を可能にするかどうか"
+
+#: ../mail/evolution-mail.schemas.in.h:42
msgid "Draw spelling error indicators on words as you type."
msgstr "必要であれば入力した単語の上にスペル間違いを表すマークを描画します。"
-#: ../mail/evolution-mail.schemas.in.h:35
+#: ../mail/evolution-mail.schemas.in.h:43
msgid "Empty Junk folders on exit"
msgstr "終了時にジャンク・フォルダを空にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:36
+#: ../mail/evolution-mail.schemas.in.h:44
msgid "Empty Trash folders on exit"
msgstr "終了時にゴミ箱フォルダを空にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:37
+#: ../mail/evolution-mail.schemas.in.h:45
msgid "Empty all Junk folders when exiting Evolution."
msgstr "Evolution を終了する時にジャンク・フォルダを空にするかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:38
+#: ../mail/evolution-mail.schemas.in.h:46
msgid "Empty all Trash folders when exiting Evolution."
msgstr "Evolution を終了する時にゴミ箱フォルダを空にするかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:39
+#: ../mail/evolution-mail.schemas.in.h:47
msgid "Enable caret mode, so that you can see a cursor when reading mail."
msgstr ""
"キャレット・モードを有効にするかどうかです (有効にするとメールを読む際にカー"
"ソルが表示されます)。"
-#: ../mail/evolution-mail.schemas.in.h:40
+#: ../mail/evolution-mail.schemas.in.h:48
msgid "Enable or disable magic space bar"
msgstr "マジック・スペース・バーを有効にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:41
+#: ../mail/evolution-mail.schemas.in.h:49
msgid "Enable or disable type ahead search feature"
msgstr "インクリメンタル検索の機能を有効にするかどうか"
# "検索フォルダ"は適訳ではない
-#: ../mail/evolution-mail.schemas.in.h:42
+#: ../mail/evolution-mail.schemas.in.h:50
msgid "Enable search folders"
msgstr "仮想フォルダを有効にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:43
+#: ../mail/evolution-mail.schemas.in.h:51
msgid "Enable search folders on startup."
msgstr "起動時に検索用の仮想フォルダを有効にするかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:44
+#: ../mail/evolution-mail.schemas.in.h:52
msgid ""
"Enable side bar search feature so that you can start interactive searching "
"by typing in the text. Use is that you can easily find a folder in that side "
@@ -12526,7 +13190,7 @@ msgstr ""
"できます。サイドバーでフォルダ名を入力するだけで検索でき、さらに自動的に該当"
"するフォルダへ移動できます。"
-#: ../mail/evolution-mail.schemas.in.h:45
+#: ../mail/evolution-mail.schemas.in.h:53
msgid ""
"Enable this to use Space bar key to scroll in message preview, message list "
"and folders."
@@ -12534,27 +13198,27 @@ msgstr ""
"これを有効にすると、スペース・バーのキーを使ってメッセージのプレビューやメッ"
"セージの一覧、メッセージのフォルダをスクロールできるようになります。"
-#: ../mail/evolution-mail.schemas.in.h:46
+#: ../mail/evolution-mail.schemas.in.h:54
msgid "Enable to render message text part of limited size."
msgstr "大きさが制限されたメッセージの一部分を表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:47
+#: ../mail/evolution-mail.schemas.in.h:55
msgid "Enable/disable caret mode"
msgstr "キャレット・モードにするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:48
+#: ../mail/evolution-mail.schemas.in.h:56
msgid "Height of the message-list pane"
-msgstr "メッセージ一覧ビュー・ウィンドウの高さ"
+msgstr "メッセージ一覧ビューのウィンドウの高さ"
-#: ../mail/evolution-mail.schemas.in.h:49
+#: ../mail/evolution-mail.schemas.in.h:57
msgid "Height of the message-list pane."
-msgstr "メッセージ一覧ビュー・ウィンドウの高さです。"
+msgstr "メッセージ一覧ビューのウィンドウの高さです。"
-#: ../mail/evolution-mail.schemas.in.h:50
+#: ../mail/evolution-mail.schemas.in.h:58
msgid "Hides the per-folder preview and removes the selection"
msgstr "フォルダ毎のプレビューを隠し選択を解除するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:51
+#: ../mail/evolution-mail.schemas.in.h:59
msgid ""
"If a user tries to open 10 or more messages at one time, ask the user if "
"they really want to do it."
@@ -12562,7 +13226,7 @@ msgstr ""
"一度に 10通以上のメッセージを開こうとした時に確認ダイアログを表示するかどうか"
"です。"
-#: ../mail/evolution-mail.schemas.in.h:52
+#: ../mail/evolution-mail.schemas.in.h:60
msgid ""
"If the \"Preview\" pane is on, then show it side-by-side rather than "
"vertically."
@@ -12570,7 +13234,7 @@ msgstr ""
"\"メッセージのプレビュー\" ウィンドウを有効にしている場合、縦方向ではなく横方"
"向にペインを並べて表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:53
+#: ../mail/evolution-mail.schemas.in.h:61
msgid ""
"If there isn't a builtin viewer for a particular mime-type inside Evolution, "
"any mime-types appearing in this list which map to a bonobo-component viewer "
@@ -12580,11 +13244,40 @@ msgstr ""
"中に表示される MIME 型は、その内容を表示する際に使用される GNOME の MIME 型"
"データベースを表示する bonobo コンポーネント・ビューアにマップされます。"
-#: ../mail/evolution-mail.schemas.in.h:54
+#: ../mail/evolution-mail.schemas.in.h:62
+msgid ""
+"Initial height of the \"Send and Receive Mail\" window. The value updates as "
+"the user resizes the window vertically."
+msgstr ""
+"メールの送/受信ウィンドウの高さです。この値はユーザがウィンドウの高さを変更す"
+"る度に更新されます。"
+
+#: ../mail/evolution-mail.schemas.in.h:63
+msgid ""
+"Initial maximize state of the \"Send and Receive Mail\" window. The value "
+"updates when the user maximizes or unmaximizes the window. Note, this "
+"particular value is not used by Evolution since the \"Send and Receive Mail"
+"\" window cannot be maximized. This key exists only as an implementation "
+"detail."
+msgstr ""
+"メールの送/受信ウィンドウを最大化しているかどうかです。この値はユーザがウィン"
+"ドウを最大化したり最大化を解除した時に更新されます。注意: 実際には Evolution "
+"はこの値を利用していません。なぜならば、メールの送/受信ウィンドウは最大化でき"
+"ないようになっているからです。このキーは実装の詳細としてのみ残されています。"
+
+#: ../mail/evolution-mail.schemas.in.h:64
+msgid ""
+"Initial width of the \"Send and Receive Mail\" window. The value updates as "
+"the user resizes the window horizontally."
+msgstr ""
+"メールの送/受信ウィンドウの幅です。この値はユーザがウィンドウの幅を変更する度"
+"に更新されます。"
+
+#: ../mail/evolution-mail.schemas.in.h:65
msgid "It disables/enables the prompt while marking multiple messages."
msgstr "複数のメッセージにマークを付与する際に毎回確認するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:55
+#: ../mail/evolution-mail.schemas.in.h:66
msgid ""
"It disables/enables the repeated prompts to ask if offline sync is required "
"before going into offline mode."
@@ -12592,7 +13285,7 @@ msgstr ""
"オフライン時の同期が必要になった際に繰り返し確認する機能を無効にするかどうか"
"です。"
-#: ../mail/evolution-mail.schemas.in.h:56
+#: ../mail/evolution-mail.schemas.in.h:67
msgid ""
"It disables/enables the repeated prompts to warn that deleting messages from "
"a search folder permanently deletes the message, not simply removing it from "
@@ -12601,31 +13294,31 @@ msgstr ""
"検索フォルダからメッセージを削除する際に、単に削除するのではなく警告ダイアロ"
"グを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:57
+#: ../mail/evolution-mail.schemas.in.h:68
msgid "Last time empty junk was run"
msgstr "最後にジャンク・フォルダを空にした時間"
-#: ../mail/evolution-mail.schemas.in.h:58
+#: ../mail/evolution-mail.schemas.in.h:69
msgid "Last time empty trash was run"
msgstr "最後にゴミ箱を空にした時間"
-#: ../mail/evolution-mail.schemas.in.h:59
+#: ../mail/evolution-mail.schemas.in.h:70
msgid "Level beyond which the message should be logged."
msgstr "ログを記録すべきメッセージ・レベルの最小値"
-#: ../mail/evolution-mail.schemas.in.h:60
+#: ../mail/evolution-mail.schemas.in.h:71
msgid "List of Labels and their associated colors"
msgstr "ラベルと対応する色のリスト"
-#: ../mail/evolution-mail.schemas.in.h:61
+#: ../mail/evolution-mail.schemas.in.h:72
msgid "List of accepted licenses"
msgstr "受諾したライセンスのリスト"
-#: ../mail/evolution-mail.schemas.in.h:62
+#: ../mail/evolution-mail.schemas.in.h:73
msgid "List of accounts"
msgstr "アカウントのリスト"
-#: ../mail/evolution-mail.schemas.in.h:63
+#: ../mail/evolution-mail.schemas.in.h:74
msgid ""
"List of accounts known to the mail component of Evolution. The list contains "
"strings naming subdirectories relative to /apps/evolution/mail/accounts."
@@ -12634,11 +13327,15 @@ msgstr ""
"は /apps/evolution/mail/accounts からのサブ・フォルダ (相対パス) 名を表す文字"
"列が含まれます。"
-#: ../mail/evolution-mail.schemas.in.h:64
+#: ../mail/evolution-mail.schemas.in.h:75
msgid "List of custom headers and whether they are enabled."
msgstr "独自のヘッダとそれらを有効にするかどうかのリスト"
-#: ../mail/evolution-mail.schemas.in.h:65
+#: ../mail/evolution-mail.schemas.in.h:76
+msgid "List of dictionary language codes used for spell checking."
+msgstr "スペル・チェックで使用する辞書の言語コードを要素とするリストです。"
+
+#: ../mail/evolution-mail.schemas.in.h:77
msgid ""
"List of labels known to the mail component of Evolution. The list contains "
"strings containing name:color where color uses the HTML hex encoding."
@@ -12646,274 +13343,275 @@ msgstr ""
"Evolution メール作成ウィンドウで利用するラベルのリストです。このリストには "
"name:color という形式で HTML で使用する色 (16形式) が含まれています。"
-#: ../mail/evolution-mail.schemas.in.h:66
+#: ../mail/evolution-mail.schemas.in.h:78
msgid "List of mime types to check for bonobo component viewers"
msgstr "bonobo コンポーネント・ビューアでチェックする MIME 型のリスト"
-#: ../mail/evolution-mail.schemas.in.h:67
+#: ../mail/evolution-mail.schemas.in.h:79
msgid "List of protocol names whose license has been accepted."
msgstr "ライセンスが承認されたプロトコル名の並びです。"
-#: ../mail/evolution-mail.schemas.in.h:68
+#: ../mail/evolution-mail.schemas.in.h:80
msgid "Load images for HTML messages over http"
msgstr "HTTP を介して受信したメッセージの画像を読み込むかどうか"
-#: ../mail/evolution-mail.schemas.in.h:69
+#: ../mail/evolution-mail.schemas.in.h:81
msgid ""
-"Load images for HTML messages over http(s). Possible values are: 0 - Never "
-"load images off the net. 1 - Load images in messages from contacts. 2 - "
-"Always load images off the net."
+"Load images for HTML messages over http(s). Possible values are: \"0\" - "
+"Never load images off the net. \"1\" - Load images in messages from "
+"contacts. \"2\" - Always load images off the net."
msgstr ""
"HTTP(S) を介して受信した HTML メッセージの画像を読み込むかどうかを指定しま"
-"す。指定可能な値: 0: 画像を読み込まない、1: 差出人がアドレス帳に登録されてい"
-"る場合は読み込む、2: 常に画像を読み込む"
+"す。指定可能な値: \"0\" (画像を読み込まない)、\"1\" (差出人がアドレス帳に登録"
+"されている場合は読み込む)、\"2\" (常に画像を読み込む)"
-#: ../mail/evolution-mail.schemas.in.h:70
+#: ../mail/evolution-mail.schemas.in.h:82
msgid "Log filter actions"
msgstr "ログをフィルタリングするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:71
+#: ../mail/evolution-mail.schemas.in.h:83
msgid "Log filter actions to the specified log file."
msgstr ""
"指定したログ・ファイルに対してログのフィルタリング処理を行うかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:72
+#: ../mail/evolution-mail.schemas.in.h:84
msgid "Logfile to log filter actions"
msgstr "フィルタリングするログ・ファイル"
-#: ../mail/evolution-mail.schemas.in.h:73
+#: ../mail/evolution-mail.schemas.in.h:85
msgid "Logfile to log filter actions."
msgstr "フィルタリング処理の対象となるログファイルです。"
-#: ../mail/evolution-mail.schemas.in.h:74
+#: ../mail/evolution-mail.schemas.in.h:86
msgid "Mark as Seen after specified timeout"
msgstr "指定した時間が経過したら既読マークを付与するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:75
+#: ../mail/evolution-mail.schemas.in.h:87
msgid "Mark as Seen after specified timeout."
msgstr "指定した時間が経過したら既読マークを付与するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:76
+#: ../mail/evolution-mail.schemas.in.h:88
msgid "Mark citations in the message \"Preview\""
msgstr "メッセージの \"プレビュー\" で引用符を表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:77
+#: ../mail/evolution-mail.schemas.in.h:89
msgid "Mark citations in the message \"Preview\"."
msgstr "メッセージの \"プレビュー\" で引用符を使用するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:78
+#: ../mail/evolution-mail.schemas.in.h:90
msgid "Message Window default height"
msgstr "メッセージ・ウィンドウの高さ (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:79
+#: ../mail/evolution-mail.schemas.in.h:91
msgid "Message Window default width"
msgstr "メッセージ・ウィンドウの幅 (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:80
+#: ../mail/evolution-mail.schemas.in.h:92
msgid "Message-display style (\"normal\", \"full headers\", \"source\")"
msgstr "メッセージの表示スタイル (\"normal\"、\"full headers\"、\"source\")"
-#: ../mail/evolution-mail.schemas.in.h:81
+#: ../mail/evolution-mail.schemas.in.h:93
msgid "Minimum days between emptying the junk on exit"
msgstr "終了時にジャンクを空にするまでの最短の日数"
-#: ../mail/evolution-mail.schemas.in.h:82
+#: ../mail/evolution-mail.schemas.in.h:94
msgid "Minimum days between emptying the trash on exit"
msgstr "終了時にゴミ箱を空にするまでの最短の日数"
-#: ../mail/evolution-mail.schemas.in.h:83
+#: ../mail/evolution-mail.schemas.in.h:95
msgid "Minimum time between emptying the junk on exit, in days."
msgstr "終了時にジャンク・フォルダを空にするまでの最短の日数です。"
-#: ../mail/evolution-mail.schemas.in.h:84
+#: ../mail/evolution-mail.schemas.in.h:96
msgid "Minimum time between emptying the trash on exit, in days."
msgstr "終了時にゴミ箱のフォルダを空にするまでの最短の日数です。"
-#: ../mail/evolution-mail.schemas.in.h:85
+#: ../mail/evolution-mail.schemas.in.h:97
msgid "Number of addresses to display in TO/CC/BCC"
msgstr "差出人/Cc/Bcc で表示を制限する E-メール・アドレスの個数"
-#: ../mail/evolution-mail.schemas.in.h:86
+#: ../mail/evolution-mail.schemas.in.h:98
msgid "Prompt on empty subject"
msgstr "件名が空の場合は警告するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:87
+#: ../mail/evolution-mail.schemas.in.h:99
msgid "Prompt the user when he or she tries to expunge a folder."
msgstr "フォルダを完全に抹消する前にユーザに警告するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:88
+#: ../mail/evolution-mail.schemas.in.h:100
msgid ""
"Prompt the user when he or she tries to send a message without a Subject."
msgstr "送信するメールの件名が空の場合は送信前に警告するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:89
+#: ../mail/evolution-mail.schemas.in.h:101
msgid "Prompt to check if the user wants to go offline immediately"
msgstr "オフラインに変更する際に確認ダイアログを表示しないかどうか"
-#: ../mail/evolution-mail.schemas.in.h:90
+#: ../mail/evolution-mail.schemas.in.h:102
msgid "Prompt when deleting messages in search folder"
msgstr "検索フォルダでメッセージを削除する際に確認するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:91
+#: ../mail/evolution-mail.schemas.in.h:103
msgid "Prompt when user expunges"
msgstr "完全に削除する場合は警告するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:92
+#: ../mail/evolution-mail.schemas.in.h:104
msgid "Prompt when user only fills Bcc"
msgstr "ユーザが Bcc しか入力なかったら警告するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:93
+#: ../mail/evolution-mail.schemas.in.h:105
msgid "Prompt when user tries to open 10 or more messages at once"
msgstr "10 通以上のメッセージを一度に開こうとしたら確認するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:94
+#: ../mail/evolution-mail.schemas.in.h:106
msgid ""
"Prompt when user tries to send HTML mail to recipients that may not want to "
"receive HTML mail."
msgstr ""
"HTML 形式を希望しない連絡先へ HTML メールを送信する前に確認するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:95
+#: ../mail/evolution-mail.schemas.in.h:107
msgid "Prompt when user tries to send a message with no To or Cc recipients."
msgstr "ユーザが To/Cc 先を付けずに送信しようとする時に確認するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:96
+#: ../mail/evolution-mail.schemas.in.h:108
msgid "Prompt when user tries to send unwanted HTML"
msgstr "HTML をユーザが送信する前に警告するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:97
+#: ../mail/evolution-mail.schemas.in.h:109
msgid "Prompt while marking multiple messages"
msgstr "複数のメッセージにマークする場合は確認するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:98
+#: ../mail/evolution-mail.schemas.in.h:110
msgid "Recognize emoticons in text and replace them with images."
msgstr ""
"文字列の中に含まれているスマイリーの情報を識別して画像に置き換えるかどうかで"
"す。"
-#: ../mail/evolution-mail.schemas.in.h:99
+#: ../mail/evolution-mail.schemas.in.h:111
msgid "Recognize links in text and replace them."
msgstr "文字列の中に含まれているリンク情報を識別して URI タグで置き換えます。"
-#: ../mail/evolution-mail.schemas.in.h:100
+#: ../mail/evolution-mail.schemas.in.h:112
msgid "Run junk test on incoming mail."
msgstr "メールを受信したらジャンクのテストを実施するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:101
+#: ../mail/evolution-mail.schemas.in.h:113
msgid "Save directory"
msgstr "保存先のフォルダ"
-#: ../mail/evolution-mail.schemas.in.h:102
+#: ../mail/evolution-mail.schemas.in.h:114
msgid "Search for the sender photo in local addressbooks"
msgstr "ローカルのアドレス帳から写真を送信した人を検索するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:103
+#: ../mail/evolution-mail.schemas.in.h:115
msgid "Send HTML mail by default"
msgstr "デフォルトで HTML メールを送信するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:104
+#: ../mail/evolution-mail.schemas.in.h:116
msgid "Send HTML mail by default."
msgstr "デフォルトで HTML 形式のメールを送信するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:105
+#: ../mail/evolution-mail.schemas.in.h:117
msgid "Sender email-address column in the message list"
-msgstr "メッセージ一覧に差出人のアドレスを表示するかどうか"
+msgstr "メッセージの一覧に差出人のアドレスを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:106
+#: ../mail/evolution-mail.schemas.in.h:118
+msgid "Server synchronization interval"
+msgstr "サーバと同期する間隔"
+
+#: ../mail/evolution-mail.schemas.in.h:119
msgid "Show Animations"
msgstr "アニメーションを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:107
+#: ../mail/evolution-mail.schemas.in.h:120
msgid "Show animated images as animations."
msgstr "画像をアニメーションとして表示します。"
-#: ../mail/evolution-mail.schemas.in.h:108
+#: ../mail/evolution-mail.schemas.in.h:121
msgid "Show deleted messages (with a strike-through) in the message-list."
msgstr ""
-"メッセージ一覧の中に削除したメッセージを (打ち消し線を付けて) 表示するかどう"
-"かです。"
+"メッセージの一覧に削除したメッセージを (打ち消し線を付けて) 表示するかどうか"
+"です。"
-#: ../mail/evolution-mail.schemas.in.h:109
+#: ../mail/evolution-mail.schemas.in.h:122
msgid "Show deleted messages in the message-list"
-msgstr "メッセージ一覧の中に削除したメッセージを表示するかどうか"
+msgstr "メッセージの一覧に削除したメッセージを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:110
+#: ../mail/evolution-mail.schemas.in.h:123
msgid "Show photo of the sender"
msgstr "送信者の FACE を表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:113
+#: ../mail/evolution-mail.schemas.in.h:126
msgid ""
"Show the email-address of the sender in a separate column in the message "
"list."
msgstr ""
-"メッセージ一覧に差出人の E-メール・アドレスを表す項目を表示するかどうかです。"
+"メッセージの一覧に差出人の E-メール・アドレスを表す項目を表示するかどうかで"
+"す。"
-#: ../mail/evolution-mail.schemas.in.h:114
+#: ../mail/evolution-mail.schemas.in.h:127
msgid "Show the photo of the sender in the message reading pane."
msgstr "メッセージのプレビューに送信者の FACE を表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:115
-msgid "Specifies the header to check for junk."
-msgstr "ジャンクかどうかをチェックするヘッダの内容"
-
-#: ../mail/evolution-mail.schemas.in.h:116
-msgid ""
-"Specifies the header to check for junk. The format is headername=value in "
-"gconf."
-msgstr ""
-"ジャンクかどうか判定するためのヘッダを指定します。書式は GConf 形式で、ヘッダ"
-"名=値 にして下さい。"
-
-#: ../mail/evolution-mail.schemas.in.h:117
+#: ../mail/evolution-mail.schemas.in.h:128
msgid "Spell check inline"
msgstr "インラインでスペルをチェックするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:118
+#: ../mail/evolution-mail.schemas.in.h:129
+msgid "Spell checking color"
+msgstr "スペル・チェック結果に付与する色"
+
+#: ../mail/evolution-mail.schemas.in.h:130
+msgid "Spell checking languages"
+msgstr "スペルをチェックする言語"
+
+#: ../mail/evolution-mail.schemas.in.h:131
msgid "Subscribe dialog default height"
msgstr "購読ダイアログの高さ (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:119
+#: ../mail/evolution-mail.schemas.in.h:132
msgid "Subscribe dialog default width"
msgstr "購読ダイアログの幅 (デフォルト)"
-#: ../mail/evolution-mail.schemas.in.h:120
+#: ../mail/evolution-mail.schemas.in.h:133
msgid "Terminal font"
msgstr "端末のフォント"
-#: ../mail/evolution-mail.schemas.in.h:121
+#: ../mail/evolution-mail.schemas.in.h:134
msgid "Text message part limit"
msgstr "メッセージとして制限する文字数"
-#: ../mail/evolution-mail.schemas.in.h:122
+#: ../mail/evolution-mail.schemas.in.h:135
msgid "The default plugin for Junk hook"
msgstr "ジャンク・メールのテストで使用するデフォルトのプラグイン"
-#: ../mail/evolution-mail.schemas.in.h:123
+#: ../mail/evolution-mail.schemas.in.h:136
msgid "The last time empty junk was run, in days since the epoch."
msgstr ""
"最後にジャンク・フォルダを空にした時間 (1970-01-01 からの経過日数) です。"
-#: ../mail/evolution-mail.schemas.in.h:124
+#: ../mail/evolution-mail.schemas.in.h:137
msgid "The last time empty trash was run, in days since the epoch."
msgstr "最後にゴミ箱を空にした時間 (1970-01-01 からの経過日数) です。"
-#: ../mail/evolution-mail.schemas.in.h:125
+#: ../mail/evolution-mail.schemas.in.h:138
msgid "The terminal font for mail display."
msgstr "メールを表示する際の固定幅フォントです。"
-#: ../mail/evolution-mail.schemas.in.h:126
+#: ../mail/evolution-mail.schemas.in.h:139
msgid "The variable width font for mail display."
msgstr "メールを表示する際の可変幅フォントです。"
-#: ../mail/evolution-mail.schemas.in.h:127
+#: ../mail/evolution-mail.schemas.in.h:140
msgid ""
-"This can have three possible values. 0 for errors. 1 for warnings. 2 for "
-"debug messages."
+"This can have three possible values. \"0\" for errors. \"1\" for warnings. "
+"\"2\" for debug messages."
msgstr ""
-"メッセージをログとして記録する際のレベルです。指定可能な値: 0 (エラー・メッ"
-"セージ)、1 (警告メッセージ)、2 (デバッグ・メッセージ)"
+"メッセージをログとして記録する際のレベルです。指定可能な値: \"0\" (エラー・"
+"メッセージ)、\"1\" (警告メッセージ)、\"2\" (デバッグ・メッセージ)"
-#: ../mail/evolution-mail.schemas.in.h:128
+#: ../mail/evolution-mail.schemas.in.h:141
msgid ""
"This decides the max size of the text part that can be formatted under "
"evolution. The default is 4MB / 4096 KB and is specified interms of KB."
@@ -12921,7 +13619,7 @@ msgstr ""
"Evolution の中で整形することが可能なメールの大きさを指定します。デフォルト値"
"は 4MB (4096KB) で KB単位で指定します。"
-#: ../mail/evolution-mail.schemas.in.h:129
+#: ../mail/evolution-mail.schemas.in.h:142
msgid ""
"This is the default junk plugin, even though there are multiple plugins "
"enabled. If the default listed plugin is disabled, then it won't fall back "
@@ -12931,16 +13629,16 @@ msgstr ""
"ラグインです。もしこのプラグインが利用できない場合は、他に利用可能なプラグイ"
"ンを自動的に選択します。"
-#: ../mail/evolution-mail.schemas.in.h:130
+#: ../mail/evolution-mail.schemas.in.h:143
msgid ""
-"This key is read only once and reset to false after read. This unselects the "
-"mail in the list and removes the preview for that folder."
+"This key is read only once and reset to \"false\" after read. This unselects "
+"the mail in the list and removes the preview for that folder."
msgstr ""
-"これは一度だけ読み込むことが可能なキーであり、実際に読み込んだら FALSE に戻り"
-"ます。メッセージの一覧で選択しているメールを選択解除して、そのメールがある"
-"フォルダのプレビューを無効にします。"
+"これは一度だけ読み込むことが可能なキーであり、実際に読み込んだ後は \"FALSE\" "
+"に戻ります。メッセージの一覧で選択しているメールを選択解除して、そのメールが"
+"あるフォルダのプレビューを無効にします。"
-#: ../mail/evolution-mail.schemas.in.h:131
+#: ../mail/evolution-mail.schemas.in.h:144
msgid ""
"This key should contain a list of XML structures specifying custom headers, "
"and whether they are to be displayed. The format of the XML structure is &lt;"
@@ -12952,19 +13650,31 @@ msgstr ""
"enabled&gt; - メール表示ペインの中にヘッダを表示する場合は enabled をセットし"
"ます。"
-#: ../mail/evolution-mail.schemas.in.h:132
+#: ../mail/evolution-mail.schemas.in.h:145
+msgid ""
+"This option is related to the key lookup_addressbook and is used to "
+"determine whether to look up addresses in local addressbook only to exclude "
+"mail sent by known contacts from junk filtering."
+msgstr ""
+"このオプションは lookup_addressbook キーに関連したもので、ローカルのアドレス"
+"帳の中だけ E-メール・アドレスの検索を行い、ジャンクメールのフィルタリングを行"
+"う際に連絡先にあるアドレスから送信されたメールを対象外にするかどうかを指定し"
+"ます。"
+
+#: ../mail/evolution-mail.schemas.in.h:146
msgid "This option would help in improving the speed of fetching."
msgstr "このオプションはメールを取得する際の処理時間を改善するのに役立ちます。"
-#: ../mail/evolution-mail.schemas.in.h:133
+#: ../mail/evolution-mail.schemas.in.h:147
msgid ""
"This sets the number of addresses to show in default message list view, "
"beyond which a '...' is shown."
msgstr ""
-"メッセージ一覧表示で表示する E-メール・アドレスの個数 (デフォルト値) で、ここ"
-"で指定した以上のアドレスが存在している場合は '...' として表示が省略されます。"
+"メッセージの一覧表示で表示する E-メール・アドレスの個数 (デフォルト値) で、こ"
+"こで指定した以上のアドレスが存在している場合は '...' として表示が省略されま"
+"す。"
-#: ../mail/evolution-mail.schemas.in.h:134
+#: ../mail/evolution-mail.schemas.in.h:148
msgid ""
"This setting specifies whether the threads should be in expanded or "
"collapsed state by default. Evolution requires a restart."
@@ -12972,7 +13682,7 @@ msgstr ""
"メールのスレッドをデフォルトで展開した状態にするか、または畳んだ状態にするか"
"を指定します。変更したら Evolution の再起動が必要になります。"
-#: ../mail/evolution-mail.schemas.in.h:135
+#: ../mail/evolution-mail.schemas.in.h:149
msgid ""
"This setting specifies whether the threads should be sorted based on latest "
"message in each thread, rather than by message's date. Evolution requires a "
@@ -12981,110 +13691,121 @@ msgstr ""
"スレッドの中にある最新のメッセージを基点に全てのスレッドを並び替えるかどうか"
"を指定します。変更したら Evolution の再起動が必要になります。"
-#: ../mail/evolution-mail.schemas.in.h:136
+#: ../mail/evolution-mail.schemas.in.h:150
msgid "Thread the message list."
-msgstr "メッセージ一覧をスレッド表示にするかどうかです。"
+msgstr "メッセージの一覧をスレッド表示にするかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:137
+#: ../mail/evolution-mail.schemas.in.h:151
msgid "Thread the message-list"
-msgstr "メッセージ一覧をスレッド表示にするかどうか"
+msgstr "メッセージの一覧をスレッド表示にするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:138
+#: ../mail/evolution-mail.schemas.in.h:152
msgid "Thread the message-list based on Subject"
-msgstr "メッセージ一覧を件名でスレッド表示するかどうか"
+msgstr "メッセージの一覧を件名でスレッド表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:139
+#: ../mail/evolution-mail.schemas.in.h:153
msgid "Timeout for marking message as seen"
msgstr "既読マークを付与するまでの時間"
-#: ../mail/evolution-mail.schemas.in.h:140
+#: ../mail/evolution-mail.schemas.in.h:154
msgid "Timeout for marking message as seen."
msgstr "メッセージを選択してから既読マークを付与するまでの時間です。"
-#: ../mail/evolution-mail.schemas.in.h:141
+#: ../mail/evolution-mail.schemas.in.h:155
msgid "UID string of the default account."
msgstr "デフォルトのアカウントを表す UID (文字列)"
-#: ../mail/evolution-mail.schemas.in.h:142
+#: ../mail/evolution-mail.schemas.in.h:156
+msgid "Underline color for misspelled words when using inline spelling."
+msgstr ""
+"インラインのスペルチェックを行っている時につづりが間違っている時に付与する下"
+"線の色です。"
+
+#: ../mail/evolution-mail.schemas.in.h:157
msgid "Use SpamAssassin daemon and client"
msgstr "SpamAssassin のデーモンとクライアントを使うかどうか"
-#: ../mail/evolution-mail.schemas.in.h:143
+#: ../mail/evolution-mail.schemas.in.h:158
msgid "Use SpamAssassin daemon and client (spamc/spamd)."
msgstr ""
"SpamAssassin のデーモンとクライアント (spamc/spamd) を使用するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:144
+#: ../mail/evolution-mail.schemas.in.h:159
msgid "Use custom fonts"
msgstr "カスタム・フォントを使用するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:145
+#: ../mail/evolution-mail.schemas.in.h:160
msgid "Use custom fonts for displaying mail."
msgstr "メールを表示する際に独自のフォントを使用するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:146
+#: ../mail/evolution-mail.schemas.in.h:161
msgid "Use only local spam tests."
msgstr "ジャンクのテストはローカルのみにするかどうか"
-#: ../mail/evolution-mail.schemas.in.h:147
+#: ../mail/evolution-mail.schemas.in.h:162
msgid "Use only the local spam tests (no DNS)."
msgstr ""
"(DNS を使用せずに) ローカルの受信箱に対してのみジャンク・メールのテストするか"
"どうかです。"
-#: ../mail/evolution-mail.schemas.in.h:148
+#: ../mail/evolution-mail.schemas.in.h:163
msgid "Use side-by-side or wide layout"
msgstr "ペインを横に並べて表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:149
+#: ../mail/evolution-mail.schemas.in.h:164
msgid "Variable width font"
msgstr "可変幅フォント"
-#: ../mail/evolution-mail.schemas.in.h:150
+#: ../mail/evolution-mail.schemas.in.h:165
msgid "View/Bcc menu item is checked"
msgstr "Bcc 入力フィールドを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:151
+#: ../mail/evolution-mail.schemas.in.h:166
msgid "View/Bcc menu item is checked."
msgstr "メール作成ウィンドウで \"Bcc\" フィールドを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:152
+#: ../mail/evolution-mail.schemas.in.h:167
msgid "View/Cc menu item is checked"
msgstr "Cc 入力フィールドを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:153
+#: ../mail/evolution-mail.schemas.in.h:168
msgid "View/Cc menu item is checked."
msgstr "メール作成ウィンドウで \"Cc\" フィールドを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:154
+#: ../mail/evolution-mail.schemas.in.h:169
msgid "View/From menu item is checked"
msgstr "差出人フィールドを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:155
+#: ../mail/evolution-mail.schemas.in.h:170
msgid "View/From menu item is checked."
msgstr "メール作成ウィンドウで \"差出人\" フィールドを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:156
+#: ../mail/evolution-mail.schemas.in.h:171
msgid "View/PostTo menu item is checked"
msgstr "送信先フィールドを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:157
+#: ../mail/evolution-mail.schemas.in.h:172
msgid "View/PostTo menu item is checked."
msgstr "メール作成ウィンドウで \"送信先\" フィールドを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:158
+#: ../mail/evolution-mail.schemas.in.h:173
msgid "View/ReplyTo menu item is checked"
msgstr "返信先フィールドを表示するかどうか"
-#: ../mail/evolution-mail.schemas.in.h:159
+#: ../mail/evolution-mail.schemas.in.h:174
msgid "View/ReplyTo menu item is checked."
msgstr "メール作成ウィンドウで \"返信先\" フィールドを表示するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:160
+#: ../mail/evolution-mail.schemas.in.h:175
msgid "Whether a read receipt request gets added to every message by default."
msgstr "デフォルトで全てのメッセージに開封通知の要求を追加するかどうかです。"
-#: ../mail/evolution-mail.schemas.in.h:161
+#: ../mail/evolution-mail.schemas.in.h:176
+msgid "Whether disable ellipsizing feature of folder names in folder tree."
+msgstr ""
+"フォルダ・ツリーでフォルダ名を省略表示 (...) できるようにするかどうかです。"
+
+#: ../mail/evolution-mail.schemas.in.h:177
msgid ""
"Whether or not to fall back on threading by subjects when the messages do "
"not contain In-Reply-To or References headers."
@@ -13092,43 +13813,43 @@ msgstr ""
"メッセージに In-Reply-To または References ヘッダが無い場合に、件名によるス"
"レッド表示に戻すかどうかを指定します。"
-#: ../mail/evolution-mail.schemas.in.h:162
+#: ../mail/evolution-mail.schemas.in.h:178
msgid "Whether sort threads based on latest message in that thread"
msgstr "スレッドの中にあるメールを最新のメッセージを基点に並び替えるかどうか"
-#: ../mail/evolution-mail.schemas.in.h:163
+#: ../mail/evolution-mail.schemas.in.h:179
msgid "Width of the message-list pane"
msgstr "メッセージ一覧ペインの幅"
-#: ../mail/evolution-mail.schemas.in.h:164
+#: ../mail/evolution-mail.schemas.in.h:180
msgid "Width of the message-list pane."
msgstr "メッセージ一覧ペインの幅です。"
-#: ../mail/importers/elm-importer.c:184
+#: ../mail/importers/elm-importer.c:182
msgid "Importing Elm data"
msgstr "Elm データのインポート"
-#: ../mail/importers/elm-importer.c:369
+#: ../mail/importers/elm-importer.c:367
msgid "Evolution Elm importer"
msgstr "Evolution Elm インポータ"
-#: ../mail/importers/elm-importer.c:370
+#: ../mail/importers/elm-importer.c:368
msgid "Import mail from Elm."
msgstr "Elm からのメールのインポート"
-#: ../mail/importers/evolution-mbox-importer.c:83
+#: ../mail/importers/evolution-mbox-importer.c:80
msgid "Destination folder:"
msgstr "転送先フォルダ:"
-#: ../mail/importers/evolution-mbox-importer.c:86
+#: ../mail/importers/evolution-mbox-importer.c:83
msgid "Select folder to import into"
msgstr "インポート先フォルダの選択"
-#: ../mail/importers/evolution-mbox-importer.c:223
+#: ../mail/importers/evolution-mbox-importer.c:220
msgid "Berkeley Mailbox (mbox)"
msgstr "バークレー Mailbox (mbox)"
-#: ../mail/importers/evolution-mbox-importer.c:224
+#: ../mail/importers/evolution-mbox-importer.c:221
msgid "Importer Berkeley Mailbox format folders"
msgstr "バークレー Mailbox 形式のフォルダをインポートします"
@@ -13136,7 +13857,7 @@ msgstr "バークレー Mailbox 形式のフォルダをインポートします
msgid "Importing mailbox"
msgstr "mailbox のインポート"
-#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:518
+#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:514
#, c-format
msgid "Importing `%s'"
msgstr "'%s' のインポート"
@@ -13146,15 +13867,15 @@ msgstr "'%s' のインポート"
msgid "Scanning %s"
msgstr "%s の解析"
-#: ../mail/importers/pine-importer.c:229
+#: ../mail/importers/pine-importer.c:227
msgid "Importing Pine data"
msgstr "Pine データのインポート"
-#: ../mail/importers/pine-importer.c:428
+#: ../mail/importers/pine-importer.c:426
msgid "Evolution Pine importer"
msgstr "Evolution Pine インポータ"
-#: ../mail/importers/pine-importer.c:429
+#: ../mail/importers/pine-importer.c:427
msgid "Import mail from Pine."
msgstr "Pine からのメールのインポート"
@@ -13182,139 +13903,154 @@ msgstr "メーリング・リストが %s のメール"
msgid "Add Filter Rule"
msgstr "フィルタ・ルールの追加"
-#: ../mail/mail-component.c:536
+#: ../mail/mail-component.c:164 ../plugins/templates/templates.c:521
+#: ../plugins/templates/templates.c:691 ../plugins/templates/templates.c:726
+#: ../plugins/templates/org-gnome-templates.eplug.xml.h:2
+msgid "Templates"
+msgstr "テンプレート"
+
+#: ../mail/mail-component.c:548
#, c-format
msgid "%d selected, "
msgid_plural "%d selected, "
msgstr[0] " 選択済 %d通、"
msgstr[1] " 選択済 %d通、"
-#: ../mail/mail-component.c:540
+#: ../mail/mail-component.c:552
#, c-format
msgid "%d deleted"
msgid_plural "%d deleted"
msgstr[0] "削除済 %d通"
msgstr[1] "削除済 %d通"
-#: ../mail/mail-component.c:542
+#: ../mail/mail-component.c:559
#, c-format
msgid "%d junk"
msgid_plural "%d junk"
msgstr[0] "ジャンク %d通"
msgstr[1] "ジャンク %d通"
-#: ../mail/mail-component.c:545
+#: ../mail/mail-component.c:562
#, c-format
msgid "%d draft"
msgid_plural "%d drafts"
msgstr[0] "草案 %d通"
msgstr[1] "草案 %d通"
-#: ../mail/mail-component.c:547
+#: ../mail/mail-component.c:564
#, c-format
msgid "%d sent"
msgid_plural "%d sent"
msgstr[0] "送信済 %d通"
msgstr[1] "送信済 %d通"
-#: ../mail/mail-component.c:549
+#: ../mail/mail-component.c:566
#, c-format
msgid "%d unsent"
msgid_plural "%d unsent"
msgstr[0] "未送信 %d通"
msgstr[1] "未送信 %d通"
-#: ../mail/mail-component.c:555
+#: ../mail/mail-component.c:572
#, c-format
msgid "%d unread, "
msgid_plural "%d unread, "
msgstr[0] "未読 %d通, "
msgstr[1] "未読 %d通, "
-#: ../mail/mail-component.c:556
+#: ../mail/mail-component.c:573
#, c-format
msgid "%d total"
msgid_plural "%d total"
msgstr[0] "合計 %d通"
msgstr[1] "合計 %d通"
-#: ../mail/mail-component.c:896
+#: ../mail/mail-component.c:916
msgid "New Mail Message"
msgstr "新しいメッセージ"
-#: ../mail/mail-component.c:897
+#: ../mail/mail-component.c:917
+msgctxt "New"
msgid "_Mail Message"
msgstr "メッセージ(_M)"
-#: ../mail/mail-component.c:898
+#: ../mail/mail-component.c:918
msgid "Compose a new mail message"
msgstr "新しいメッセージを作成します"
-#: ../mail/mail-component.c:904
+#: ../mail/mail-component.c:924
msgid "New Mail Folder"
msgstr "新しいメール・フォルダ"
-#: ../mail/mail-component.c:905
+#: ../mail/mail-component.c:925
+msgctxt "New"
msgid "Mail _Folder"
msgstr "メールのフォルダ(_F)"
-#: ../mail/mail-component.c:906
+#: ../mail/mail-component.c:926
msgid "Create a new mail folder"
msgstr "新しいメール・フォルダを作成します"
-#: ../mail/mail-component.c:1053
+#: ../mail/mail-component.c:1073
msgid "Failed upgrading Mail settings or folders."
msgstr "メールの設定または関連フォルダのアップグレードに失敗しました。"
-#: ../mail/mail-component.c:1522
+#: ../mail/mail-component.c:1586
msgid "Error"
msgstr "エラー"
-#: ../mail/mail-component.c:1522
+#: ../mail/mail-component.c:1586
msgid "Errors"
msgstr "エラー"
-#: ../mail/mail-component.c:1523
+#: ../mail/mail-component.c:1587
msgid "Warnings and Errors"
msgstr "警告とエラー"
-#: ../mail/mail-component.c:1524
+#: ../mail/mail-component.c:1588
msgid "Debug"
msgstr "デバッグ"
-#: ../mail/mail-component.c:1524
+#: ../mail/mail-component.c:1588
msgid "Error, Warnings and Debug messages"
msgstr "エラーと警告とデバッグ・メッセージ"
-#: ../mail/mail-component.c:1634
+#: ../mail/mail-component.c:1715
msgid "Debug Logs"
msgstr "デバッグ・ログ"
-#: ../mail/mail-component.c:1638
+#: ../mail/mail-component.c:1729
msgid "Show _errors in the status bar for"
msgstr "ステータスバーにエラーを表示する時間(_E): "
-#: ../mail/mail-component.c:1645
-msgid "seconds."
+#. Translators: This is the second part of the sentence
+#. * "Show _errors in the status bar for" - XXX - "second(s)."
+#: ../mail/mail-component.c:1745
+msgid "second(s)."
msgstr "秒間"
-#: ../mail/mail-component.c:1655
+#: ../mail/mail-component.c:1751
msgid "Log Messages:"
msgstr "記録するメッセージの種類:"
-#: ../mail/mail-component.c:1707
+#: ../mail/mail-component.c:1792
msgid "Log Level"
msgstr "ログのレベル"
-#: ../mail/mail-component.c:1714 ../widgets/misc/e-dateedit.c:410
+#: ../mail/mail-component.c:1801 ../widgets/misc/e-dateedit.c:395
msgid "Time"
msgstr "時刻"
-#: ../mail/mail-component.c:1721 ../mail/message-list.c:2406
+#: ../mail/mail-component.c:1811 ../mail/message-list.c:2454
#: ../mail/message-list.etspec.h:10
msgid "Messages"
msgstr "メッセージ"
+#: ../mail/mail-component.c:1820 ../ui/evolution-mail-messagedisplay.xml.h:2
+#: ../ui/evolution.xml.h:4
+msgid "Close this window"
+msgstr "このウィンドウを閉じます"
+
#: ../mail/mail-config.glade.h:1
msgid " Ch_eck for Supported Types "
msgstr " サポートしているかチェックする(_E) "
@@ -13328,7 +14064,7 @@ msgid "<b>SSL is not supported in this build of Evolution</b>"
msgstr "<b>この Evolution は SSL サポート付きでビルドされていません</b>"
#: ../mail/mail-config.glade.h:5
-msgid "<b>Sender Photograph</b>"
+msgid "<b>Sender Photograph</b>"
msgstr "<b>送信者の写真 (X-FACE)</b>"
#: ../mail/mail-config.glade.h:6
@@ -13409,73 +14145,73 @@ msgid "<span weight=\"bold\">Printed Fonts</span>"
msgstr "<span weight=\"bold\">印刷用フォント</span>"
#: ../mail/mail-config.glade.h:27
+msgid "<span weight=\"bold\">Proxy Settings</span>"
+msgstr "<span weight=\"bold\">プロキシの設定</span>"
+
+#: ../mail/mail-config.glade.h:28
msgid "<span weight=\"bold\">Required Information</span>"
msgstr "<span weight=\"bold\">必須情報</span>"
-#: ../mail/mail-config.glade.h:28
+#: ../mail/mail-config.glade.h:29
msgid "<span weight=\"bold\">Secure MIME (S/MIME)</span>"
msgstr "<span weight=\"bold\">セキュアな MIME (S/MIME)</span>"
-#: ../mail/mail-config.glade.h:29
+#: ../mail/mail-config.glade.h:30
msgid "<span weight=\"bold\">Security</span>"
msgstr "<span weight=\"bold\">セキュリティ</span>"
-#: ../mail/mail-config.glade.h:30
+#: ../mail/mail-config.glade.h:31
msgid "<span weight=\"bold\">Sent and Draft Messages</span>"
msgstr "<span weight=\"bold\">送信メッセージと草案メッセージ</span>"
-#: ../mail/mail-config.glade.h:31
+#: ../mail/mail-config.glade.h:32
msgid "<span weight=\"bold\">Server Configuration</span>"
msgstr "<span weight=\"bold\">サーバの設定</span>"
-#: ../mail/mail-config.glade.h:32
+#: ../mail/mail-config.glade.h:33
msgid "<span weight=\"bold\">_Authentication Type</span>"
msgstr "<span weight=\"bold\">認証方式の種類(_A)</span>"
-#: ../mail/mail-config.glade.h:34
+#: ../mail/mail-config.glade.h:35
msgid "Account Management"
msgstr "アカウントの管理"
-#: ../mail/mail-config.glade.h:35
+#: ../mail/mail-config.glade.h:36
msgid "Add Ne_w Signature..."
msgstr "新しい署名の追加(_W)..."
-#: ../mail/mail-config.glade.h:36
+#: ../mail/mail-config.glade.h:37
msgid "Add _Script"
msgstr "スクリプトの追加(_S)"
-#: ../mail/mail-config.glade.h:37
+#: ../mail/mail-config.glade.h:38
msgid "Al_ways sign outgoing messages when using this account"
msgstr "このアカウントを使用する場合は常に送信メッセージに署名を付与する(_W)"
-#: ../mail/mail-config.glade.h:38
+#: ../mail/mail-config.glade.h:39
msgid "Also encrypt to sel_f when sending encrypted messages"
msgstr "暗号化したメッセージを送信する場合はメール全体も暗号化する(_F)"
-#: ../mail/mail-config.glade.h:39
+#: ../mail/mail-config.glade.h:40
msgid "Alway_s carbon-copy (cc) to:"
msgstr "常に使用する CC 先(_S):"
-#: ../mail/mail-config.glade.h:40
+#: ../mail/mail-config.glade.h:41
msgid "Always _blind carbon-copy (bcc) to:"
msgstr "常に使用する Bcc 先(_B):"
-#: ../mail/mail-config.glade.h:41
+#: ../mail/mail-config.glade.h:42
msgid "Always _trust keys in my keyring when encrypting"
msgstr "暗号解読時には常に信用キーを使用する(_T)"
-#: ../mail/mail-config.glade.h:42
+#: ../mail/mail-config.glade.h:43
msgid "Always encrypt to _myself when sending encrypted messages"
msgstr "暗号化したメッセージを送信する場合は常にメール全体を暗号化する(_M)"
-#: ../mail/mail-config.glade.h:43
+#: ../mail/mail-config.glade.h:44
msgid "Always request rea_d receipt"
msgstr "常に開封通知を要求する(_D)"
-#: ../mail/mail-config.glade.h:44
-msgid "Attach original message"
-msgstr "オリジナルのメッセージを添付する"
-
#: ../mail/mail-config.glade.h:46
msgid "Automatically insert _emoticon images"
msgstr "自動的にスマイリー・アイコンを挿入する(_E)"
@@ -13493,13 +14229,13 @@ msgid "C_haracter set:"
msgstr "文字集合(_H):"
#: ../mail/mail-config.glade.h:50
-msgid "C_heck custom headers for junk"
-msgstr "独自のヘッダをチェックする(_H)"
-
-#: ../mail/mail-config.glade.h:51
msgid "Ch_eck for Supported Types "
msgstr "サポートしているかチェックする(_E) "
+#: ../mail/mail-config.glade.h:51
+msgid "Check cu_stom headers for junk"
+msgstr "独自のヘッダもチェックする(_S)"
+
#: ../mail/mail-config.glade.h:52
msgid "Check incoming _messages for junk"
msgstr "受信したメールがジャンクかどうかチェックする(_M)"
@@ -13562,16 +14298,16 @@ msgid "Digitally sign o_utgoing messages (by default)"
msgstr "送信するメッセージにデジタル署名する (デフォルト)(_U)"
#: ../mail/mail-config.glade.h:71
-msgid "Do _not mark messages as junk if sender is in my addressbook"
-msgstr "差出人がアドレス帳にある場合はジャンク・メールにしない(_N)"
+msgid "Do not format messages when text si_ze exceeds"
+msgstr "次のサイズを超えたメッセージは整形しない(_Z): "
#: ../mail/mail-config.glade.h:72
-msgid "Do not format text contents in messages if the text si_ze exceeds"
-msgstr "次のサイズを超えたメッセージは整形しない(_Z): "
+msgid "Do not mar_k messages as junk if sender is in my addressbook"
+msgstr "差出人がアドレス帳にある場合はジャンク・メールにしない(_K)"
#: ../mail/mail-config.glade.h:73
-msgid "Do not quote original message"
-msgstr "オリジナルのメッセージを引用しない"
+msgid "Do not quote"
+msgstr "何も引用しない"
#: ../mail/mail-config.glade.h:74
msgid "Done"
@@ -13635,71 +14371,89 @@ msgid "HTML Messages"
msgstr "HTML メッセージ"
#: ../mail/mail-config.glade.h:91
+msgid "H_TTP Proxy:"
+msgstr "HTTP プロキシ(_T):"
+
+#: ../mail/mail-config.glade.h:92
msgid "Headers"
msgstr "ヘッダ"
-#: ../mail/mail-config.glade.h:92
+#: ../mail/mail-config.glade.h:93
msgid "Highlight _quotations with"
msgstr "次の色で引用を強調表示する(_Q): "
-#: ../mail/mail-config.glade.h:94
+#: ../mail/mail-config.glade.h:95
msgid "Inline"
msgstr "インラインにする"
-#: ../mail/mail-config.glade.h:95
-msgid "Inline original message (Outlook style)"
-msgstr "オリジナルのメッセージを引用する (Outlook 形式)"
+#: ../mail/mail-config.glade.h:96
+msgid "Inline (Outlook style)"
+msgstr "インラインにする (Outlook 形式)"
-#: ../mail/mail-config.glade.h:97
+#: ../mail/mail-config.glade.h:98
msgid "KB"
msgstr "KB"
-#: ../mail/mail-config.glade.h:98 ../mail/message-list.etspec.h:8
+#: ../mail/mail-config.glade.h:99 ../mail/message-list.etspec.h:8
msgid "Labels"
msgstr "ラベル"
-#: ../mail/mail-config.glade.h:99
+#: ../mail/mail-config.glade.h:100
msgid "Languages Table"
msgstr "言語の一覧"
-#: ../mail/mail-config.glade.h:100
+#: ../mail/mail-config.glade.h:101
msgid "Mail Configuration"
msgstr "メールの設定"
-#: ../mail/mail-config.glade.h:101
+#: ../mail/mail-config.glade.h:102
msgid "Mail Headers Table"
msgstr "メール・ヘッダの一覧"
-#: ../mail/mail-config.glade.h:103
+#: ../mail/mail-config.glade.h:104
msgid "Mailbox location"
msgstr "メールボックスの場所"
-#: ../mail/mail-config.glade.h:104
+#: ../mail/mail-config.glade.h:105
msgid "Message Composer"
msgstr "メッセージ作成"
-#: ../mail/mail-config.glade.h:105
+#: ../mail/mail-config.glade.h:106
+msgid "No _Proxy for:"
+msgstr "無視するホスト(_P):"
+
+#: ../mail/mail-config.glade.h:107
msgid ""
"Note: Underscore in the label name is used as mnemonic identifier in menu."
msgstr ""
"注記: ラベルの中にあるアンダースコア (下線) はメニューの中でニーモニックとし"
"て使用されます"
-#: ../mail/mail-config.glade.h:106
+#: ../mail/mail-config.glade.h:108
msgid ""
"Note: you will not be prompted for a password until you connect for the "
"first time"
msgstr "注記: 最初に接続するまでパスワードの入力が求められることはありません"
-#: ../mail/mail-config.glade.h:107
+#: ../mail/mail-config.glade.h:109
+msgid "Option is ignored if a match for custom junk headers is found."
+msgstr ""
+"ここで指定したヘッダに一致するメールを検出した場合は次のオプションが無視され"
+"ます。"
+
+#: ../mail/mail-config.glade.h:110
msgid "Or_ganization:"
msgstr "組織(_G):"
-#: ../mail/mail-config.glade.h:108
+#: ../mail/mail-config.glade.h:111
msgid "PGP/GPG _Key ID:"
msgstr "PGP/GPG 鍵の ID(_K):"
-#: ../mail/mail-config.glade.h:110
+#: ../mail/mail-config.glade.h:112
+msgid "Pass_word:"
+msgstr "パスワード(_W):"
+
+#: ../mail/mail-config.glade.h:114
msgid ""
"Please enter a descriptive name for this account in the space below.\n"
"This name will be used for display purposes only."
@@ -13707,7 +14461,7 @@ msgstr ""
"このアカウントを説明するような名前を入力して下さい。\n"
"ここで入力した名前は表示でのみ使用されます。"
-#: ../mail/mail-config.glade.h:112
+#: ../mail/mail-config.glade.h:116
msgid ""
"Please enter information about the way you will send mail. If you are not "
"sure, ask your system administrator or Internet Service Provider."
@@ -13715,7 +14469,7 @@ msgstr ""
"メールを送信する方法について情報を入力して下さい。不明な場合は、システム管理"
"者またはインターネット・サービス・プロバイダ (ISP) にお尋ね下さい。"
-#: ../mail/mail-config.glade.h:113
+#: ../mail/mail-config.glade.h:117
msgid ""
"Please enter your name and email address below. The \"optional\" fields "
"below do not need to be filled in, unless you wish to include this "
@@ -13724,113 +14478,121 @@ msgstr ""
"あなたのお名前と E-メール・アドレスを入力して下さい。\"追加情報\" の欄は必須"
"ではありませんが、自動的にメッセージの中に挿入させる場合は入力して下さい。"
-#: ../mail/mail-config.glade.h:114
+#: ../mail/mail-config.glade.h:118
msgid "Please select among the following options"
msgstr "オプションを以下から選択して下さい。"
-#: ../mail/mail-config.glade.h:115
+#: ../mail/mail-config.glade.h:119
+msgid "Port:"
+msgstr "ポート番号(_P):"
+
+#: ../mail/mail-config.glade.h:120
msgid "Pr_ompt when sending messages with only Bcc recipients defined"
msgstr "Bcc 受信者のみ指定されている場合は送信する前に確認する(_O)"
-#: ../mail/mail-config.glade.h:116
-msgid "Quote original message"
-msgstr "オリジナルのメッセージを引用する"
-
-#: ../mail/mail-config.glade.h:117
+#: ../mail/mail-config.glade.h:121
msgid "Quoted"
msgstr "引用する"
-#: ../mail/mail-config.glade.h:118
+#: ../mail/mail-config.glade.h:122
msgid "Re_member password"
msgstr "このパスワードを記憶する(_M)"
-#: ../mail/mail-config.glade.h:119
+#: ../mail/mail-config.glade.h:123
msgid "Re_ply-To:"
msgstr "返信先(_P):"
-#: ../mail/mail-config.glade.h:121
+#: ../mail/mail-config.glade.h:125
msgid "Remember _password"
msgstr "このパスワードを記憶する(_P)"
-#: ../mail/mail-config.glade.h:122
+#: ../mail/mail-config.glade.h:126
+msgid "S_OCKS Host:"
+msgstr "Socks ホスト(_O):"
+
+#: ../mail/mail-config.glade.h:127
msgid "S_earch for sender photograph only in local addressbooks"
msgstr "送信者の写真をローカルのアドレス帳から探す(_E)"
-#: ../mail/mail-config.glade.h:123
+#: ../mail/mail-config.glade.h:128
msgid "S_elect..."
msgstr "選択(_E)..."
-#: ../mail/mail-config.glade.h:124
+#: ../mail/mail-config.glade.h:129
msgid "S_end message receipts:"
msgstr "開封通知の送信(_E):"
-#: ../mail/mail-config.glade.h:125
+#: ../mail/mail-config.glade.h:130
msgid "S_tandard Font:"
msgstr "標準フォント(_T):"
-#: ../mail/mail-config.glade.h:127
+#: ../mail/mail-config.glade.h:132
msgid "Select HTML fixed width font"
msgstr "固定幅フォントの選択 (HTML 表示)"
-#: ../mail/mail-config.glade.h:128
+#: ../mail/mail-config.glade.h:133
msgid "Select HTML fixed width font for printing"
msgstr "印刷時の固定幅フォントの選択"
-#: ../mail/mail-config.glade.h:129
+#: ../mail/mail-config.glade.h:134
msgid "Select HTML variable width font"
msgstr "可変幅フォントの選択 (HTML 表示)"
-#: ../mail/mail-config.glade.h:130
+#: ../mail/mail-config.glade.h:135
msgid "Select HTML variable width font for printing"
msgstr "印刷時の可変幅フォントの選択"
-#: ../mail/mail-config.glade.h:132
+#: ../mail/mail-config.glade.h:137
msgid "Sending Mail"
msgstr "メールの送信"
-#: ../mail/mail-config.glade.h:133
+#: ../mail/mail-config.glade.h:138
msgid "Sent _Messages Folder:"
msgstr "送信済フォルダ(_M):"
-#: ../mail/mail-config.glade.h:134
+#: ../mail/mail-config.glade.h:139
msgid "Ser_ver requires authentication"
msgstr "サーバ認証を行う(_V)"
-#: ../mail/mail-config.glade.h:135
+#: ../mail/mail-config.glade.h:140
msgid "Server _Type: "
msgstr "サーバ種別(_T):"
-#: ../mail/mail-config.glade.h:136
+#: ../mail/mail-config.glade.h:141
msgid "Sig_ning certificate:"
msgstr "署名する証明書(_N):"
-#: ../mail/mail-config.glade.h:137
+#: ../mail/mail-config.glade.h:142
msgid "Signat_ure:"
msgstr "署名(_U):"
-#: ../mail/mail-config.glade.h:138
+#: ../mail/mail-config.glade.h:143
msgid "Signatures"
msgstr "署名"
-#: ../mail/mail-config.glade.h:139
+#: ../mail/mail-config.glade.h:144
msgid "Signatures Table"
msgstr "署名の一覧"
-#: ../mail/mail-config.glade.h:140
+#: ../mail/mail-config.glade.h:145
msgid "Spell Checking"
msgstr "スペル・チェック"
-#: ../mail/mail-config.glade.h:141
+#: ../mail/mail-config.glade.h:146
+msgid "Start _typing at the bottom on replying"
+msgstr "返信時は最下部で入力を開始する(_T)"
+
+#: ../mail/mail-config.glade.h:147
msgid "T_ype: "
msgstr "種別(_Y): "
-#: ../mail/mail-config.glade.h:142
+#: ../mail/mail-config.glade.h:148
msgid ""
"The list of languages here reflects only the languages for which you have a "
"dictionary installed."
msgstr "お使いのシステムにインストールした辞書 (言語) だけ一覧に表示されます。"
-#: ../mail/mail-config.glade.h:143
+#: ../mail/mail-config.glade.h:149
msgid ""
"The output of this script will be used as your\n"
"signature. The name you specify will be used\n"
@@ -13839,13 +14601,7 @@ msgstr ""
"このスクリプトの出力を署名として使用します。\n"
"\"名前\" は表示の目的でのみ使用されます。"
-#: ../mail/mail-config.glade.h:146
-msgid ""
-"This option will be overridden if a match for custom junk headers is found."
-msgstr ""
-"ここで指定した独自のヘッダを検出した場合、このオプションは上書きされます"
-
-#: ../mail/mail-config.glade.h:147
+#: ../mail/mail-config.glade.h:152
msgid ""
"Type the name by which you would like to refer to this account.\n"
"For example: \"Work\" or \"Personal\""
@@ -13853,16 +14609,26 @@ msgstr ""
"このアカウントにお好みの名前を付けて下さい:\n"
"(例: \"仕事\" や \"プライベート\")"
-#: ../mail/mail-config.glade.h:149 ../plugins/caldav/caldav-source.c:282
-#: ../plugins/google-account-setup/google-source.c:358
+#: ../mail/mail-config.glade.h:154
+msgid "Us_ername:"
+msgstr "ユーザ名(_E):"
+
+#: ../mail/mail-config.glade.h:155
+msgid "Use Authe_ntication"
+msgstr "認証する(_N)"
+
+#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
+#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "ユーザ名(_N):"
-#: ../mail/mail-config.glade.h:150
+#: ../mail/mail-config.glade.h:157
msgid "V_ariable-width:"
msgstr "可変幅(_A):"
-#: ../mail/mail-config.glade.h:151
+#: ../mail/mail-config.glade.h:158
msgid ""
"Welcome to the Evolution Mail Configuration Assistant.\n"
"\n"
@@ -13872,100 +14638,124 @@ msgstr ""
"\n"
"[進む] ボタンをクリックして下さい。"
-#: ../mail/mail-config.glade.h:154
+#: ../mail/mail-config.glade.h:161
msgid "_Add Signature"
msgstr "署名の追加(_A)"
-#: ../mail/mail-config.glade.h:155
+#: ../mail/mail-config.glade.h:162
msgid "_Always load images from the Internet"
msgstr "常に画像を読み込む(_A)"
-#: ../mail/mail-config.glade.h:156
+#: ../mail/mail-config.glade.h:163
+msgid "_Automatic proxy configuration URL:"
+msgstr "自動的にプロキシの設定を行う URL(_A):"
+
+#: ../mail/mail-config.glade.h:164
msgid "_Default junk plugin:"
msgstr "デフォルトのプラグイン(_D):"
-#: ../mail/mail-config.glade.h:157
+#: ../mail/mail-config.glade.h:165
+msgid "_Direct connection to the Internet"
+msgstr "インターネットに直接接続する(_D)"
+
+#: ../mail/mail-config.glade.h:166
msgid "_Do not sign meeting requests (for Outlook compatibility)"
msgstr "会議開催要求には署名しない (Outlook 互換用)(_D)"
-#: ../mail/mail-config.glade.h:159
+#: ../mail/mail-config.glade.h:168
msgid "_Forward style:"
msgstr "転送方式(_F):"
-#: ../mail/mail-config.glade.h:160
+#: ../mail/mail-config.glade.h:169
msgid "_Keep Signature above the original message on replying"
msgstr "返信時に署名をオリジナルのメッセージの上に配置する(_K)"
-#: ../mail/mail-config.glade.h:161
+#: ../mail/mail-config.glade.h:170
msgid "_Load images in messages from contacts"
msgstr "差出人が連絡先に登録されていたら画像を読み込む(_L)"
-#: ../mail/mail-config.glade.h:162
+#: ../mail/mail-config.glade.h:171
+msgid "_Lookup in local addressbook only"
+msgstr "ローカルにあるアドレス帳のみ検索する(_L)"
+
+#: ../mail/mail-config.glade.h:172
msgid "_Make this my default account"
msgstr "これをデフォルトのアカウントにする(_M)"
-#: ../mail/mail-config.glade.h:163
+#: ../mail/mail-config.glade.h:173
+msgid "_Manual proxy configuration:"
+msgstr "マニュアルでプロキシの設定を行う(_M):"
+
+#: ../mail/mail-config.glade.h:174
msgid "_Mark messages as read after"
msgstr "メッセージに既読マークを付与する時間(_M): "
-#: ../mail/mail-config.glade.h:165
+#: ../mail/mail-config.glade.h:176
msgid "_Never load images from the Internet"
msgstr "画像を読み込まない(_N)"
-#: ../mail/mail-config.glade.h:166
+#: ../mail/mail-config.glade.h:177
msgid "_Path:"
msgstr "パス(_P):"
-#: ../mail/mail-config.glade.h:167
-msgid "_Prompt when sending HTML messages to contacts that do not want them"
-msgstr "HTML 形式を希望しない連絡先に送信する場合は確認する(_P)"
+#: ../mail/mail-config.glade.h:178
+msgid "_Prompt on sending HTML mail to contacts that do not want them"
+msgstr "HTML 形式を希望していない連絡先に送信する場合は確認する(_P)"
-#: ../mail/mail-config.glade.h:168
+#: ../mail/mail-config.glade.h:179
msgid "_Prompt when sending messages with an empty subject line"
msgstr "件名が空の場合は送信する前に確認する(_P)"
-#: ../mail/mail-config.glade.h:169
+#: ../mail/mail-config.glade.h:180
msgid "_Reply style:"
msgstr "返信方法(_R):"
-#: ../mail/mail-config.glade.h:170
+#: ../mail/mail-config.glade.h:181
msgid "_Script:"
msgstr "スクリプト(_S):"
-#: ../mail/mail-config.glade.h:171
+#: ../mail/mail-config.glade.h:182
+msgid "_Secure HTTP Proxy:"
+msgstr "セキュア HTTP プロキシ(_S):"
+
+#: ../mail/mail-config.glade.h:183
msgid "_Select..."
msgstr "選択(_S)..."
#. If enabled, show animation; if disabled, only display a static image without any animation
-#: ../mail/mail-config.glade.h:174
+#: ../mail/mail-config.glade.h:186
msgid "_Show image animations"
msgstr "アニメーションを表示する(_S)"
-#: ../mail/mail-config.glade.h:175
+#: ../mail/mail-config.glade.h:187
msgid "_Show the photograph of sender in the message preview"
msgstr "プレビュー時に送信者の写真を表示する(_S)"
-#: ../mail/mail-config.glade.h:176
+#: ../mail/mail-config.glade.h:188
msgid "_Shrink To / Cc / Bcc headers to "
msgstr "ヘッダに表示する E-メール・アドレスの個数(_S): "
-#: ../mail/mail-config.glade.h:177
+#: ../mail/mail-config.glade.h:189
msgid "_Use Secure Connection:"
msgstr "セキュアな接続を利用する(_U):"
-#: ../mail/mail-config.glade.h:178
+#: ../mail/mail-config.glade.h:190
+msgid "_Use system defaults"
+msgstr "システムのデフォルトを使用する(_U)"
+
+#: ../mail/mail-config.glade.h:191
msgid "_Use the same fonts as other applications"
msgstr "他のアプリと同じフォントを使う(_U)"
-#: ../mail/mail-config.glade.h:179
+#: ../mail/mail-config.glade.h:192
msgid "addresses"
msgstr "個"
-#: ../mail/mail-config.glade.h:180
+#: ../mail/mail-config.glade.h:193
msgid "color"
msgstr "色"
-#: ../mail/mail-config.glade.h:181
+#: ../mail/mail-config.glade.h:194
msgid "description"
msgstr "説明"
@@ -14005,43 +14795,43 @@ msgstr "大/小文字を区別する(_S)"
msgid "Co_mpleted"
msgstr "完了した(_M)"
-#: ../mail/mail-dialogs.glade.h:11
+#: ../mail/mail-dialogs.glade.h:10
msgid "F_ind:"
msgstr "検索(_I):"
-#: ../mail/mail-dialogs.glade.h:12
+#: ../mail/mail-dialogs.glade.h:11
msgid "Find in Message"
msgstr "メッセージ内の検索"
-#: ../mail/mail-dialogs.glade.h:13 ../mail/message-tag-followup.c:298
+#: ../mail/mail-dialogs.glade.h:12 ../mail/message-tag-followup.c:276
msgid "Flag to Follow Up"
msgstr "フォローアップするフラグ"
-#: ../mail/mail-dialogs.glade.h:14
+#: ../mail/mail-dialogs.glade.h:13
msgid "Folder Subscriptions"
msgstr "フォルダの購読"
-#: ../mail/mail-dialogs.glade.h:15
+#: ../mail/mail-dialogs.glade.h:14
msgid "License Agreement"
msgstr "ライセンス同意書"
-#: ../mail/mail-dialogs.glade.h:16
+#: ../mail/mail-dialogs.glade.h:15
msgid "None Selected"
msgstr "何も選択されていません"
-#: ../mail/mail-dialogs.glade.h:17
+#: ../mail/mail-dialogs.glade.h:16
msgid "S_erver:"
msgstr "サーバ(_E):"
-#: ../mail/mail-dialogs.glade.h:18
+#: ../mail/mail-dialogs.glade.h:17
msgid "Security Information"
msgstr "セキュリティ情報"
-#: ../mail/mail-dialogs.glade.h:19
+#: ../mail/mail-dialogs.glade.h:18
msgid "Specific folders"
msgstr "指定したフォルダだけ"
-#: ../mail/mail-dialogs.glade.h:21
+#: ../mail/mail-dialogs.glade.h:19
msgid ""
"The messages you have selected for follow up are listed below.\n"
"Please select a follow up action from the \"Flag\" menu."
@@ -14049,23 +14839,23 @@ msgstr ""
"フォローアップとして指定したメッセージが下記に一覧化されています。\n"
"\"フラグ\" メニューからフォローアップの内容を選択して下さい。"
-#: ../mail/mail-dialogs.glade.h:23
+#: ../mail/mail-dialogs.glade.h:21
msgid "_Accept License"
msgstr "ライセンスを受諾する(_A)"
-#: ../mail/mail-dialogs.glade.h:24
+#: ../mail/mail-dialogs.glade.h:22
msgid "_Due By:"
msgstr "期日(_D):"
-#: ../mail/mail-dialogs.glade.h:25
+#: ../mail/mail-dialogs.glade.h:23
msgid "_Flag:"
msgstr "フラグ付き(_F):"
-#: ../mail/mail-dialogs.glade.h:26
+#: ../mail/mail-dialogs.glade.h:24
msgid "_Tick this to accept the license agreement"
msgstr "ライセンス同意書を受諾する場合はここをチェックする(_T)"
-#: ../mail/mail-folder-cache.c:826
+#: ../mail/mail-folder-cache.c:832
#, c-format
msgid "Pinging %s"
msgstr "%s へ ping 中に"
@@ -14076,7 +14866,7 @@ msgstr "選択したメッセージのフィルタリング"
#: ../mail/mail-ops.c:264
msgid "Fetching Mail"
-msgstr "メールの同期中に"
+msgstr "メールの取得中"
#. sending mail, filtering failed
#: ../mail/mail-ops.c:560
@@ -14112,11 +14902,11 @@ msgstr "%d / %d 通のメッセージの送信中"
msgid "Failed to send %d of %d messages"
msgstr "%d / %d 通のメッセージ送信に失敗しました"
-#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:704
+#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:693
msgid "Canceled."
msgstr "キャンセルしました"
-#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:706
+#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:695
msgid "Complete."
msgstr "完了しました"
@@ -14145,66 +14935,71 @@ msgstr "%s フォルダをオープン中"
#: ../mail/mail-ops.c:1270
#, c-format
+msgid "Retrieving quota information for folder %s"
+msgstr "%s フォルダのクォータ情報の取得中"
+
+#: ../mail/mail-ops.c:1339
+#, c-format
msgid "Opening store %s"
-msgstr "保存した %s をオープン中"
+msgstr "%s のオープン中"
-#: ../mail/mail-ops.c:1341
+#: ../mail/mail-ops.c:1410
#, c-format
msgid "Removing folder %s"
msgstr "%s フォルダの削除中"
-#: ../mail/mail-ops.c:1430
+#: ../mail/mail-ops.c:1499
#, c-format
msgid "Storing folder '%s'"
msgstr "'%s' フォルダに格納中"
-#: ../mail/mail-ops.c:1493
+#: ../mail/mail-ops.c:1562
#, c-format
msgid "Expunging and storing account '%s'"
msgstr "アカウント '%s' を削除して保存中"
-#: ../mail/mail-ops.c:1494
+#: ../mail/mail-ops.c:1563
#, c-format
msgid "Storing account '%s'"
msgstr "アカウント '%s' の格納中"
-#: ../mail/mail-ops.c:1548
+#: ../mail/mail-ops.c:1617
msgid "Refreshing folder"
msgstr "フォルダの更新中"
-#: ../mail/mail-ops.c:1585 ../mail/mail-ops.c:1635
+#: ../mail/mail-ops.c:1657 ../mail/mail-ops.c:1707
msgid "Expunging folder"
msgstr "フォルダの抹消中"
-#: ../mail/mail-ops.c:1632
+#: ../mail/mail-ops.c:1704
#, c-format
msgid "Emptying trash in '%s'"
msgstr "'%s' にあるゴミ箱のクリア中"
-#: ../mail/mail-ops.c:1633
+#: ../mail/mail-ops.c:1705
msgid "Local Folders"
msgstr "ローカル・フォルダ"
-#: ../mail/mail-ops.c:1714
+#: ../mail/mail-ops.c:1786
#, c-format
msgid "Retrieving message %s"
msgstr "メッセージ %s を取得中"
-#: ../mail/mail-ops.c:1821
+#: ../mail/mail-ops.c:1893
#, c-format
msgid "Retrieving %d message"
msgid_plural "Retrieving %d messages"
msgstr[0] "%d通のメッセージの受信中"
msgstr[1] "%d通のメッセージの受信中"
-#: ../mail/mail-ops.c:1906
+#: ../mail/mail-ops.c:1978
#, c-format
msgid "Saving %d message"
-msgid_plural "Saving %d messsages"
+msgid_plural "Saving %d messages"
msgstr[0] "%d通のメッセージの保存中"
msgstr[1] "%d通のメッセージの保存中"
-#: ../mail/mail-ops.c:1976
+#: ../mail/mail-ops.c:2056
#, c-format
msgid ""
"Error saving messages to: %s:\n"
@@ -14213,11 +15008,11 @@ msgstr ""
"ファイルの保存中にエラー: %s:\n"
" %s"
-#: ../mail/mail-ops.c:2048
+#: ../mail/mail-ops.c:2128
msgid "Saving attachment"
msgstr "添付ファイルの保存中"
-#: ../mail/mail-ops.c:2060 ../mail/mail-ops.c:2066
+#: ../mail/mail-ops.c:2146 ../mail/mail-ops.c:2154
#, c-format
msgid ""
"Cannot create output file: %s:\n"
@@ -14226,51 +15021,51 @@ msgstr ""
"出力ファイルを生成できません: %s:\n"
" %s"
-#: ../mail/mail-ops.c:2076
+#: ../mail/mail-ops.c:2169
#, c-format
msgid "Could not write data: %s"
msgstr "データを書き出せませんでした: %s"
-#: ../mail/mail-ops.c:2222
+#: ../mail/mail-ops.c:2315
#, c-format
msgid "Disconnecting from %s"
msgstr "%s からの接続はありません"
-#: ../mail/mail-ops.c:2222
+#: ../mail/mail-ops.c:2315
#, c-format
msgid "Reconnecting to %s"
msgstr "%s へ再接続中"
-#: ../mail/mail-ops.c:2318
+#: ../mail/mail-ops.c:2411
#, c-format
msgid "Preparing account '%s' for offline"
msgstr "オフラインの準備中 (アカウント: '%s')"
-#: ../mail/mail-ops.c:2404
+#: ../mail/mail-ops.c:2497
msgid "Checking Service"
msgstr "サービスの確認中"
-#: ../mail/mail-send-recv.c:190
+#: ../mail/mail-send-recv.c:181
msgid "Canceling..."
msgstr "キャンセル中..."
-#: ../mail/mail-send-recv.c:393
+#: ../mail/mail-send-recv.c:383
msgid "Send & Receive Mail"
msgstr "メールの送信と受信"
-#: ../mail/mail-send-recv.c:400
+#: ../mail/mail-send-recv.c:394
msgid "Cancel _All"
msgstr "全てキャンセル(_A)"
-#: ../mail/mail-send-recv.c:510
+#: ../mail/mail-send-recv.c:498
msgid "Updating..."
msgstr "更新中..."
-#: ../mail/mail-send-recv.c:510 ../mail/mail-send-recv.c:583
+#: ../mail/mail-send-recv.c:498 ../mail/mail-send-recv.c:573
msgid "Waiting..."
msgstr "待機中..."
-#: ../mail/mail-send-recv.c:810
+#: ../mail/mail-send-recv.c:799
#, c-format
msgid "Checking for new mail"
msgstr "新着メールの確認中"
@@ -14298,17 +15093,17 @@ msgstr "パスワードの入力"
msgid "User canceled operation."
msgstr "ユーザによって操作がキャンセルされました"
-#: ../mail/mail-signature-editor.c:384
-msgid "Edit signature"
-msgstr "署名の編集"
+#: ../mail/mail-signature-editor.c:201
+msgid "_Save and Close"
+msgstr "保存して閉じる(_S)"
-#: ../mail/mail-signature-editor.c:431
-msgid "Enter a name for this signature."
-msgstr "この署名の名前を入力して下さい:"
+#: ../mail/mail-signature-editor.c:355
+msgid "Edit Signature"
+msgstr "署名の編集"
-#: ../mail/mail-signature-editor.c:434
-msgid "Name:"
-msgstr "名前:"
+#: ../mail/mail-signature-editor.c:370
+msgid "_Signature Name:"
+msgstr "署名の名称(_S):"
#: ../mail/mail-tools.c:120
#, c-format
@@ -14349,52 +15144,47 @@ msgstr "仮想フォルダ '%s:%s' の更新中"
msgid "Updating Search Folders for '%s'"
msgstr "仮想フォルダ '%s' の更新中"
-#: ../mail/mail-vfolder.c:1059
+#: ../mail/mail-vfolder.c:1066
msgid "Edit Search Folder"
msgstr "フォルダの編集"
-#: ../mail/mail-vfolder.c:1148
+#: ../mail/mail-vfolder.c:1155
msgid "New Search Folder"
msgstr "新しい仮想フォルダ"
#: ../mail/mail.error.xml.h:1
-msgid ""
-"A folder named &quot;{0}&quot; already exists. Please use a different name."
-msgstr ""
-"既に &quot;{0}&quot; と同名のフォルダが存在します。別の名前を使用して下さい。"
+msgid "A folder named \"{0}\" already exists. Please use a different name."
+msgstr "既に \"{0}\" と同名のフォルダが存在します。別の名前を使用して下さい。"
#: ../mail/mail.error.xml.h:2
-msgid ""
-"A folder named &quot;{1}&quot; already exists. Please use a different name."
-msgstr ""
-"既に &quot;{1}&quot; と同名のフォルダが存在します。別の名前を使用して下さい。"
+msgid "A folder named \"{1}\" already exists. Please use a different name."
+msgstr "既に \"{1}\" と同名のフォルダが存在します。別の名前を使用して下さい。"
#: ../mail/mail.error.xml.h:3
msgid ""
-"A non-empty folder at &quot;{1}&quot; already exists.\n"
+"A non-empty folder at \"{1}\" already exists.\n"
"\n"
"You can choose to ignore this folder, overwrite or append its contents, or "
"quit."
msgstr ""
-"&quot;{1}&quot; に空ではないフォルダが存在します。\n"
+"\"{1}\" に空ではないフォルダが存在します。\n"
"\n"
"このフォルダを無視するか、上書きするか、そのフォルダの内容に追加するか、ある"
"いは終了するから選択できます"
#: ../mail/mail.error.xml.h:6
msgid ""
-"A read receipt notification has been requested for &quot;{1}&quot;. Send the "
-"receipt notification to {0}?"
+"A read receipt notification has been requested for \"{1}\". Send the receipt "
+"notification to {0}?"
msgstr ""
-"&quot;{1}&quot; さんが開封通知を要求しています。{0} さんへ開封通知を送信しま"
-"すか?"
+"\"{1}\" さんが開封通知を要求しています。\"{0}\" さんへ開封通知を送信します"
+"か?"
#: ../mail/mail.error.xml.h:7
msgid ""
-"A signature already exists with the name &quot;{0}&quot;. Please specify a "
-"different name."
-msgstr ""
-"既に &quot;{0}&quot; と同名の署名が存在します。別の名前を使用して下さい。"
+"A signature already exists with the name \"{0}\". Please specify a different "
+"name."
+msgstr "既に \"{0}\" と同名の署名が存在します。別の名前を使用して下さい。"
#: ../mail/mail.error.xml.h:8
msgid ""
@@ -14433,10 +15223,10 @@ msgstr ""
#: ../mail/mail.error.xml.h:14
msgid ""
"Are you sure you want to permanently remove all the deleted messages in "
-"folder &quot;{0}&quot;?"
+"folder \"{0}\"?"
msgstr ""
-"本当にフォルダ &quot;{0}&quot; にある削除マーク付きメッセージを完全に抹消して"
-"もよろしいですか?"
+"フォルダ \"{0}\" にある削除マーク付きメッセージを全て完全に抹消してもよろしい"
+"ですか?"
#: ../mail/mail.error.xml.h:15
msgid "Are you sure you want to send a message in HTML format?"
@@ -14451,101 +15241,103 @@ msgid "Are you sure you want to send a message without a subject?"
msgstr "件名を付けずにメッセージを送信してもよろしいですか?"
#: ../mail/mail.error.xml.h:18
-msgid "Because &quot;{0}&quot;."
-msgstr "理由は &quot;{0}&quot; です。"
+msgid "Because \"{0}\"."
+msgstr "原因は \"{0}\" です。"
#: ../mail/mail.error.xml.h:20
-msgid "Because &quot;{2}&quot;."
-msgstr "理由は &quot;{2}&quot; です。"
+msgid "Because \"{2}\"."
+msgstr "原因 \"{2}\" です。"
#: ../mail/mail.error.xml.h:21
msgid "Blank Signature"
msgstr "空の署名"
#: ../mail/mail.error.xml.h:22
-msgid "Cannot add Search Folder &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; という仮想フォルダを追加できません。"
+msgid "Cannot add Search Folder \"{0}\"."
+msgstr "仮想フォルダの \"{0}\" を追加できません。"
#: ../mail/mail.error.xml.h:23
-msgid "Cannot copy folder &quot;{0}&quot; to &quot;{1}&quot;."
-msgstr "&quot;{0}&quot; というフォルダを &quot;{1}&quot; へコピーできません。"
+msgid "Cannot copy folder \"{0}\" to \"{1}\"."
+msgstr "\"{0}\" というフォルダを \"{1}\" へコピーできません。"
#: ../mail/mail.error.xml.h:24
-msgid "Cannot create folder &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というフォルダを作成できません。"
+msgid "Cannot create folder \"{0}\"."
+msgstr "\"{0}\" というフォルダを作成できません。"
#: ../mail/mail.error.xml.h:25
msgid "Cannot create temporary save directory."
msgstr "作業フォルダを作成できません。"
#: ../mail/mail.error.xml.h:26
-msgid "Cannot create the save directory, because &quot;{1}&quot;"
-msgstr "&quot;{1}&quot; のため、保存フォルダを作成できません。"
+msgid "Cannot create the save directory, because \"{1}\""
+msgstr "\"{1}\" のため保存フォルダを作成できません。"
#: ../mail/mail.error.xml.h:27
-msgid "Cannot delete folder &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というフォルダを削除できません。"
+msgid "Cannot delete folder \"{0}\"."
+msgstr "\"{0}\" というフォルダを削除できません。"
#: ../mail/mail.error.xml.h:28
-msgid "Cannot delete system folder &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というシステム・フォルダを削除できません。"
+msgid "Cannot delete system folder \"{0}\"."
+msgstr "\"{0}\" というシステム・フォルダを削除できません。"
#: ../mail/mail.error.xml.h:29
-msgid "Cannot edit Search Folder &quot;{0}&quot; as it does not exist."
-msgstr "&quot;{0}&quot; という仮想フォルダは存在していないので編集できません。"
+msgid "Cannot edit Search Folder \"{0}\" as it does not exist."
+msgstr "\"{0}\" という仮想フォルダは存在していないので編集できません。"
#: ../mail/mail.error.xml.h:30
-msgid "Cannot move folder &quot;{0}&quot; to &quot;{1}&quot;."
-msgstr "&quot;{0}&quot; というフォルダを &quot;{1}&quot; へ移動できません。"
+msgid "Cannot move folder \"{0}\" to \"{1}\"."
+msgstr "\"{0}\" というフォルダを \"{1}\" へ移動できません。"
#: ../mail/mail.error.xml.h:31
-msgid "Cannot open source &quot;{1}&quot;"
-msgstr "&quot;{1}&quot; というソースを開けません。"
+msgid "Cannot open source \"{1}\""
+msgstr "\"{1}\" というソースを開けません。"
#: ../mail/mail.error.xml.h:32
-msgid "Cannot open source &quot;{2}&quot;."
-msgstr "&quot;{2}&quot; というソースを開けません。"
+msgid "Cannot open source \"{2}\"."
+msgstr "\"{2}\" というソースを開けません。"
#: ../mail/mail.error.xml.h:33
-msgid "Cannot open target &quot;{2}&quot;."
-msgstr "&quot;{2}&quot; というターゲットを開けません。"
+msgid "Cannot open target \"{2}\"."
+msgstr "\"{2}\" というターゲットを開けません。"
#: ../mail/mail.error.xml.h:34
msgid ""
-"Cannot read the license file &quot;{0}&quot;, due to an installation "
-"problem. You will not be able to use this provider until you can accept its "
-"license."
+"Cannot read the license file \"{0}\", due to an installation problem. You "
+"will not be able to use this provider until you can accept its license."
msgstr ""
-"&quot;{0}&quot; というライセンス・ファイルを読み込めません。インストールに問"
-"題があるようです。そのライセンスを受諾しない限り、このプロバイダを利用するこ"
-"とはできません。"
+"\"{0}\" というライセンス・ファイルを読み込めません。インストールに問題がある"
+"ようです。そのライセンスを受諾しない限り、このプロバイダを利用することはでき"
+"ません。"
#: ../mail/mail.error.xml.h:35
-msgid "Cannot rename &quot;{0}&quot; to &quot;{1}&quot;."
-msgstr "&quot;{0}&quot; から &quot;{1}&quot; に名前を変更できません。"
+msgid "Cannot rename \"{0}\" to \"{1}\"."
+msgstr "\"{0}\" から \"{1}\" に名前を変更できません。"
#: ../mail/mail.error.xml.h:36
-msgid "Cannot rename or move system folder &quot;{0}&quot;."
-msgstr ""
-"&quot;{0}&quot; というシステム・フォルダの名前の変更または移動はできません。"
+msgid "Cannot rename or move system folder \"{0}\"."
+msgstr "\"{0}\" というシステム・フォルダの名前の変更または移動はできません。"
#: ../mail/mail.error.xml.h:37
msgid "Cannot save changes to account."
msgstr "変更したアカウント情報を保存できません。"
#: ../mail/mail.error.xml.h:38
-msgid "Cannot save to directory &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というフォルダへ保存できません。"
+msgid "Cannot save to directory \"{0}\"."
+msgstr "\"{0}\" というフォルダへ保存できません。"
#: ../mail/mail.error.xml.h:39
-msgid "Cannot save to file &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; というファイルに保存できません。"
+msgid "Cannot save to file \"{0}\"."
+msgstr "\"{0}\" というファイルに保存できません。"
#: ../mail/mail.error.xml.h:40
-msgid "Cannot set signature script &quot;{0}&quot;."
-msgstr "&quot;{0}&quot; という署名スクリプトをセットできません。"
+msgid "Cannot set signature script \"{0}\"."
+msgstr "\"{0}\" という署名スクリプトをセットできません。"
#: ../mail/mail.error.xml.h:41
+msgid "Check Junk Failed"
+msgstr "ジャンクのチェックに失敗しました"
+
+#: ../mail/mail.error.xml.h:42
msgid ""
"Check to make sure your password is spelled correctly. Remember that many "
"passwords are case sensitive; your caps lock might be on."
@@ -14553,46 +15345,44 @@ msgstr ""
"パスワードの綴りが正しいか確認して下さい。パスワードは大/小文字を区別すること"
"に留意して下さい ([Caps Lock] キーが押下されているかもしれません)。"
-#: ../mail/mail.error.xml.h:42
+#: ../mail/mail.error.xml.h:43
msgid "Could not save signature file."
msgstr "署名ファイルを保存できませんでした。"
-#: ../mail/mail.error.xml.h:43
-msgid "Delete &quot;{0}&quot;?"
-msgstr "&quot;{0}&quot; を削除しますか?"
-
#: ../mail/mail.error.xml.h:44
-msgid "Delete account?"
-msgstr "アカウントを削除しますか?"
+msgid "Delete \"{0}\"?"
+msgstr "\"{0}\" を削除しますか?"
#: ../mail/mail.error.xml.h:45
-msgid "Delete messages in Search Folder &quot;{0}&quot;?"
-msgstr "仮想フォルダの &quot;{0}&quot; にあるメッセージを削除しますか?"
+msgid "Delete account?"
+msgstr "アカウントを削除しますか?"
+# Search Folder: 仮想フォルダ (検索フォルダではない)
#: ../mail/mail.error.xml.h:46
-msgid "Delete messages in Search Folder?"
-msgstr "検索フォルダからメッセージの削除"
+msgid "Delete messages in Search Folder \"{0}\"?"
+msgstr "\"{0}\" という仮想フォルダにあるメッセージを削除しますか?"
+# Search Folder: 仮想フォルダ (検索フォルダではない)
#: ../mail/mail.error.xml.h:47
+msgid "Delete messages in Search Folder?"
+msgstr "仮想フォルダからメッセージの削除"
+
+#: ../mail/mail.error.xml.h:48
msgid "Discard changes?"
msgstr "変更を破棄しますか?"
-#: ../mail/mail.error.xml.h:48
+#: ../mail/mail.error.xml.h:49
msgid "Do not d_elete"
msgstr "削除しない(_E)"
-#: ../mail/mail.error.xml.h:49
+#: ../mail/mail.error.xml.h:50
msgid "Do not delete"
msgstr "削除しない"
-#: ../mail/mail.error.xml.h:50
+#: ../mail/mail.error.xml.h:51
msgid "Do not disable"
msgstr "無効にしない"
-#: ../mail/mail.error.xml.h:51
-msgid "Do you want the operation to be performed also in the subfolders?"
-msgstr "サブフォルダに対しても操作を適用しますか?"
-
#: ../mail/mail.error.xml.h:52
msgid ""
"Do you want to locally synchronize the folders that are marked for offline "
@@ -14622,7 +15412,7 @@ msgstr "操作を実行する際にエラーが発生しました。"
#: ../mail/mail.error.xml.h:58
msgid "Error while {0}."
-msgstr "{0}する際にエラーが発生しました。"
+msgstr "{0}にエラーが発生しました"
#: ../mail/mail.error.xml.h:59
msgid "File exists but cannot overwrite it."
@@ -14696,34 +15486,26 @@ msgid "Mark all messages as read"
msgstr "全て既読にする"
#: ../mail/mail.error.xml.h:74
-msgid "Mark all messages in this folder and subfolders as read?"
-msgstr "このフォルダの中にある全てのメッセージとサブフォルダを既読にしますか?"
-
-#: ../mail/mail.error.xml.h:75
msgid "Missing folder."
msgstr "フォルダがありません。"
-#: ../mail/mail.error.xml.h:77
+#: ../mail/mail.error.xml.h:76
msgid "No sources selected."
msgstr "ソースが選択されていません。"
-#: ../mail/mail.error.xml.h:78
-msgid "Only on _Current Folder"
-msgstr "現在のフォルダのみ(_C)"
-
-#: ../mail/mail.error.xml.h:79
+#: ../mail/mail.error.xml.h:77
msgid "Opening too many messages at once may take a long time."
msgstr "一度にたくさんのメッセージを開くには時間がかかります。"
-#: ../mail/mail.error.xml.h:80
+#: ../mail/mail.error.xml.h:78
msgid "Please check your account settings and try again."
msgstr "アカウントの設定を確認して、もう一度試してみて下さい。"
-#: ../mail/mail.error.xml.h:81
+#: ../mail/mail.error.xml.h:79
msgid "Please enable the account or send using another account."
msgstr "アカウントを有効にするか、または別のアカウントで送信してみて下さい。"
-#: ../mail/mail.error.xml.h:82
+#: ../mail/mail.error.xml.h:80
msgid ""
"Please enter a valid email address in the To: field. You can search for "
"email addresses by clicking on the To: button next to the entry box."
@@ -14731,7 +15513,7 @@ msgstr ""
"\"宛先\" のフィールドに正しい E-メール・アドレスを入力して下さい。ボタン [宛"
"先] をクリックして表示されるダイアログで、E-メール・アドレスを検索できます。"
-#: ../mail/mail.error.xml.h:83
+#: ../mail/mail.error.xml.h:81
msgid ""
"Please make sure the following recipients are willing and able to receive "
"HTML email:\n"
@@ -14740,36 +15522,45 @@ msgstr ""
"次の宛先が HTML 形式のメールを受信できるかどうかを確認して下さい:\n"
"{0}"
-#: ../mail/mail.error.xml.h:85
+#: ../mail/mail.error.xml.h:83
msgid "Please provide an unique name to identify this signature."
msgstr "この署名を一意に識別するために重複しない名前を指定して下さい。"
-#: ../mail/mail.error.xml.h:86
+#: ../mail/mail.error.xml.h:84
msgid "Please wait."
msgstr "少々お待ち下さい。"
-#: ../mail/mail.error.xml.h:87
-msgid "Problem migrating old mail folder &quot;{0}&quot;."
-msgstr ""
-"&quot;{0}&quot; という古いメール・フォルダを移行する際に問題が発生しました。"
+#: ../mail/mail.error.xml.h:85
+msgid "Problem migrating old mail folder \"{0}\"."
+msgstr "\"{0}\" という古いメール・フォルダを移行する際に問題が発生しました。"
-#: ../mail/mail.error.xml.h:88
+#: ../mail/mail.error.xml.h:86
msgid "Querying server"
msgstr "サーバへ問い合わせ中"
-#: ../mail/mail.error.xml.h:89
+#: ../mail/mail.error.xml.h:87
msgid "Querying server for a list of supported authentication mechanisms."
msgstr "サポートしている認証メカニズムの一覧をサーバに問い合わせています。"
-#: ../mail/mail.error.xml.h:90
+#: ../mail/mail.error.xml.h:88
msgid "Read receipt requested."
msgstr "開封通知を要求しました"
+#: ../mail/mail.error.xml.h:89
+msgid "Really delete folder \"{0}\" and all of its subfolders?"
+msgstr "本当に \"{0}\" というフォルダとそのサブフォルダの全てを削除しますか?"
+
+# FIXME: 意味不明
+#: ../mail/mail.error.xml.h:90
+msgid "Report Junk Failed"
+msgstr "ジャンクの報告に失敗しました"
+
+# FIXME: 意味不明
#: ../mail/mail.error.xml.h:91
-msgid "Really delete folder &quot;{0}&quot; and all of its subfolders?"
-msgstr ""
-"本当に &quot;{0}&quot; というフォルダとそのサブフォルダの全てを削除しますか?"
+msgid "Report Not Junk Failed"
+msgstr "ジャンクの報告に失敗しませんでした"
+# Search Folder: 仮想フォルダ (検索フォルダではない)
#: ../mail/mail.error.xml.h:92
msgid "Search Folders automatically updated."
msgstr "仮想フォルダを自動的に更新しました。"
@@ -14814,33 +15605,34 @@ msgstr ""
"先が記述されます。これを回避するために、少なくとも \"宛先:\" または \"Cc:\" "
"に宛先を追加して下さい。"
+# Search Folder: 仮想フォルダ (検索フォルダではない)
#: ../mail/mail.error.xml.h:101
msgid ""
"The following Search Folder(s):\n"
"{0}\n"
"Used the now removed folder:\n"
-" &quot;{1}&quot;\n"
+" \"{1}\"\n"
"And have been updated."
msgstr ""
"次の仮想フォルダ\n"
"{0}\n"
"が削除済みフォルダに使用されています:\n"
-" &quot;{1}&quot;\n"
-"また、そのフォルダは更新済です。"
+" \"{1}\"\n"
+"さらにそのフォルダは更新済です。"
#: ../mail/mail.error.xml.h:106
msgid ""
"The following filter rule(s):\n"
"{0}\n"
"Used the now removed folder:\n"
-" &quot;{1}&quot;\n"
+" \"{1}\"\n"
"And have been updated."
msgstr ""
"次のフィルタ・ルール\n"
"{0}\n"
"が削除済みフォルダに使用されています:\n"
-" &quot;{1}&quot;\n"
-"また、そのフォルダは更新済みです。"
+" \"{1}\"\n"
+"さらにそのフォルダは更新済みです。"
#: ../mail/mail.error.xml.h:111
msgid "The script file must exist and be executable."
@@ -14953,10 +15745,8 @@ msgstr ""
"またはその両方を選択して下さい。"
#: ../mail/mail.error.xml.h:134
-msgid "Your login to your server &quot;{0}&quot; as &quot;{0}&quot; failed."
-msgstr ""
-"サーバ &quot;{0}&quot; というサーバへの (&quot;{0}&quot; としての) ログインに"
-"失敗しました。"
+msgid "Your login to your server \"{0}\" as \"{0}\" failed."
+msgstr "\"{0}\" というサーバへ \"{0}\" でログインを試みましたが失敗しました。"
#: ../mail/mail.error.xml.h:135
msgid "_Append"
@@ -14978,22 +15768,22 @@ msgstr "抹消する(_E)"
msgid "_Open Messages"
msgstr "メッセージを開く(_O)"
-#: ../mail/mail.error.xml.h:143
-msgid "on Current Folder and _Subfolders"
-msgstr "現在のフォルダとサブフォルダ(_S)"
-
-#: ../mail/message-list.c:1053
+#: ../mail/message-list.c:1052
msgid "Unseen"
msgstr "未読"
-#: ../mail/message-list.c:1054
+#: ../mail/message-list.c:1053
msgid "Seen"
msgstr "既読"
-#: ../mail/message-list.c:1055
+#: ../mail/message-list.c:1054
msgid "Answered"
msgstr "返答済み"
+#: ../mail/message-list.c:1055
+msgid "Forwarded"
+msgstr "転送済み"
+
#: ../mail/message-list.c:1056
msgid "Multiple Unseen Messages"
msgstr "複数の未読メッセージ"
@@ -15018,37 +15808,50 @@ msgstr "高い"
msgid "Highest"
msgstr "最も高い"
-#: ../mail/message-list.c:1614 ../widgets/table/e-cell-date.c:55
+#: ../mail/message-list.c:1596 ../widgets/table/e-cell-date.c:55
msgid "?"
msgstr "?"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../mail/message-list.c:1621 ../plugins/itip-formatter/itip-view.c:206
+#: ../mail/message-list.c:1603 ../plugins/itip-formatter/itip-view.c:203
#: ../widgets/table/e-cell-date.c:70
msgid "Today %l:%M %p"
msgstr "今日の%p%l:%M"
-#: ../mail/message-list.c:1630 ../widgets/table/e-cell-date.c:80
+#: ../mail/message-list.c:1612 ../widgets/table/e-cell-date.c:80
msgid "Yesterday %l:%M %p"
msgstr "昨日の%p%l:%M"
-#: ../mail/message-list.c:1642 ../widgets/table/e-cell-date.c:92
+#: ../mail/message-list.c:1624 ../widgets/table/e-cell-date.c:92
msgid "%a %l:%M %p"
msgstr "%p%l:%M (%a)"
-#: ../mail/message-list.c:1650 ../widgets/table/e-cell-date.c:100
+#: ../mail/message-list.c:1632 ../widgets/table/e-cell-date.c:100
msgid "%b %d %l:%M %p"
msgstr "%B%e日 %p%l:%M"
-#: ../mail/message-list.c:1652 ../widgets/table/e-cell-date.c:102
+#: ../mail/message-list.c:1634 ../widgets/table/e-cell-date.c:102
msgid "%b %d %Y"
msgstr "%Y年%B%e日"
-#: ../mail/message-list.c:3849
+#. there is some info why the message list is empty, let it be something useful
+#: ../mail/message-list.c:3916 ../mail/message-list.c:4373
msgid "Generating message list"
msgstr "メッセージ一覧の作成中"
+#: ../mail/message-list.c:4223
+msgid ""
+"No message satisfies your search criteria. Either clear search with Search-"
+">Clear menu item or change it."
+msgstr ""
+"検索条件を満足するメッセージはありません。検索条件をクリアするか変更して下さ"
+"い。"
+
+#: ../mail/message-list.c:4225
+msgid "There are no messages in this folder."
+msgstr "このフォルダにメッセージはありません。"
+
#: ../mail/message-list.etspec.h:3
msgid "Due By"
msgstr "期日"
@@ -15078,39 +15881,39 @@ msgstr "メッセージの送信"
msgid "Size"
msgstr "サイズ"
-#: ../mail/message-tag-followup.c:75
+#: ../mail/message-tag-followup.c:55
msgid "Call"
msgstr "呼び出す"
-#: ../mail/message-tag-followup.c:76
+#: ../mail/message-tag-followup.c:56
msgid "Do Not Forward"
msgstr "転送しない"
-#: ../mail/message-tag-followup.c:77
+#: ../mail/message-tag-followup.c:57
msgid "Follow-Up"
msgstr "フローアップ"
-#: ../mail/message-tag-followup.c:78
+#: ../mail/message-tag-followup.c:58
msgid "For Your Information"
msgstr "F.Y.I"
-#: ../mail/message-tag-followup.c:79 ../ui/evolution-mail-message.xml.h:42
+#: ../mail/message-tag-followup.c:59 ../ui/evolution-mail-message.xml.h:42
msgid "Forward"
msgstr "転送"
-#: ../mail/message-tag-followup.c:80
+#: ../mail/message-tag-followup.c:60
msgid "No Response Necessary"
msgstr "返信の必要なし"
-#: ../mail/message-tag-followup.c:83 ../ui/evolution-mail-message.xml.h:80
+#: ../mail/message-tag-followup.c:63 ../ui/evolution-mail-message.xml.h:80
msgid "Reply"
msgstr "返信"
-#: ../mail/message-tag-followup.c:84 ../ui/evolution-mail-message.xml.h:81
+#: ../mail/message-tag-followup.c:64 ../ui/evolution-mail-message.xml.h:81
msgid "Reply to All"
msgstr "全員へ返信"
-#: ../mail/message-tag-followup.c:85
+#: ../mail/message-tag-followup.c:65
msgid "Review"
msgstr "レビュー"
@@ -15135,6 +15938,10 @@ msgid "Subject contains"
msgstr "件名"
#: ../mail/searchtypes.xml.h:6
+msgid "Subject or Recipients contains"
+msgstr "件名または宛先"
+
+#: ../mail/searchtypes.xml.h:7
msgid "Subject or Sender contains"
msgstr "件名または差出人"
@@ -15147,20 +15954,12 @@ msgid "Provides core functionality for local address books."
msgstr "ローカルのアドレス帳を操作するために必要なプラグインです。"
#: ../plugins/attachment-reminder/apps-evolution-attachment-reminder.schemas.in.h:1
-msgid "Enable attachment reminder plugin"
-msgstr "添付し忘れ防止プラグインを有効にするかどうか"
-
-#: ../plugins/attachment-reminder/apps-evolution-attachment-reminder.schemas.in.h:2
-msgid "Enable attachment reminder plugin."
-msgstr "添付し忘れ防止プラグインを有効にするかどうかです。"
-
-#: ../plugins/attachment-reminder/apps-evolution-attachment-reminder.schemas.in.h:3
msgid ""
"List of clues for the attachment reminder plugin to look for in a message "
"body"
msgstr "添付し忘れ防止プラグインでメッセージの本文から検索する一連のキーワード"
-#: ../plugins/attachment-reminder/apps-evolution-attachment-reminder.schemas.in.h:4
+#: ../plugins/attachment-reminder/apps-evolution-attachment-reminder.schemas.in.h:2
msgid ""
"List of clues for the attachment reminder plugin to look for in a message "
"body."
@@ -15168,14 +15967,11 @@ msgstr ""
"添付し忘れ防止プラグインでメッセージの本文から検索する一連のキーワードをリス"
"トで指定します。"
-#: ../plugins/attachment-reminder/attachment-reminder.c:475
+#: ../plugins/attachment-reminder/attachment-reminder.c:474
+#: ../plugins/templates/templates.c:394
msgid "Keywords"
msgstr "キーワード"
-#: ../plugins/attachment-reminder/attachment-reminder.glade.h:1
-msgid "Remind _missing attachments"
-msgstr "何も添付されていない場合は警告する(_M)"
-
#: ../plugins/attachment-reminder/org-gnome-evolution-attachment-reminder.eplug.xml.h:1
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:1
msgid "Attachment Reminder"
@@ -15201,9 +15997,9 @@ msgstr ""
msgid "Message has no attachments"
msgstr "メッセージにはファイルが添付されていません"
-#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
-msgid "_Continue Editing"
-msgstr "編集を続行する(_C)"
+#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:5
+msgid "_Edit Message"
+msgstr "メッセージの編集(_E)"
#: ../plugins/audio-inline/org-gnome-audio-inline.eplug.xml.h:1
msgid ""
@@ -15217,27 +16013,27 @@ msgstr ""
msgid "Audio inline plugin"
msgstr "オーディオ関連のプラグイン"
-#: ../plugins/backup-restore/backup-restore.c:96
+#: ../plugins/backup-restore/backup-restore.c:107
msgid "Select name of the Evolution backup file"
msgstr "バックアップ・ファイルの選択"
-#: ../plugins/backup-restore/backup-restore.c:120
+#: ../plugins/backup-restore/backup-restore.c:136
msgid "_Restart Evolution after backup"
msgstr "バックアップが完了したら Evolution を再起動する(_R)"
-#: ../plugins/backup-restore/backup-restore.c:139
+#: ../plugins/backup-restore/backup-restore.c:159
msgid "Select name of the Evolution backup file to restore"
msgstr "リストアするバックアップ・ファイルの選択"
-#: ../plugins/backup-restore/backup-restore.c:163
+#: ../plugins/backup-restore/backup-restore.c:183
msgid "_Restart Evolution after restore"
msgstr "リストアした後に Evolution を再起動する(_R)"
-#: ../plugins/backup-restore/backup-restore.c:236
+#: ../plugins/backup-restore/backup-restore.c:256
msgid "Restore from backup"
msgstr "バックアップをリストアする"
-#: ../plugins/backup-restore/backup-restore.c:238
+#: ../plugins/backup-restore/backup-restore.c:258
msgid ""
"You can restore Evolution from your backup. It can restore all the Mails, "
"Calendars, Tasks, Memos, Contacts. \n"
@@ -15247,97 +16043,121 @@ msgstr ""
"ル/カレンダ/タスク/メモ/アドレス帳の全てをリストアします。\n"
"さらに個人の設定やメール・フィルタなども一緒にリストアします。"
-#: ../plugins/backup-restore/backup-restore.c:244
+#: ../plugins/backup-restore/backup-restore.c:264
msgid "_Restore Evolution from the backup file"
msgstr "バックアップ・ファイルからリストアする(_R)"
-#: ../plugins/backup-restore/backup-restore.c:251
+#: ../plugins/backup-restore/backup-restore.c:271
msgid "Please select an Evolution Archive to restore:"
msgstr "リストアする Evolution のアーカイブを選択して下さい:"
-#: ../plugins/backup-restore/backup-restore.c:254
+#: ../plugins/backup-restore/backup-restore.c:274
msgid "Choose a file to restore"
msgstr "リストアするファイルの選択"
-#: ../plugins/backup-restore/backup.c:40
+#: ../plugins/backup-restore/backup.c:46
msgid "Backup Evolution directory"
msgstr "Evolution フォルダのバックアップ"
-#: ../plugins/backup-restore/backup.c:42
+#: ../plugins/backup-restore/backup.c:48
msgid "Restore Evolution directory"
msgstr "Evolution フォルダのリストア"
-#: ../plugins/backup-restore/backup.c:44
+#: ../plugins/backup-restore/backup.c:50
msgid "Check Evolution Backup"
msgstr "バックアップの確認"
-#: ../plugins/backup-restore/backup.c:46
+#: ../plugins/backup-restore/backup.c:52
msgid "Restart Evolution"
msgstr "Evolution の再起動"
-#: ../plugins/backup-restore/backup.c:48
+#: ../plugins/backup-restore/backup.c:54
msgid "With Graphical User Interface"
msgstr "GUI を表示する"
-#: ../plugins/backup-restore/backup.c:69
-#: ../plugins/backup-restore/backup.c:110
+#: ../plugins/backup-restore/backup.c:105
+#: ../plugins/backup-restore/backup.c:238
msgid "Shutting down Evolution"
msgstr "Evolution のシャットダウン中"
-#: ../plugins/backup-restore/backup.c:74
+#: ../plugins/backup-restore/backup.c:112
msgid "Backing Evolution accounts and settings"
msgstr "Evolution アカウントと設定のバックアップ中"
-#: ../plugins/backup-restore/backup.c:78
+#: ../plugins/backup-restore/backup.c:116
msgid "Backing Evolution data (Mails, Contacts, Calendar, Tasks, Memos)"
msgstr ""
"Evolution のデータ (メール、連絡先、カレンダ、タスク、メモ) をバックアップし"
"ています"
-#: ../plugins/backup-restore/backup.c:88
+#: ../plugins/backup-restore/backup.c:127
msgid "Backup complete"
msgstr "バックアップが完了しました"
-#: ../plugins/backup-restore/backup.c:93
-#: ../plugins/backup-restore/backup.c:136
+#: ../plugins/backup-restore/backup.c:132
+#: ../plugins/backup-restore/backup.c:319
msgid "Restarting Evolution"
msgstr "Evolution のリストア中"
-#: ../plugins/backup-restore/backup.c:114
+#: ../plugins/backup-restore/backup.c:242
msgid "Backup current Evolution data"
msgstr "現在の Evolution データをバックアップする"
-#: ../plugins/backup-restore/backup.c:119
+#: ../plugins/backup-restore/backup.c:247
msgid "Extracting files from backup"
msgstr "バックアップからファイルを展開しています"
-#: ../plugins/backup-restore/backup.c:125
+#: ../plugins/backup-restore/backup.c:254
msgid "Loading Evolution settings"
msgstr "Evolution の設定を読み込んでいます"
-#: ../plugins/backup-restore/backup.c:129
+#: ../plugins/backup-restore/backup.c:258
msgid "Removing temporary backup files"
msgstr "作業用のバックアップ・ファイルを削除しています"
-#: ../plugins/backup-restore/backup.c:249
+#: ../plugins/backup-restore/backup.c:265
+msgid "Ensuring local sources"
+msgstr "バックアップ元のファイルを確認しています"
+
+#: ../plugins/backup-restore/backup.c:435
#, c-format
msgid "Backing up to the folder %s"
msgstr "%s にバックアップしています"
-#: ../plugins/backup-restore/backup.c:254
+#: ../plugins/backup-restore/backup.c:440
#, c-format
msgid "Restoring from the folder %s"
msgstr "%s からリストアしています"
#. Backup / Restore only can have GUI. We should restrict the rest
-#: ../plugins/backup-restore/backup.c:270
+#: ../plugins/backup-restore/backup.c:459
msgid "Evolution Backup"
msgstr "Evolution のバックアップ"
-#: ../plugins/backup-restore/backup.c:270
+#: ../plugins/backup-restore/backup.c:459
msgid "Evolution Restore"
msgstr "Evolution のリストア"
+#: ../plugins/backup-restore/backup.c:494
+msgid "Backing up Evolution Data"
+msgstr "Evolution データのバックアップ中"
+
+#: ../plugins/backup-restore/backup.c:495
+msgid "Please wait while Evolution is backing up your data."
+msgstr "データのバックアップが完了するまで少々お待ち下さい。"
+
+#: ../plugins/backup-restore/backup.c:497
+msgid "Restoring Evolution Data"
+msgstr "Evolution データのリストア中"
+
+#: ../plugins/backup-restore/backup.c:498
+msgid "Please wait while Evolution is restoring your data."
+msgstr "データのリストアが完了するまで少々お待ち下さい。"
+
+#: ../plugins/backup-restore/backup.c:516
+msgid "This may take a while depending on the amount of data in your account."
+msgstr "アカウントのデータ量に応じて時間がかかるかもしれません。"
+
#: ../plugins/backup-restore/org-gnome-backup-restore.eplug.xml.h:1
msgid "A plugin for backing up and restore Evolution data and settings."
msgstr ""
@@ -15373,14 +16193,22 @@ msgstr ""
"再起動させたいのであれば、次のオプションにチェックを入れておいて下さい。"
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:4
+msgid "Insufficient Permissions"
+msgstr "権限が適当ではありません"
+
+#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:5
msgid "Invalid Evolution backup file"
msgstr "バックアップ・ファイルが壊れています"
-#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:5
+#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:6
msgid "Please select a valid backup file to restore."
msgstr "リストアする妥当なバックアップ・ファイルを選択して下さい。"
-#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:6
+#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:7
+msgid "The selected folder is not writable."
+msgstr "選択したフォルダは書き込み可能ではありません。"
+
+#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:8
msgid ""
"This will delete all your current Evolution data and settings and restore "
"them from your backup. Evolution restore can start only when Evolution is "
@@ -15407,38 +16235,35 @@ msgstr "リストアの設定(_E)..."
msgid "_Backup Settings..."
msgstr "バックアップの設定(_B)..."
-#: ../plugins/bbdb/bbdb.c:541 ../plugins/bbdb/bbdb.c:550
+#: ../plugins/bbdb/bbdb.c:543 ../plugins/bbdb/bbdb.c:552
#: ../plugins/bbdb/org-gnome-evolution-bbdb.eplug.xml.h:1
msgid "Automatic Contacts"
msgstr "連絡先の自動生成"
#. Enable BBDB checkbox
-#: ../plugins/bbdb/bbdb.c:565
-msgid ""
-"_Automatically create entries in the addressbook when responding to messages"
+#: ../plugins/bbdb/bbdb.c:567
+msgid "_Auto-create addressbook entries when replying to messages"
msgstr "メッセージに応答したら自動的に連絡先をアドレス帳に登録する(_A)"
-#: ../plugins/bbdb/bbdb.c:571
+#: ../plugins/bbdb/bbdb.c:573
msgid "Select Address book for Automatic Contacts"
msgstr "連絡先の自動登録に使用するアドレス帳を選択して下さい:"
-#: ../plugins/bbdb/bbdb.c:586
+#: ../plugins/bbdb/bbdb.c:588
msgid "Instant Messaging Contacts"
msgstr "インスタント・メッセンジャーの連絡先"
#. Enable Gaim Checkbox
-#: ../plugins/bbdb/bbdb.c:601
-msgid ""
-"Periodically synchronize contact information and images from Pidgin buddy "
-"list"
+#: ../plugins/bbdb/bbdb.c:603
+msgid "Synchronize contact info and images from Pidgin buddy list"
msgstr "定期的に Pidgin の仲間リストから連絡先とその画像を同期する"
-#: ../plugins/bbdb/bbdb.c:607
+#: ../plugins/bbdb/bbdb.c:609
msgid "Select Address book for Pidgin buddy list"
msgstr "Pidgin の仲間リストとして使用するアドレス帳を選択して下さい:"
#. Synchronize now button.
-#: ../plugins/bbdb/bbdb.c:618
+#: ../plugins/bbdb/bbdb.c:620
msgid "Synchronize with _buddy list now"
msgstr "今すぐ仲間リストを同期する(_B)"
@@ -15448,15 +16273,36 @@ msgid ""
"reply to messages. Also fills in IM contact information from your buddy "
"lists."
msgstr ""
-"メッセージに返信した際の宛先 (氏名と E-メール・アドレス) で自動的にアドレス帳"
-"の内容を生成します。さらに、インスタント・メッセンジャーの仲間リストから連絡"
-"先の情報も取得します。"
+"メッセージに返信した際の宛先 (氏名と E-メール・アドレス) を基にして自動的にア"
+"ドレス帳の内容を生成するプラグインです。さらに、インスタント・メッセンジャー"
+"の仲間リストから連絡先の情報も取得します。"
#: ../plugins/bbdb/org-gnome-evolution-bbdb.eplug.xml.h:3
msgid "BBDB"
msgstr "BBDB"
-#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:303
+#. For Translators: The first %s stands for the executable full path with a file name, the second is the error message itself.
+#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:114
+#, c-format
+msgid "Error occurred while spawning %s: %s."
+msgstr "%s を子プロセスで実行する際にエラーが発生しました: %s"
+
+#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:138
+#, c-format
+msgid "Bogofilter child process does not respond, killing..."
+msgstr "Bogofilter の子プロセスから応答がないので強制終了させています..."
+
+#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:140
+#, c-format
+msgid "Wait for Bogofilter child process interrupted, terminating..."
+msgstr "Bogofilter の子プロセスからの割り込み待ちに入ります..."
+
+#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:152
+#, c-format
+msgid "Pipe to Bogofilter failed, error code: %d."
+msgstr "Bogofilter に対するパイプが失敗しました (エラー・コード: %d)"
+
+#: ../plugins/bogo-junk-plugin/bf-junk-filter.c:313
msgid "Convert message text to _Unicode"
msgstr "メッセージを Unicode に変換する(_U)"
@@ -15477,20 +16323,26 @@ msgid "Bogofilter Options"
msgstr "Bogofilter のオプション"
#: ../plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml.h:2
+msgid "Bogofilter junk plugin"
+msgstr "Bogofilter ジャンク・メールのプラグイン"
+
+#: ../plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml.h:3
msgid "Filters junk messages using Bogofilter."
-msgstr "Bogofilter を使ってジャンク・メールをフィルタリングします。"
+msgstr ""
+"Bogofilter を使ってジャンク・メールをフィルタリングするプラグインです。"
-#: ../plugins/caldav/caldav-source.c:64 ../plugins/caldav/caldav-source.c:68
+#: ../plugins/caldav/caldav-source.c:66 ../plugins/caldav/caldav-source.c:70
msgid "CalDAV"
msgstr "CalDAV"
-#: ../plugins/caldav/caldav-source.c:247
-#: ../plugins/calendar-http/calendar-http.c:135
+#: ../plugins/caldav/caldav-source.c:249
+#: ../plugins/calendar-http/calendar-http.c:126
msgid "_URL:"
msgstr "URL(_U):"
-#: ../plugins/caldav/caldav-source.c:269
-#: ../plugins/google-account-setup/google-source.c:351
+#: ../plugins/caldav/caldav-source.c:271
+#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "SSL を使用する(_S)"
@@ -15510,17 +16362,18 @@ msgstr "ローカルのカレンダ機能"
msgid "Provides core functionality for local calendars."
msgstr "ローカルのカレンダ機能を提供するために必要なプラグインです。"
-#: ../plugins/calendar-http/calendar-http.c:273
+#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
-#: ../plugins/google-account-setup/google-source.c:375
-msgid "_Refresh:"
-msgstr "更新(_R):"
+#: ../plugins/google-account-setup/google-source.c:695
+#: ../plugins/google-account-setup/google-contacts-source.c:320
+msgid "Re_fresh:"
+msgstr "リフレッシュ(_F):"
-#: ../plugins/calendar-http/calendar-http.c:341
+#: ../plugins/calendar-http/calendar-http.c:332
msgid "_Secure connection"
msgstr "セキュアな接続を利用する(_S)"
-#: ../plugins/calendar-http/calendar-http.c:406
+#: ../plugins/calendar-http/calendar-http.c:397
msgid "Userna_me:"
msgstr "ユーザ名(_M):"
@@ -15622,14 +16475,25 @@ msgid "Do you want to make Evolution your default e-mail client?"
msgstr "Evolution をデフォルトのメーラーにしますか?"
#: ../plugins/default-mailer/org-gnome-default-mailer.error.xml.h:2
-#: ../shell/main.c:690
+#: ../shell/main.c:679
msgid "Evolution"
msgstr "Evolution"
#: ../plugins/default-source/default-source.c:81
-#: ../plugins/default-source/default-source.c:108
-msgid "Mark as _default folder"
-msgstr "デフォルトのフォルダにする(_D)"
+msgid "Mark as _default address book"
+msgstr "デフォルトのアドレス帳にする(_D)"
+
+#: ../plugins/default-source/default-source.c:102
+msgid "Mark as _default calendar"
+msgstr "デフォルトのカレンダにする(_D)"
+
+#: ../plugins/default-source/default-source.c:103
+msgid "Mark as _default task list"
+msgstr "デフォルトのタスクの一覧にする(_D)"
+
+#: ../plugins/default-source/default-source.c:104
+msgid "Mark as _default memo list"
+msgstr "デフォルトのメモの一覧にする(_D)"
#: ../plugins/default-source/org-gnome-default-source.eplug.xml.h:1
msgid "Default Sources"
@@ -15641,6 +16505,54 @@ msgid ""
"default one."
msgstr "カレンダまたはアドレス帳のデフォルトを設定するためのプラグインです。"
+#: ../plugins/email-custom-header/email-custom-header.c:558
+msgid "_Custom Header"
+msgstr "独自のヘッダ(_C)"
+
+#: ../plugins/email-custom-header/email-custom-header.c:879
+msgid "Key"
+msgstr "キー"
+
+#: ../plugins/email-custom-header/email-custom-header.c:890
+#: ../plugins/templates/templates.c:400
+msgid "Values"
+msgstr "値"
+
+#. To translators: This string is used while adding a new message header to configuration, to specifying the format of the key values
+#: ../plugins/email-custom-header/email-custom-header.glade.h:2
+msgid ""
+"The format for specifying a Custom Header key value is:\n"
+"Name of the Custom Header key values separated by \";\"."
+msgstr ""
+"独自ヘッダを構成する情報をキーとその値で指定して下さい:\n"
+"キーの値は \";\" 文字で区切って下さい。"
+
+#: ../plugins/email-custom-header/org-gnome-email-custom-header.glade.h:1
+msgid "Email Custom Header"
+msgstr "E-メールの独自ヘッダ"
+
+#. For Translators: 'custom header' string is used while adding a new message header to outgoing message, to specify what value for the message header would be added
+#: ../plugins/email-custom-header/org-gnome-email-custom-header.eplug.xml.h:2
+msgid "Adds custom header to outgoing messages."
+msgstr "独自のヘッダを送信するメールに付与するプラグインです。"
+
+#: ../plugins/email-custom-header/org-gnome-email-custom-header.eplug.xml.h:3
+msgid "Custom Header"
+msgstr "独自のヘッダ"
+
+#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:1
+msgid "List of Custom Headers"
+msgstr "独自ヘッダのリスト"
+
+#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:2
+msgid ""
+"The key specifies the list of custom headers that you can add to an outgoing "
+"message. The format for specifying a Header and Header value is: Name of the "
+"custom header followed by \"=\" and the values separated by \";\""
+msgstr ""
+"送信するメールに独自のヘッダとして挿入するキーのリストです。その書式は \"=\" "
+"の次に独自ヘッダの名前を指定して \";\" でその値を区切ります。"
+
#: ../plugins/exchange-operations/e-foreign-folder-dialog.glade.h:1
msgid "Open Other User's Folder"
msgstr "他のユーザのフォルダを開く"
@@ -15658,12 +16570,12 @@ msgid "_User:"
msgstr "ユーザ名(_U):"
#. i18n: "Secure Password Authentication" is an Outlookism
-#: ../plugins/exchange-operations/exchange-account-setup.c:63
+#: ../plugins/exchange-operations/exchange-account-setup.c:61
msgid "Secure Password"
msgstr "セキュアなパスワード"
#. i18n: "NTLM" probably doesn't translate
-#: ../plugins/exchange-operations/exchange-account-setup.c:66
+#: ../plugins/exchange-operations/exchange-account-setup.c:64
msgid ""
"This option will connect to the Exchange server using secure password (NTLM) "
"authentication."
@@ -15671,22 +16583,22 @@ msgstr ""
"セキュアなパスワード (NTLM) 認証を用いて Exchange サーバと接続するオプション"
"です。"
-#: ../plugins/exchange-operations/exchange-account-setup.c:74
+#: ../plugins/exchange-operations/exchange-account-setup.c:72
msgid "Plaintext Password"
msgstr "パスワード (文字列)"
-#: ../plugins/exchange-operations/exchange-account-setup.c:76
+#: ../plugins/exchange-operations/exchange-account-setup.c:74
msgid ""
"This option will connect to the Exchange server using standard plaintext "
"password authentication."
msgstr ""
"標準的なパスワード認証を用いて Exchange サーバと接続するオプションです。"
-#: ../plugins/exchange-operations/exchange-account-setup.c:257
+#: ../plugins/exchange-operations/exchange-account-setup.c:255
msgid "Out Of Office"
msgstr "外出中"
-#: ../plugins/exchange-operations/exchange-account-setup.c:264
+#: ../plugins/exchange-operations/exchange-account-setup.c:262
msgid ""
"The message specified below will be automatically sent to \n"
"each person who sends mail to you while you are out of the office."
@@ -15694,77 +16606,81 @@ msgstr ""
"下で選択したメッセージは、あなたが外出した時に\n"
"メールを送信してきた人達へ自動的に送付されます。"
-#: ../plugins/exchange-operations/exchange-account-setup.c:276
-#: ../plugins/exchange-operations/exchange-account-setup.c:281
+#: ../plugins/exchange-operations/exchange-account-setup.c:274
+#: ../plugins/exchange-operations/exchange-account-setup.c:279
msgid "I am out of the office"
msgstr "現在、私は外出中です"
-#: ../plugins/exchange-operations/exchange-account-setup.c:277
-#: ../plugins/exchange-operations/exchange-account-setup.c:280
+#: ../plugins/exchange-operations/exchange-account-setup.c:275
+#: ../plugins/exchange-operations/exchange-account-setup.c:278
msgid "I am in the office"
msgstr "現在、私は在席中です"
#. Change Password
-#: ../plugins/exchange-operations/exchange-account-setup.c:328
+#: ../plugins/exchange-operations/exchange-account-setup.c:326
msgid "Change the password for Exchange account"
msgstr "Exchange アカウントのパスワードの変更"
-#: ../plugins/exchange-operations/exchange-account-setup.c:330
+#: ../plugins/exchange-operations/exchange-account-setup.c:328
#: ../plugins/exchange-operations/exchange-change-password.glade.h:1
msgid "Change Password"
msgstr "パスワードの変更"
#. Delegation Assistant
-#: ../plugins/exchange-operations/exchange-account-setup.c:335
+#: ../plugins/exchange-operations/exchange-account-setup.c:333
msgid "Manage the delegate settings for Exchange account"
msgstr "Exchange アカウントのデリゲート設定の管理"
-#: ../plugins/exchange-operations/exchange-account-setup.c:337
+#: ../plugins/exchange-operations/exchange-account-setup.c:335
msgid "Delegation Assistant"
msgstr "アシスタントの委任"
#. Miscelleneous settings
-#: ../plugins/exchange-operations/exchange-account-setup.c:349
+#: ../plugins/exchange-operations/exchange-account-setup.c:347
msgid "Miscelleneous"
msgstr "その他"
#. Folder Size
-#: ../plugins/exchange-operations/exchange-account-setup.c:359
+#: ../plugins/exchange-operations/exchange-account-setup.c:357
msgid "View the size of all Exchange folders"
msgstr "全ての Exchange フォルダのサイズを表示する"
-#: ../plugins/exchange-operations/exchange-account-setup.c:361
+#: ../plugins/exchange-operations/exchange-account-setup.c:359
msgid "Folders Size"
msgstr "フォルダのサイズ"
-#: ../plugins/exchange-operations/exchange-account-setup.c:368
+#: ../plugins/exchange-operations/exchange-account-setup.c:366
#: ../plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml.h:3
msgid "Exchange Settings"
msgstr "Exchange の設定"
-#: ../plugins/exchange-operations/exchange-account-setup.c:625
+#: ../plugins/exchange-operations/exchange-account-setup.c:688
msgid "_OWA URL:"
msgstr "OWA URL(_O):"
-#: ../plugins/exchange-operations/exchange-account-setup.c:651
+#: ../plugins/exchange-operations/exchange-account-setup.c:714
msgid "A_uthenticate"
msgstr "認証(_U)"
-#: ../plugins/exchange-operations/exchange-account-setup.c:854
+#: ../plugins/exchange-operations/exchange-account-setup.c:735
+msgid "_Mailbox:"
+msgstr "メール箱(_M)"
+
+#: ../plugins/exchange-operations/exchange-account-setup.c:936
msgid "_Authentication Type"
msgstr "認証の種類(_A)"
-#: ../plugins/exchange-operations/exchange-account-setup.c:868
+#: ../plugins/exchange-operations/exchange-account-setup.c:950
msgid "Ch_eck for Supported Types"
msgstr "サポートしているかチェックする(_E)"
-#: ../plugins/exchange-operations/exchange-account-setup.c:980
+#: ../plugins/exchange-operations/exchange-account-setup.c:1062
#: ../plugins/exchange-operations/exchange-contacts.c:212
#, c-format
msgid "%s KB"
msgstr "%s Kバイト"
-#: ../plugins/exchange-operations/exchange-account-setup.c:982
+#: ../plugins/exchange-operations/exchange-account-setup.c:1064
#: ../plugins/exchange-operations/exchange-contacts.c:214
#, c-format
msgid "0 KB"
@@ -15782,7 +16698,7 @@ msgstr ""
#. User entered a wrong existing
#. * password. Prompt him again.
#.
-#: ../plugins/exchange-operations/exchange-change-password.c:115
+#: ../plugins/exchange-operations/exchange-change-password.c:113
msgid ""
"The current password does not match the existing password for your account. "
"Please enter the correct password"
@@ -15790,7 +16706,7 @@ msgstr ""
"\"現在のパスワード\" がお使いのアカウントに対する既存のパスワードと一致しませ"
"ん。正しいパスワードを入力して下さい。"
-#: ../plugins/exchange-operations/exchange-change-password.c:122
+#: ../plugins/exchange-operations/exchange-change-password.c:120
msgid "The two passwords do not match. Please re-enter the passwords."
msgstr "二つのパスワードが一致しません。もう一度、パスワードを入力して下さい。"
@@ -15815,33 +16731,33 @@ msgstr "お使いのパスワードは期限切れです。今すぐパスワー
msgid "Your password will expire in the next %d days"
msgstr "お使いのパスワードはあと %d日で期限切れになります"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:164
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:580
+#: ../plugins/exchange-operations/exchange-delegates-user.c:152
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:568
msgid "Custom"
msgstr "カスタマイズ"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:194
+#: ../plugins/exchange-operations/exchange-delegates-user.c:182
#: ../plugins/exchange-operations/exchange-delegates.glade.h:8
msgid "Editor (read, create, edit)"
msgstr "編集者 (読み込み可/作成可/編集可)"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:198
+#: ../plugins/exchange-operations/exchange-delegates-user.c:186
#: ../plugins/exchange-operations/exchange-delegates.glade.h:1
msgid "Author (read, create)"
msgstr "作者 (読み込み可/作成可)"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:202
+#: ../plugins/exchange-operations/exchange-delegates-user.c:190
#: ../plugins/exchange-operations/exchange-delegates.glade.h:11
msgid "Reviewer (read-only)"
msgstr "レビューア (読み込みのみ)"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:252
+#: ../plugins/exchange-operations/exchange-delegates-user.c:240
#: ../plugins/exchange-operations/exchange-delegates.glade.h:6
msgid "Delegate Permissions"
msgstr "委任の権限"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:263
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:188
+#: ../plugins/exchange-operations/exchange-delegates-user.c:251
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:176
#, c-format
msgid "Permissions for %s"
msgstr "%s さんに対する権限"
@@ -15849,7 +16765,7 @@ msgstr "%s さんに対する権限"
#. To translators: This is a part of the message to be sent to the delegatee
#. summarizing the permissions assigned to him.
#.
-#: ../plugins/exchange-operations/exchange-delegates-user.c:353
+#: ../plugins/exchange-operations/exchange-delegates-user.c:341
msgid ""
"This message was sent automatically by Evolution to inform you that you have "
"been designated as a delegate. You can now send messages on my behalf."
@@ -15860,66 +16776,66 @@ msgstr ""
#. To translators: Another chunk of the same message.
#.
-#: ../plugins/exchange-operations/exchange-delegates-user.c:358
+#: ../plugins/exchange-operations/exchange-delegates-user.c:346
msgid "You have been given the following permissions on my folders:"
msgstr "あなたは私のフォルダに対して次に示す権限が与えられました:"
#. To translators: This message is included if the delegatee has been given access
#. to the private items.
#.
-#: ../plugins/exchange-operations/exchange-delegates-user.c:376
+#: ../plugins/exchange-operations/exchange-delegates-user.c:364
msgid "You are also permitted to see my private items."
msgstr "さらに、あなたは私の個人的なアイテムを参照できるようになりました。"
#. To translators: This message is included if the delegatee has not been given access
#. to the private items.
#.
-#: ../plugins/exchange-operations/exchange-delegates-user.c:383
+#: ../plugins/exchange-operations/exchange-delegates-user.c:371
msgid "However you are not permitted to see my private items."
msgstr "但し、あなたは私の個人的なアイテムを参照することはできません。"
-#: ../plugins/exchange-operations/exchange-delegates-user.c:415
+#: ../plugins/exchange-operations/exchange-delegates-user.c:403
#, c-format
msgid "You have been designated as a delegate for %s"
msgstr "あなたは %s さんの委任者に指名されました"
-#: ../plugins/exchange-operations/exchange-delegates.c:421
+#: ../plugins/exchange-operations/exchange-delegates.c:415
msgid "Delegate To"
msgstr "委任先"
-#: ../plugins/exchange-operations/exchange-delegates.c:586
+#: ../plugins/exchange-operations/exchange-delegates.c:580
#, c-format
msgid "Remove the delegate %s?"
msgstr "%s さんに対する委任を削除しますか?"
-#: ../plugins/exchange-operations/exchange-delegates.c:704
+#: ../plugins/exchange-operations/exchange-delegates.c:698
msgid "Could not access Active Directory"
msgstr "Active Directory にアクセスできませんでした"
-#: ../plugins/exchange-operations/exchange-delegates.c:716
+#: ../plugins/exchange-operations/exchange-delegates.c:710
msgid "Could not find self in Active Directory"
msgstr "Active Directory で self が見つかりませんでした"
-#: ../plugins/exchange-operations/exchange-delegates.c:729
+#: ../plugins/exchange-operations/exchange-delegates.c:723
#, c-format
msgid "Could not find delegate %s in Active Directory"
msgstr "Active Directory で DeleGate %s が見つかりませんでした<"
-#: ../plugins/exchange-operations/exchange-delegates.c:741
+#: ../plugins/exchange-operations/exchange-delegates.c:735
#, c-format
msgid "Could not remove delegate %s"
msgstr "DeleGate %s を削除できませんでした"
-#: ../plugins/exchange-operations/exchange-delegates.c:801
+#: ../plugins/exchange-operations/exchange-delegates.c:795
msgid "Could not update list of delegates."
msgstr "DeleGate の一覧を更新できませんでした"
-#: ../plugins/exchange-operations/exchange-delegates.c:819
+#: ../plugins/exchange-operations/exchange-delegates.c:813
#, c-format
msgid "Could not add delegate %s"
msgstr "DeleGate %s を追加できませんでした"
-#: ../plugins/exchange-operations/exchange-delegates.c:987
+#: ../plugins/exchange-operations/exchange-delegates.c:981
msgid "Error reading delegates list."
msgstr "DeleGate の一覧を読み込む際にエラー"
@@ -15967,20 +16883,25 @@ msgstr "権限の一覧(_S)"
msgid "_Tasks:"
msgstr "タスク(_T):"
-#: ../plugins/exchange-operations/exchange-folder-permission.c:61
+#: ../plugins/exchange-operations/exchange-folder-permission.c:59
#: ../plugins/exchange-operations/org-gnome-folder-permissions.xml.h:2
msgid "Permissions..."
msgstr "権限..."
-#: ../plugins/exchange-operations/exchange-folder-size-display.c:133
+#: ../plugins/exchange-operations/exchange-folder-size-display.c:128
msgid "Folder Name"
msgstr "フォルダ名"
-#: ../plugins/exchange-operations/exchange-folder-size-display.c:137
+#: ../plugins/exchange-operations/exchange-folder-size-display.c:132
msgid "Folder Size"
msgstr "フォルダのサイズ"
-#: ../plugins/exchange-operations/exchange-folder-subscription.c:316
+#. FIXME Limit to one user
+#: ../plugins/exchange-operations/exchange-folder-subscription.c:75
+msgid "User"
+msgstr "ユーザ"
+
+#: ../plugins/exchange-operations/exchange-folder-subscription.c:318
#: ../plugins/exchange-operations/org-gnome-folder-subscription.xml.h:1
msgid "Subscribe to Other User's Folder"
msgstr "他ユーザのフォルダの購読"
@@ -15989,20 +16910,20 @@ msgstr "他ユーザのフォルダの購読"
msgid "Exchange Folder Tree"
msgstr "Exchange フォルダのツリー"
-#: ../plugins/exchange-operations/exchange-folder.c:66
-#: ../plugins/exchange-operations/exchange-folder.c:235
-#: ../plugins/exchange-operations/exchange-folder.c:245
+#: ../plugins/exchange-operations/exchange-folder.c:65
+#: ../plugins/exchange-operations/exchange-folder.c:234
+#: ../plugins/exchange-operations/exchange-folder.c:244
msgid "Unsubscribe Folder..."
msgstr "フォルダの購読停止..."
-#: ../plugins/exchange-operations/exchange-folder.c:465
-#: ../plugins/exchange-operations/exchange-folder.c:520
+#: ../plugins/exchange-operations/exchange-folder.c:464
+#: ../plugins/exchange-operations/exchange-folder.c:519
#, c-format
msgid "Really unsubscribe from folder \"%s\"?"
msgstr "本当にフォルダ \"%s\" の購読を停止しますか?"
-#: ../plugins/exchange-operations/exchange-folder.c:477
-#: ../plugins/exchange-operations/exchange-folder.c:532
+#: ../plugins/exchange-operations/exchange-folder.c:476
+#: ../plugins/exchange-operations/exchange-folder.c:531
#, c-format
msgid "Unsubscribe from \"%s\""
msgstr "フォルダ \"%s\" の購読停止"
@@ -16066,15 +16987,18 @@ msgstr "お使いのパスワードはあと 7日で期限切れになります.
msgid "_Change Password"
msgstr "パスワードの変更(_C)"
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:305
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:293
msgid "(Permission denied.)"
msgstr "(権限がありません)"
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:413
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
msgid "Add User:"
msgstr "追加するユーザ:"
-#: ../plugins/exchange-operations/exchange-permissions-dialog.c:413
+#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
+#: ../plugins/exchange-operations/exchange-send-options.c:408
+#: ../plugins/groupwise-features/proxy.c:934
+#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
msgstr "ユーザの追加"
@@ -16196,11 +17120,11 @@ msgstr "ユーザ(_U)"
msgid "button-user"
msgstr "button-user"
-#: ../plugins/exchange-operations/exchange-user-dialog.c:143
+#: ../plugins/exchange-operations/exchange-user-dialog.c:138
msgid "Select User"
msgstr "ユーザの選択"
-#: ../plugins/exchange-operations/exchange-user-dialog.c:181
+#: ../plugins/exchange-operations/exchange-user-dialog.c:176
msgid "Address Book..."
msgstr "アドレス帳..."
@@ -16214,9 +17138,10 @@ msgstr "他ユーザのカレンダの購読"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml.h:1
msgid ""
-"A plugin that handles a collection of Exchange account specific operations "
+"A plugin that manages a collection of Exchange account specific operations "
"and features."
-msgstr "Exchange アカウントの収集に関する操作と機能を提供するプラグインです。"
+msgstr ""
+"Exchange のアカウントの収集に関する操作と機能を管理するプラグインです。"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml.h:2
msgid "Exchange Operations"
@@ -16306,10 +17231,15 @@ msgid "Could not update out-of-office state"
msgstr "\"外出中\" の状態を更新できませんでした。"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:21
+msgid "Evolution requires a restart to load the subscribed user's mailbox"
+msgstr ""
+"購読しているユーザの受信箱を読み込むには Evolution を再起動して下さい。"
+
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:22
msgid "Exchange Account is offline."
msgstr "Exchange アカウントはオフラインです。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:22
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:23
msgid ""
"Exchange Connector requires access to certain\n"
"functionality on the Exchange Server that appears\n"
@@ -16338,32 +17268,32 @@ msgstr ""
"{0}\n"
" "
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:34
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:35
msgid "Failed to update delegates:"
msgstr "DeleGate の更新に失敗しました:"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:35
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:36
msgid "Folder already exists"
msgstr "既にフォルダが存在しています"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:36
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:37
msgid "Folder does not exist"
msgstr "フォルダが存在しません"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:37
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:38
msgid "Folder offline"
msgstr "フォルダはオフラインです"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:38
-#: ../shell/e-shell.c:1288
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:39
+#: ../shell/e-shell.c:1286
msgid "Generic error"
msgstr "一般的なエラー"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:39
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:40
msgid "Global Catalog Server is not reachable"
msgstr "Global Catalog サーバに送信できません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:40
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:41
msgid ""
"If OWA is running on a different path, you must specify that in the account "
"configuration dialog."
@@ -16371,73 +17301,73 @@ msgstr ""
"OWA が他のパスで実行中の場合は、そのパス名をアカウント設定ダイアログの中で指"
"定して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:41
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:42
msgid "Mailbox for {0} is not on this server."
msgstr "このサーバには {0} の Mailbox は存在しません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:42
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:43
msgid "Make sure the URL is correct and try again."
msgstr "正しい URL であることを確認して、もう一度実行して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:43
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:44
msgid "Make sure the server name is spelled correctly and try again."
msgstr "サーバ名の綴りが正しいことを確認して、もう一度実行して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:44
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:45
msgid "Make sure the username and password are correct and try again."
msgstr "ユーザ名とパスワードが正しいことを確認して、もう一度実行して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:45
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:46
msgid "No Global Catalog server configured for this account."
msgstr "このアカウントに対して設定された Global Catalog サーバではありません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:46
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:47
msgid "No mailbox for user {0} on {1}."
msgstr "{1} には {0} というユーザの受信箱はありません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:47
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:48
msgid "No such user {0}"
msgstr "{0} というユーザは登録されていません"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:48
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:49
msgid "Password successfully changed."
msgstr "パスワードの変更が完了しました。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:50
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:51
msgid "Please enter a Delegate's ID or deselect the Send as a Delegate option."
msgstr ""
"委任の ID を入力するか、または \"委任オプションとして送信\" の選択を解除して"
"下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:51
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:52
msgid "Please make sure the Global Catalog Server name is correct."
msgstr "Global Catalog サーバの名前をもう一度確認して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:52
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:53
msgid "Please restart Evolution for changes to take effect"
msgstr "変更点を適用するために Evolution を再起動して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:53
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:54
msgid "Please select a user."
msgstr "ユーザを選択して下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:54
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:55
msgid "Server rejected password because it is too weak."
msgstr "パスワードが不十分なのでサーバが拒否してきました。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:55
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:56
msgid "The Exchange account will be disabled when you quit Evolution"
msgstr "Evolution を終了すると Exchange のアカウントは無効になります"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:56
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:57
msgid "The Exchange account will be removed when you quit Evolution"
msgstr "Evolution を終了すると Exchange のアカウントが削除されます"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:57
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:58
msgid "The Exchange server is not compatible with Exchange Connector."
msgstr "その Exchange サーバは Exchange コネクタと互換性がありません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:58
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:59
msgid ""
"The server is running Exchange 5.5. Exchange Connector \n"
"supports Microsoft Exchange 2000 and 2003 only."
@@ -16446,7 +17376,7 @@ msgstr ""
"Exchange コネクタがサポートするバージョンは\n"
"Microsoft Exchange 2000 と 2003 だけです。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:60
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:61
msgid ""
"This probably means that your server requires \n"
"you to specify the Windows domain name \n"
@@ -16460,60 +17390,61 @@ msgstr ""
"\n"
"あるいは、単に入力したパスワードが間違っているだけかもしれません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:65
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:66
msgid "Try again with a different password."
msgstr "もう一度、別のパスワードで試してみて下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:66
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:67
msgid "Unable to add user to access control list:"
msgstr "ユーザをアクセス・コントロール・リストに追加できません:"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:67
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:68
msgid "Unable to edit delegates."
msgstr "DeleGate を編集できません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:68
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:69
msgid "Unknown error looking up {0}"
msgstr "{0} の検索中に原因不明のエラー"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:69
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:70
+#: ../plugins/google-account-setup/google-source.c:597
msgid "Unknown error."
msgstr "原因を特定できないエラーです。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:70
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:71
msgid "Unknown type"
msgstr "不明な種類"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:71
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:72
msgid "Unsupported operation"
msgstr "サポートしていない操作"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:72
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:73
msgid "You are nearing your quota available for storing mail on this server."
msgstr ""
"このサーバでメールを保管するために利用できるクオータの上限値に近づいていま"
"す。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:73
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:74
msgid ""
"You are permitted to send a message on behalf of only one delegator at a "
"time."
msgstr "一人だけの委任者に代わり一度だけメッセージを送信できます。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:74
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:75
msgid "You cannot make yourself your own delegate"
msgstr "自分で自分自身の Delegate を作成することはできません"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:75
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:76
msgid "You have exceeded your quota for storing mail on this server."
msgstr ""
"このサーバでメールを保管するために利用できるクオータの上限値を超えました。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:76
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:77
msgid "You may only configure a single Exchange account."
msgstr "単一の Exchange アカウントを設定した方が良いかもしれません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:77
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:78
msgid ""
"Your current usage is: {0} KB. Try to clear up some space by deleting some "
"mail."
@@ -16521,7 +17452,7 @@ msgstr ""
"現在使用中の容量は {0}Kバイトです。不用なメールを削除して空き容量を確保してみ"
"て下さい。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:78
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:79
msgid ""
"Your current usage is: {0} KB. You will not be able to either send or "
"receive mail now."
@@ -16529,7 +17460,7 @@ msgstr ""
"現在使用中の容量は {0}Kバイトです。この状態ではメールの送信/受信を行うことは"
"できません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:79
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:80
msgid ""
"Your current usage is: {0} KB. You will not be able to send mail until you "
"clear up some space by deleting some mail."
@@ -16537,19 +17468,19 @@ msgstr ""
"現在使用中の容量は {0}Kバイトです。不用なメールを削除して空き容量を確保しない"
"限り、メールを送信することはできません。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:80
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:81
msgid "Your password has expired."
msgstr "お使いのパスワードは期限切れです。"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:82
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:83
msgid "{0} cannot be added to an access control list"
msgstr "{0} をアクセス・コントロール・リストに追加できません"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:83
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:84
msgid "{0} is already a delegate"
msgstr "{0} は既に DeleGate として登録されています"
-#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:84
+#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:85
msgid "{0} is already in the list"
msgstr "{0} は既にリストの中にあります"
@@ -16561,6 +17492,14 @@ msgstr "他ユーザのタスクの購読"
msgid "Check folder permissions"
msgstr "フォルダ権限の確認"
+#: ../plugins/external-editor/apps-evolution-external-editor.schemas.in.h:1
+msgid "Default External Editor"
+msgstr "デフォルトの外部エディタ"
+
+#: ../plugins/external-editor/apps-evolution-external-editor.schemas.in.h:2
+msgid "The default command that must be used as the editor."
+msgstr "デフォルトで使用するエディタのコマンドです。"
+
#: ../plugins/external-editor/org-gnome-external-editor.eplug.xml.h:1
msgid ""
"A plugin for using an external editor as the composer. You can send only "
@@ -16574,23 +17513,59 @@ msgstr ""
msgid "External Editor"
msgstr "外部エディタ"
+#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:1
+msgid "Cannot create Temporary File"
+msgstr "作業用のファイルを作成できません。"
+
+#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:2
+msgid "Editor not launchable"
+msgstr "エディタを起動できません"
+
+#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:3
+msgid ""
+"Evolution is unable to create a temporary file to save your mail. Retry "
+"later."
+msgstr ""
+"メールを保存するための作業ファイルを生成できませんでした (あとでもう一度実行"
+"してみて下さい)。"
+
+#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:4
+msgid ""
+"The external editor set in your plugin preferences cannot be launched. Try "
+"setting a different editor."
+msgstr ""
+"プラグインの設定で指定した外部エディタを起動できません。別のエディタを指定し"
+"てみて下さい。"
+
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:1
-msgid "Compose in External Editor"
-msgstr "外部エディタでメールを作成する"
+msgid "Compose in _External Editor"
+msgstr "外部エディタでメールを作成する(_E)"
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:2
msgid "Compose messages using an external editor"
msgstr "外部エディタを使ってメッセージを作成します"
-#: ../plugins/face/face.c:57
+#: ../plugins/external-editor/external-editor.c:91
+msgid "Command to be executed to launch the editor: "
+msgstr "起動するエディタのコマンド: "
+
+#: ../plugins/external-editor/external-editor.c:92
+msgid ""
+"For Emacs use \"xemacs\"\n"
+"For VI use \"gvim\""
+msgstr ""
+"Emacs ならば \"xemacs\"\n"
+"VI ならば \"gvim\" をそれぞれ指定して下さい。"
+
+#: ../plugins/face/face.c:58
msgid "Select a (48*48) png of size < 700bytes"
msgstr "PNG 画像 (48x48/700バイト未満) の選択"
-#: ../plugins/face/face.c:67
+#: ../plugins/face/face.c:68
msgid "PNG files"
msgstr "PNG 画像"
-#: ../plugins/face/org-gnome-face-ui.xml.h:1
+#: ../plugins/face/face.c:125
msgid "_Face"
msgstr "フェイス(_F)"
@@ -16600,11 +17575,11 @@ msgid ""
"configure a 48*48 png image. It is base64 encoded and stored in ~/.evolution/"
"faces This will be used in messages that are sent further."
msgstr ""
-"送信するメールに X-Face のヘッダを追加します。まず 48*48 の PNG 画像を用意し"
-"て下さい。一度この画像をメッセージの編集ウィンドウで挿入すると自動的に "
-"base64 形式にエンコーディングされるので、$HOME/.evolution/faces ファイルとし"
-"て保存して下さい。それ以降は、送信するメッセージの中に face ファイルの内容が"
-"ヘッダとして自動的に追加されるようになります。"
+"送信するメールに X-Face のヘッダを追加するプラグインです。まず 48*48 の PNG "
+"画像を用意して下さい。一度この画像をメッセージの編集ウィンドウで挿入すると自"
+"動的に base64 形式にエンコーディングされるので、$HOME/.evolution/faces ファイ"
+"ルとして保存して下さい。それ以降は、送信するメッセージの中に face ファイルの"
+"内容がヘッダとして自動的に追加されるようになります。"
#: ../plugins/face/org-gnome-face.eplug.xml.h:2
msgid "Face"
@@ -16629,20 +17604,56 @@ msgstr "フォルダの購読停止"
msgid "_Unsubscribe"
msgstr "購読の停止(_U)"
-#: ../plugins/google-account-setup/google-source.c:71
-#: ../plugins/google-account-setup/google-source.c:78
+#: ../plugins/google-account-setup/google-source.c:83
+#: ../plugins/google-account-setup/google-source.c:90
+#: ../plugins/google-account-setup/google-contacts-source.c:52
+#: ../plugins/google-account-setup/google-contacts-source.c:57
+#: ../plugins/google-account-setup/google-contacts-source.c:83
msgid "Google"
msgstr "Google"
+#: ../plugins/google-account-setup/google-source.c:493
+msgid "Please enter user name first."
+msgstr "まず最初にユーザ名を指定して下さい。"
+
+#: ../plugins/google-account-setup/google-source.c:497
+#, c-format
+msgid "Enter password for user %s to access list of subscribed calendars."
+msgstr ""
+"カレンダの一覧にアクセスするために %s というユーザのパスワードを入力して下さ"
+"い。"
+
+#: ../plugins/google-account-setup/google-source.c:597
+#, c-format
+msgid ""
+"Cannot read data from Google server.\n"
+"%s"
+msgstr ""
+"Google サーバからデータを取得できません:\n"
+"%s"
+
+#: ../plugins/google-account-setup/google-source.c:747
+msgid "Cal_endar:"
+msgstr "カレンダ(_E):"
+
+#: ../plugins/google-account-setup/google-source.c:782
+msgid "Retrieve _list"
+msgstr "リストを取得する(_L)"
+
+#: ../plugins/google-account-setup/google-contacts-source.c:268
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
+msgid "<b>Server</b>"
+msgstr "<b>サーバ</b>"
+
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
-msgid "A plugin to setup google calendar."
-msgstr "Google カレンダを設定するためのプラグインです。"
+msgid "A plugin to setup google calendar and contacts."
+msgstr "Google カレンダと連絡先を設定するためのプラグインです。"
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:2
msgid "Google sources"
msgstr "Google カレンダ"
-#: ../plugins/groupwise-account-setup/camel-gw-listener.c:432
+#: ../plugins/groupwise-account-setup/camel-gw-listener.c:457
msgid "Checklist"
msgstr "チェックリスト"
@@ -16722,10 +17733,22 @@ msgid "_Junk List"
msgstr "ジャンク・メールの一覧(_J)"
#: ../plugins/groupwise-features/mail-retract.c:53
+msgid "Message Retract"
+msgstr "メッセージの取り消し"
+
+#: ../plugins/groupwise-features/mail-retract.c:58
+msgid ""
+"Retracting a message may remove it from the recipient's mailbox. Are you "
+"sure you want to do this ?"
+msgstr ""
+"メッセージを取り消すと受信箱からメールが削除されるかもしれません。本当に取り"
+"消しますか?"
+
+#: ../plugins/groupwise-features/mail-retract.c:77
msgid "Message retracted successfully"
msgstr "メッセージの取り消しが完了しました"
-#: ../plugins/groupwise-features/mail-retract.c:60
+#: ../plugins/groupwise-features/mail-retract.c:87
msgid "Retract Mail"
msgstr "メールの取り消し"
@@ -16733,12 +17756,6 @@ msgstr "メールの取り消し"
msgid "Add Send Options to groupwise messages"
msgstr "Groupwise メッセージの送信オプションの追加"
-#: ../plugins/groupwise-features/org-gnome-compose-send-options.xml.h:2
-#: ../ui/evolution-event-editor.xml.h:15 ../ui/evolution-task-editor.xml.h:8
-#: ../widgets/misc/e-send-options.glade.h:19
-msgid "Send Options"
-msgstr "送信オプション"
-
#: ../plugins/groupwise-features/org-gnome-groupwise-features.eplug.xml.h:1
msgid "A plugin for the features in Groupwise accounts."
msgstr "Groupwise アカウントの機能を提供するために必要なプラグインです。"
@@ -16747,6 +17764,76 @@ msgstr "Groupwise アカウントの機能を提供するために必要なプ
msgid "Groupwise Features"
msgstr "Groupwise の機能"
+#: ../plugins/groupwise-features/org-gnome-mail-retract-errors.xml.h:1
+msgid "Message retract failed"
+msgstr "メッセージの取り消しが失敗しました"
+
+#: ../plugins/groupwise-features/org-gnome-mail-retract-errors.xml.h:2
+msgid "The server did not allow the selected message to be retracted."
+msgstr "選択したメッセージの取り消しをサーバ側で許可していないようです。"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:1
+#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:3
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:1
+msgid "Invalid user"
+msgstr "無効なユーザ"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:2
+msgid "Proxy access cannot be given to user &quot;{0}&quot;"
+msgstr ""
+"プロキシのアクセス権限をユーザの &quot;{0}&quot; に与えることができません"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:3
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:2
+msgid "Specify User"
+msgstr "ユーザの指定"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:4
+msgid "You have already given proxy permissions to this user."
+msgstr "あなたはこのユーザに対して既にプロキシの権限を与えています。"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:5
+msgid "You have to specify a valid user name to give proxy rights."
+msgstr "プロキシの権限を与えるには妥当なユーザ名を指定して下さい。"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:1
+msgid "Account &quot;{0}&quot; already exists. Please check your folder tree."
+msgstr ""
+"既に &quot;{0}&quot; と同名のアカウントが存在します。フォルダ・ツリーを確認し"
+"てみて下さい。"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:2
+msgid "Account Already Exists"
+msgstr "既にアカウントがあります"
+
+#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:4
+msgid ""
+"Proxy login as &quot;{0}&quot; was unsuccessful. Please check your email "
+"address and try again."
+msgstr ""
+"&quot;{0}&quot; でプロキシ・ログインできませんでした。E-メール・アドレスを確"
+"認してからもう一度実行して下さい。"
+
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:3
+msgid "This is a recurring meeting"
+msgstr "これは定期的な会議です"
+
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:4
+msgid "Would you like to accept it?"
+msgstr "受け入れますか?"
+
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:5
+msgid "Would you like to decline it?"
+msgstr "断りますか?"
+
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:6
+msgid "You cannot share folder with specified user &quot;{0}&quot;"
+msgstr "指定した &quot;{0}&quot; というユーザとフォルダを共有できません;"
+
+#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:7
+msgid "You have to specify a user name whom you want to add to the list"
+msgstr "リストに追加するユーザ名を指定して下さい"
+
#: ../plugins/groupwise-features/process-meeting.c:49
msgid "Accept Tentatively"
msgstr "仮承認する"
@@ -16845,9 +17932,9 @@ msgstr "<b>アカウント名</b>"
msgid "Proxy Login"
msgstr "プロキシへのログイン"
-#: ../plugins/groupwise-features/proxy-login.c:220
-#: ../plugins/groupwise-features/proxy-login.c:262
-#: ../plugins/groupwise-features/proxy.c:503
+#: ../plugins/groupwise-features/proxy-login.c:208
+#: ../plugins/groupwise-features/proxy-login.c:250
+#: ../plugins/groupwise-features/proxy.c:491
#: ../plugins/groupwise-features/send-options.c:83
#, c-format
msgid "%sEnter password for %s (user %s)"
@@ -16856,21 +17943,21 @@ msgstr "%s%s (ユーザ %s) のパスワードを入力して下さい"
#. To Translators: In this case, Proxy does not mean something like 'HTTP Proxy', but a groupwise
#. * feature by which one person can send/read mails/appointments using another person's identity
#. * without knowing his password, for example if that other person is on vacation
-#: ../plugins/groupwise-features/proxy-login.c:521
+#: ../plugins/groupwise-features/proxy-login.c:509
msgid "_Proxy Login..."
msgstr "プロキシへのログイン(_P)..."
-#: ../plugins/groupwise-features/proxy.c:701
+#: ../plugins/groupwise-features/proxy.c:691
msgid "The Proxy tab will be available only when the account is online."
msgstr ""
"この \"プロキシ\" タブはアカウントがオンラインになった時にのみ利用できます。"
-#: ../plugins/groupwise-features/proxy.c:706
+#: ../plugins/groupwise-features/proxy.c:696
msgid "The Proxy tab will be available only when the account is enabled."
msgstr "この \"プロキシ\" タブはアカウントを有効にした時にのみ利用できます。"
#: ../plugins/groupwise-features/share-folder-common.c:319
-#: ../plugins/groupwise-features/share-folder.c:761
+#: ../plugins/groupwise-features/share-folder.c:750
msgid "Users"
msgstr "ユーザ"
@@ -16886,11 +17973,15 @@ msgstr "新しい共有フォルダ(_S)..."
msgid "Sharing"
msgstr "共有"
-#: ../plugins/groupwise-features/share-folder.c:766
+#: ../plugins/groupwise-features/share-folder.c:533
+msgid "Custom Notification"
+msgstr "独自の通知"
+
+#: ../plugins/groupwise-features/share-folder.c:755
msgid "Add "
msgstr "追加"
-#: ../plugins/groupwise-features/share-folder.c:772
+#: ../plugins/groupwise-features/share-folder.c:761
msgid "Modify"
msgstr "変更"
@@ -16955,11 +18046,11 @@ msgstr "Hula のカレンダ・ソースを設定するためのプラグイン
msgid "Hula Account Setup"
msgstr "Hula アカウントの設定"
-#: ../plugins/imap-features/imap-headers.c:322
+#: ../plugins/imap-features/imap-headers.c:320
msgid "Custom Headers"
msgstr "独自のヘッダ"
-#: ../plugins/imap-features/imap-headers.c:335
+#: ../plugins/imap-features/imap-headers.c:333
msgid "IMAP Headers"
msgstr "IMAP のヘッダ"
@@ -17012,28 +18103,28 @@ msgstr "IMAP アカウントの拡張機能を提供するプラグインです
msgid "IMAP Features"
msgstr "IMAP の拡張"
-#: ../plugins/import-ics-attachments/icsimporter.c:82
+#: ../plugins/import-ics-attachments/icsimporter.c:77
msgid "_Import to Calendar"
msgstr "カレンダのインポート(_I)"
-#: ../plugins/import-ics-attachments/icsimporter.c:87
+#: ../plugins/import-ics-attachments/icsimporter.c:82
msgid "_Import to Tasks"
msgstr "タスクに変換する(_I)"
-#: ../plugins/import-ics-attachments/icsimporter.c:205
+#: ../plugins/import-ics-attachments/icsimporter.c:200
msgid "Import ICS"
msgstr "ICS のインポート"
-#: ../plugins/import-ics-attachments/icsimporter.c:228
+#: ../plugins/import-ics-attachments/icsimporter.c:223
msgid "Select Task List"
msgstr "タスク一覧の選択"
-#: ../plugins/import-ics-attachments/icsimporter.c:232
+#: ../plugins/import-ics-attachments/icsimporter.c:227
msgid "Select Calendar"
msgstr "カレンダの選択"
-#: ../plugins/import-ics-attachments/icsimporter.c:263
-#: ../shell/e-shell-importer.c:703
+#: ../plugins/import-ics-attachments/icsimporter.c:259
+#: ../shell/e-shell-importer.c:698
msgid "_Import"
msgstr "インポート(_I)"
@@ -17044,7 +18135,7 @@ msgstr "カレンダへのインポート"
#: ../plugins/import-ics-attachments/org-gnome-evolution-mail-attachments-import-ics.eplug.xml.h:3
msgid "Imports ICS attachments to calendar."
-msgstr "ICS 形式の添付ファイルをカレンダに取り込みます"
+msgstr "ICS 形式の添付ファイルをカレンダに取り込むプラグインです。"
#: ../plugins/ipod-sync/evolution-ipod-sync.c:34
msgid "Hardware Abstraction Layer not loaded"
@@ -17071,15 +18162,16 @@ msgstr ""
"Evolution は同期する iPod を見つけることができませんでした。iPod がお使いのシ"
"ステムに接続されていないか、または電源が入っていないかもしれません。"
-#: ../plugins/ipod-sync/ical-format.c:133
-#: ../plugins/save-calendar/ical-format.c:190
+#: ../plugins/ipod-sync/ical-format.c:118
+#: ../plugins/save-calendar/ical-format.c:163
msgid "iCalendar format (.ics)"
msgstr "iCalendar 形式 (.ics)"
#: ../plugins/ipod-sync/org-gnome-ipod-sync-evolution.eplug.xml.h:1
msgid "Synchronize the selected task/memo/calendar/addressbook with Apple iPod"
msgstr ""
-"選択したタスク/メモ/カレンダ/アドレス帳を Applie の iPod と同期します。"
+"選択したタスク/メモ/カレンダ/アドレス帳を Applie の iPod と同期するプラグイン"
+"です。"
#: ../plugins/ipod-sync/org-gnome-ipod-sync-evolution.eplug.xml.h:2
msgid "Synchronize to iPod"
@@ -17089,129 +18181,129 @@ msgstr "iPod と同期する"
msgid "iPod Synchronization"
msgstr "iPod との同期"
-#: ../plugins/itip-formatter/itip-formatter.c:444
-#: ../plugins/itip-formatter/itip-formatter.c:569
+#: ../plugins/itip-formatter/itip-formatter.c:443
+#: ../plugins/itip-formatter/itip-formatter.c:568
#, c-format
msgid "Failed to load the calendar '%s'"
msgstr "カレンダ '%s' を開けません"
-#: ../plugins/itip-formatter/itip-formatter.c:589
+#: ../plugins/itip-formatter/itip-formatter.c:588
#, c-format
msgid "An appointment in the calendar '%s' conflicts with this meeting"
msgstr "カレンダ '%s' の予定がこの会議の時間と重なっています"
-#: ../plugins/itip-formatter/itip-formatter.c:615
+#: ../plugins/itip-formatter/itip-formatter.c:614
#, c-format
msgid "Found the appointment in the calendar '%s'"
msgstr "カレンダ '%s' の中に予定がありました"
-#: ../plugins/itip-formatter/itip-formatter.c:691
+#: ../plugins/itip-formatter/itip-formatter.c:690
msgid "Unable to find any calendars"
msgstr "カレンダが見つかりませんでした"
-#: ../plugins/itip-formatter/itip-formatter.c:698
+#: ../plugins/itip-formatter/itip-formatter.c:697
msgid "Unable to find this meeting in any calendar"
msgstr "この会議の予定を記録したカレンダが見つかりませんでした"
-#: ../plugins/itip-formatter/itip-formatter.c:702
+#: ../plugins/itip-formatter/itip-formatter.c:701
msgid "Unable to find this task in any task list"
-msgstr "このタスクを記録したタスク一覧が見つかりませんでした"
+msgstr "このタスクを記録したタスクの一覧が見つかりませんでした"
-#: ../plugins/itip-formatter/itip-formatter.c:706
+#: ../plugins/itip-formatter/itip-formatter.c:705
msgid "Unable to find this memo in any memo list"
-msgstr "このタスクを記録したタスク一覧が見つかりませんでした"
+msgstr "このタスクを記録したタスクの一覧が見つかりませんでした"
# 要再考
-#: ../plugins/itip-formatter/itip-formatter.c:777
+#: ../plugins/itip-formatter/itip-formatter.c:776
msgid "Searching for an existing version of this appointment"
msgstr "この予定の既存バージョンの検索"
-#: ../plugins/itip-formatter/itip-formatter.c:943
+#: ../plugins/itip-formatter/itip-formatter.c:945
msgid "Unable to parse item"
msgstr "アイテムを解析できません"
-#: ../plugins/itip-formatter/itip-formatter.c:1001
+#: ../plugins/itip-formatter/itip-formatter.c:1003
#, c-format
msgid "Unable to send item to calendar '%s'. %s"
msgstr "アイテムをカレンダ '%s' に保存できません (%s)"
-#: ../plugins/itip-formatter/itip-formatter.c:1013
+#: ../plugins/itip-formatter/itip-formatter.c:1015
#, c-format
msgid "Sent to calendar '%s' as accepted"
msgstr "承認したものとしてカレンダ '%s' に保存しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1017
+#: ../plugins/itip-formatter/itip-formatter.c:1019
#, c-format
msgid "Sent to calendar '%s' as tentative"
msgstr "仮承認したものとしてカレンダ '%s' に保存しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1022
+#: ../plugins/itip-formatter/itip-formatter.c:1024
#, c-format
msgid "Sent to calendar '%s' as declined"
msgstr "辞退したものとしてカレンダ '%s' に保存しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1027
+#: ../plugins/itip-formatter/itip-formatter.c:1029
#, c-format
msgid "Sent to calendar '%s' as canceled"
msgstr "キャンセルしたものとしてカレンダ '%s' に保存しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1121
+#: ../plugins/itip-formatter/itip-formatter.c:1123
#, c-format
msgid "Organizer has removed the delegate %s "
msgstr "Organizer が DeleGate %s を削除しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1128
+#: ../plugins/itip-formatter/itip-formatter.c:1130
msgid "Sent a cancelation notice to the delegate"
msgstr "DeleGate へキャンセル通知を送信しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1130
+#: ../plugins/itip-formatter/itip-formatter.c:1132
msgid "Could not send the cancelation notice to the delegate"
msgstr "DeleGate へキャンセル通知を送信できませんでした"
-#: ../plugins/itip-formatter/itip-formatter.c:1216
+#: ../plugins/itip-formatter/itip-formatter.c:1218
msgid "Attendee status could not be updated because the status is invalid"
msgstr "不正なステータスのため出席状況が更新できませんでした"
-#: ../plugins/itip-formatter/itip-formatter.c:1243
+#: ../plugins/itip-formatter/itip-formatter.c:1245
#, c-format
msgid "Unable to update attendee. %s"
msgstr "出席者 %s を更新できません"
-#: ../plugins/itip-formatter/itip-formatter.c:1247
+#: ../plugins/itip-formatter/itip-formatter.c:1249
msgid "Attendee status updated"
msgstr "出席状況を更新しました"
-#: ../plugins/itip-formatter/itip-formatter.c:1273
+#: ../plugins/itip-formatter/itip-formatter.c:1275
msgid "Meeting information sent"
msgstr "会議の情報の送信"
-#: ../plugins/itip-formatter/itip-formatter.c:1276
+#: ../plugins/itip-formatter/itip-formatter.c:1278
msgid "Task information sent"
msgstr "タスク情報の送信"
-#: ../plugins/itip-formatter/itip-formatter.c:1279
+#: ../plugins/itip-formatter/itip-formatter.c:1281
msgid "Memo information sent"
msgstr "メモ情報の送信"
-#: ../plugins/itip-formatter/itip-formatter.c:1288
+#: ../plugins/itip-formatter/itip-formatter.c:1290
msgid "Unable to send meeting information, the meeting does not exist"
msgstr "会議が存在しないので、その会議の情報を送信できません"
-#: ../plugins/itip-formatter/itip-formatter.c:1291
+#: ../plugins/itip-formatter/itip-formatter.c:1293
msgid "Unable to send task information, the task does not exist"
msgstr "タスクが存在しないので、そのタスクの情報を送信できません"
-#: ../plugins/itip-formatter/itip-formatter.c:1294
+#: ../plugins/itip-formatter/itip-formatter.c:1296
msgid "Unable to send memo information, the memo does not exist"
msgstr "メモが存在しないので、そのメモの情報を送信できません"
-#: ../plugins/itip-formatter/itip-formatter.c:1369
-#: ../plugins/itip-formatter/itip-formatter.c:1384
+#: ../plugins/itip-formatter/itip-formatter.c:1365
+#: ../plugins/itip-formatter/itip-formatter.c:1376
msgid "The calendar attached is not valid"
msgstr "添付されたカレンダが不正です"
-#: ../plugins/itip-formatter/itip-formatter.c:1370
-#: ../plugins/itip-formatter/itip-formatter.c:1385
+#: ../plugins/itip-formatter/itip-formatter.c:1366
+#: ../plugins/itip-formatter/itip-formatter.c:1377
msgid ""
"The message claims to contain a calendar, but the calendar is not a valid "
"iCalendar."
@@ -17219,15 +18311,15 @@ msgstr ""
"メッセージにカレンダが添付されていますが、そのカレンダは妥当な iCalendar 形式"
"ではありません。"
-#: ../plugins/itip-formatter/itip-formatter.c:1420
-#: ../plugins/itip-formatter/itip-formatter.c:1438
-#: ../plugins/itip-formatter/itip-formatter.c:1520
+#: ../plugins/itip-formatter/itip-formatter.c:1417
+#: ../plugins/itip-formatter/itip-formatter.c:1435
+#: ../plugins/itip-formatter/itip-formatter.c:1517
msgid "The item in the calendar is not valid"
msgstr "カレンダのアイテムが不正です"
-#: ../plugins/itip-formatter/itip-formatter.c:1421
-#: ../plugins/itip-formatter/itip-formatter.c:1439
-#: ../plugins/itip-formatter/itip-formatter.c:1521
+#: ../plugins/itip-formatter/itip-formatter.c:1418
+#: ../plugins/itip-formatter/itip-formatter.c:1436
+#: ../plugins/itip-formatter/itip-formatter.c:1518
msgid ""
"The message does contain a calendar, but the calendar contains no events, "
"tasks or free/busy information"
@@ -17235,11 +18327,11 @@ msgstr ""
"メッセージにカレンダが添付されていますが、そのカレンダにはイベントまたタス"
"ク、予定の有無が含まれていません。"
-#: ../plugins/itip-formatter/itip-formatter.c:1450
+#: ../plugins/itip-formatter/itip-formatter.c:1447
msgid "The calendar attached contains multiple items"
msgstr "添付されたカレンダには複数のアイテムが含まれています"
-#: ../plugins/itip-formatter/itip-formatter.c:1451
+#: ../plugins/itip-formatter/itip-formatter.c:1448
msgid ""
"To process all of these items, the file should be saved and the calendar "
"imported"
@@ -17261,302 +18353,302 @@ msgstr "このメモを繰り返す"
#. Delete message after acting
#. FIXME Need a schema for this
-#: ../plugins/itip-formatter/itip-formatter.c:2369
+#: ../plugins/itip-formatter/itip-formatter.c:2383
msgid "_Delete message after acting"
msgstr "会議開催後にメッセージを削除する(_D)"
-#: ../plugins/itip-formatter/itip-formatter.c:2379
-#: ../plugins/itip-formatter/itip-formatter.c:2411
+#: ../plugins/itip-formatter/itip-formatter.c:2393
+#: ../plugins/itip-formatter/itip-formatter.c:2425
msgid "Conflict Search"
msgstr "重複するイベントの検索"
#. Source selector
-#: ../plugins/itip-formatter/itip-formatter.c:2394
+#: ../plugins/itip-formatter/itip-formatter.c:2408
msgid "Select the calendars to search for meeting conflicts"
msgstr "重複する会議を検索するカレンダを選択して下さい:"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:192 ../ui/evolution-calendar.xml.h:34
-#: ../widgets/misc/e-cell-date-edit.c:239
+#: ../plugins/itip-formatter/itip-view.c:189 ../ui/evolution-calendar.xml.h:34
+#: ../widgets/misc/e-cell-date-edit.c:299
msgid "Today"
msgstr "今日"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:197
+#: ../plugins/itip-formatter/itip-view.c:194
msgid "Today %H:%M"
msgstr "今日の%k:%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:201
+#: ../plugins/itip-formatter/itip-view.c:198
msgid "Today %H:%M:%S"
msgstr "今日の%k:%M:%S"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:210
+#: ../plugins/itip-formatter/itip-view.c:207
msgid "Today %l:%M:%S %p"
msgstr "今日の%p%l:%M:%S"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:220
+#: ../plugins/itip-formatter/itip-view.c:217
msgid "Tomorrow"
msgstr "明日"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:225
+#: ../plugins/itip-formatter/itip-view.c:222
msgid "Tomorrow %H:%M"
msgstr "明日の%k:%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:229
+#: ../plugins/itip-formatter/itip-view.c:226
msgid "Tomorrow %H:%M:%S"
msgstr "明日の%k:%M:%S"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:234
+#: ../plugins/itip-formatter/itip-view.c:231
msgid "Tomorrow %l:%M %p"
msgstr "明日の%p%l:%M"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:238
+#: ../plugins/itip-formatter/itip-view.c:235
msgid "Tomorrow %l:%M:%S %p"
msgstr "明日の%p%l:%M:%S"
#. strftime format of a weekday.
-#: ../plugins/itip-formatter/itip-view.c:257
+#: ../plugins/itip-formatter/itip-view.c:254
#, c-format
msgid "%A"
msgstr "%A"
#. strftime format of a weekday and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:262
+#: ../plugins/itip-formatter/itip-view.c:259
msgid "%A %H:%M"
msgstr "%Aの%k:%M"
#. strftime format of a weekday and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:266
+#: ../plugins/itip-formatter/itip-view.c:263
msgid "%A %H:%M:%S"
msgstr "%Aの%k:%M:%S"
#. strftime format of a weekday and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:271
+#: ../plugins/itip-formatter/itip-view.c:268
msgid "%A %l:%M %p"
msgstr "%Aの%p%l:%M"
#. strftime format of a weekday and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:275
+#: ../plugins/itip-formatter/itip-view.c:272
msgid "%A %l:%M:%S %p"
msgstr "%Aの%p%l:%M:%S"
#. strftime format of a weekday and a date
#. without a year.
-#: ../plugins/itip-formatter/itip-view.c:284
+#: ../plugins/itip-formatter/itip-view.c:281
msgid "%A, %B %e"
msgstr "%B%e日 %A"
#. strftime format of a weekday, a date
#. without a year and a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:290
+#: ../plugins/itip-formatter/itip-view.c:287
msgid "%A, %B %e %H:%M"
msgstr "%B%e日 %A %k:%M"
#. strftime format of a weekday, a date without a year
#. and a time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:294
+#: ../plugins/itip-formatter/itip-view.c:291
msgid "%A, %B %e %H:%M:%S"
msgstr "%B%e日 %A %k:%M:%S"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:299
+#: ../plugins/itip-formatter/itip-view.c:296
msgid "%A, %B %e %l:%M %p"
msgstr "%B%e日 %A %p%l:%M"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:303
+#: ../plugins/itip-formatter/itip-view.c:300
msgid "%A, %B %e %l:%M:%S %p"
msgstr "%B%e日 %A %p%l:%M:%S"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:309
+#: ../plugins/itip-formatter/itip-view.c:306
msgid "%A, %B %e, %Y"
msgstr "%Y年%B%e日 %A"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:314
+#: ../plugins/itip-formatter/itip-view.c:311
msgid "%A, %B %e, %Y %H:%M"
msgstr "%Y年%B%e日 %A %k:%M"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:318
+#: ../plugins/itip-formatter/itip-view.c:315
msgid "%A, %B %e, %Y %H:%M:%S"
msgstr "%Y年%B%e日 %A %k:%M:%S"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:323
+#: ../plugins/itip-formatter/itip-view.c:320
msgid "%A, %B %e, %Y %l:%M %p"
msgstr "%Y年%B%e日 %A %p%l:%M"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:327
+#: ../plugins/itip-formatter/itip-view.c:324
msgid "%A, %B %e, %Y %l:%M:%S %p"
msgstr "%Y年%B%e日 %A %p%l:%M:%S"
-#: ../plugins/itip-formatter/itip-view.c:352
-#: ../plugins/itip-formatter/itip-view.c:440
-#: ../plugins/itip-formatter/itip-view.c:528
+#: ../plugins/itip-formatter/itip-view.c:349
+#: ../plugins/itip-formatter/itip-view.c:437
+#: ../plugins/itip-formatter/itip-view.c:525
#, c-format
msgid "Please respond on behalf of <b>%s</b>"
msgstr "<b>%s</b> さんに代わって返信して下さい"
-#: ../plugins/itip-formatter/itip-view.c:354
-#: ../plugins/itip-formatter/itip-view.c:442
-#: ../plugins/itip-formatter/itip-view.c:530
+#: ../plugins/itip-formatter/itip-view.c:351
+#: ../plugins/itip-formatter/itip-view.c:439
+#: ../plugins/itip-formatter/itip-view.c:527
#, c-format
msgid "Received on behalf of <b>%s</b>"
msgstr "<b>%s</b> に代わって受信しました"
-#: ../plugins/itip-formatter/itip-view.c:359
+#: ../plugins/itip-formatter/itip-view.c:356
#, c-format
msgid "<b>%s</b> through %s has published the following meeting information:"
msgstr "<b>%s</b> さんは %s さんをとおして次の会議召集通知を公開しました:"
-#: ../plugins/itip-formatter/itip-view.c:361
+#: ../plugins/itip-formatter/itip-view.c:358
#, c-format
msgid "<b>%s</b> has published the following meeting information:"
msgstr "<b>%s</b> さんが次の会議召集通知を公開しました:"
-#: ../plugins/itip-formatter/itip-view.c:366
+#: ../plugins/itip-formatter/itip-view.c:363
#, c-format
msgid "<b>%s</b> has delegated the following meeting to you:"
msgstr "<b>%s</b> さんが次の会議をあなたに委任しました:"
-#: ../plugins/itip-formatter/itip-view.c:369
+#: ../plugins/itip-formatter/itip-view.c:366
#, c-format
msgid "<b>%s</b> through %s requests your presence at the following meeting:"
msgstr "<b>%s</b> さんは %s さんをとおして次の会議への出席を要求してきました:"
-#: ../plugins/itip-formatter/itip-view.c:371
+#: ../plugins/itip-formatter/itip-view.c:368
#, c-format
msgid "<b>%s</b> requests your presence at the following meeting:"
msgstr "<b>%s</b> さんが会議への出席を要求しています:"
-#: ../plugins/itip-formatter/itip-view.c:377
+#: ../plugins/itip-formatter/itip-view.c:374
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing meeting:"
msgstr "<b>%s</b> さんは %s さんをとおして既存の会議への参加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:379
+#: ../plugins/itip-formatter/itip-view.c:376
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting:"
msgstr "<b>%s</b> さんは既存の会議への参加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:383
+#: ../plugins/itip-formatter/itip-view.c:380
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
"following meeting:"
msgstr "<b>%s</b> さんは %s さんを通して次の会議の最新情報を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:385
+#: ../plugins/itip-formatter/itip-view.c:382
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following meeting:"
msgstr "<b>%s</b> さんは次の会議の最新情報を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:389
+#: ../plugins/itip-formatter/itip-view.c:386
#, c-format
msgid "<b>%s</b> through %s has sent back the following meeting response:"
msgstr "<b>%s</b> さんがは %s さんを通して次の会議の返事を返してきました:"
-#: ../plugins/itip-formatter/itip-view.c:391
+#: ../plugins/itip-formatter/itip-view.c:388
#, c-format
msgid "<b>%s</b> has sent back the following meeting response:"
msgstr "<b>%s</b> さんが次の会議の返事を返してきました:"
-#: ../plugins/itip-formatter/itip-view.c:395
+#: ../plugins/itip-formatter/itip-view.c:392
#, c-format
msgid "<b>%s</b> through %s has canceled the following meeting:"
msgstr "<b>%s</b> さんは %s さんをとおして次の会議をキャンセルしました:"
-#: ../plugins/itip-formatter/itip-view.c:397
+#: ../plugins/itip-formatter/itip-view.c:394
#, c-format
msgid "<b>%s</b> has canceled the following meeting."
msgstr "<b>%s</b> さんが次の会議をキャンセルしました:"
-#: ../plugins/itip-formatter/itip-view.c:401
+#: ../plugins/itip-formatter/itip-view.c:398
#, c-format
msgid "<b>%s</b> through %s has proposed the following meeting changes."
msgstr "<b>%s</b> さんは %s さんを通して会議の変更を提案してきました:"
-#: ../plugins/itip-formatter/itip-view.c:403
+#: ../plugins/itip-formatter/itip-view.c:400
#, c-format
msgid "<b>%s</b> has proposed the following meeting changes."
msgstr "<b>%s</b> さんが会議の変更を提案してきました:"
-#: ../plugins/itip-formatter/itip-view.c:407
+#: ../plugins/itip-formatter/itip-view.c:404
#, c-format
msgid "<b>%s</b> through %s has declined the following meeting changes:"
msgstr "<b>%s</b> さんは %s さんをとおして会議の変更を断ってきました:"
-#: ../plugins/itip-formatter/itip-view.c:409
+#: ../plugins/itip-formatter/itip-view.c:406
#, c-format
msgid "<b>%s</b> has declined the following meeting changes."
msgstr "<b>%s</b> さんが会議の変更を断ってきました:"
-#: ../plugins/itip-formatter/itip-view.c:447
+#: ../plugins/itip-formatter/itip-view.c:444
#, c-format
msgid "<b>%s</b> through %s has published the following task:"
msgstr "<b>%s</b> さんは %s さんが次のタスクを公開したと考えています:"
-#: ../plugins/itip-formatter/itip-view.c:449
+#: ../plugins/itip-formatter/itip-view.c:446
#, c-format
msgid "<b>%s</b> has published the following task:"
msgstr "<b>%s</b> さんが次のタスク情報を公開しました:"
-#: ../plugins/itip-formatter/itip-view.c:454
+#: ../plugins/itip-formatter/itip-view.c:451
#, c-format
msgid "<b>%s</b> requests the assignment of %s to the following task:"
msgstr "<b>%s</b> さんが次のタスクに対する %s の割り当てを要求しています:"
-#: ../plugins/itip-formatter/itip-view.c:457
+#: ../plugins/itip-formatter/itip-view.c:454
#, c-format
msgid "<b>%s</b> through %s has assigned you a task:"
msgstr "<b>%s</b> さんは %s さんをとおしてあなたにタスクを割り当てました:"
-#: ../plugins/itip-formatter/itip-view.c:459
+#: ../plugins/itip-formatter/itip-view.c:456
#, c-format
msgid "<b>%s</b> has assigned you a task:"
msgstr "<b>%s</b> さんはタスクをあなたに割り当てました:"
-#: ../plugins/itip-formatter/itip-view.c:465
+#: ../plugins/itip-formatter/itip-view.c:462
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing task:"
msgstr ""
"<b>%s</b> さんは %s さんをとおして既存のタスクへの追加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:467
+#: ../plugins/itip-formatter/itip-view.c:464
#, c-format
msgid "<b>%s</b> wishes to add to an existing task:"
msgstr "<b>%s</b> さんは既存のタスクへの追加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:471
+#: ../plugins/itip-formatter/itip-view.c:468
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
@@ -17565,138 +18657,138 @@ msgstr ""
"<b>%s</b> さんは %s さんを通して次のタスク割り当てに関するの最新情報を希望し"
"ています:"
-#: ../plugins/itip-formatter/itip-view.c:473
+#: ../plugins/itip-formatter/itip-view.c:470
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following "
"assigned task:"
msgstr "<b>%s</b> さんは次のタスク割り当てに関するの最新情報を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:477
+#: ../plugins/itip-formatter/itip-view.c:474
#, c-format
msgid ""
"<b>%s</b> through %s has sent back the following assigned task response:"
msgstr ""
"<b>%s</b> さん %s さんを通して次のタスク割り当てに対する回答を返してきました:"
-#: ../plugins/itip-formatter/itip-view.c:479
+#: ../plugins/itip-formatter/itip-view.c:476
#, c-format
msgid "<b>%s</b> has sent back the following assigned task response:"
msgstr "<b>%s</b> さんは次のタスク割り当てに対する回答を返してきました:"
-#: ../plugins/itip-formatter/itip-view.c:483
+#: ../plugins/itip-formatter/itip-view.c:480
#, c-format
msgid "<b>%s</b> through %s has canceled the following assigned task:"
msgstr "<b>%s</b> さんは %s さんをとおして次のタスクをキャンセルしました:"
-#: ../plugins/itip-formatter/itip-view.c:485
+#: ../plugins/itip-formatter/itip-view.c:482
#, c-format
msgid "<b>%s</b> has canceled the following assigned task:"
msgstr "<b>%s</b> さんは次のタスクをキャンセルしました:"
-#: ../plugins/itip-formatter/itip-view.c:489
+#: ../plugins/itip-formatter/itip-view.c:486
#, c-format
msgid ""
"<b>%s</b> through %s has proposed the following task assignment changes:"
msgstr ""
"<b>%s</b> さんは %s さんを通してタスク割り当ての変更を提案してきました:"
-#: ../plugins/itip-formatter/itip-view.c:491
+#: ../plugins/itip-formatter/itip-view.c:488
#, c-format
msgid "<b>%s</b> has proposed the following task assignment changes:"
msgstr "<b>%s</b> さんがタスク割り当ての変更を提案してきました:"
-#: ../plugins/itip-formatter/itip-view.c:495
+#: ../plugins/itip-formatter/itip-view.c:492
#, c-format
msgid "<b>%s</b> through %s has declined the following assigned task:"
msgstr "<b>%s</b> さんは %s さんをとおして次のタスクを辞退しました:"
-#: ../plugins/itip-formatter/itip-view.c:497
+#: ../plugins/itip-formatter/itip-view.c:494
#, c-format
msgid "<b>%s</b> has declined the following assigned task:"
msgstr "<b>%s</b> さん次のタスクを辞退しました:"
-#: ../plugins/itip-formatter/itip-view.c:535
+#: ../plugins/itip-formatter/itip-view.c:532
#, c-format
msgid "<b>%s</b> through %s has published the following memo:"
msgstr "<b>%s</b> さんは %s さんをとおして次のメモを公開しました:"
-#: ../plugins/itip-formatter/itip-view.c:537
+#: ../plugins/itip-formatter/itip-view.c:534
#, c-format
msgid "<b>%s</b> has published the following memo:"
msgstr "<b>%s</b> さんが次のメモ情報を公開しました:"
-#: ../plugins/itip-formatter/itip-view.c:542
+#: ../plugins/itip-formatter/itip-view.c:539
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing memo:"
msgstr "<b>%s</b> さんは %s さんをとおして既存のメモへの追加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:544
+#: ../plugins/itip-formatter/itip-view.c:541
#, c-format
msgid "<b>%s</b> wishes to add to an existing memo:"
msgstr "<b>%s</b> さんは既存のメモへの追加を希望しています:"
-#: ../plugins/itip-formatter/itip-view.c:548
+#: ../plugins/itip-formatter/itip-view.c:545
#, c-format
msgid "<b>%s</b> through %s has canceled the following shared memo:"
msgstr "<b>%s</b> さんは %s さんをとおして次のメモの共有キャンセルしました:"
-#: ../plugins/itip-formatter/itip-view.c:550
+#: ../plugins/itip-formatter/itip-view.c:547
#, c-format
msgid "<b>%s</b> has canceled the following shared memo:"
msgstr "<b>%s</b> さんは次のメモの共有をキャンセルしました:"
#. Everything gets the open button
-#: ../plugins/itip-formatter/itip-view.c:821
+#: ../plugins/itip-formatter/itip-view.c:818
msgid "_Open Calendar"
msgstr "カレンダを開く(_O)"
-#: ../plugins/itip-formatter/itip-view.c:827
-#: ../plugins/itip-formatter/itip-view.c:831
-#: ../plugins/itip-formatter/itip-view.c:837
-#: ../plugins/itip-formatter/itip-view.c:854
-#: ../plugins/itip-formatter/itip-view.c:859
+#: ../plugins/itip-formatter/itip-view.c:824
+#: ../plugins/itip-formatter/itip-view.c:828
+#: ../plugins/itip-formatter/itip-view.c:834
+#: ../plugins/itip-formatter/itip-view.c:851
+#: ../plugins/itip-formatter/itip-view.c:856
msgid "_Decline"
msgstr "辞退する(_D)"
-#: ../plugins/itip-formatter/itip-view.c:828
-#: ../plugins/itip-formatter/itip-view.c:833
-#: ../plugins/itip-formatter/itip-view.c:840
-#: ../plugins/itip-formatter/itip-view.c:856
-#: ../plugins/itip-formatter/itip-view.c:861
+#: ../plugins/itip-formatter/itip-view.c:825
+#: ../plugins/itip-formatter/itip-view.c:830
+#: ../plugins/itip-formatter/itip-view.c:837
+#: ../plugins/itip-formatter/itip-view.c:853
+#: ../plugins/itip-formatter/itip-view.c:858
msgid "_Accept"
msgstr "受諾する(_A)"
-#: ../plugins/itip-formatter/itip-view.c:831
+#: ../plugins/itip-formatter/itip-view.c:828
msgid "_Decline all"
msgstr "全て辞退する(_D)"
-#: ../plugins/itip-formatter/itip-view.c:832
+#: ../plugins/itip-formatter/itip-view.c:829
msgid "_Tentative all"
msgstr "全て仮承認する(_T)"
-#: ../plugins/itip-formatter/itip-view.c:832
-#: ../plugins/itip-formatter/itip-view.c:838
-#: ../plugins/itip-formatter/itip-view.c:855
-#: ../plugins/itip-formatter/itip-view.c:860
+#: ../plugins/itip-formatter/itip-view.c:829
+#: ../plugins/itip-formatter/itip-view.c:835
+#: ../plugins/itip-formatter/itip-view.c:852
+#: ../plugins/itip-formatter/itip-view.c:857
msgid "_Tentative"
msgstr "仮承認する(_T)"
-#: ../plugins/itip-formatter/itip-view.c:833
+#: ../plugins/itip-formatter/itip-view.c:830
msgid "_Accept all"
msgstr "全て受諾する(_A)"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:844
+#: ../plugins/itip-formatter/itip-view.c:841
msgid "_Send Information"
msgstr "情報を送信する(_S)"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:848
+#: ../plugins/itip-formatter/itip-view.c:845
msgid "_Update Attendee Status"
msgstr "出席者の状態を更新する(_U)"
-#: ../plugins/itip-formatter/itip-view.c:851
+#: ../plugins/itip-formatter/itip-view.c:848
msgid "_Update"
msgstr "更新する(_U)"
@@ -17789,7 +18881,7 @@ msgstr "通知スペースにあるアイコンを点滅させるかどうか"
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:3
msgid "Enable D-Bus messages."
-msgstr "D-Bus によるメッセージ送信を有効にするかどうか"
+msgstr "D-BUS によるメッセージ送信を有効にするかどうか"
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:4
msgid "Enable icon in notification area."
@@ -17801,10 +18893,11 @@ msgstr "新しいメールが届いたら D-BUS のメッセージを生成す
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:6
msgid ""
-"If true, then beep, otherwise will play sound file when new messages arrive."
+"If \"true\", then beep, otherwise will play sound file when new messages "
+"arrive."
msgstr ""
"TRUE にすると新着メッセージがあればビープ音を鳴らし、それ以外は指定したサウン"
-"ドを演奏する"
+"ドを演奏します。"
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:7
msgid "Notify new messages for Inbox only."
@@ -17855,10 +18948,18 @@ msgstr "受信箱 (Inbox) フォルダのみ新着メッセージを通知する
#: ../plugins/mail-notification/mail-notification.c:254
msgid "Generate a _D-Bus message"
-msgstr "D-Bus メッセージを生成する(_D)"
+msgstr "D-BUS メッセージを生成する(_D)"
+
+#: ../plugins/mail-notification/mail-notification.c:377
+msgid "Evolution's Mail Notification"
+msgstr "Evolution のメール通知機能"
+
+#: ../plugins/mail-notification/mail-notification.c:398
+msgid "Mail Notification Properties"
+msgstr "メール通知のプロパティ"
#. To translators: '%d' is the number of mails recieved and '%s' is the name of the folder
-#: ../plugins/mail-notification/mail-notification.c:363
+#: ../plugins/mail-notification/mail-notification.c:457
#, c-format
msgid ""
"You have received %d new message\n"
@@ -17869,55 +18970,55 @@ msgid_plural ""
msgstr[0] "%2$s に%1$d通の新しいメッセージが届いています"
msgstr[1] "%2$s に%1$d通の新しいメッセージが届いています"
-#: ../plugins/mail-notification/mail-notification.c:368
+#: ../plugins/mail-notification/mail-notification.c:462
#, c-format
msgid "You have received %d new message."
msgid_plural "You have received %d new messages."
msgstr[0] "%d通の新しいメッセージが届いています"
msgstr[1] "%d通の新しいメッセージが届いています"
-#: ../plugins/mail-notification/mail-notification.c:380
-#: ../plugins/mail-notification/mail-notification.c:385
+#: ../plugins/mail-notification/mail-notification.c:479
+#: ../plugins/mail-notification/mail-notification.c:484
msgid "New email"
msgstr "新しいメール"
-#: ../plugins/mail-notification/mail-notification.c:440
+#: ../plugins/mail-notification/mail-notification.c:541
msgid "Show icon in _notification area"
msgstr "パネルの通知スペースにアイコンを表示する(_N)"
-#: ../plugins/mail-notification/mail-notification.c:443
+#: ../plugins/mail-notification/mail-notification.c:544
msgid "B_link icon in notification area"
msgstr "通知スペースでアイコンを点滅させる(_L)"
-#: ../plugins/mail-notification/mail-notification.c:445
+#: ../plugins/mail-notification/mail-notification.c:546
msgid "Popup _message together with the icon"
msgstr "アイコンと共にメッセージもポップアップ表示する(_M)"
-#: ../plugins/mail-notification/mail-notification.c:626
+#: ../plugins/mail-notification/mail-notification.c:727
msgid "_Play sound when new messages arrive"
msgstr "新しいメールが届いたら演奏する(_P)"
-#: ../plugins/mail-notification/mail-notification.c:632
+#: ../plugins/mail-notification/mail-notification.c:733
msgid "_Beep"
msgstr "ビープ音を鳴らす(_B)"
-#: ../plugins/mail-notification/mail-notification.c:633
+#: ../plugins/mail-notification/mail-notification.c:734
msgid "Play _sound file"
msgstr "サウンド・ファイルを演奏する(_S)"
-#: ../plugins/mail-notification/mail-notification.c:644
+#: ../plugins/mail-notification/mail-notification.c:745
msgid "Specify _filename:"
msgstr "ファイル名の指定(_F):"
-#: ../plugins/mail-notification/mail-notification.c:645
+#: ../plugins/mail-notification/mail-notification.c:746
msgid "Select sound file"
msgstr "サウンド・ファイルの選択"
-#: ../plugins/mail-notification/mail-notification.c:646
+#: ../plugins/mail-notification/mail-notification.c:747
msgid "Pl_ay"
msgstr "演奏(_A)"
-#: ../plugins/mail-notification/mail-notification.c:785
+#: ../plugins/mail-notification/mail-notification.c:804
msgid "Notify new messages for _Inbox only"
msgstr "受信箱の新着メールだけ通知する(_I)"
@@ -17926,7 +19027,7 @@ msgid ""
"Generates a D-Bus message or notifies the user with an icon in notification "
"area and a notification message whenever a new message has arrived."
msgstr ""
-"新しいメールが届いたら D-Bus のメッセージを生成するか、または通知スペースにア"
+"新しいメールが届いたら D-BUS のメッセージを生成するか、または通知スペースにア"
"イコンを表示したりメッセージをポップアップするプラグインです。"
#: ../plugins/mail-notification/org-gnome-mail-notification.eplug.xml.h:2
@@ -18064,7 +19165,7 @@ msgstr "メーリング・リストへメッセージを送信しますか?"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:10
msgid ""
"The action could not be performed. This means the header for this action did "
-"not contain any action we could handle.\n"
+"not contain any action we could process.\n"
"\n"
"Header: {0}"
msgstr ""
@@ -18145,6 +19246,26 @@ msgstr "メーリング・リストの購読(_S)"
msgid "_Unsubscribe from List"
msgstr "メーリング・リストの購読停止(_U)"
+#: ../plugins/mark-all-read/mark-all-read.c:37
+msgid "Also mark messages in subfolders?"
+msgstr "同様にサブフォルダのメッセージにも付与しますか?"
+
+#: ../plugins/mark-all-read/mark-all-read.c:39
+msgid ""
+"Do you want to mark messages as read in the current folder only, or in the "
+"current folder as well as all subfolders?"
+msgstr ""
+"このフォルダにあるメッセージだけ既読マークを付与するか、サブフォルダの中の"
+"メッセージも同様に既読マークを付与しますか?"
+
+#: ../plugins/mark-all-read/mark-all-read.c:162
+msgid "Current Folder and _Subfolders"
+msgstr "このフォルダとサブフォルダ(_S)"
+
+#: ../plugins/mark-all-read/mark-all-read.c:174
+msgid "Current _Folder Only"
+msgstr "このフォルダだけ(_F)"
+
#: ../plugins/mark-all-read/org-gnome-mark-all-read.eplug.xml.h:1
msgid "Mark All Read"
msgstr "全て既読にする"
@@ -18187,7 +19308,7 @@ msgstr "どのプラグインが有効か無効かを管理するためのプラ
#. Setup the ui
#: ../plugins/plugin-manager/org-gnome-plugin-manager.eplug.xml.h:2
-#: ../plugins/plugin-manager/plugin-manager.c:225
+#: ../plugins/plugin-manager/plugin-manager.c:236
msgid "Plugin Manager"
msgstr "プラグイン・マネージャ"
@@ -18199,34 +19320,25 @@ msgstr "プラグインの有効/無効を管理します"
msgid "_Plugins"
msgstr "プラグイン(_P)"
-#: ../plugins/plugin-manager/plugin-manager.c:57
+#: ../plugins/plugin-manager/plugin-manager.c:42
msgid "Author(s)"
msgstr "作者"
-#: ../plugins/plugin-manager/plugin-manager.c:58
-#: ../widgets/table/e-table-config.glade.h:6
-msgid "Description"
-msgstr "説明"
+#: ../plugins/plugin-manager/plugin-manager.c:130
+msgid "Configuration"
+msgstr "設定"
-#: ../plugins/plugin-manager/plugin-manager.c:238
+#: ../plugins/plugin-manager/plugin-manager.c:249
msgid "Note: Some changes will not take effect until restart"
msgstr ""
"注記: プラグインに対するいくつかの変更は再起動するまで有効になりません。"
-#: ../plugins/plugin-manager/plugin-manager.c:260
+#: ../plugins/plugin-manager/plugin-manager.c:275
msgid "Overview"
msgstr "概要"
-#: ../plugins/plugin-manager/plugin-manager.c:261
-msgid "Configuration"
-msgstr "設定"
-
-#: ../plugins/plugin-manager/plugin-manager.c:277
-msgid "There is no configuration option for this plugin."
-msgstr "このプラグインには設定項目はありません。"
-
-#: ../plugins/plugin-manager/plugin-manager.c:330
-#: ../plugins/plugin-manager/plugin-manager.c:392
+#: ../plugins/plugin-manager/plugin-manager.c:346
+#: ../plugins/plugin-manager/plugin-manager.c:408
msgid "Plugin"
msgstr "プラグイン"
@@ -18250,42 +19362,22 @@ msgstr "HTML 形式の取り扱い"
msgid "Prefer plain-text"
msgstr "プレーン・テキスト描画"
-#: ../plugins/prefer-plain/prefer-plain.c:139
+#: ../plugins/prefer-plain/prefer-plain.c:174
msgid "Show HTML if present"
msgstr "可能ならば HTML を表示する"
-#: ../plugins/prefer-plain/prefer-plain.c:140
+#: ../plugins/prefer-plain/prefer-plain.c:175
msgid "Prefer PLAIN"
msgstr "通常の文字列で表示する"
-#: ../plugins/prefer-plain/prefer-plain.c:141
+#: ../plugins/prefer-plain/prefer-plain.c:176
msgid "Only ever show PLAIN"
msgstr "通常の文字列だけ表示する"
-#: ../plugins/prefer-plain/prefer-plain.c:184
+#: ../plugins/prefer-plain/prefer-plain.c:219
msgid "HTML _Mode"
msgstr "HTML モード(_M)"
-#: ../plugins/print-message/org-gnome-print-message.eplug.xml.h:1
-msgid "Gives an option to print from the composer."
-msgstr ""
-"メール作成ウィンドウから印刷するためのオプションを提供するプラグインです。"
-
-#: ../plugins/print-message/org-gnome-print-message.eplug.xml.h:2
-msgid "Print Message"
-msgstr "メッセージの印刷"
-
-#: ../plugins/print-message/org-gnome-print-message.xml.h:1
-#: ../ui/evolution-addressbook.xml.h:27 ../ui/evolution-calendar.xml.h:21
-#: ../ui/evolution-mail-message.xml.h:76 ../ui/evolution-memos.xml.h:12
-#: ../ui/evolution-tasks.xml.h:15
-msgid "Print Pre_view"
-msgstr "印刷プレビュー(_V)"
-
-#: ../plugins/print-message/org-gnome-print-message.xml.h:2
-msgid "Prints the message"
-msgstr "メッセージの印刷"
-
#: ../plugins/profiler/org-gnome-evolution-profiler.eplug.xml.h:1
msgid "Evolution Profiler"
msgstr "Evolution のプロファイラ"
@@ -18312,13 +19404,7 @@ msgstr "公開する場所"
msgid "_Publish Calendar Information"
msgstr "カレンダ情報を公開する(_P)"
-#: ../plugins/publish-calendar/publish-calendar.c:91
-#: ../smime/gui/component.c:47
-#, c-format
-msgid "Enter the password for `%s'"
-msgstr "'%s' のパスワードを入力して下さい"
-
-#: ../plugins/publish-calendar/publish-calendar.c:416
+#: ../plugins/publish-calendar/publish-calendar.c:595
msgid "Are you sure you want to remove this URL?"
msgstr "本当にこの URL を削除してもよろしいですか?"
@@ -18406,15 +19492,75 @@ msgstr ""
"iCal 形式\n"
"Free/Busy 形式"
+#: ../plugins/python/example/org-gnome-hello-python-ui.xml.h:1
+msgid "Hello Python"
+msgstr "こんにちは Python"
+
+#: ../plugins/python/example/org-gnome-hello-python-ui.xml.h:2
+msgid "Python Plugin Loader tests"
+msgstr "Python プラグイン・ローダのテスト"
+
+#: ../plugins/python/example/org-gnome-hello-python.eplug.xml.h:1
+msgid "Python Test Plugin"
+msgstr "Python のテスト・プラグイン"
+
+#: ../plugins/python/example/org-gnome-hello-python.eplug.xml.h:2
+msgid "Test Plugin for Python EPlugin loader."
+msgstr "Python の EPlugin ローダ用のテスト・プラグインです。"
+
+#: ../plugins/python/org-gnome-evolution-python.eplug.xml.h:1
+msgid "A plugin which loads other plugins written using python."
+msgstr "Python で記述された他のプラグインを読み込むプラグインです。"
+
+#: ../plugins/python/org-gnome-evolution-python.eplug.xml.h:2
+msgid "Python Loader"
+msgstr "Python ローダ"
+
#: ../plugins/sa-junk-plugin/em-junk-filter.c:108
msgid "SpamAssassin (built-in)"
msgstr "SpamAssassin (内蔵)"
-#: ../plugins/sa-junk-plugin/em-junk-filter.c:848
-msgid "This will make Spamassasin more reliable, but slower"
-msgstr "これは、より信頼性の高いフィルタですが低速です"
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:134
+#, c-format
+msgid "SpamAssassin not found, code: %d"
+msgstr "SpamAssassin が見つかりません (エラー・コード: %d)"
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:142
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:150
+#, c-format
+msgid "Failed to create pipe: %s"
+msgstr "パイプの生成に失敗しました: %s"
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:189
+#, c-format
+msgid "Error after fork: %s"
+msgstr "fork() した後でエラー: %s"
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:244
+#, c-format
+msgid "SpamAssassin child process does not respond, killing..."
+msgstr "SpamAssassin の子プロセスから応答がないので強制終了させます..."
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:246
+#, c-format
+msgid "Wait for Spamassassin child process interrupted, terminating..."
+msgstr "Spamassassin の子プロセスからの割り込み待ちに入ります..."
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:255
+#, c-format
+msgid "Pipe to SpamAssassin failed, error code: %d"
+msgstr "Spamassassin に対するパイプが失敗しました (エラー・コード: %d)"
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:498
+#, c-format
+msgid "SpamAssassin is not available."
+msgstr "Spamassassin は利用できません"
+
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:865
+msgid "This will make SpamAssassin more reliable, but slower"
+msgstr "これは更に信頼性の高いフィルタですが低速になります"
-#: ../plugins/sa-junk-plugin/em-junk-filter.c:854
+#: ../plugins/sa-junk-plugin/em-junk-filter.c:871
msgid "I_nclude remote tests"
msgstr "リモート・サーバもテストする(_N)"
@@ -18423,8 +19569,9 @@ msgid ""
"Filters junk messages using SpamAssassin. This plugin requires SpamAssassin "
"to be installed."
msgstr ""
-"SpamAssassin を使ってジャンクなメールをフィルタリングします。このプラグインを"
-"利用するには SpamAssassin がインストールされていなければなりません。"
+"SpamAssassin を使ってジャンクなメールをフィルタリングするプラグインです。この"
+"プラグインを利用するには SpamAssassin がインストールされていなければなりませ"
+"ん。"
#: ../plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml.h:2
msgid "SpamAssassin junk plugin"
@@ -18442,7 +19589,7 @@ msgstr ""
#. the path to the shared library
#: ../plugins/save-attachments/org-gnome-save-attachments.eplug.xml.h:3
-#: ../plugins/save-attachments/save-attachments.c:330
+#: ../plugins/save-attachments/save-attachments.c:314
msgid "Save attachments"
msgstr "添付ファイルの保存"
@@ -18454,16 +19601,15 @@ msgstr "添付ファイルの保存..."
msgid "Save all attachments"
msgstr "添付ファイルを全て保存します"
-#: ../plugins/save-attachments/save-attachments.c:336
+#: ../plugins/save-attachments/save-attachments.c:320
msgid "Select save base name"
msgstr "保存先のフォルダの選択"
-#: ../plugins/save-attachments/save-attachments.c:355
+#: ../plugins/save-attachments/save-attachments.c:339
msgid "MIME Type"
msgstr "MIME 型"
-#: ../plugins/save-attachments/save-attachments.c:363
-#: ../ui/evolution-editor.xml.h:12 ../ui/evolution-message-composer.xml.h:25
+#: ../plugins/save-attachments/save-attachments.c:347
msgid "Save"
msgstr "保存"
@@ -18471,79 +19617,79 @@ msgstr "保存"
#. * Translator: the %F %T is the thirth argument for a strftime function.
#. * It lets you define the formatting of the date in the csv-file.
#. *
-#: ../plugins/save-calendar/csv-format.c:167
+#: ../plugins/save-calendar/csv-format.c:162
msgid "%F %T"
msgstr "%F %T"
-#: ../plugins/save-calendar/csv-format.c:381
+#: ../plugins/save-calendar/csv-format.c:360
msgid "UID"
msgstr "UID"
-#: ../plugins/save-calendar/csv-format.c:383
+#: ../plugins/save-calendar/csv-format.c:362
msgid "Description List"
msgstr "説明の一覧"
-#: ../plugins/save-calendar/csv-format.c:384
+#: ../plugins/save-calendar/csv-format.c:363
msgid "Categories List"
msgstr "カテゴリの一覧"
-#: ../plugins/save-calendar/csv-format.c:385
+#: ../plugins/save-calendar/csv-format.c:364
msgid "Comment List"
msgstr "連絡先の一覧"
-#: ../plugins/save-calendar/csv-format.c:387
+#: ../plugins/save-calendar/csv-format.c:366
msgid "Created"
msgstr "作成済"
-#: ../plugins/save-calendar/csv-format.c:388
+#: ../plugins/save-calendar/csv-format.c:367
msgid "Contact List"
msgstr "連絡先の一覧"
-#: ../plugins/save-calendar/csv-format.c:389
+#: ../plugins/save-calendar/csv-format.c:368
msgid "Start"
msgstr "開始"
-#: ../plugins/save-calendar/csv-format.c:390
+#: ../plugins/save-calendar/csv-format.c:369
msgid "End"
msgstr "終了"
-#: ../plugins/save-calendar/csv-format.c:392
+#: ../plugins/save-calendar/csv-format.c:371
msgid "percent Done"
msgstr "%% 完了"
-#: ../plugins/save-calendar/csv-format.c:394
+#: ../plugins/save-calendar/csv-format.c:373
msgid "URL"
msgstr "URL"
-#: ../plugins/save-calendar/csv-format.c:395
+#: ../plugins/save-calendar/csv-format.c:374
msgid "Attendees List"
msgstr "出席者の一覧"
-#: ../plugins/save-calendar/csv-format.c:397
+#: ../plugins/save-calendar/csv-format.c:376
msgid "Modified"
msgstr "変更済"
-#: ../plugins/save-calendar/csv-format.c:545
+#: ../plugins/save-calendar/csv-format.c:531
msgid "Advanced options for the CSV format"
msgstr "CSV 形式の拡張オプション"
-#: ../plugins/save-calendar/csv-format.c:552
+#: ../plugins/save-calendar/csv-format.c:538
msgid "Prepend a header"
msgstr "ヘッダを付与する"
-#: ../plugins/save-calendar/csv-format.c:561
+#: ../plugins/save-calendar/csv-format.c:547
msgid "Value delimiter:"
msgstr "数値の区切り:"
-#: ../plugins/save-calendar/csv-format.c:567
+#: ../plugins/save-calendar/csv-format.c:553
msgid "Record delimiter:"
msgstr "レコードの区切り:"
-#: ../plugins/save-calendar/csv-format.c:573
+#: ../plugins/save-calendar/csv-format.c:559
msgid "Encapsulate values with:"
msgstr "数値のカプセル化:"
-#: ../plugins/save-calendar/csv-format.c:595
+#: ../plugins/save-calendar/csv-format.c:581
msgid "Comma separated value format (.csv)"
msgstr "カンマで区切った形式 (.csv)"
@@ -18554,7 +19700,7 @@ msgstr "選択したアイテムの保存"
#: ../plugins/save-calendar/org-gnome-save-calendar.eplug.xml.h:2
msgid "Saves selected calendar or tasks list to disk."
msgstr ""
-"選択したカレンダやタスク一覧をローカルのディスクに保存するプラグインです。"
+"選択したカレンダやタスクの一覧をローカルのディスクに保存するプラグインです。"
#: ../plugins/save-calendar/org-gnome-save-calendar.eplug.xml.h:3
msgid "_Save to Disk"
@@ -18565,15 +19711,15 @@ msgstr "ディスクに保存する(_S)"
#. * It lets you define the formatting of the date in the rdf-file.
#. * Also check out http://www.w3.org/2002/12/cal/tzd
#. *
-#: ../plugins/save-calendar/rdf-format.c:154
+#: ../plugins/save-calendar/rdf-format.c:149
msgid "%FT%T"
msgstr "%FT%T"
-#: ../plugins/save-calendar/rdf-format.c:390
+#: ../plugins/save-calendar/rdf-format.c:376
msgid "RDF format (.rdf)"
msgstr "RDF 形式 (.rdf)"
-#: ../plugins/save-calendar/save-calendar.c:164
+#: ../plugins/save-calendar/save-calendar.c:160
msgid "Select destination file"
msgstr "保存先の選択"
@@ -18596,25 +19742,25 @@ msgstr "このメモの一覧だけ表示する(_O)"
#: ../plugins/select-one-source/org-gnome-select-one-source.eplug.xml.h:5
msgid "Show _only this Task List"
-msgstr "このタスク一覧だけ表示する(_O)"
+msgstr "このタスクの一覧だけ表示する(_O)"
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:1
-msgid "A plugin that handles the Startup wizard."
-msgstr "起動時のウィザードを提供するためのプラグインです。"
+msgid "Guides you through your initial account setup."
+msgstr "一番最初のアカウントを設定する際の案内をしてくれるプラグインです。"
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:2
-msgid "Startup wizard"
-msgstr "ウィザードの起動プラグイン"
+msgid "Setup Assistant"
+msgstr "初期設定のアシスタント"
-#: ../plugins/startup-wizard/startup-wizard.c:84
+#: ../plugins/startup-wizard/startup-wizard.c:83
msgid "Evolution Setup Assistant"
msgstr "Evolution 設定アシスタント"
-#: ../plugins/startup-wizard/startup-wizard.c:87
+#: ../plugins/startup-wizard/startup-wizard.c:86
msgid "Welcome"
msgstr "ようこそ"
-#: ../plugins/startup-wizard/startup-wizard.c:88
+#: ../plugins/startup-wizard/startup-wizard.c:87
msgid ""
"Welcome to Evolution. The next few screens will allow Evolution to connect "
"to your email accounts, and to import files from other applications. \n"
@@ -18627,29 +19773,29 @@ msgstr ""
"\n"
"[進む] ボタンをクリックすると続行します。"
-#: ../plugins/startup-wizard/startup-wizard.c:134
+#: ../plugins/startup-wizard/startup-wizard.c:133
msgid "Importing files"
msgstr "ファイルのインポート"
-#: ../plugins/startup-wizard/startup-wizard.c:136
-#: ../shell/e-shell-importer.c:147
+#: ../plugins/startup-wizard/startup-wizard.c:135
+#: ../shell/e-shell-importer.c:143
msgid "Please select the information that you would like to import:"
msgstr "インポートしたい情報を選択して下さい:"
-#: ../plugins/startup-wizard/startup-wizard.c:151
-#: ../shell/e-shell-importer.c:400
+#: ../plugins/startup-wizard/startup-wizard.c:150
+#: ../shell/e-shell-importer.c:396
#, c-format
msgid "From %s:"
msgstr "差出人 %s:"
-#: ../plugins/startup-wizard/startup-wizard.c:231
-#: ../shell/e-shell-importer.c:511
+#: ../plugins/startup-wizard/startup-wizard.c:230
+#: ../shell/e-shell-importer.c:507
#, c-format
msgid "Importing data."
msgstr "データのインポート中"
-#: ../plugins/startup-wizard/startup-wizard.c:233
-#: ../shell/e-shell-importer.c:525
+#: ../plugins/startup-wizard/startup-wizard.c:232
+#: ../shell/e-shell-importer.c:521
msgid "Please wait"
msgstr "少々お待ち下さい"
@@ -18670,6 +19816,30 @@ msgstr "件名でスレッド表示するためのプラグインです。"
msgid "F_all back to threading messages by subject"
msgstr "件名によるスレッド表示に戻す(_A)"
+#: ../plugins/templates/apps-evolution-template-placeholders.schemas.in.h:1
+msgid ""
+"List of keyword/value pairs for the Templates plugin to substitute in a "
+"message body."
+msgstr ""
+"テンプレート・プラグインがメッセージの本文を代用するために使用するキーと値の"
+"ペアを要素とするリストです。"
+
+#: ../plugins/templates/templates.c:614
+msgid "No title"
+msgstr "タイトルなし"
+
+#: ../plugins/templates/templates.c:743
+msgid "Save as _Template"
+msgstr "テンプレートとして保存する(_T)"
+
+#: ../plugins/templates/templates.c:745
+msgid "Save as Template"
+msgstr "このメッセージをテンプレートとして保存します"
+
+#: ../plugins/templates/org-gnome-templates.eplug.xml.h:1
+msgid "Drafts based template plugin"
+msgstr "テンプレートを利用した草案を作成するプラグインです。"
+
#: ../plugins/tnef-attachments/org-gnome-tnef-attachments.eplug.xml.h:1
msgid "A simple plugin which uses ytnef to decode tnef attachments."
msgstr "ytnef を使って tnef 形式の添付ファイルをデコードするプラグインです。"
@@ -18678,6 +19848,28 @@ msgstr "ytnef を使って tnef 形式の添付ファイルをデコードする
msgid "TNEF Attachment decoder"
msgstr "TNEF 形式の添付ファイルを解析するデコーダ"
+#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:1
+msgid "A plugin to setup WebDAV contacts."
+msgstr "WebDAV の連絡先を設定するためのプラグインです。"
+
+#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:2
+msgid "WebDAV contacts"
+msgstr "WebDAV の連絡先"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:69
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:74
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:100
+msgid "WebDAV"
+msgstr "WebDAV"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:311
+msgid "URL:"
+msgstr "URL:"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:338
+msgid "_Avoid IfMatch (needed on apache < 2.2.8)"
+msgstr "IfMatch プロパティを避ける (要 Apache < 2.2.8)(_A)"
+
#: ../shell/GNOME_Evolution_Shell.server.in.in.h:1
msgid "Evolution Shell"
msgstr "Evolution シェル"
@@ -18695,67 +19887,145 @@ msgid "Evolution Test component"
msgstr "Evolution のテスト・コンポーネント"
#: ../shell/apps_evolution_shell.schemas.in.h:1
-msgid "A string description of the current printer settings."
-msgstr "現在使用しているプリンタ設定の説明です"
+msgid "Authenticate proxy server connections"
+msgstr "認証プロキシ・サーバに接続するかどうか"
#: ../shell/apps_evolution_shell.schemas.in.h:2
+msgid "Automatic proxy configuration URL"
+msgstr "自動的にプロキシの設定を行う URL"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:3
msgid "Configuration version"
msgstr "設定バージョン"
-#: ../shell/apps_evolution_shell.schemas.in.h:3
+#: ../shell/apps_evolution_shell.schemas.in.h:4
msgid "Decides whether the crash detection should be run or not."
msgstr "クラッシュの検出を行うべきかどうかを指定します。"
-#: ../shell/apps_evolution_shell.schemas.in.h:4
+#: ../shell/apps_evolution_shell.schemas.in.h:5
msgid "Default sidebar width"
msgstr "サイドバーの幅 (デフォルト)"
-#: ../shell/apps_evolution_shell.schemas.in.h:5
+#: ../shell/apps_evolution_shell.schemas.in.h:6
msgid "Default window height"
msgstr "ウィンドウの高さ (デフォルト)"
-#: ../shell/apps_evolution_shell.schemas.in.h:6
+#: ../shell/apps_evolution_shell.schemas.in.h:7
msgid "Default window state"
msgstr "デフォルトでウィンドウを最大化するかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:7
+#: ../shell/apps_evolution_shell.schemas.in.h:8
msgid "Default window width"
msgstr "ウィンドウの幅 (デフォルト)"
-#: ../shell/apps_evolution_shell.schemas.in.h:8
+#: ../shell/apps_evolution_shell.schemas.in.h:9
+msgid ""
+"Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet."
+msgstr ""
+"HTTP/セキュア HTTP 経由でインターネットにアクセスする際にプロキシを利用するか"
+"どうかです。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:10
+msgid "HTTP proxy host name"
+msgstr "HTTP プロキシのホスト名"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:11
+msgid "HTTP proxy password"
+msgstr "HTTP プロキシのパスワード"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:12
+msgid "HTTP proxy port"
+msgstr "HTTP プロキシのポート番号"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:13
+msgid "HTTP proxy username"
+msgstr "HTTP プロキシのユーザ名"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:14
msgid "ID or alias of the component to be shown by default at start-up."
msgstr "起動時にデフォルトで表示するコンポーネントの ID/エイリアスです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:9
+#: ../shell/apps_evolution_shell.schemas.in.h:15
+msgid ""
+"If true, then connections to the proxy server require authentication. The "
+"username is retrieved from the \"/apps/evolution/shell/network_config/"
+"authentication_user\" GConf key, and the password is retrieved from either "
+"gnome-keyring or the ~/.gnome2_private/Evolution password file."
+msgstr ""
+"TRUE にするとプロキシ・サーバへ接続する際に認証を要求します。認証する際のユー"
+"ザ名は \"/apps/evolution/shell/network_config/authentication_user\" キーから"
+"取得し、パスワードは gnome-keyring かまたは ~/.gnome2_private/Evolution パス"
+"ワード・ファイルから取得します。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:16
msgid "Last upgraded configuration version"
msgstr "最後にアップグレードした設定のバージョン"
-#: ../shell/apps_evolution_shell.schemas.in.h:10
+#: ../shell/apps_evolution_shell.schemas.in.h:17
msgid ""
"List of paths for the folders to be synchronized to disk for offline usage"
msgstr "オフライン時にローカル・ディスクと同期するフォルダへのパスのリスト"
-#: ../shell/apps_evolution_shell.schemas.in.h:11
+#: ../shell/apps_evolution_shell.schemas.in.h:18
+msgid "Non-proxy hosts"
+msgstr "プロキシで無視するホスト"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:19
+msgid "Password to pass as authentication when doing HTTP proxying."
+msgstr "HTTP プロキシ経由でアクセスする際に認証サーバに渡すパスワードです。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:20
+msgid "Proxy configuration mode"
+msgstr "プロキシの設定モード"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:21
+msgid "SOCKS proxy host name"
+msgstr "Socks プロキシのホスト名"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:22
+msgid "SOCKS proxy port"
+msgstr "Socks プロキシのポート番号"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:23
+msgid "Secure HTTP proxy host name"
+msgstr "セキュア HTTP プロキシのホスト名"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:24
+msgid "Secure HTTP proxy port"
+msgstr "セキュア HTTP プロキシのポート番号"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:25
+msgid ""
+"Select the proxy configuration mode. Supported values are 0, 1, 2, and 3 "
+"representing \"use system settings\", \"no proxy\", \"use manual proxy "
+"configuration\" and \"use proxy configuration provided in the autoconfig url"
+"\" respectively."
+msgstr ""
+"プロキシの設定モードを指定します。指定可能な値: 0 (システムの設定を利用す"
+"る)、1 (プロキシを利用しない)、2 (手動でプロキシの設定を指定する)、3 "
+"(autoconfig_url キーで指定したプロキシの設定を利用する)"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:26
msgid "Sidebar is visible"
msgstr "サイドバーを表示するかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:12
+#: ../shell/apps_evolution_shell.schemas.in.h:27
msgid "Skip development warning dialog"
msgstr "開発版であることを警告するダイアログをスキップするかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:13
+#: ../shell/apps_evolution_shell.schemas.in.h:28
msgid "Skip recovery warning dialog"
msgstr "復旧を警告するダイアログをスキップするかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:14 ../shell/main.c:576
+#: ../shell/apps_evolution_shell.schemas.in.h:29 ../shell/main.c:565
msgid "Start in offline mode"
msgstr "オフライン・モードで起動するかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:15
+#: ../shell/apps_evolution_shell.schemas.in.h:30
msgid "Statusbar is visible"
msgstr "ステータスバーを表示するかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:16
+#: ../shell/apps_evolution_shell.schemas.in.h:31
msgid ""
"The configuration version of Evolution, with major/minor/configuration level "
"(for example \"2.6.0\")."
@@ -18763,19 +20033,19 @@ msgstr ""
"Evolution の設定バージョン (書式: メジャー番号/マイナー番号/設定レベル) です "
"(例: \"2.6.0\")。"
-#: ../shell/apps_evolution_shell.schemas.in.h:17
+#: ../shell/apps_evolution_shell.schemas.in.h:32
msgid "The default height for the main window, in pixels."
msgstr "メイン・ウィンドウのデフォルトの高さです (ピクセル単位)。"
-#: ../shell/apps_evolution_shell.schemas.in.h:18
+#: ../shell/apps_evolution_shell.schemas.in.h:33
msgid "The default width for the main window, in pixels."
msgstr "メイン・ウィンドウのデフォルトの幅です (ピクセル単位)。"
-#: ../shell/apps_evolution_shell.schemas.in.h:19
+#: ../shell/apps_evolution_shell.schemas.in.h:34
msgid "The default width for the sidebar, in pixels."
msgstr "サイドバーのデフォルトの幅です (ピクセル単位)"
-#: ../shell/apps_evolution_shell.schemas.in.h:20
+#: ../shell/apps_evolution_shell.schemas.in.h:35
msgid ""
"The last upgraded configuration version of Evolution, with major/minor/"
"configuration level (for example \"2.6.0\")."
@@ -18783,7 +20053,43 @@ msgstr ""
"最後にアップグレードした Evolution の設定バージョン (書式: メジャー番号/マイ"
"ナー番号/設定レベル) です (例: \"2.6.0\")。"
-#: ../shell/apps_evolution_shell.schemas.in.h:21
+#: ../shell/apps_evolution_shell.schemas.in.h:36
+msgid "The machine name to proxy HTTP through."
+msgstr "HTTP 経由のプロキシを提供するマシンの名前です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:37
+msgid "The machine name to proxy secure HTTP through."
+msgstr "セキュア HTTP 経由のプロキシを提供するマシンの名前です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:38
+msgid "The machine name to proxy socks through."
+msgstr "Socks 経由のプロキシを提供するマシン名です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:39
+msgid ""
+"The port on the machine defined by \"/apps/evolution/shell/network_config/"
+"http_host\" that you proxy through."
+msgstr ""
+"\"/apps/evolution/shell/network_config/http_host\" キーで定義したマシン上の"
+"ポート番号です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:40
+msgid ""
+"The port on the machine defined by \"/apps/evolution/shell/network_config/"
+"secure_host\" that you proxy through."
+msgstr ""
+"\"/apps/evolution/shell/network_config/secure_host\" キーで定義したマシン上の"
+"ポート番号です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:41
+msgid ""
+"The port on the machine defined by \"/apps/evolution/shell/network_config/"
+"socks_host\" that you proxy through."
+msgstr ""
+"\"/apps/evolution/shell/network_config/socks_host\" キーで定義したマシン上の"
+"ポート番号です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:42
msgid ""
"The style of the window buttons. Can be \"text\", \"icons\", \"both\", "
"\"toolbar\". If \"toolbar\" is set, the style of the buttons is determined "
@@ -18793,58 +20099,82 @@ msgstr ""
"のスタイルは GNOME デスクトップの設定に従います。利用可能な値: \"text\"、"
"\"icons\"、\"both\"、\"toolbar\""
-#: ../shell/apps_evolution_shell.schemas.in.h:22
+#: ../shell/apps_evolution_shell.schemas.in.h:43
+msgid ""
+"This key contains a list of hosts which are connected to directly, rather "
+"than via the proxy (if it is active). The values can be hostnames, domains "
+"(using an initial wildcard like *.foo.com), IP host addresses (both IPv4 and "
+"IPv6) and network addresses with a netmask (something like 192.168.0.0/24)."
+msgstr ""
+"(プロキシが利用できる状態である上で) プロキシ経由ではなく直接インターネットに"
+"接続されているホストのリストです。ホスト名、ドメイン名 (*.foo.com のようなワ"
+"イルドカードの利用も可)、IP-アドレス (IPv4 と IPv6 の両方)、ネットマスク付き"
+"の IP-アドレス (192.168.0.0/24 のような書式) といった書式で指定できます。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:44
msgid "Toolbar is visible"
msgstr "ツールバーを表示するかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:23
+#: ../shell/apps_evolution_shell.schemas.in.h:45
+msgid "URL that provides proxy configuration values."
+msgstr "プロキシの設定値を提供する URL です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:46
+msgid "Use HTTP proxy"
+msgstr "HTTP プロキシを利用するかどうか"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:47
+msgid "User name to pass as authentication when doing HTTP proxying."
+msgstr "HTTP プロキシ経由でアクセスする際に認証サーバに渡すユーザ名です。"
+
+#: ../shell/apps_evolution_shell.schemas.in.h:48
msgid "Whether Evolution will start up in offline mode instead of online mode."
msgstr ""
"オンライン・モードではなく、オフライン・モードで Evolution を起動するかどうか"
"です。"
-#: ../shell/apps_evolution_shell.schemas.in.h:24
+#: ../shell/apps_evolution_shell.schemas.in.h:49
msgid "Whether crash detection should be done or not"
msgstr "クラッシュの検出を行うかどうか"
-#: ../shell/apps_evolution_shell.schemas.in.h:25
+#: ../shell/apps_evolution_shell.schemas.in.h:50
msgid "Whether or not the window should be maximized."
msgstr "デフォルトでウィンドウを最大化するかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:26
+#: ../shell/apps_evolution_shell.schemas.in.h:51
msgid "Whether the sidebar should be visible."
msgstr "サイドバーを表示するかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:27
+#: ../shell/apps_evolution_shell.schemas.in.h:52
msgid "Whether the status bar should be visible."
msgstr "ステータスバーを表示するかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:28
+#: ../shell/apps_evolution_shell.schemas.in.h:53
msgid "Whether the toolbar should be visible."
msgstr "ツールバーを表示するかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:29
+#: ../shell/apps_evolution_shell.schemas.in.h:54
msgid ""
"Whether the warning dialog in development versions of Evolution is skipped."
msgstr ""
"Evolution の開発バージョンである旨を警告するダイアログを表示しないようにする"
"かどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:30
+#: ../shell/apps_evolution_shell.schemas.in.h:55
msgid "Whether the warning dialog in recovery of Evolution is skipped."
msgstr ""
"Evolution がクラッシュした後に復旧する旨を警告するダイアログを表示しないよう"
"にするかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:31
+#: ../shell/apps_evolution_shell.schemas.in.h:56
msgid "Whether the window buttons should be visible."
msgstr "ウィンドウ・ボタンを表示するかどうかです。"
-#: ../shell/apps_evolution_shell.schemas.in.h:32
+#: ../shell/apps_evolution_shell.schemas.in.h:57
msgid "Window button style"
msgstr "ウィンドウ・ボタンのスタイル"
-#: ../shell/apps_evolution_shell.schemas.in.h:33
+#: ../shell/apps_evolution_shell.schemas.in.h:58
msgid "Window buttons are visible"
msgstr "ウィンドウ・ボタンを表示するかどうか"
@@ -18860,11 +20190,11 @@ msgstr "対象となる接続"
msgid "Click OK to close these connections and go offline"
msgstr "[OK] をクリックすると、上記の接続を閉じてオフラインになります"
-#: ../shell/e-shell-importer.c:135
+#: ../shell/e-shell-importer.c:131
msgid "Choose the type of importer to run:"
msgstr "インポートの種類を選択して下さい:"
-#: ../shell/e-shell-importer.c:138
+#: ../shell/e-shell-importer.c:134
msgid ""
"Choose the file that you want to import into Evolution, and select what type "
"of file it is from the list.\n"
@@ -18877,11 +20207,11 @@ msgstr ""
"不明な場合は、\"自動\" を選択して\n"
"Evolution に解決させてみて下さい。"
-#: ../shell/e-shell-importer.c:144
+#: ../shell/e-shell-importer.c:140
msgid "Choose the destination for this import"
msgstr "インポート先の選択"
-#: ../shell/e-shell-importer.c:150
+#: ../shell/e-shell-importer.c:146
msgid ""
"Evolution checked for settings to import from the following\n"
"applications: Pine, Netscape, Elm, iCalendar. No importable\n"
@@ -18893,79 +20223,59 @@ msgstr ""
"インポートできる設定は見つかりませんでした。\n"
"再度チェックを実行する場合は、[戻る] をクリックして下さい。\n"
-#: ../shell/e-shell-importer.c:288
+#: ../shell/e-shell-importer.c:284
msgid "F_ilename:"
msgstr "ファイル名(_I):"
-#: ../shell/e-shell-importer.c:293
+#: ../shell/e-shell-importer.c:289
msgid "Select a file"
msgstr "ファイルの選択"
-#: ../shell/e-shell-importer.c:302
+#: ../shell/e-shell-importer.c:298
msgid "File _type:"
msgstr "ファイルの種類(_T):"
-#: ../shell/e-shell-importer.c:338
+#: ../shell/e-shell-importer.c:334
msgid "Import data and settings from _older programs"
msgstr "以前のバージョンからデータとその設定をインポートする(_O)"
-#: ../shell/e-shell-importer.c:341
+#: ../shell/e-shell-importer.c:337
msgid "Import a _single file"
msgstr "一個のファイルをインポートする(_S)"
-#: ../shell/e-shell-settings-dialog.c:313
+#: ../shell/e-shell-settings-dialog.c:314
msgid "Evolution Preferences"
msgstr "Evolution の設定"
-#: ../shell/e-shell-utils.c:118
-msgid "No folder name specified."
-msgstr "フォルダ名が指定されていません。"
-
-#: ../shell/e-shell-utils.c:125
-msgid "Folder name cannot contain the Return character."
-msgstr "フォルダ名には改行文字を含めることはできません。"
-
-#: ../shell/e-shell-utils.c:131
-msgid "Folder name cannot contain the character \"/\"."
-msgstr "フォルダ名には文字 \"/\" を含めることはできません。"
-
-#: ../shell/e-shell-utils.c:137
-msgid "Folder name cannot contain the character \"#\"."
-msgstr "フォルダ名には文字 \"#\" を含めることはできません。"
-
-#: ../shell/e-shell-utils.c:143
-msgid "'.' and '..' are reserved folder names."
-msgstr "'.' と '..' はフォルダ名として予約済みです。"
-
#. To translators: This is the window title and %s is the
#. component name. Most translators will want to keep it as is.
-#: ../shell/e-shell-view.c:50 ../shell/e-shell-window.c:342
+#: ../shell/e-shell-view.c:47 ../shell/e-shell-window.c:328
#, c-format
msgid "%s - Evolution"
msgstr "%s - Evolution"
-#: ../shell/e-shell-window-commands.c:77
+#: ../shell/e-shell-window-commands.c:75
msgid "The GNOME Pilot tools do not appear to be installed on this system."
msgstr ""
"このシステム上に GNOME パイロット・ツールがインストールされていないようです。"
-#: ../shell/e-shell-window-commands.c:85
+#: ../shell/e-shell-window-commands.c:83
#, c-format
msgid "Error executing %s."
msgstr "%s 実行中にエラーが発生しました。"
-#: ../shell/e-shell-window-commands.c:141
+#: ../shell/e-shell-window-commands.c:139
msgid "Bug buddy is not installed."
msgstr "Bug buddy がインストールされていません。"
-#: ../shell/e-shell-window-commands.c:144
+#: ../shell/e-shell-window-commands.c:142
msgid "Bug buddy could not be run."
msgstr "Bug buddy を実行できませんでした"
#. The translator-credits string is for translators to list
#. * per-language credits for translation, displayed in the
#. * about dialog.
-#: ../shell/e-shell-window-commands.c:744
+#: ../shell/e-shell-window-commands.c:729
msgid "translator-credits"
msgstr ""
"相花 毅 <takeshi.aihana@gmail.com>\n"
@@ -18975,75 +20285,79 @@ msgstr ""
"Takuo KITAME <kitame@debian.org>\n"
"日本GNOMEユーザー会 http://www.gnome.gr.jp"
-#: ../shell/e-shell-window-commands.c:755
+#: ../shell/e-shell-window-commands.c:740
msgid "Evolution Website"
msgstr "Evolution のウェブサイト"
-#: ../shell/e-shell-window-commands.c:773
+#: ../shell/e-shell-window-commands.c:758
msgid "Error opening the FAQ webpage."
msgstr "FAQ のウェブページを開く際にエラーが発生しました。"
-#: ../shell/e-shell-window-commands.c:970
+#: ../shell/e-shell-window-commands.c:955
msgid "_Work Online"
msgstr "オンラインで動作(_W)"
-#: ../shell/e-shell-window-commands.c:983 ../ui/evolution.xml.h:56
+#: ../shell/e-shell-window-commands.c:968 ../ui/evolution.xml.h:57
msgid "_Work Offline"
msgstr "オフラインで動作(_W)"
-#: ../shell/e-shell-window-commands.c:996
+#: ../shell/e-shell-window-commands.c:981
msgid "Work Offline"
msgstr "オフラインで動作"
-#: ../shell/e-shell-window.c:382
-msgid "Evolution is currently online. Click on this button to work offline."
+#: ../shell/e-shell-window.c:377
+msgid ""
+"Evolution is currently online.\n"
+"Click on this button to work offline."
msgstr ""
-"Evolution は現在オンラインです (オフラインにする時は、このボタンをクリックし"
-"て下さい)"
+"Evolution は現在オンラインです\n"
+"(オフラインにする時は、このボタンをクリックして下さい)"
-#: ../shell/e-shell-window.c:389
+#: ../shell/e-shell-window.c:384
msgid "Evolution is in the process of going offline."
msgstr "Evolution はオフラインのままで処理します"
-#: ../shell/e-shell-window.c:396
-msgid "Evolution is currently offline. Click on this button to work online."
+#: ../shell/e-shell-window.c:391
+msgid ""
+"Evolution is currently offline.\n"
+"Click on this button to work online."
msgstr ""
-"Evolution は現在オフラインです (オンラインにする時は、このボタンをクリックし"
-"て下さい)"
+"Evolution は現在オフラインです\n"
+"(オンラインにする時は、このボタンをクリックして下さい)"
-#: ../shell/e-shell-window.c:805
+#: ../shell/e-shell-window.c:782
#, c-format
msgid "Switch to %s"
msgstr "\"%s\" へ切り替えます"
-#: ../shell/e-shell.c:640
+#: ../shell/e-shell.c:638
msgid "Unknown system error."
msgstr "原因不明のシステム・エラーです。"
-#: ../shell/e-shell.c:838 ../shell/e-shell.c:839
+#: ../shell/e-shell.c:836 ../shell/e-shell.c:837
#, c-format
msgid "%ld KB"
msgstr "%ld Kバイト"
-#: ../shell/e-shell.c:1280 ../widgets/misc/e-cell-date-edit.c:255
+#: ../shell/e-shell.c:1278 ../widgets/misc/e-cell-date-edit.c:315
msgid "OK"
msgstr "OK"
-#: ../shell/e-shell.c:1282
+#: ../shell/e-shell.c:1280
msgid "Invalid arguments"
msgstr "不正な引数"
-#: ../shell/e-shell.c:1284
+#: ../shell/e-shell.c:1282
msgid "Cannot register on OAF"
msgstr "OAF に登録できません"
-#: ../shell/e-shell.c:1286
+#: ../shell/e-shell.c:1284
msgid "Configuration Database not found"
msgstr "データベースの設定がありません"
-#: ../shell/e-user-creatable-items-handler.c:678
-#: ../shell/e-user-creatable-items-handler.c:688
-#: ../shell/e-user-creatable-items-handler.c:693
+#: ../shell/e-user-creatable-items-handler.c:669
+#: ../shell/e-user-creatable-items-handler.c:679
+#: ../shell/e-user-creatable-items-handler.c:684
msgid "New"
msgstr "新規"
@@ -19052,6 +20366,7 @@ msgid "New Test"
msgstr "新しいテスト"
#: ../shell/test/evolution-test-component.c:108
+msgctxt "New"
msgid "_Test"
msgstr "テスト(_T)"
@@ -19098,7 +20413,7 @@ msgstr ""
"Evolution へインポートする手順をご案内します。"
#. Preview/Alpha/Beta version warning message
-#: ../shell/main.c:233
+#: ../shell/main.c:222
#, no-c-format
msgid ""
"Hi. Thanks for taking the time to download this preview release\n"
@@ -19135,7 +20450,7 @@ msgstr ""
"私たちの激務の成果に満足してくれることを願い、\n"
"そしてあなたの貢献を熱心に待つことにします!\n"
-#: ../shell/main.c:257
+#: ../shell/main.c:246
msgid ""
"Thanks\n"
"The Evolution Team\n"
@@ -19143,19 +20458,19 @@ msgstr ""
"感謝します\n"
"Evolution 開発チーム\n"
-#: ../shell/main.c:264
+#: ../shell/main.c:253
msgid "Do not tell me again"
msgstr "次回からこのメッセージを表示しない"
-#: ../shell/main.c:314
+#: ../shell/main.c:303
msgid "Evolution Crash Detection"
msgstr "Evolution のクラッシュ検出"
-#: ../shell/main.c:316
+#: ../shell/main.c:305
msgid "Ig_nore"
msgstr "無視する(_N)"
-#: ../shell/main.c:331
+#: ../shell/main.c:320
#, no-c-format
msgid ""
"Evolution appears to have exited unexpectedly the last time it was\n"
@@ -19166,39 +20481,39 @@ msgstr ""
"予防措置として、全てのプレビュー・ペインを表示しないようにします。\n"
"表示メニューからプレビュー・ペインを元の状態に戻すことができます。\n"
-#: ../shell/main.c:342
+#: ../shell/main.c:331
msgid "_Do not show this message again"
msgstr "次回からこのメッセージを表示しない(_D)"
-#: ../shell/main.c:574
+#: ../shell/main.c:563
msgid "Start Evolution activating the specified component"
msgstr "指定したコンポーネントを有効にして Evolution を起動する"
-#: ../shell/main.c:578
+#: ../shell/main.c:567
msgid "Start in online mode"
msgstr "オンライン・モードで起動する"
-#: ../shell/main.c:581
+#: ../shell/main.c:570
msgid "Forcibly shut down all Evolution components"
msgstr "全ての Evolution コンポーネントを強制終了する"
-#: ../shell/main.c:585
+#: ../shell/main.c:574
msgid "Forcibly re-migrate from Evolution 1.4"
msgstr "Evolution 1.4系から関連ファイルを強制的に移行する"
-#: ../shell/main.c:588
+#: ../shell/main.c:577
msgid "Send the debugging output of all components to a file."
msgstr "全てのコンポーネントのデバッグ出力をファイルへ送る"
-#: ../shell/main.c:590
+#: ../shell/main.c:579
msgid "Disable loading of any plugins."
msgstr "プラグインを読み込まない"
-#: ../shell/main.c:592
+#: ../shell/main.c:581
msgid "Disable preview pane of Mail, Contacts and Tasks."
msgstr "メール/連絡先/タスクのプレビュー・ペインを無効にして起動する"
-#: ../shell/main.c:677
+#: ../shell/main.c:666
msgid "- The Evolution PIM and Email Client"
msgstr "- Evolution PIM とメール・クライアント"
@@ -19343,7 +20658,7 @@ msgstr ""
"\n"
"続行すると、いくつかの古いデータへアクセスできなくなるかもしれません。\n"
-#: ../smime/gui/ca-trust-dialog.c:104
+#: ../smime/gui/ca-trust-dialog.c:102
#, c-format
msgid ""
"Certificate '%s' is a CA certificate.\n"
@@ -19354,7 +20669,7 @@ msgstr ""
"\n"
"信用度を設定して下さい:"
-#: ../smime/gui/cert-trust-dialog.c:154
+#: ../smime/gui/cert-trust-dialog.c:151
msgid ""
"Because you trust the certificate authority that issued this certificate, "
"then you trust the authenticity of this certificate unless otherwise "
@@ -19363,7 +20678,7 @@ msgstr ""
"この証明書を発行した認証局を信用したので、ここで表示された他のものを除いて、"
"この証明書の信憑性を信用することになります。"
-#: ../smime/gui/cert-trust-dialog.c:158
+#: ../smime/gui/cert-trust-dialog.c:155
msgid ""
"Because you do not trust the certificate authority that issued this "
"certificate, then you do not trust the authenticity of this certificate "
@@ -19420,11 +20735,16 @@ msgstr "E-メール・アドレス"
msgid "All CA certificate files"
msgstr "全ての CA 認証ファイル"
-#: ../smime/gui/certificate-viewer.c:341
+#: ../smime/gui/certificate-viewer.c:339
#, c-format
msgid "Certificate Viewer: %s"
msgstr "証明書ビューア: %s"
+#: ../smime/gui/component.c:47
+#, c-format
+msgid "Enter the password for `%s'"
+msgstr "'%s' のパスワードを入力して下さい"
+
#. we're setting the password initially
#: ../smime/gui/component.c:70
msgid "Enter new password for certificate database"
@@ -19435,7 +20755,7 @@ msgid "Enter new password"
msgstr "新しいパスワードの入力"
#. FIXME: add serial no, validity date, uses
-#: ../smime/gui/e-cert-selector.c:121
+#: ../smime/gui/e-cert-selector.c:115
#, c-format
msgid ""
"Issued to:\n"
@@ -19444,7 +20764,7 @@ msgstr ""
"発行先:\n"
" 件名: %s\n"
-#: ../smime/gui/e-cert-selector.c:122
+#: ../smime/gui/e-cert-selector.c:116
#, c-format
msgid ""
"Issued by:\n"
@@ -19453,7 +20773,7 @@ msgstr ""
"発行元:\n"
" 件名: %s\n"
-#: ../smime/gui/e-cert-selector.c:174
+#: ../smime/gui/e-cert-selector.c:168
msgid "Select certificate"
msgstr "証明書の選択"
@@ -19639,7 +20959,7 @@ msgid "_Edit CA Trust"
msgstr "CA トラストの編集(_E)"
#. XXX we shouldn't be popping up dialogs in this code.
-#: ../smime/lib/e-cert-db.c:679
+#: ../smime/lib/e-cert-db.c:672
msgid "Certificate already exists"
msgstr "既に証明書があります"
@@ -19847,8 +21167,7 @@ msgstr "全ての連絡先のコピー(_P)..."
msgid "Contact _Preview"
msgstr "連絡先のプレビュー(_P)"
-#: ../ui/evolution-addressbook.xml.h:6
-#: ../ui/evolution-composer-entries.xml.h:1 ../ui/evolution-memos.xml.h:2
+#: ../ui/evolution-addressbook.xml.h:6 ../ui/evolution-memos.xml.h:2
#: ../ui/evolution-tasks.xml.h:2
msgid "Copy"
msgstr "コピー"
@@ -19873,8 +21192,7 @@ msgstr "フォルダへコピー..."
msgid "Create a new addressbook folder"
msgstr "新しいアドレス帳のフォルダを作成します"
-#: ../ui/evolution-addressbook.xml.h:12
-#: ../ui/evolution-composer-entries.xml.h:5 ../ui/evolution-memos.xml.h:4
+#: ../ui/evolution-addressbook.xml.h:12 ../ui/evolution-memos.xml.h:4
#: ../ui/evolution-tasks.xml.h:4
msgid "Cut"
msgstr "切り取り"
@@ -19915,8 +21233,7 @@ msgstr "選択したフォルダの連絡先を別のフォルダへ移動しま
msgid "Move to Folder..."
msgstr "フォルダへ移動..."
-#: ../ui/evolution-addressbook.xml.h:23
-#: ../ui/evolution-composer-entries.xml.h:8 ../ui/evolution-memos.xml.h:8
+#: ../ui/evolution-addressbook.xml.h:23 ../ui/evolution-memos.xml.h:8
#: ../ui/evolution-tasks.xml.h:11
msgid "Paste"
msgstr "貼り付け"
@@ -19953,13 +21270,11 @@ msgstr "選択した連絡先を vCard 形式で保存します"
msgid "Save the contacts of the selected folder as VCard"
msgstr "選択した連絡先を vCard 形式で保存します"
-#: ../ui/evolution-addressbook.xml.h:34 ../widgets/text/e-text.c:2722
+#: ../ui/evolution-addressbook.xml.h:34 ../widgets/text/e-text.c:2723
msgid "Select All"
msgstr "全て選択"
#: ../ui/evolution-addressbook.xml.h:35
-#: ../ui/evolution-composer-entries.xml.h:11 ../ui/evolution-editor.xml.h:13
-#: ../ui/evolution-subscribe.xml.h:6
msgid "Select _All"
msgstr "全て選択(_A)"
@@ -20028,7 +21343,7 @@ msgstr "連絡先の移動(_M)..."
msgid "_Move Folder Contacts To"
msgstr "連絡先フォルダの移動(_M)"
-#: ../ui/evolution-addressbook.xml.h:55 ../ui/evolution.xml.h:48
+#: ../ui/evolution-addressbook.xml.h:55 ../ui/evolution.xml.h:49
msgid "_New"
msgstr "新規(_N)"
@@ -20089,7 +21404,7 @@ msgid "Month"
msgstr "月"
#: ../ui/evolution-calendar.xml.h:16 ../ui/evolution-mail-message.xml.h:58
-#: ../widgets/misc/e-calendar.c:201
+#: ../widgets/misc/e-calendar.c:196
msgid "Next"
msgstr "次へ"
@@ -20098,7 +21413,7 @@ msgid "Previews the calendar to be printed"
msgstr "印刷されるカレンダのプレビューを表示します"
#: ../ui/evolution-calendar.xml.h:19 ../ui/evolution-mail-message.xml.h:74
-#: ../widgets/misc/e-calendar.c:177
+#: ../widgets/misc/e-calendar.c:172
msgid "Previous"
msgstr "前へ"
@@ -20166,232 +21481,6 @@ msgstr "平日"
msgid "_Open Appointment"
msgstr "予定を開く(_O)"
-#: ../ui/evolution-composer-entries.xml.h:2 ../ui/evolution-editor.xml.h:7
-msgid "Copy selected text to the clipboard"
-msgstr "選択した文字列をクリップボードにコピーします"
-
-#: ../ui/evolution-composer-entries.xml.h:3
-msgid "Copy selection to clipboard"
-msgstr "選択した文字列をクリップボードにコピーします"
-
-#: ../ui/evolution-composer-entries.xml.h:6 ../ui/evolution-editor.xml.h:9
-msgid "Cut selected text to the clipboard"
-msgstr "選択した文字列を切り取ってクリップボードにコピーします"
-
-#: ../ui/evolution-composer-entries.xml.h:7
-msgid "Cut selection to clipboard"
-msgstr "選択した文字列を切り取ってクリップボードにコピーします"
-
-#: ../ui/evolution-composer-entries.xml.h:9
-msgid "Paste from clipboard"
-msgstr "クリップボードから貼り付けます"
-
-#: ../ui/evolution-composer-entries.xml.h:10 ../ui/evolution-editor.xml.h:11
-msgid "Paste text from the clipboard"
-msgstr "クリップボードから文字列を貼り付けます"
-
-#: ../ui/evolution-composer-entries.xml.h:12 ../ui/evolution-editor.xml.h:14
-msgid "Select all text"
-msgstr "全ての文字列を選択します"
-
-#: ../ui/evolution-editor.xml.h:1 ../ui/evolution-message-composer.xml.h:1
-msgid "Attach"
-msgstr "添付"
-
-#: ../ui/evolution-editor.xml.h:2
-msgid "Click here to attach a file"
-msgstr "ファイルを添付します"
-
-#: ../ui/evolution-editor.xml.h:3
-msgid "Click here to close the current window"
-msgstr "このウィンドウを閉じます"
-
-#: ../ui/evolution-editor.xml.h:4
-msgid "Click here to save the current window"
-msgstr "この内容を保存します"
-
-#: ../ui/evolution-editor.xml.h:5
-msgid "Click here to view help available"
-msgstr "利用可能なヘルプを表示します"
-
-#.
-#. <cmd name="FileSave" _label="Save"
-#. _tip="Save the current file" pixtype="stock" pixname="Save"
-#. accel="*Ctrl*s"/>
-#.
-#: ../ui/evolution-editor.xml.h:6 ../ui/evolution-mail-messagedisplay.xml.h:1
-#: ../ui/evolution-message-composer.xml.h:3
-#: ../ui/evolution-signature-editor.xml.h:7
-msgid "Close"
-msgstr "閉じる"
-
-#: ../ui/evolution-editor.xml.h:10 ../ui/evolution-message-composer.xml.h:11
-#: ../ui/evolution-signature-editor.xml.h:16
-msgid "I_nsert"
-msgstr "挿入(_N)"
-
-#: ../ui/evolution-editor.xml.h:15 ../ui/evolution-message-composer.xml.h:47
-msgid "_Attachment..."
-msgstr "ファイルの添付(_A)..."
-
-#: ../ui/evolution-editor.xml.h:16 ../ui/evolution-mail-messagedisplay.xml.h:4
-#: ../ui/evolution-message-composer.xml.h:50 ../ui/evolution-subscribe.xml.h:9
-msgid "_Close"
-msgstr "閉じる(_C)"
-
-#: ../ui/evolution-editor.xml.h:19 ../ui/evolution-mail-messagedisplay.xml.h:6
-#: ../ui/evolution-message-composer.xml.h:53
-#: ../ui/evolution-signature-editor.xml.h:25
-#: ../ui/evolution-subscribe.xml.h:11 ../ui/evolution.xml.h:42
-msgid "_File"
-msgstr "ファイル(_F)"
-
-#: ../ui/evolution-editor.xml.h:20 ../ui/evolution-mail-global.xml.h:24
-#: ../ui/evolution.xml.h:45
-msgid "_Help"
-msgstr "ヘルプ(_H)"
-
-#: ../ui/evolution-editor.xml.h:21
-msgid "_Options"
-msgstr "オプション(_O)"
-
-#: ../ui/evolution-event-editor.xml.h:2
-msgid "All Day Event"
-msgstr "終日のイベント"
-
-#: ../ui/evolution-event-editor.xml.h:3
-msgid "All _Day Event"
-msgstr "終日のイベントにする(_D)"
-
-#: ../ui/evolution-event-editor.xml.h:4 ../ui/evolution-memo-editor.xml.h:1
-#: ../ui/evolution-task-editor.xml.h:1
-msgid "Classify as Confidential"
-msgstr "極秘として分類"
-
-#: ../ui/evolution-event-editor.xml.h:5 ../ui/evolution-memo-editor.xml.h:2
-#: ../ui/evolution-task-editor.xml.h:2
-msgid "Classify as Private"
-msgstr "非公開として分類"
-
-#: ../ui/evolution-event-editor.xml.h:6 ../ui/evolution-memo-editor.xml.h:3
-#: ../ui/evolution-task-editor.xml.h:3
-msgid "Classify as public"
-msgstr "公開として分類"
-
-#: ../ui/evolution-event-editor.xml.h:7
-msgid "Click here to set or unset alarms for this event"
-msgstr "このイベントにアラームをセットしたり解除します"
-
-#: ../ui/evolution-event-editor.xml.h:9 ../ui/evolution-task-editor.xml.h:5
-msgid "Insert advanced send options"
-msgstr "送信用の拡張オプションを挿入します"
-
-#: ../ui/evolution-event-editor.xml.h:10
-msgid "Make this a recurring event"
-msgstr "このイベントを繰り返します"
-
-#: ../ui/evolution-event-editor.xml.h:11 ../ui/evolution-memo-editor.xml.h:4
-#: ../ui/evolution-task-editor.xml.h:6
-msgid "Pu_blic"
-msgstr "公開(_B)"
-
-#: ../ui/evolution-event-editor.xml.h:12
-msgid "Query free / busy information for the attendees"
-msgstr "この出席者の予定を調べてみます"
-
-#: ../ui/evolution-event-editor.xml.h:13 ../ui/evolution-task-editor.xml.h:7
-msgid "R_ole Field"
-msgstr "役割フィールド(_O)"
-
-#: ../ui/evolution-event-editor.xml.h:16
-msgid "Send _Options"
-msgstr "オプションの送信(_O)"
-
-#: ../ui/evolution-event-editor.xml.h:17
-msgid "Show time as _busy"
-msgstr "\"予定あり\"にする(_B)"
-
-#: ../ui/evolution-event-editor.xml.h:18 ../ui/evolution-task-editor.xml.h:11
-msgid "Time _Zone"
-msgstr "タイムゾーン(_Z)"
-
-#: ../ui/evolution-event-editor.xml.h:19 ../ui/evolution-task-editor.xml.h:12
-msgid "Toggles whether the Attendee Type field is displayed"
-msgstr "出席者の所属 (種類) の表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:20 ../ui/evolution-task-editor.xml.h:13
-msgid "Toggles whether the RSVP field is displayed"
-msgstr "RSVP の表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:21 ../ui/evolution-task-editor.xml.h:14
-msgid "Toggles whether the Role field is displayed"
-msgstr "役割の表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:22 ../ui/evolution-task-editor.xml.h:15
-msgid "Toggles whether the Status field is displayed"
-msgstr "ステータスの表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:23 ../ui/evolution-task-editor.xml.h:16
-msgid "Toggles whether the time zone is displayed"
-msgstr "タイムゾーンの表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:24 ../ui/evolution-memo-editor.xml.h:5
-#: ../ui/evolution-task-editor.xml.h:17
-msgid "Toggles whether to display categories"
-msgstr "カテゴリの表示/非表示を切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:25
-msgid "Toggles whether to have All Day Event"
-msgstr "終日のイベントにするかどうかを切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:26
-msgid "Toggles whether to show time as busy"
-msgstr "予定ありと表示するかどうかを切り替えます"
-
-#: ../ui/evolution-event-editor.xml.h:27
-msgid "_Alarms"
-msgstr "アラーム(_A)"
-
-#: ../ui/evolution-event-editor.xml.h:28 ../ui/evolution-memo-editor.xml.h:6
-#: ../ui/evolution-task-editor.xml.h:18
-msgid "_Categories"
-msgstr "カテゴリ(_C)"
-
-#: ../ui/evolution-event-editor.xml.h:29 ../ui/evolution-memo-editor.xml.h:7
-#: ../ui/evolution-task-editor.xml.h:19
-msgid "_Classification"
-msgstr "区分(_C)"
-
-#: ../ui/evolution-event-editor.xml.h:30 ../ui/evolution-memo-editor.xml.h:8
-#: ../ui/evolution-task-editor.xml.h:20
-msgid "_Confidential"
-msgstr "極秘(_C)"
-
-#: ../ui/evolution-event-editor.xml.h:31
-msgid "_Free/Busy"
-msgstr "Free/Busy(_F)"
-
-#: ../ui/evolution-event-editor.xml.h:32 ../ui/evolution-memo-editor.xml.h:9
-#: ../ui/evolution-task-editor.xml.h:21
-msgid "_Private"
-msgstr "非公開(_P)"
-
-#: ../ui/evolution-event-editor.xml.h:33 ../ui/evolution-task-editor.xml.h:22
-msgid "_RSVP"
-msgstr "RSVP(_R)"
-
-#: ../ui/evolution-event-editor.xml.h:34
-msgid "_Recurrence"
-msgstr "繰り返す(_R)"
-
-#: ../ui/evolution-event-editor.xml.h:35 ../ui/evolution-task-editor.xml.h:25
-msgid "_Status Field"
-msgstr "ステータス(_S)"
-
-#: ../ui/evolution-event-editor.xml.h:36 ../ui/evolution-task-editor.xml.h:26
-msgid "_Type Field"
-msgstr "所属(_T)"
-
#: ../ui/evolution-mail-global.xml.h:2
msgid "Cancel the current mail operation"
msgstr "現在のメール操作を取り消します"
@@ -20423,7 +21512,6 @@ msgid "Empty _Trash"
msgstr "ゴミ箱を空にする(_T)"
#: ../ui/evolution-mail-global.xml.h:9 ../ui/evolution-mail-list.xml.h:11
-#: ../ui/evolution-subscribe.xml.h:2
msgid "F_older"
msgstr "フォルダ(_O)"
@@ -20641,7 +21729,7 @@ msgstr "メッセージの一覧をスレッド表示に変更するかどうか
msgid "_Group By Threads"
msgstr "スレッドでグループ化(_G)"
-#: ../ui/evolution-mail-list.xml.h:37 ../ui/evolution-mail-message.xml.h:116
+#: ../ui/evolution-mail-list.xml.h:37 ../ui/evolution-mail-message.xml.h:115
#: ../ui/evolution-mail-messagedisplay.xml.h:7
msgid "_Message"
msgstr "メッセージ(_M)"
@@ -20976,129 +22064,125 @@ msgid "Show a blinking cursor in the body of displayed messages"
msgstr "表示したメッセージの本文に点滅するカーソルを表示します"
#: ../ui/evolution-mail-message.xml.h:95
-msgid "Show messages in the normal style"
-msgstr "通常のメッセージを表示します"
-
-#: ../ui/evolution-mail-message.xml.h:96
msgid "Show messages with all email headers"
msgstr "E-メール・ヘッダも含めてメッセージを全て表示します"
-#: ../ui/evolution-mail-message.xml.h:97
+#: ../ui/evolution-mail-message.xml.h:96
msgid "Show the raw email source of the message"
msgstr "メッセージのソースを表示します"
-#: ../ui/evolution-mail-message.xml.h:98
+#: ../ui/evolution-mail-message.xml.h:97
msgid "Undelete the selected messages"
msgstr "選択したメッセージの削除を取り消します"
-#: ../ui/evolution-mail-message.xml.h:99
+#: ../ui/evolution-mail-message.xml.h:98
msgid "Uni_mportant"
msgstr "重要ではない(_M)"
-#: ../ui/evolution-mail-message.xml.h:100
+#: ../ui/evolution-mail-message.xml.h:99
msgid "Zoom _Out"
msgstr "縮小(_O)"
-#: ../ui/evolution-mail-message.xml.h:101
+#: ../ui/evolution-mail-message.xml.h:100
msgid "_Attached"
msgstr "添付する(_A)"
-#: ../ui/evolution-mail-message.xml.h:102
+#: ../ui/evolution-mail-message.xml.h:101
msgid "_Caret Mode"
msgstr "カーソル・モード(_C)"
-#: ../ui/evolution-mail-message.xml.h:103
+#: ../ui/evolution-mail-message.xml.h:102
msgid "_Clear Flag"
msgstr "フラグの解除(_C)"
-#: ../ui/evolution-mail-message.xml.h:106
+#: ../ui/evolution-mail-message.xml.h:105
msgid "_Delete Message"
msgstr "削除マークの付与(_D)"
-#: ../ui/evolution-mail-message.xml.h:108
+#: ../ui/evolution-mail-message.xml.h:107
msgid "_Find in Message..."
msgstr "メッセージから検索(_F)..."
-#: ../ui/evolution-mail-message.xml.h:109
+#: ../ui/evolution-mail-message.xml.h:108
msgid "_Flag Completed"
msgstr "完了フラグ(_F)"
-#: ../ui/evolution-mail-message.xml.h:111
+#: ../ui/evolution-mail-message.xml.h:110
msgid "_Go To"
msgstr "ジャンプ(_G)"
-#: ../ui/evolution-mail-message.xml.h:112
+#: ../ui/evolution-mail-message.xml.h:111
msgid "_Important"
msgstr "重要(_I)"
-#: ../ui/evolution-mail-message.xml.h:113
+#: ../ui/evolution-mail-message.xml.h:112
msgid "_Inline"
msgstr "インライン(_I)"
-#: ../ui/evolution-mail-message.xml.h:114
+#: ../ui/evolution-mail-message.xml.h:113
msgid "_Junk"
msgstr "ジャンク(_J)"
-#: ../ui/evolution-mail-message.xml.h:115
+#: ../ui/evolution-mail-message.xml.h:114
msgid "_Load Images"
msgstr "画像の読み込み(_L)"
-#: ../ui/evolution-mail-message.xml.h:117
+#: ../ui/evolution-mail-message.xml.h:116
msgid "_Message Source"
msgstr "メッセージのソース(_M)"
-#: ../ui/evolution-mail-message.xml.h:119
+#: ../ui/evolution-mail-message.xml.h:118
msgid "_Next Message"
msgstr "次のメッセージへ(_N)"
-#: ../ui/evolution-mail-message.xml.h:120
+#: ../ui/evolution-mail-message.xml.h:119
msgid "_Normal Size"
msgstr "通常のサイズ(_N)"
-#: ../ui/evolution-mail-message.xml.h:121
+#: ../ui/evolution-mail-message.xml.h:120
msgid "_Not Junk"
msgstr "ジャンクではない(_N)"
-#: ../ui/evolution-mail-message.xml.h:122
+#: ../ui/evolution-mail-message.xml.h:121
msgid "_Open in New Window"
msgstr "新しいウィンドウで開く(_O)"
-#: ../ui/evolution-mail-message.xml.h:123
+#: ../ui/evolution-mail-message.xml.h:122
msgid "_Previous Message"
msgstr "前のメッセージへ(_P)"
-#: ../ui/evolution-mail-message.xml.h:125
+#: ../ui/evolution-mail-message.xml.h:124
msgid "_Quoted"
msgstr "引用する(_Q)"
#. Translators: "Read" as in "has been read" (evolution-mail-message.xml)
-#: ../ui/evolution-mail-message.xml.h:127
+#: ../ui/evolution-mail-message.xml.h:126
msgid "_Read"
msgstr "既読(_R)"
-#: ../ui/evolution-mail-message.xml.h:129
+#: ../ui/evolution-mail-message.xml.h:128
msgid "_Save Message..."
msgstr "メッセージの保存(_S)..."
-#: ../ui/evolution-mail-message.xml.h:130
+#: ../ui/evolution-mail-message.xml.h:129
msgid "_Undelete Message"
msgstr "削除マークの解除(_U)"
-#: ../ui/evolution-mail-message.xml.h:131
+#: ../ui/evolution-mail-message.xml.h:130
msgid "_Unread"
msgstr "未読(_U)"
-#: ../ui/evolution-mail-message.xml.h:132
+#: ../ui/evolution-mail-message.xml.h:131
msgid "_Zoom"
msgstr "ズーム(_Z)"
-#: ../ui/evolution-mail-message.xml.h:133
+#: ../ui/evolution-mail-message.xml.h:132
msgid "_Zoom In"
msgstr "拡大(_Z)"
-#: ../ui/evolution-mail-messagedisplay.xml.h:2 ../ui/evolution.xml.h:4
-msgid "Close this window"
-msgstr "このウィンドウを閉じます"
+#: ../ui/evolution-mail-messagedisplay.xml.h:1
+msgid "Close"
+msgstr "閉じる"
#: ../ui/evolution-mail-messagedisplay.xml.h:3 ../ui/evolution.xml.h:18
msgid "Main toolbar"
@@ -21136,290 +22220,6 @@ msgstr "選択したメモを表示します"
msgid "_Open Memo"
msgstr "メモを開く(_O)"
-#: ../ui/evolution-message-composer.xml.h:2
-msgid "Attach a file"
-msgstr "ファイルを添付します"
-
-#.
-#. <cmd name="FileSave" _label="Save"
-#. _tip="Save the current file" pixtype="stock" pixname="Save"
-#. accel="*Ctrl*s"/>
-#.
-#: ../ui/evolution-message-composer.xml.h:4
-#: ../ui/evolution-signature-editor.xml.h:13
-msgid "Close the current file"
-msgstr "現在のファイルを閉じます"
-
-#: ../ui/evolution-message-composer.xml.h:5
-msgid "Delete all but signature"
-msgstr "署名以外の全てを削除します"
-
-#: ../ui/evolution-message-composer.xml.h:6
-msgid "Encrypt this message with PGP"
-msgstr "PGP でこのメッセージを暗号化します"
-
-#: ../ui/evolution-message-composer.xml.h:7
-msgid "Encrypt this message with your S/MIME Encryption Certificate"
-msgstr "このメッセージを S/MIME 暗号認証を用いて暗号化します"
-
-#: ../ui/evolution-message-composer.xml.h:8
-#: ../ui/evolution-signature-editor.xml.h:14
-msgid "For_mat"
-msgstr "形式(_M)"
-
-#: ../ui/evolution-message-composer.xml.h:9
-msgid "Get delivery notification when your message is read"
-msgstr "相手がメッセージを読んだ時に配送通知を取得します"
-
-#: ../ui/evolution-message-composer.xml.h:10
-msgid "HT_ML"
-msgstr "HTML(_M)"
-
-#: ../ui/evolution-message-composer.xml.h:12
-msgid "Insert Send options"
-msgstr "送信用の拡張オプションを挿入します"
-
-#: ../ui/evolution-message-composer.xml.h:14
-msgid "Open a file"
-msgstr "ファイルを開く"
-
-#: ../ui/evolution-message-composer.xml.h:15
-msgid "PGP Encrypt"
-msgstr "PGP による暗号化"
-
-#: ../ui/evolution-message-composer.xml.h:16
-msgid "PGP Sign"
-msgstr "PGP サイン"
-
-#: ../ui/evolution-message-composer.xml.h:17
-msgid "PGP _Encrypt"
-msgstr "PGP による暗号化(_E)"
-
-#: ../ui/evolution-message-composer.xml.h:18
-msgid "PGP _Sign"
-msgstr "PGP の署名(_S)"
-
-#: ../ui/evolution-message-composer.xml.h:19
-msgid "R_equest Read Receipt"
-msgstr "開封通知を要求する(_E)"
-
-#: ../ui/evolution-message-composer.xml.h:20
-msgid "S/MIME En_crypt"
-msgstr "S/MIME による暗号化(_C)"
-
-#: ../ui/evolution-message-composer.xml.h:21
-msgid "S/MIME Encrypt"
-msgstr "S/MIME による暗号化"
-
-#: ../ui/evolution-message-composer.xml.h:22
-msgid "S/MIME Sig_n"
-msgstr "S/MIME の署名(_N)"
-
-#: ../ui/evolution-message-composer.xml.h:23
-msgid "S/MIME Sign"
-msgstr "S/MIME 署名"
-
-#: ../ui/evolution-message-composer.xml.h:24
-msgid "S_end"
-msgstr "送信(_E)"
-
-#: ../ui/evolution-message-composer.xml.h:26
-msgid "Save As"
-msgstr "別名で保存"
-
-#: ../ui/evolution-message-composer.xml.h:27
-msgid "Save Draft"
-msgstr "草案の保存"
-
-#: ../ui/evolution-message-composer.xml.h:28
-msgid "Save _As..."
-msgstr "別名で保存(_A)..."
-
-#: ../ui/evolution-message-composer.xml.h:29
-msgid "Save _Draft"
-msgstr "草案の保存(_D)"
-
-#: ../ui/evolution-message-composer.xml.h:30
-msgid "Save as draft"
-msgstr "草案として保存します"
-
-#: ../ui/evolution-message-composer.xml.h:31
-msgid "Save in folder..."
-msgstr "フォルダへ保存..."
-
-#: ../ui/evolution-message-composer.xml.h:32
-msgid "Save the current file"
-msgstr "現在のファイルを保存します"
-
-#: ../ui/evolution-message-composer.xml.h:33
-msgid "Save the current file with a different name"
-msgstr "現在のファイルを別名で保存します"
-
-#: ../ui/evolution-message-composer.xml.h:34
-msgid "Save the message in a specified folder"
-msgstr "指定のフォルダへメッセージを保存します"
-
-#: ../ui/evolution-message-composer.xml.h:35
-msgid "Send"
-msgstr "送信"
-
-#: ../ui/evolution-message-composer.xml.h:36
-#: ../ui/evolution-signature-editor.xml.h:23
-msgid "Send the mail in HTML format"
-msgstr "HTML形式でメッセージを送信します"
-
-#: ../ui/evolution-message-composer.xml.h:37
-msgid "Send this message"
-msgstr "メッセージを送信します"
-
-#: ../ui/evolution-message-composer.xml.h:38
-msgid "Set the message priority to high"
-msgstr "メッセージの優先度を高くします"
-
-#: ../ui/evolution-message-composer.xml.h:39
-msgid "Sign this message with your PGP key"
-msgstr "PGP 鍵でこのメッセージに署名します"
-
-#: ../ui/evolution-message-composer.xml.h:40
-msgid "Sign this message with your S/MIME Signature Certificate"
-msgstr "S/MIME 署名証明書でこのメッセージに署名します"
-
-#: ../ui/evolution-message-composer.xml.h:41
-msgid "Toggles whether the BCC field is displayed"
-msgstr "Bcc の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:42
-msgid "Toggles whether the CC field is displayed"
-msgstr "Cc の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:43
-msgid "Toggles whether the From chooser is displayed"
-msgstr "差出人の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:44
-msgid "Toggles whether the Post-To field is displayed"
-msgstr "送信先の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:45
-msgid "Toggles whether the Reply-To field is displayed"
-msgstr "返信先の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:46
-msgid "Toggles whether the To field is displayed"
-msgstr "宛先の表示/非表示を切り替えます"
-
-#: ../ui/evolution-message-composer.xml.h:48
-msgid "_Bcc Field"
-msgstr "Bcc フィールド(_B)"
-
-#: ../ui/evolution-message-composer.xml.h:49
-msgid "_Cc Field"
-msgstr "Cc フィールド(_C)"
-
-#: ../ui/evolution-message-composer.xml.h:51
-msgid "_Delete all"
-msgstr "全て削除(_D)"
-
-#: ../ui/evolution-message-composer.xml.h:54
-msgid "_From Field"
-msgstr "差出人フィールド(_F)"
-
-#: ../ui/evolution-message-composer.xml.h:55
-msgid "_Open..."
-msgstr "開く(_O)..."
-
-#: ../ui/evolution-message-composer.xml.h:56
-msgid "_Post-To Field"
-msgstr "送信先フィールド(_P)"
-
-#: ../ui/evolution-message-composer.xml.h:57
-msgid "_Prioritize Message"
-msgstr "メッセージの優先度を上げる(_P)"
-
-#: ../ui/evolution-message-composer.xml.h:58
-msgid "_Reply-To Field"
-msgstr "返信先フィールド(_R)"
-
-#: ../ui/evolution-message-composer.xml.h:60
-msgid "_Security"
-msgstr "セキュリティ(_S)"
-
-#: ../ui/evolution-message-composer.xml.h:61
-#: ../ui/evolution-task-editor.xml.h:23
-msgid "_Send Options"
-msgstr "送信オプション(_S)"
-
-#: ../ui/evolution-message-composer.xml.h:62
-msgid "_To Field"
-msgstr "宛先フィールド(_T)"
-
-#: ../ui/evolution-signature-editor.xml.h:1
-msgid "C_lose"
-msgstr "閉じる(_L)"
-
-#: ../ui/evolution-signature-editor.xml.h:15
-msgid "H_TML"
-msgstr "HTML(_T)"
-
-#: ../ui/evolution-signature-editor.xml.h:17
-msgid "Save and Close"
-msgstr "保存して閉じる"
-
-#.
-#. <menuitem name="FileSave" verb="" _label="_Save"/>
-#.
-#: ../ui/evolution-signature-editor.xml.h:21
-msgid "Save and _Close"
-msgstr "保存して閉じる(_C)"
-
-#: ../ui/evolution-signature-editor.xml.h:22
-msgid "Save the current file and close the window"
-msgstr "ファイルを保存してダイアログを閉じます"
-
-#: ../ui/evolution-subscribe.xml.h:1
-msgid "Add folder to your list of subscribed folders"
-msgstr "購読フォルダのリストへフォルダを追加"
-
-#: ../ui/evolution-subscribe.xml.h:3
-msgid "Refresh List"
-msgstr "リストの更新"
-
-#: ../ui/evolution-subscribe.xml.h:4
-msgid "Refresh List of Folders"
-msgstr "フォルダ一覧の更新"
-
-#: ../ui/evolution-subscribe.xml.h:5
-msgid "Remove folder from your list of subscribed folders"
-msgstr "購読フォルダのリストからフォルダを削除"
-
-#: ../ui/evolution-subscribe.xml.h:7
-msgid "Subscribe"
-msgstr "購読"
-
-#: ../ui/evolution-subscribe.xml.h:8
-msgid "Unsubscribe"
-msgstr "購読停止"
-
-#: ../ui/evolution-subscribe.xml.h:12
-msgid "_Invert Selection"
-msgstr "選択の反転(_I)"
-
-#: ../ui/evolution-task-editor.xml.h:4
-msgid "Click change / view the status details of the task"
-msgstr "タスクの詳細を変更します"
-
-#: ../ui/evolution-task-editor.xml.h:9
-msgid "Status Details"
-msgstr "ステータスの詳細"
-
-#: ../ui/evolution-task-editor.xml.h:10
-msgid "Time Zone"
-msgstr "タイムゾーン"
-
-#: ../ui/evolution-task-editor.xml.h:24
-msgid "_Status Details"
-msgstr "ステータスの詳細(_S)"
-
#: ../ui/evolution-tasks.xml.h:3
msgid "Copy selected tasks"
msgstr "選択したタスクをコピーします"
@@ -21454,7 +22254,7 @@ msgstr "タスク一覧の印刷プレビューを表示します"
#: ../ui/evolution-tasks.xml.h:16
msgid "Print the list of tasks"
-msgstr "タスク一覧を印刷します"
+msgstr "タスクの一覧を印刷します"
#: ../ui/evolution-tasks.xml.h:18
msgid "Show task preview window"
@@ -21613,50 +22413,54 @@ msgid "View/Hide the Status Bar"
msgstr "ステータスバーの表示/非表示を切り替えます"
#: ../ui/evolution.xml.h:39
+msgid "Work _Offline"
+msgstr "オフラインで動作(_O)"
+
+#: ../ui/evolution.xml.h:40
msgid "_About"
msgstr "情報(_A)"
-#: ../ui/evolution.xml.h:40
+#: ../ui/evolution.xml.h:41
msgid "_Close Window"
msgstr "ウィンドウを閉じる(_C)"
-#: ../ui/evolution.xml.h:43
+#: ../ui/evolution.xml.h:44
msgid "_Forget Passwords"
msgstr "パスワードの紛失(_F)"
-#: ../ui/evolution.xml.h:44
+#: ../ui/evolution.xml.h:45
msgid "_Frequently Asked Questions"
msgstr "よくある質問(_F)"
-#: ../ui/evolution.xml.h:46
+#: ../ui/evolution.xml.h:47
msgid "_Hide Buttons"
msgstr "ボタンを隠す(_H)"
-#: ../ui/evolution.xml.h:47
+#: ../ui/evolution.xml.h:48
msgid "_Icons Only"
msgstr "アイコンのみ(_I)"
-#: ../ui/evolution.xml.h:49
+#: ../ui/evolution.xml.h:50
msgid "_Quick Reference"
msgstr "クィック・リファレンス(_Q)"
-#: ../ui/evolution.xml.h:50
+#: ../ui/evolution.xml.h:51
msgid "_Quit"
msgstr "終了(_Q)"
-#: ../ui/evolution.xml.h:51
+#: ../ui/evolution.xml.h:52
msgid "_Switcher Appearance"
msgstr "ボタンのスタイル(_S)"
-#: ../ui/evolution.xml.h:52
+#: ../ui/evolution.xml.h:53
msgid "_Synchronization Options..."
msgstr "GNOME パイロットとの同期(_S)..."
-#: ../ui/evolution.xml.h:53
+#: ../ui/evolution.xml.h:54
msgid "_Text Only"
msgstr "ラベルのみ(_T)"
-#: ../ui/evolution.xml.h:55
+#: ../ui/evolution.xml.h:56
msgid "_Window"
msgstr "ウィンドウ(_W)"
@@ -21733,11 +22537,11 @@ msgid "With _Status"
msgstr "ステータス(_S)"
#. Put the "UTC" entry at the top of the combo's list.
-#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:241
-#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:438
-#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:440
-#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:442
-#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:791
+#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:234
+#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:431
+#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:433
+#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:435
+#: ../widgets/e-timezone-dialog/e-timezone-dialog.c:784
msgid "UTC"
msgstr "UTC"
@@ -21754,8 +22558,8 @@ msgid "Select a Time Zone"
msgstr "タイムゾーンの選択"
#: ../widgets/e-timezone-dialog/e-timezone-dialog.glade.h:5
-msgid "TimeZone Combobox"
-msgstr "タイムゾーンのコンボ・ボックスです"
+msgid "Timezone drop-down combination box"
+msgstr "タイムゾーンを選択するためのドロップ・ダウン式のコンボ・ボックスです"
#: ../widgets/e-timezone-dialog/e-timezone-dialog.glade.h:6
msgid ""
@@ -21767,19 +22571,19 @@ msgstr ""
"して下さい。\n"
"エリアを縮小する場合はマウスの右ボタンを使って下さい。"
-#: ../widgets/menus/gal-define-views-dialog.c:78
+#: ../widgets/menus/gal-define-views-dialog.c:76
#: ../widgets/menus/gal-define-views-model.c:186
msgid "Collection"
msgstr "コレクション"
-#: ../widgets/menus/gal-define-views-dialog.c:360
+#: ../widgets/menus/gal-define-views-dialog.c:358
#: ../widgets/menus/gal-define-views.glade.h:4
#, no-c-format
msgid "Define Views for %s"
msgstr "\"%s\" ビューの定義"
+#: ../widgets/menus/gal-define-views-dialog.c:366
#: ../widgets/menus/gal-define-views-dialog.c:368
-#: ../widgets/menus/gal-define-views-dialog.c:370
msgid "Define Views"
msgstr "ビューの定義"
@@ -21789,17 +22593,17 @@ msgid "Define Views for \"%s\""
msgstr "\"%s\" ビューの定義"
#: ../widgets/menus/gal-view-factory-etable.c:37
-#: ../widgets/table/e-table-header-item.c:1921
+#: ../widgets/table/e-table-header-item.c:1922
#: ../widgets/table/e-table-scrolled.c:216
#: ../widgets/table/e-table-scrolled.c:217
msgid "Table"
msgstr "表"
-#: ../widgets/menus/gal-view-instance-save-as-dialog.c:228
+#: ../widgets/menus/gal-view-instance-save-as-dialog.c:226
msgid "Instance"
msgstr "インスタンス"
-#: ../widgets/menus/gal-view-instance-save-as-dialog.c:286
+#: ../widgets/menus/gal-view-instance-save-as-dialog.c:284
msgid "Save Current View"
msgstr "このビューの保存"
@@ -21851,11 +22655,11 @@ msgstr "現在のビューを保存します"
msgid "Create or edit views"
msgstr "ビューを作成したり編集します"
-#: ../widgets/menus/gal-view-new-dialog.c:72
+#: ../widgets/menus/gal-view-new-dialog.c:70
msgid "Factory"
msgstr "ファクトリ"
-#: ../widgets/menus/gal-view-new-dialog.c:107
+#: ../widgets/menus/gal-view-new-dialog.c:105
msgid "Define New View"
msgstr "新しいビューの定義"
@@ -21871,17 +22675,17 @@ msgstr "ビューの種類"
msgid "Type of view:"
msgstr "ビューの種類:"
-#: ../widgets/misc/e-attachment-bar.c:1028
+#: ../widgets/misc/e-attachment-bar.c:1137
msgid "Attachment Bar"
msgstr "添付ファイル・バー"
-#: ../widgets/misc/e-attachment.c:306 ../widgets/misc/e-attachment.c:321
-#: ../widgets/misc/e-attachment.c:522 ../widgets/misc/e-attachment.c:539
+#: ../widgets/misc/e-attachment.c:290 ../widgets/misc/e-attachment.c:305
+#: ../widgets/misc/e-attachment.c:590 ../widgets/misc/e-attachment.c:607
#, c-format
msgid "Cannot attach file %s: %s"
msgstr "ファイル %s を添付できません: %s"
-#: ../widgets/misc/e-attachment.c:314 ../widgets/misc/e-attachment.c:531
+#: ../widgets/misc/e-attachment.c:298 ../widgets/misc/e-attachment.c:599
#, c-format
msgid "Cannot attach file %s: not a regular file"
msgstr "ファイル %s を添付できません: 通常のファイルではありません"
@@ -21903,33 +22707,32 @@ msgid "Suggest automatic display of attachment"
msgstr "添付した内容を自動的に表示するか提示する"
#. This is a strftime() format. %B = Month name, %Y = Year.
-#: ../widgets/misc/e-calendar-item.c:1077
-#: ../widgets/misc/e-calendar-item.c:1726
+#: ../widgets/misc/e-calendar-item.c:1273
msgid "%B %Y"
msgstr "%Y年%B"
-#: ../widgets/misc/e-calendar.c:226
+#: ../widgets/misc/e-calendar.c:221
msgid "Month Calendar"
msgstr "月別カレンダ"
#: ../widgets/misc/e-canvas-background.c:453
-#: ../widgets/misc/e-canvas-background.c:454 ../widgets/text/e-text.c:3642
-#: ../widgets/text/e-text.c:3643
+#: ../widgets/misc/e-canvas-background.c:454 ../widgets/text/e-text.c:3643
+#: ../widgets/text/e-text.c:3644
msgid "Fill color"
msgstr "色で塗りつぶす"
#: ../widgets/misc/e-canvas-background.c:460
#: ../widgets/misc/e-canvas-background.c:461
#: ../widgets/misc/e-canvas-background.c:467
-#: ../widgets/misc/e-canvas-background.c:468 ../widgets/text/e-text.c:3649
-#: ../widgets/text/e-text.c:3650 ../widgets/text/e-text.c:3657
-#: ../widgets/text/e-text.c:3658
+#: ../widgets/misc/e-canvas-background.c:468 ../widgets/text/e-text.c:3650
+#: ../widgets/text/e-text.c:3651 ../widgets/text/e-text.c:3658
+#: ../widgets/text/e-text.c:3659
msgid "GDK fill color"
msgstr "GDK で色を塗りつぶす"
#: ../widgets/misc/e-canvas-background.c:474
-#: ../widgets/misc/e-canvas-background.c:475 ../widgets/text/e-text.c:3664
-#: ../widgets/text/e-text.c:3665
+#: ../widgets/misc/e-canvas-background.c:475 ../widgets/text/e-text.c:3665
+#: ../widgets/text/e-text.c:3666
msgid "Fill stipple"
msgstr "点で埋める"
@@ -21954,29 +22757,29 @@ msgid "Y2"
msgstr "Y2"
#: ../widgets/misc/e-canvas-vbox.c:92 ../widgets/misc/e-reflow.c:1426
-#: ../widgets/table/e-table-group-container.c:973
-#: ../widgets/table/e-table-group-leaf.c:635
-#: ../widgets/table/e-table-item.c:3071
+#: ../widgets/table/e-table-group-container.c:1000
+#: ../widgets/table/e-table-group-leaf.c:644
+#: ../widgets/table/e-table-item.c:3074
msgid "Minimum width"
msgstr "最小の幅"
#: ../widgets/misc/e-canvas-vbox.c:93 ../widgets/misc/e-reflow.c:1427
-#: ../widgets/table/e-table-group-container.c:974
-#: ../widgets/table/e-table-group-leaf.c:636
-#: ../widgets/table/e-table-item.c:3072
+#: ../widgets/table/e-table-group-container.c:1001
+#: ../widgets/table/e-table-group-leaf.c:645
+#: ../widgets/table/e-table-item.c:3075
msgid "Minimum Width"
msgstr "最小の幅"
#: ../widgets/misc/e-canvas-vbox.c:104 ../widgets/misc/e-canvas-vbox.c:105
-#: ../widgets/misc/e-expander.c:206
+#: ../widgets/misc/e-expander.c:204
msgid "Spacing"
msgstr "スペースの挿入"
-#: ../widgets/misc/e-cell-date-edit.c:231
+#: ../widgets/misc/e-cell-date-edit.c:291
msgid "Now"
msgstr "今"
-#: ../widgets/misc/e-cell-date-edit.c:795
+#: ../widgets/misc/e-cell-date-edit.c:848
#, c-format
msgid "The time must be in the format: %s"
msgstr "時間はフォーマットに入れなければなりません: %s"
@@ -21985,152 +22788,150 @@ msgstr "時間はフォーマットに入れなければなりません: %s"
msgid "The percent value must be between 0 and 100, inclusive"
msgstr "パーセント値は 0 と 100 の間で含んでいなければなりません"
-#: ../widgets/misc/e-charset-picker.c:65
+#: ../widgets/misc/e-charset-picker.c:56
msgid "Arabic"
msgstr "アラビア語"
-#: ../widgets/misc/e-charset-picker.c:66
+#: ../widgets/misc/e-charset-picker.c:57
msgid "Baltic"
msgstr "バルト語"
-#: ../widgets/misc/e-charset-picker.c:67
+#: ../widgets/misc/e-charset-picker.c:58
msgid "Central European"
msgstr "中欧"
-#: ../widgets/misc/e-charset-picker.c:68
+#: ../widgets/misc/e-charset-picker.c:59
msgid "Chinese"
msgstr "中国語"
-#: ../widgets/misc/e-charset-picker.c:69
+#: ../widgets/misc/e-charset-picker.c:60
msgid "Cyrillic"
msgstr "キリル文字"
-#: ../widgets/misc/e-charset-picker.c:70
+#: ../widgets/misc/e-charset-picker.c:61
msgid "Greek"
msgstr "ギリシア語"
-#: ../widgets/misc/e-charset-picker.c:71
+#: ../widgets/misc/e-charset-picker.c:62
msgid "Hebrew"
msgstr "ヘブライ語"
-#: ../widgets/misc/e-charset-picker.c:72
+#: ../widgets/misc/e-charset-picker.c:63
msgid "Japanese"
msgstr "日本語"
-#: ../widgets/misc/e-charset-picker.c:73
+#: ../widgets/misc/e-charset-picker.c:64
msgid "Korean"
msgstr "韓国語"
-#: ../widgets/misc/e-charset-picker.c:74
+#: ../widgets/misc/e-charset-picker.c:65
msgid "Thai"
msgstr "タイ語"
-#: ../widgets/misc/e-charset-picker.c:75
+#: ../widgets/misc/e-charset-picker.c:66
msgid "Turkish"
msgstr "トルコ語"
-#: ../widgets/misc/e-charset-picker.c:76
+#: ../widgets/misc/e-charset-picker.c:67
msgid "Unicode"
msgstr "ユニコード"
-#: ../widgets/misc/e-charset-picker.c:77
+#: ../widgets/misc/e-charset-picker.c:68
msgid "Western European"
msgstr "西欧"
-#: ../widgets/misc/e-charset-picker.c:78
+#: ../widgets/misc/e-charset-picker.c:69
msgid "Western European, New"
msgstr "西欧 (New)"
-#: ../widgets/misc/e-charset-picker.c:97 ../widgets/misc/e-charset-picker.c:98
-#: ../widgets/misc/e-charset-picker.c:99
+#: ../widgets/misc/e-charset-picker.c:88 ../widgets/misc/e-charset-picker.c:89
+#: ../widgets/misc/e-charset-picker.c:90
msgid "Traditional"
msgstr "繁体字中国語"
-#: ../widgets/misc/e-charset-picker.c:100
-#: ../widgets/misc/e-charset-picker.c:101
-#: ../widgets/misc/e-charset-picker.c:102
-#: ../widgets/misc/e-charset-picker.c:103
+#: ../widgets/misc/e-charset-picker.c:91 ../widgets/misc/e-charset-picker.c:92
+#: ../widgets/misc/e-charset-picker.c:93 ../widgets/misc/e-charset-picker.c:94
msgid "Simplified"
msgstr "簡体字中国語"
-#: ../widgets/misc/e-charset-picker.c:106
+#: ../widgets/misc/e-charset-picker.c:97
msgid "Ukrainian"
msgstr "ウクライナ"
-#: ../widgets/misc/e-charset-picker.c:109
+#: ../widgets/misc/e-charset-picker.c:100
msgid "Visual"
msgstr "表示"
-#: ../widgets/misc/e-charset-picker.c:178
+#: ../widgets/misc/e-charset-picker.c:169
#, c-format
msgid "Unknown character set: %s"
msgstr "不明な文字集合: %s"
-#: ../widgets/misc/e-charset-picker.c:223
+#: ../widgets/misc/e-charset-picker.c:214
msgid "Character Encoding"
msgstr "エンコーディング"
-#: ../widgets/misc/e-charset-picker.c:238
+#: ../widgets/misc/e-charset-picker.c:229
msgid "Enter the character set to use"
msgstr "使用する文字集合を指定して下さい"
-#: ../widgets/misc/e-charset-picker.c:345
+#: ../widgets/misc/e-charset-picker.c:336
msgid "Other..."
msgstr "その他..."
-#: ../widgets/misc/e-charset-picker.c:486
+#: ../widgets/misc/e-charset-picker.c:598
msgid "Ch_aracter Encoding"
msgstr "エンコーディング(_A)"
-#: ../widgets/misc/e-dateedit.c:324
+#: ../widgets/misc/e-dateedit.c:309
msgid "Date and Time"
msgstr "日付と時刻"
-#: ../widgets/misc/e-dateedit.c:345
+#: ../widgets/misc/e-dateedit.c:330
msgid "Text entry to input date"
msgstr "日付を入力するためのエントリです"
-#: ../widgets/misc/e-dateedit.c:367
+#: ../widgets/misc/e-dateedit.c:352
msgid "Click this button to show a calendar"
msgstr "このボタンをクリックするとカレンダを表示します"
-#: ../widgets/misc/e-dateedit.c:409
-msgid "Combo box to select time"
-msgstr "時刻を選択するためのコンボ・ボックスです"
+#: ../widgets/misc/e-dateedit.c:394
+msgid "Drop-down combination box to select time"
+msgstr "時刻を選択するためのドロップ・ダウン式のコンボ・ボックスです"
-#: ../widgets/misc/e-dateedit.c:484
+#: ../widgets/misc/e-dateedit.c:470
msgid "No_w"
msgstr "今すぐ(_W)"
-#: ../widgets/misc/e-dateedit.c:490
+#: ../widgets/misc/e-dateedit.c:476
msgid "_Today"
msgstr "今日(_T)"
-#: ../widgets/misc/e-dateedit.c:1655
+#: ../widgets/misc/e-dateedit.c:1641
msgid "Invalid Date Value"
msgstr "不正な日付"
-#: ../widgets/misc/e-dateedit.c:1684
+#: ../widgets/misc/e-dateedit.c:1670
msgid "Invalid Time Value"
msgstr "不正な時刻"
-#: ../widgets/misc/e-expander.c:182
+#: ../widgets/misc/e-expander.c:180
msgid "Expanded"
msgstr "有効期限切れ"
-#: ../widgets/misc/e-expander.c:183
+#: ../widgets/misc/e-expander.c:181
msgid "Whether or not the expander is expanded"
msgstr "エキスパンダが展開されているかどうか"
-#: ../widgets/misc/e-expander.c:191
+#: ../widgets/misc/e-expander.c:189
msgid "Text of the expander's label"
msgstr "エキスパンダのラベル (文字列)"
-#: ../widgets/misc/e-expander.c:198
+#: ../widgets/misc/e-expander.c:196
msgid "Use underline"
msgstr "下線を引く"
-#: ../widgets/misc/e-expander.c:199
+#: ../widgets/misc/e-expander.c:197
msgid ""
"If set, an underline in the text indicates the next character should be used "
"for the mnemonic accelerator key"
@@ -22138,37 +22939,37 @@ msgstr ""
"これをセットすると文字列に付与された下線は、次の文字がニーモニックのアクセラ"
"レータ・キーとして使用できることを表します"
-#: ../widgets/misc/e-expander.c:207
+#: ../widgets/misc/e-expander.c:205
msgid "Space to put between the label and the child"
msgstr "ラベルとその子ウィジットとの間に配置する領域"
-#: ../widgets/misc/e-expander.c:216
+#: ../widgets/misc/e-expander.c:214
msgid "Label widget"
msgstr "ラベルのウィジット"
-#: ../widgets/misc/e-expander.c:217
+#: ../widgets/misc/e-expander.c:215
msgid "A widget to display in place of the usual expander label"
msgstr "通常のエキスパンダのラベルの代わりに表示するウィジット"
-#: ../widgets/misc/e-expander.c:223 ../widgets/table/e-tree.c:3356
+#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3391
msgid "Expander Size"
msgstr "エキスパンダの大きさ"
-#: ../widgets/misc/e-expander.c:224 ../widgets/table/e-tree.c:3357
+#: ../widgets/misc/e-expander.c:222 ../widgets/table/e-tree.c:3392
msgid "Size of the expander arrow"
msgstr "エキスパンダの矢印の大きさ"
-#: ../widgets/misc/e-expander.c:232
+#: ../widgets/misc/e-expander.c:230
msgid "Indicator Spacing"
msgstr "表示部のスペース挿入"
-#: ../widgets/misc/e-expander.c:233
+#: ../widgets/misc/e-expander.c:231
msgid "Spacing around expander arrow"
msgstr "エキスパンダの矢印の周りに配置する領域"
#. FIXME: get the toplevel window...
#: ../widgets/misc/e-filter-bar.c:130 ../widgets/misc/e-filter-bar.c:183
-#: ../widgets/misc/e-filter-bar.c:311 ../widgets/misc/e-filter-bar.c:748
+#: ../widgets/misc/e-filter-bar.c:311 ../widgets/misc/e-filter-bar.c:753
msgid "Advanced Search"
msgstr "拡張検索"
@@ -22213,21 +23014,30 @@ msgstr "現在のフォルダ"
msgid "Current Message"
msgstr "現在のメッセージ"
-#: ../widgets/misc/e-image-chooser.c:173
+#: ../widgets/misc/e-image-chooser.c:167
msgid "Choose Image"
msgstr "画像の選択"
-#: ../widgets/misc/e-map.c:626
+#: ../widgets/misc/e-map.c:625
msgid "World Map"
msgstr "世界地図"
-#: ../widgets/misc/e-map.c:628
+#: ../widgets/misc/e-map.c:627
msgid ""
"Mouse-based interactive map widget for selecting timezone. Keyboard users "
-"should select the timezone from the below combo box instead."
+"should instead select the timezone from the drop-down combination box below."
msgstr ""
-"タイムゾーンを選択するためのマウス感応型の地図です。キーボードをご利用の際"
-"は、この下にあるタイムゾーン選択用のコンボ・ボックスを利用して下さい。"
+"マウスでタイムゾーンを選択するための地図ウィジェットです。キーボードをご利用"
+"の際は、この下にあるタイムゾーン選択用のドロップ・ダウン式コンボ・ボックスを"
+"ご利用下さい。"
+
+#: ../widgets/misc/e-online-button.c:109
+msgid "Online"
+msgstr "オンライン"
+
+#: ../widgets/misc/e-online-button.c:110
+msgid "The button state is online"
+msgstr "ボタンの状態はオンラインです"
#: ../widgets/misc/e-pilot-settings.c:103
msgid "Sync with:"
@@ -22253,61 +23063,61 @@ msgstr "Reflow model"
msgid "Column width"
msgstr "カラムの幅"
-#: ../widgets/misc/e-search-bar.c:349 ../widgets/misc/e-search-bar.c:478
-#: ../widgets/misc/e-search-bar.c:480
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Search"
msgstr "検索"
-#: ../widgets/misc/e-search-bar.c:349 ../widgets/misc/e-search-bar.c:478
-#: ../widgets/misc/e-search-bar.c:480
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Click here to change the search type"
msgstr "ここをクリックして検索の種類を変更して下さい"
-#: ../widgets/misc/e-search-bar.c:610
+#: ../widgets/misc/e-search-bar.c:606
msgid "_Search"
msgstr "検索(_S)"
-#: ../widgets/misc/e-search-bar.c:616
+#: ../widgets/misc/e-search-bar.c:612
msgid "_Find Now"
msgstr "今すぐ見つける(_F)"
-#: ../widgets/misc/e-search-bar.c:617
+#: ../widgets/misc/e-search-bar.c:613
msgid "_Clear"
msgstr "クリア(_C)"
-#: ../widgets/misc/e-search-bar.c:872
+#: ../widgets/misc/e-search-bar.c:868
msgid "Item ID"
msgstr "アイテムの ID"
-#: ../widgets/misc/e-search-bar.c:879 ../widgets/text/e-text.c:3564
-#: ../widgets/text/e-text.c:3565
+#: ../widgets/misc/e-search-bar.c:875 ../widgets/text/e-text.c:3565
+#: ../widgets/text/e-text.c:3566
msgid "Text"
msgstr "文字列"
#. To Translators: The "Show: " label is followed by the Quick Search Dropdown Menu where you can choose
#. to display "All Messages", "Unread Messages", "Message with 'Important' Label" and so on...
-#: ../widgets/misc/e-search-bar.c:1013
+#: ../widgets/misc/e-search-bar.c:1006
msgid "Sho_w: "
msgstr "次を表示する(_W): "
#. To Translators: The "Show: " label is followed by the Quick Search Text input field where one enters
#. the term to search for
-#: ../widgets/misc/e-search-bar.c:1030
+#: ../widgets/misc/e-search-bar.c:1023
msgid "Sear_ch: "
msgstr "次を検索する(_C): "
#. To Translators: The " in " label is part of the Quick Search Bar, example:
#. Search: | <user's_search_term> | in | Current Folder/All Accounts/Current Account
-#: ../widgets/misc/e-search-bar.c:1042
+#: ../widgets/misc/e-search-bar.c:1035
msgid " i_n "
msgstr " 次の中から(_N): "
-#: ../widgets/misc/e-selection-model-array.c:543
+#: ../widgets/misc/e-selection-model-array.c:594
#: ../widgets/table/e-tree-selection-model.c:807
msgid "Cursor Row"
msgstr "カーソル行"
-#: ../widgets/misc/e-selection-model-array.c:550
+#: ../widgets/misc/e-selection-model-array.c:601
#: ../widgets/table/e-tree-selection-model.c:814
msgid "Cursor Column"
msgstr "カーソル列"
@@ -22324,7 +23134,7 @@ msgstr "選択モード"
msgid "Cursor Mode"
msgstr "カーソル・モード"
-#: ../widgets/misc/e-send-options.c:522
+#: ../widgets/misc/e-send-options.c:518
msgid "When de_leted:"
msgstr "削除した時(_L):"
@@ -22348,10 +23158,6 @@ msgstr "<b>ステータスの追跡</b>"
msgid "A_uto-delete sent item"
msgstr "送信アイテムを自動的に削除する(_U)"
-#: ../widgets/misc/e-send-options.glade.h:6
-msgid "Classification"
-msgstr "区分"
-
#: ../widgets/misc/e-send-options.glade.h:7
msgid "Creat_e a sent item to track information"
msgstr "追跡情報に対する送信アイテムを作成する(_E)"
@@ -22432,50 +23238,51 @@ msgstr "次の日以降(_A):"
msgid "_All information"
msgstr "全ての情報(_A)"
-#: ../widgets/misc/e-send-options.glade.h:31
+#. To translators: This means Delay the message delivery for some time
+#: ../widgets/misc/e-send-options.glade.h:32
msgid "_Delay message delivery"
msgstr "メッセージの配送を遅らせる(_D)"
-#: ../widgets/misc/e-send-options.glade.h:32
+#: ../widgets/misc/e-send-options.glade.h:33
msgid "_Delivered"
msgstr "配送したもの(_D)"
-#: ../widgets/misc/e-send-options.glade.h:34
+#: ../widgets/misc/e-send-options.glade.h:35
msgid "_Set expiration date"
msgstr "期日を設定する(_S)"
-#: ../widgets/misc/e-send-options.glade.h:35
+#: ../widgets/misc/e-send-options.glade.h:36
msgid "_Until:"
msgstr "次の日まで(_U):"
-#: ../widgets/misc/e-send-options.glade.h:36
+#: ../widgets/misc/e-send-options.glade.h:37
msgid "_When convenient"
msgstr "都合の良い時(_W)"
-#: ../widgets/misc/e-send-options.glade.h:37
+#: ../widgets/misc/e-send-options.glade.h:38
msgid "_When opened:"
msgstr "開いた時(_W):"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects")
-#: ../widgets/misc/e-task-widget.c:297
+#: ../widgets/misc/e-task-widget.c:255
#, c-format
msgid "%s (...)"
msgstr "%s (...)"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects");
#. %d is a number between 0 and 100, describing the percentage of operation complete
-#: ../widgets/misc/e-task-widget.c:303
+#: ../widgets/misc/e-task-widget.c:261
#, c-format
msgid "%s (%d%% complete)"
msgstr "%s (%d%% 完了)"
-#: ../widgets/misc/e-url-entry.c:107
+#: ../widgets/misc/e-url-entry.c:106
msgid "Click here to go to URL"
msgstr "ここをクリックすると URL へジャンプします"
#: ../widgets/misc/gal-categories.glade.h:1
msgid "Edit Master Category List..."
-msgstr "マスター・カテゴリ一覧の編集..."
+msgstr "マスター・カテゴリの一覧の編集..."
#: ../widgets/misc/gal-categories.glade.h:2
msgid "Item(s) belong to these _categories:"
@@ -22509,23 +23316,23 @@ msgstr "フォーカスした項目"
msgid "Unselected Column"
msgstr "未選択の項目"
-#: ../widgets/table/e-cell-text.c:1807
+#: ../widgets/table/e-cell-text.c:1808
msgid "Strikeout Column"
msgstr "取消し線つきの項目"
-#: ../widgets/table/e-cell-text.c:1814
+#: ../widgets/table/e-cell-text.c:1815
msgid "Underline Column"
msgstr "下線つきの項目"
-#: ../widgets/table/e-cell-text.c:1821
+#: ../widgets/table/e-cell-text.c:1822
msgid "Bold Column"
msgstr "太字の項目"
-#: ../widgets/table/e-cell-text.c:1828
+#: ../widgets/table/e-cell-text.c:1829
msgid "Color Column"
msgstr "色つきの項目"
-#: ../widgets/table/e-cell-text.c:1842
+#: ../widgets/table/e-cell-text.c:1843
msgid "BG Color Column"
msgstr "背景色つきの項目"
@@ -22563,7 +23370,7 @@ msgid "A_vailable Fields:"
msgstr "利用可能な項目(_V):"
#: ../widgets/table/e-table-config.glade.h:2
-#: ../widgets/table/e-table-header-item.c:1582
+#: ../widgets/table/e-table-header-item.c:1583
msgid "Ascending"
msgstr "昇順"
@@ -22576,7 +23383,7 @@ msgid "Clear _All"
msgstr "全てクリア(_A)"
#: ../widgets/table/e-table-config.glade.h:5
-#: ../widgets/table/e-table-header-item.c:1582
+#: ../widgets/table/e-table-header-item.c:1583
msgid "Descending"
msgstr "降順"
@@ -22639,14 +23446,14 @@ msgstr "並び替え(_S)..."
#: ../widgets/table/e-table-field-chooser-dialog.c:67
#: ../widgets/table/e-table-field-chooser-item.c:634
#: ../widgets/table/e-table-field-chooser.c:67
-#: ../widgets/table/e-table-header-item.c:1886
+#: ../widgets/table/e-table-header-item.c:1887
msgid "DnD code"
msgstr "DnD コード"
#: ../widgets/table/e-table-field-chooser-dialog.c:74
#: ../widgets/table/e-table-field-chooser-item.c:641
#: ../widgets/table/e-table-field-chooser.c:74
-#: ../widgets/table/e-table-header-item.c:1900
+#: ../widgets/table/e-table-header-item.c:1901
msgid "Full Header"
msgstr "全てのヘッダ"
@@ -22680,289 +23487,289 @@ msgid_plural "%s (%d items)"
msgstr[0] "%s (%d個のアイテム)"
msgstr[1] "%s (%d個のアイテム)"
-#: ../widgets/table/e-table-group-container.c:896
-#: ../widgets/table/e-table-group-container.c:897
-#: ../widgets/table/e-table-group-leaf.c:572
-#: ../widgets/table/e-table-group-leaf.c:573
-#: ../widgets/table/e-table-item.c:3029 ../widgets/table/e-table-item.c:3030
+#: ../widgets/table/e-table-group-container.c:923
+#: ../widgets/table/e-table-group-container.c:924
+#: ../widgets/table/e-table-group-leaf.c:581
+#: ../widgets/table/e-table-group-leaf.c:582
+#: ../widgets/table/e-table-item.c:3032 ../widgets/table/e-table-item.c:3033
msgid "Alternating Row Colors"
msgstr "行の色を替える"
-#: ../widgets/table/e-table-group-container.c:903
-#: ../widgets/table/e-table-group-container.c:904
-#: ../widgets/table/e-table-group-leaf.c:579
-#: ../widgets/table/e-table-group-leaf.c:580
-#: ../widgets/table/e-table-item.c:3036 ../widgets/table/e-table-item.c:3037
-#: ../widgets/table/e-tree.c:3309 ../widgets/table/e-tree.c:3310
+#: ../widgets/table/e-table-group-container.c:930
+#: ../widgets/table/e-table-group-container.c:931
+#: ../widgets/table/e-table-group-leaf.c:588
+#: ../widgets/table/e-table-group-leaf.c:589
+#: ../widgets/table/e-table-item.c:3039 ../widgets/table/e-table-item.c:3040
+#: ../widgets/table/e-tree.c:3344 ../widgets/table/e-tree.c:3345
msgid "Horizontal Draw Grid"
msgstr "水平描画グリッド"
-#: ../widgets/table/e-table-group-container.c:910
-#: ../widgets/table/e-table-group-container.c:911
-#: ../widgets/table/e-table-group-leaf.c:586
-#: ../widgets/table/e-table-group-leaf.c:587
-#: ../widgets/table/e-table-item.c:3043 ../widgets/table/e-table-item.c:3044
-#: ../widgets/table/e-tree.c:3315 ../widgets/table/e-tree.c:3316
+#: ../widgets/table/e-table-group-container.c:937
+#: ../widgets/table/e-table-group-container.c:938
+#: ../widgets/table/e-table-group-leaf.c:595
+#: ../widgets/table/e-table-group-leaf.c:596
+#: ../widgets/table/e-table-item.c:3046 ../widgets/table/e-table-item.c:3047
+#: ../widgets/table/e-tree.c:3350 ../widgets/table/e-tree.c:3351
msgid "Vertical Draw Grid"
msgstr "垂直描画グリッド"
-#: ../widgets/table/e-table-group-container.c:917
-#: ../widgets/table/e-table-group-container.c:918
-#: ../widgets/table/e-table-group-leaf.c:593
-#: ../widgets/table/e-table-group-leaf.c:594
-#: ../widgets/table/e-table-item.c:3050 ../widgets/table/e-table-item.c:3051
-#: ../widgets/table/e-tree.c:3321 ../widgets/table/e-tree.c:3322
+#: ../widgets/table/e-table-group-container.c:944
+#: ../widgets/table/e-table-group-container.c:945
+#: ../widgets/table/e-table-group-leaf.c:602
+#: ../widgets/table/e-table-group-leaf.c:603
+#: ../widgets/table/e-table-item.c:3053 ../widgets/table/e-table-item.c:3054
+#: ../widgets/table/e-tree.c:3356 ../widgets/table/e-tree.c:3357
msgid "Draw focus"
msgstr "描画フォーカス"
-#: ../widgets/table/e-table-group-container.c:924
-#: ../widgets/table/e-table-group-container.c:925
-#: ../widgets/table/e-table-group-leaf.c:600
-#: ../widgets/table/e-table-group-leaf.c:601
-#: ../widgets/table/e-table-item.c:3057 ../widgets/table/e-table-item.c:3058
+#: ../widgets/table/e-table-group-container.c:951
+#: ../widgets/table/e-table-group-container.c:952
+#: ../widgets/table/e-table-group-leaf.c:609
+#: ../widgets/table/e-table-group-leaf.c:610
+#: ../widgets/table/e-table-item.c:3060 ../widgets/table/e-table-item.c:3061
msgid "Cursor mode"
msgstr "カーソル・モード"
-#: ../widgets/table/e-table-group-container.c:931
-#: ../widgets/table/e-table-group-container.c:932
-#: ../widgets/table/e-table-group-leaf.c:614
-#: ../widgets/table/e-table-group-leaf.c:615
-#: ../widgets/table/e-table-item.c:3022 ../widgets/table/e-table-item.c:3023
+#: ../widgets/table/e-table-group-container.c:958
+#: ../widgets/table/e-table-group-container.c:959
+#: ../widgets/table/e-table-group-leaf.c:623
+#: ../widgets/table/e-table-group-leaf.c:624
+#: ../widgets/table/e-table-item.c:3025 ../widgets/table/e-table-item.c:3026
msgid "Selection model"
msgstr "モデルの選択"
-#: ../widgets/table/e-table-group-container.c:938
-#: ../widgets/table/e-table-group-container.c:939
-#: ../widgets/table/e-table-group-leaf.c:607
-#: ../widgets/table/e-table-group-leaf.c:608
-#: ../widgets/table/e-table-item.c:3064 ../widgets/table/e-table-item.c:3065
-#: ../widgets/table/e-table.c:3307 ../widgets/table/e-tree.c:3303
-#: ../widgets/table/e-tree.c:3304
+#: ../widgets/table/e-table-group-container.c:965
+#: ../widgets/table/e-table-group-container.c:966
+#: ../widgets/table/e-table-group-leaf.c:616
+#: ../widgets/table/e-table-group-leaf.c:617
+#: ../widgets/table/e-table-item.c:3067 ../widgets/table/e-table-item.c:3068
+#: ../widgets/table/e-table.c:3325 ../widgets/table/e-tree.c:3338
+#: ../widgets/table/e-tree.c:3339
msgid "Length Threshold"
msgstr "しきい値の長さ"
-#: ../widgets/table/e-table-group-container.c:945
-#: ../widgets/table/e-table-group-container.c:946
-#: ../widgets/table/e-table-group-leaf.c:649
-#: ../widgets/table/e-table-group-leaf.c:650
-#: ../widgets/table/e-table-item.c:3098 ../widgets/table/e-table-item.c:3099
-#: ../widgets/table/e-table.c:3314 ../widgets/table/e-tree.c:3335
-#: ../widgets/table/e-tree.c:3336
+#: ../widgets/table/e-table-group-container.c:972
+#: ../widgets/table/e-table-group-container.c:973
+#: ../widgets/table/e-table-group-leaf.c:658
+#: ../widgets/table/e-table-group-leaf.c:659
+#: ../widgets/table/e-table-item.c:3101 ../widgets/table/e-table-item.c:3102
+#: ../widgets/table/e-table.c:3332 ../widgets/table/e-tree.c:3370
+#: ../widgets/table/e-tree.c:3371
msgid "Uniform row height"
msgstr "行の高さを揃える"
-#: ../widgets/table/e-table-group-container.c:952
-#: ../widgets/table/e-table-group-container.c:953
-#: ../widgets/table/e-table-group-leaf.c:642
-#: ../widgets/table/e-table-group-leaf.c:643
+#: ../widgets/table/e-table-group-container.c:979
+#: ../widgets/table/e-table-group-container.c:980
+#: ../widgets/table/e-table-group-leaf.c:651
+#: ../widgets/table/e-table-group-leaf.c:652
msgid "Frozen"
msgstr "変更不可"
-#: ../widgets/table/e-table-header-item.c:1452
+#: ../widgets/table/e-table-header-item.c:1453
msgid "Customize Current View"
msgstr "ビューのカスタマイズ"
-#: ../widgets/table/e-table-header-item.c:1472
+#: ../widgets/table/e-table-header-item.c:1473
msgid "Sort _Ascending"
msgstr "昇順で並び替え(_A)"
-#: ../widgets/table/e-table-header-item.c:1473
+#: ../widgets/table/e-table-header-item.c:1474
msgid "Sort _Descending"
msgstr "降順で並び替え(_D)"
-#: ../widgets/table/e-table-header-item.c:1474
+#: ../widgets/table/e-table-header-item.c:1475
msgid "_Unsort"
msgstr "並び替えない(_U)"
-#: ../widgets/table/e-table-header-item.c:1476
+#: ../widgets/table/e-table-header-item.c:1477
msgid "Group By This _Field"
msgstr "この項目でグループ化(_F)"
-#: ../widgets/table/e-table-header-item.c:1477
+#: ../widgets/table/e-table-header-item.c:1478
msgid "Group By _Box"
msgstr "ボックスでグループ化(_B)"
-#: ../widgets/table/e-table-header-item.c:1479
+#: ../widgets/table/e-table-header-item.c:1480
msgid "Remove This _Column"
msgstr "この項目の削除(_C)"
-#: ../widgets/table/e-table-header-item.c:1480
+#: ../widgets/table/e-table-header-item.c:1481
msgid "Add a C_olumn..."
msgstr "項目の追加(_O)..."
-#: ../widgets/table/e-table-header-item.c:1482
+#: ../widgets/table/e-table-header-item.c:1483
msgid "A_lignment"
msgstr "配置(_L)"
-#: ../widgets/table/e-table-header-item.c:1483
+#: ../widgets/table/e-table-header-item.c:1484
msgid "B_est Fit"
msgstr "最適な配置(_E)"
-#: ../widgets/table/e-table-header-item.c:1484
+#: ../widgets/table/e-table-header-item.c:1485
msgid "Format Column_s..."
msgstr "項目のフォーマット(_S)..."
-#: ../widgets/table/e-table-header-item.c:1486
+#: ../widgets/table/e-table-header-item.c:1487
msgid "Custo_mize Current View..."
msgstr "ビューのカスタマイズ(_M)..."
-#: ../widgets/table/e-table-header-item.c:1542
+#: ../widgets/table/e-table-header-item.c:1543
msgid "_Sort By"
msgstr "並び替え(_S)"
#. Custom
-#: ../widgets/table/e-table-header-item.c:1560
+#: ../widgets/table/e-table-header-item.c:1561
msgid "_Custom"
msgstr "カスタム(_C)"
-#: ../widgets/table/e-table-header-item.c:1893
+#: ../widgets/table/e-table-header-item.c:1894
msgid "Font Description"
msgstr "フォント名"
-#: ../widgets/table/e-table-header-item.c:1914
+#: ../widgets/table/e-table-header-item.c:1915
#: ../widgets/table/e-table-sorter.c:173
msgid "Sort Info"
msgstr "並び替えの情報"
-#: ../widgets/table/e-table-header-item.c:1928
+#: ../widgets/table/e-table-header-item.c:1929
#: ../widgets/table/e-tree-scrolled.c:225
#: ../widgets/table/e-tree-scrolled.c:226
msgid "Tree"
msgstr "ツリー"
-#: ../widgets/table/e-table-item.c:3008 ../widgets/table/e-table-item.c:3009
+#: ../widgets/table/e-table-item.c:3011 ../widgets/table/e-table-item.c:3012
msgid "Table header"
msgstr "表のヘッダ"
-#: ../widgets/table/e-table-item.c:3015 ../widgets/table/e-table-item.c:3016
+#: ../widgets/table/e-table-item.c:3018 ../widgets/table/e-table-item.c:3019
msgid "Table model"
msgstr "表のモデル"
-#: ../widgets/table/e-table-item.c:3091 ../widgets/table/e-table-item.c:3092
+#: ../widgets/table/e-table-item.c:3094 ../widgets/table/e-table-item.c:3095
msgid "Cursor row"
msgstr "カーソル行"
-#: ../widgets/table/e-table.c:3321 ../widgets/table/e-tree.c:3342
-#: ../widgets/table/e-tree.c:3343
+#: ../widgets/table/e-table.c:3339 ../widgets/table/e-tree.c:3377
+#: ../widgets/table/e-tree.c:3378
msgid "Always search"
msgstr "常に検索する"
-#: ../widgets/table/e-table.c:3328
+#: ../widgets/table/e-table.c:3346
msgid "Use click to add"
msgstr "クリックして追加する"
-#: ../widgets/table/e-tree.c:3328 ../widgets/table/e-tree.c:3329
+#: ../widgets/table/e-tree.c:3363 ../widgets/table/e-tree.c:3364
msgid "ETree table adapter"
msgstr "ETree テーブル・アダプタ"
-#: ../widgets/table/e-tree.c:3349
+#: ../widgets/table/e-tree.c:3384
msgid "Retro Look"
msgstr "レトロな外観"
-#: ../widgets/table/e-tree.c:3350
+#: ../widgets/table/e-tree.c:3385
msgid "Draw lines and +/- expanders."
msgstr "線と +/- のエキスパンダを描画します。"
-#: ../widgets/text/e-text.c:2734
+#: ../widgets/text/e-text.c:2735
msgid "Input Methods"
msgstr "入力メソッド"
-#: ../widgets/text/e-text.c:3557 ../widgets/text/e-text.c:3558
+#: ../widgets/text/e-text.c:3558 ../widgets/text/e-text.c:3559
msgid "Event Processor"
msgstr "イベント・プロセッサ"
-#: ../widgets/text/e-text.c:3571 ../widgets/text/e-text.c:3572
+#: ../widgets/text/e-text.c:3572 ../widgets/text/e-text.c:3573
msgid "Bold"
msgstr "太字"
-#: ../widgets/text/e-text.c:3578 ../widgets/text/e-text.c:3579
+#: ../widgets/text/e-text.c:3579 ../widgets/text/e-text.c:3580
msgid "Strikeout"
msgstr "字消し線"
-#: ../widgets/text/e-text.c:3585 ../widgets/text/e-text.c:3586
+#: ../widgets/text/e-text.c:3586 ../widgets/text/e-text.c:3587
msgid "Anchor"
msgstr "アンカー"
-#: ../widgets/text/e-text.c:3593 ../widgets/text/e-text.c:3594
+#: ../widgets/text/e-text.c:3594 ../widgets/text/e-text.c:3595
msgid "Justification"
msgstr "均等"
-#: ../widgets/text/e-text.c:3600 ../widgets/text/e-text.c:3601
+#: ../widgets/text/e-text.c:3601 ../widgets/text/e-text.c:3602
msgid "Clip Width"
msgstr "クリップの幅"
-#: ../widgets/text/e-text.c:3607 ../widgets/text/e-text.c:3608
+#: ../widgets/text/e-text.c:3608 ../widgets/text/e-text.c:3609
msgid "Clip Height"
msgstr "クリップの高さ"
-#: ../widgets/text/e-text.c:3614 ../widgets/text/e-text.c:3615
+#: ../widgets/text/e-text.c:3615 ../widgets/text/e-text.c:3616
msgid "Clip"
msgstr "クリップ"
-#: ../widgets/text/e-text.c:3621 ../widgets/text/e-text.c:3622
+#: ../widgets/text/e-text.c:3622 ../widgets/text/e-text.c:3623
msgid "Fill clip rectangle"
msgstr "クリップを矩形で埋める"
-#: ../widgets/text/e-text.c:3628 ../widgets/text/e-text.c:3629
+#: ../widgets/text/e-text.c:3629 ../widgets/text/e-text.c:3630
msgid "X Offset"
msgstr "X座標"
-#: ../widgets/text/e-text.c:3635 ../widgets/text/e-text.c:3636
+#: ../widgets/text/e-text.c:3636 ../widgets/text/e-text.c:3637
msgid "Y Offset"
msgstr "Y座標"
-#: ../widgets/text/e-text.c:3671 ../widgets/text/e-text.c:3672
+#: ../widgets/text/e-text.c:3672 ../widgets/text/e-text.c:3673
msgid "Text width"
msgstr "文字列の幅"
-#: ../widgets/text/e-text.c:3678 ../widgets/text/e-text.c:3679
+#: ../widgets/text/e-text.c:3679 ../widgets/text/e-text.c:3680
msgid "Text height"
msgstr "文字列の高さ"
-#: ../widgets/text/e-text.c:3693 ../widgets/text/e-text.c:3694
+#: ../widgets/text/e-text.c:3694 ../widgets/text/e-text.c:3695
msgid "Use ellipsis"
msgstr "省略記号を使う"
-#: ../widgets/text/e-text.c:3700 ../widgets/text/e-text.c:3701
+#: ../widgets/text/e-text.c:3701 ../widgets/text/e-text.c:3702
msgid "Ellipsis"
msgstr "省略記号"
-#: ../widgets/text/e-text.c:3707 ../widgets/text/e-text.c:3708
+#: ../widgets/text/e-text.c:3708 ../widgets/text/e-text.c:3709
msgid "Line wrap"
msgstr "行ラップ"
-#: ../widgets/text/e-text.c:3714 ../widgets/text/e-text.c:3715
+#: ../widgets/text/e-text.c:3715 ../widgets/text/e-text.c:3716
msgid "Break characters"
msgstr "文字を切り離す"
-#: ../widgets/text/e-text.c:3721 ../widgets/text/e-text.c:3722
+#: ../widgets/text/e-text.c:3722 ../widgets/text/e-text.c:3723
msgid "Max lines"
msgstr "最大行数"
-#: ../widgets/text/e-text.c:3743 ../widgets/text/e-text.c:3744
+#: ../widgets/text/e-text.c:3744 ../widgets/text/e-text.c:3745
msgid "Draw borders"
msgstr "描画の境界"
-#: ../widgets/text/e-text.c:3750 ../widgets/text/e-text.c:3751
+#: ../widgets/text/e-text.c:3751 ../widgets/text/e-text.c:3752
msgid "Allow newlines"
msgstr "改行する"
-#: ../widgets/text/e-text.c:3757 ../widgets/text/e-text.c:3758
+#: ../widgets/text/e-text.c:3758 ../widgets/text/e-text.c:3759
msgid "Draw background"
msgstr "背景を描画する"
-#: ../widgets/text/e-text.c:3764 ../widgets/text/e-text.c:3765
+#: ../widgets/text/e-text.c:3765 ../widgets/text/e-text.c:3766
msgid "Draw button"
msgstr "ボタンを描画する"
-#: ../widgets/text/e-text.c:3771 ../widgets/text/e-text.c:3772
+#: ../widgets/text/e-text.c:3772 ../widgets/text/e-text.c:3773
msgid "Cursor position"
msgstr "カーソル位置"
-#: ../widgets/text/e-text.c:3778 ../widgets/text/e-text.c:3779
+#: ../widgets/text/e-text.c:3779 ../widgets/text/e-text.c:3780
msgid "IM Context"
msgstr "IM コンテキスト"
-#: ../widgets/text/e-text.c:3785 ../widgets/text/e-text.c:3786
+#: ../widgets/text/e-text.c:3786 ../widgets/text/e-text.c:3787
msgid "Handle Popup"
msgstr "ハンドルのポップアップ"
diff --git a/po/kn.po b/po/kn.po
index 1187dd5d9a..8c1ba1938b 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -2,14 +2,14 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
-#: ../shell/main.c:683
+#: ../shell/main.c:589
# Shankar Prasad <svenkate@redhat.com>, 2008.
msgid ""
msgstr ""
"Project-Id-Version: evolution.HEAD.kn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-08-12 10:37+0000\n"
-"PO-Revision-Date: 2008-08-13 12:19+0530\n"
+"POT-Creation-Date: 2008-08-18 05:19+0000\n"
+"PO-Revision-Date: 2008-08-18 12:44+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n"
"MIME-Version: 1.0\n"
@@ -25,12 +25,12 @@ msgid "evolution addressbook"
msgstr "ಇವಲ್ಯೂಶನ್ ವಿಳಾಸಪುಸ್ತಕ"
#: ../a11y/addressbook/ea-minicard-view.c:32
-#: ../addressbook/gui/component/addressbook-component.c:228
+#: ../addressbook/gui/component/addressbook-component.c:229
msgid "New Contact"
msgstr "ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ"
#: ../a11y/addressbook/ea-minicard-view.c:33
-#: ../addressbook/gui/component/addressbook-component.c:236
+#: ../addressbook/gui/component/addressbook-component.c:237
msgid "New Contact List"
msgstr "ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ ಪಟ್ಟಿ"
@@ -163,7 +163,7 @@ msgstr "%A %d %b %Y"
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
#: ../calendar/gui/calendar-component.c:760
-#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1540
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%a %d %b"
@@ -195,7 +195,7 @@ msgstr "%d %b %Y"
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
#: ../calendar/gui/calendar-component.c:786
-#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1556
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%d %b"
@@ -598,7 +598,6 @@ msgid "Evolution Address Book"
msgstr "ಇವಲ್ಯೂಶನ್ ವಿಳಾಸಪುಸ್ತಕ"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:7
-#, fuzzy
msgid "Evolution Address Book address popup"
msgstr "ಇವಲ್ಯೂಶನ್ ವಿಳಾಸಪುಸ್ತಕ ವಿಳಾಸ ಪುಟಿಕೆ(ಪಾಪ್ಅಪ್)"
@@ -615,7 +614,6 @@ msgid "Evolution Address Book component"
msgstr "ಇವಲ್ಯೂಶನ್ ವಿಳಾಸ ಪುಸ್ತಕ ಘಟಕ"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:11
-#, fuzzy
msgid "Evolution S/MIME Certificate Management Control"
msgstr "ಇವಲ್ಯೂಶನ್ S/Mime ಪ್ರಮಾಣಪತ್ರ ನಿರ್ವಹಣಾ ನಿಯಂತ್ರಣ"
@@ -664,42 +662,39 @@ msgstr "ವೈಯಕ್ತಿಕ"
msgid "On LDAP Servers"
msgstr "LDAP ಪರಿಚಾರಕಗಳಲ್ಲಿ"
-#: ../addressbook/gui/component/addressbook-component.c:229
-#, fuzzy
+#: ../addressbook/gui/component/addressbook-component.c:230
msgctxt "New"
msgid "_Contact"
msgstr "ಸಂಪರ್ಕವಿಳಾಸ(_C)"
-#: ../addressbook/gui/component/addressbook-component.c:230
+#: ../addressbook/gui/component/addressbook-component.c:231
msgid "Create a new contact"
msgstr "ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸವನ್ನು ನಿರ್ಮಿಸಿ"
-#: ../addressbook/gui/component/addressbook-component.c:237
-#, fuzzy
+#: ../addressbook/gui/component/addressbook-component.c:238
msgctxt "New"
msgid "Contact _List"
msgstr "ಸಂಪರ್ಕವಿಳಾಸ ಪಟ್ಟಿ(_L)"
-#: ../addressbook/gui/component/addressbook-component.c:238
+#: ../addressbook/gui/component/addressbook-component.c:239
msgid "Create a new contact list"
msgstr "ಒಂದು ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ ಪಟ್ಟಿಯನ್ನು ನಿರ್ಮಿಸು"
-#: ../addressbook/gui/component/addressbook-component.c:244
+#: ../addressbook/gui/component/addressbook-component.c:245
#: ../addressbook/gui/component/addressbook-config.c:1206
msgid "New Address Book"
msgstr "ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ ಪುಸ್ತಕ"
-#: ../addressbook/gui/component/addressbook-component.c:245
-#, fuzzy
+#: ../addressbook/gui/component/addressbook-component.c:246
msgctxt "New"
msgid "Address _Book"
msgstr "ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ(_B)"
-#: ../addressbook/gui/component/addressbook-component.c:246
+#: ../addressbook/gui/component/addressbook-component.c:247
msgid "Create a new address book"
msgstr "ಒಂದು ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸವನ್ನು ನಿರ್ಮಿಸು"
-#: ../addressbook/gui/component/addressbook-component.c:409
+#: ../addressbook/gui/component/addressbook-component.c:410
msgid "Failed upgrading Address Book settings or folders."
msgstr "ವಿಳಾಸ ಪುಸ್ತಕದ ಸಂಯೋಜನೆಗಳನ್ನು ಅಥವ ಫೋಲ್ಡರುಗಳನ್ನು ನವೀಕರಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. "
@@ -749,7 +744,7 @@ msgid "Details"
msgstr "ವಿವರಗಳು"
#: ../addressbook/gui/component/addressbook-config.c:992
-#: ../mail/em-folder-browser.c:982
+#: ../mail/em-folder-browser.c:983
msgid "Searching"
msgstr "ಹುಡುಕಲಾಗುತ್ತಿದೆ"
@@ -769,7 +764,7 @@ msgstr "ರವಾನಿಸಲಾಗುತ್ತಿದೆ..."
#: ../addressbook/gui/component/addressbook-migrate.c:125
#: ../calendar/gui/migration.c:195 ../mail/em-migrate.c:1247
-#, fuzzy, c-format
+#, c-format
msgid "Migrating '%s':"
msgstr "`%s' ಅನ್ನು ರವಾನಿಸಲಾಗುತ್ತಿದೆ:"
@@ -851,7 +846,7 @@ msgstr "ವಿಕಾರ್ಡ್ ಆಗಿ ಉಳಿಸು..."
#: ../addressbook/gui/widgets/e-addressbook-view.c:955
#: ../calendar/gui/calendar-component.c:619
#: ../calendar/gui/e-calendar-table.c:1596
-#: ../calendar/gui/e-calendar-view.c:1696 ../calendar/gui/e-memo-table.c:941
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
@@ -862,7 +857,7 @@ msgstr "ಅಳಿಸಿ ಹಾಕು(_D)"
#: ../addressbook/gui/component/addressbook-view.c:949
#: ../calendar/gui/calendar-component.c:622
-#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/comp-editor.c:2035
#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
@@ -1233,6 +1228,7 @@ msgstr "ಕಾರ್ಡುಗಳು"
#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "ನಿಮಿಷಗಳು"
@@ -1273,7 +1269,7 @@ msgid "<b>Work</b>"
msgstr "<b>ಕೆಲಸ</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1282,19 +1278,19 @@ msgstr "AIM"
#: ../calendar/gui/dialogs/event-page.glade.h:6
#: ../calendar/gui/dialogs/memo-page.glade.h:1
msgid "Ca_tegories..."
-msgstr ""
+msgstr "ವರ್ಗಗಳು(_t)..."
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "ಸಂಪರ್ಕ"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:542
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:557
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2422
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "ಸಂಪರ್ಕ ಸಂಪಾದಕ"
@@ -1316,7 +1312,6 @@ msgid "Mailing Address"
msgstr "ಅಂಚೆ ವಿಳಾಸ"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:18
-#, fuzzy
msgid "Nic_kname:"
msgstr "ಉಪನಾಮ(_c):"
@@ -1336,7 +1331,7 @@ msgstr "ದೂರವಾಣಿ"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
#: ../mail/em-migrate.c:1057
@@ -1460,7 +1455,7 @@ msgstr "ವಿಳಾಸ"
#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
@@ -1839,7 +1834,6 @@ msgid "Guinea"
msgstr "ಗಿನಿ"
#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
-#, fuzzy
msgid "Guinea-Bissau"
msgstr "ಗಿನಿ-ಬಿಸಾವ್"
@@ -2460,7 +2454,7 @@ msgid "AOL Instant Messenger"
msgstr "AOL ಇನ್‍ಸ್ಟಂಟ್ ಮೆಸೆಂಜರ್"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "ಜಬ್ಬಾರ್"
@@ -2474,7 +2468,7 @@ msgid "Gadu-Gadu Messenger"
msgstr "ಗಾಡು-ಗಾಡು ಮೆಸೆಂಜರ್"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
@@ -2496,77 +2490,77 @@ msgid "Username"
msgstr "ಬಳಕೆದಾರ ಹೆಸರು"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "ನೆಲೆ"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "ಇತರೆ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "ಯಾಹೂ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "ಗಾಡು-ಗಾಡು"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "ಗುಂಪುಕ್ರಮದಲ್ಲಿ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "ಮೂಲದ ಪುಸ್ತಕ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "ಉದ್ದೇಶಿತ ಪುಸ್ತಕ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "ಇದು ಹೊಸ ಸಂಪರ್ಕವಿಳಾಸ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "ಬರೆಯಬಹುದಾದ ಜಾಗಗಳು"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "ಅಗತ್ಯ ಜಾಗಗಳು"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "ಬದಲಾಯಿಸಲಾದ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:552
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2417
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "ಸಂಪರ್ಕವಿಳಾಸ ಸಂಪಾದಕ - %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2813
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "ಈ ಸಂಪರ್ಕ ವಿಳಾಸಕ್ಕಾಗಿ ದಯವಿಟ್ಟು ಒಂದು ಚಿತ್ರವನ್ನು ಆರಿಸಿ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2814
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "ಯಾವುದೆ ಚಿತ್ರವಿಲ್ಲ(_N)"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3087
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2574,23 +2568,23 @@ msgstr ""
"ಸಂಪರ್ಕ ದತ್ತಾಂಶವು ಮಾನ್ಯವಾಗಿಲ್ಲ:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3091
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "'%s' ವು ಒಂದು ಅಮಾನ್ಯ ವಿನ್ಯಾಸವನ್ನು ಹೊಂದಿದೆ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3098
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s'%s' ವು ಒಂದು ಅಮಾನ್ಯ ವಿನ್ಯಾಸವನ್ನು ಹೊಂದಿದೆ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3113
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3124
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s'%s' ವು ಖಾಲಿ ಇದೆ"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3139
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "ಅಮಾನ್ಯ ಸಂಪರ್ಕ ವಿಳಾಸ."
@@ -2871,9 +2865,8 @@ msgid "Email begins with"
msgstr "ಹೀಗೆ ಆರಂಭಗೊಳ್ಳುವ ಇಮೇಲ್"
#: ../addressbook/gui/widgets/addresstypes.xml.h:3
-#, fuzzy
msgid "Name contains"
-msgstr "ಟಿಪ್ಪಣಿಯು ಇದನ್ನು ಹೊಂದಿದೆ"
+msgstr "ಹೆಸರು ಇದನ್ನು ಹೊಂದಿದೆ"
#: ../addressbook/gui/widgets/e-addressbook-model.c:150
msgid "No contacts"
@@ -2933,9 +2926,9 @@ msgid "Save as vCard..."
msgstr "ವಿಕಾರ್ಡ್ ಆಗಿ ಉಳಿಸು ..."
#: ../addressbook/gui/widgets/e-addressbook-view.c:933
-#: ../calendar/gui/dialogs/comp-editor.c:2032
+#: ../calendar/gui/dialogs/comp-editor.c:2033
#: ../calendar/gui/e-calendar-table.c:1574
-#: ../calendar/gui/e-calendar-view.c:1674 ../calendar/gui/e-memo-table.c:924
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "ತೆರೆ(_O)"
@@ -2989,9 +2982,9 @@ msgid "Cu_t"
msgstr "ಕತ್ತರಿಸು(_t)"
#: ../addressbook/gui/widgets/e-addressbook-view.c:953
-#: ../calendar/gui/dialogs/comp-editor.c:479
+#: ../calendar/gui/dialogs/comp-editor.c:480
#: ../calendar/gui/e-calendar-table.c:1582
-#: ../calendar/gui/e-calendar-view.c:1681 ../calendar/gui/e-memo-table.c:932
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
@@ -3243,7 +3236,6 @@ msgid "Column Width"
msgstr "ಕಾಲಂ ಅಗಲ"
#: ../addressbook/gui/widgets/e-minicard-view.c:177
-#, fuzzy
msgid ""
"\n"
"\n"
@@ -3251,7 +3243,7 @@ msgid ""
msgstr ""
"\n"
"\n"
-"ಸಂಪರ್ಕವಿಳಾಸಕ್ಕಾಗಿ ಹುಡುಕು."
+"ಸಂಪರ್ಕವಿಳಾಸಕ್ಕಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ..."
#: ../addressbook/gui/widgets/e-minicard-view.c:180
msgid ""
@@ -3379,9 +3371,8 @@ msgstr "ವಿಡಿಯೋ ಸಂಭಾಷಣೆ"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
#: ../calendar/gui/calendar-commands.c:92
-#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/dialogs/calendar-setup.c:367
-#: ../calendar/gui/gnome-cal.c:2376
+#: ../calendar/gui/gnome-cal.c:2451
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:574
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
@@ -3417,13 +3408,13 @@ msgid "Web Log"
msgstr "ಜಾಲ ಲಾಗ್"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2346
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "ಹುಟ್ಟಿದದಿನ"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2347
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "ವಾರ್ಷಿಕೋತ್ಸವ"
@@ -3539,9 +3530,8 @@ msgstr "ಅಮಾನ್ಯ ಪರಿಚಾರಕ ಆವೃತ್ತಿ"
#. E_BOOK_ERROR_UNSUPPORTED_AUTHENTICATION_METHOD
#: ../addressbook/gui/widgets/eab-gui-util.c:79
-#, fuzzy
msgid "Unsupported authentication method"
-msgstr "ಬೆಂಬಲವಿಲ್ಲದ ಕಾರ್ಯಾಚರಣೆ"
+msgstr "ಬೆಂಬಲವಿಲ್ಲದ ದೃಢೀಕರಣ ವಿಧಾನ"
#: ../addressbook/gui/widgets/eab-gui-util.c:102
msgid ""
@@ -3589,9 +3579,8 @@ msgstr ""
"ಅಥವ ಪರಿಚಾರಕವು ನಿಲುಕುತ್ತಿಲ್ಲ."
#: ../addressbook/gui/widgets/eab-gui-util.c:138
-#, fuzzy
msgid "Detailed error:"
-msgstr "ನಿಭಾಯಿಸದ ದೋಷ"
+msgstr "ವಿವರವಾದ ದೋಷ:"
#: ../addressbook/gui/widgets/eab-gui-util.c:161
msgid ""
@@ -4138,9 +4127,8 @@ msgid "All information on these tasks will be deleted and can not be restored."
msgstr "ಈ ಕಾರ್ಯಗಳಲ್ಲಿನ ಎಲ್ಲಾ ಮಾಹಿತಿಗಳು ಅಳಿಸಲ್ಪಡುತ್ತದೆ ಹಾಗು ಅದನ್ನು ಮರುಗಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
#: ../calendar/calendar.error.xml.h:11
-#, fuzzy
msgid "All information on this appointment will be deleted and can not be restored."
-msgstr "ಈ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್‍ನಲ್ಲಿನ ಎಲ್ಲಾ ಮಾಹಿತಿಗಳು ಅಳಿಸಲ್ಪಡುತ್ತದೆ ಹಾಗೂ ಎಂದಿಗೂ ಮರುಗಳಿಸಲ್ಪಡುವುದಿಲ್ಲ."
+msgstr "ಈ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್‍ನಲ್ಲಿನ ಎಲ್ಲಾ ಮಾಹಿತಿಗಳು ಅಳಿಸಲಾಗುತ್ತದೆ ಹಾಗೂ ಎಂದಿಗೂ ಮರಳಿ ಪಡೆಯಲು ಆಗುವುದಿಲ್ಲ."
#: ../calendar/calendar.error.xml.h:12
msgid "All information on this meeting will be deleted and can not be restored."
@@ -4217,9 +4205,8 @@ msgid "Cannot create a new event"
msgstr "ಒಂದು ಹೊಸ ಕಾರ್ಯಕ್ರಮವನ್ನು ಉಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
#: ../calendar/calendar.error.xml.h:29
-#, fuzzy
msgid "Cannot save event"
-msgstr "ಒಂದು ಹೊಸ ಕಾರ್ಯಕ್ರಮವನ್ನು ಉಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
+msgstr "ಕಾರ್ಯಕ್ರಮವನ್ನು ಉಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
#: ../calendar/calendar.error.xml.h:30
msgid "Delete calendar '{0}'?"
@@ -4352,9 +4339,8 @@ msgid "The calendar is not marked for offline usage."
msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ಜಾಲದ ಹೊರಗೆ ಬಳಸಲು ಗುರುತು ಹಾಕಿಲ್ಲ."
#: ../calendar/calendar.error.xml.h:54
-#, fuzzy
msgid "The memo list is not marked for offline usage."
-msgstr "ಮೆಮೊ ಪಟ್ಟಿಯನ್ನು ಜಾಲದ ಹೊರಗೆ ಬಳಸಲು ಗುರುತು ಹಾಕಿಲ್ಲ"
+msgstr "ಮೆಮೊ ಪಟ್ಟಿಯನ್ನು ಆಫ್‌ಲೈನ್‌ ಬಳಕಗೆ ಗುರುತು ಹಾಕಿಲ್ಲ"
#: ../calendar/calendar.error.xml.h:55
msgid "The task list is not marked for offline usage."
@@ -4517,6 +4503,7 @@ msgid "Calendar and Tasks"
msgstr "ಕ್ಯಾಲೆಂಡರ್ ಹಾಗು ಕಾರ್ಯಗಳು"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
+#: ../calendar/gui/calendar-component.c:805
#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "ಕ್ಯಾಲೆಂಡರುಗಳು"
@@ -4559,7 +4546,7 @@ msgstr "ಮೆಮೊಗಳು(_s)"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
-#: ../calendar/gui/gnome-cal.c:1702 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
#: ../calendar/gui/memos-control.c:369
msgid "Memos"
@@ -4567,7 +4554,7 @@ msgstr "ಮೆಮೊಗಳು"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
-#: ../calendar/gui/gnome-cal.c:1574 ../calendar/gui/print.c:1982
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
#: ../calendar/gui/tasks-component.c:539
#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
#: ../calendar/gui/tasks-control.c:508
@@ -4607,6 +4594,7 @@ msgstr[1] "ನಿಮಿಷಗಳು"
#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "ಗಂಟೆ"
@@ -4635,7 +4623,7 @@ msgid "Snooze _time:"
msgstr "ಸ್ನೂಝ್ ಸಮಯ(_t):"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
-#: ../calendar/gui/dialogs/comp-editor.c:1331
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
@@ -4676,7 +4664,7 @@ msgstr "ನೀವು %d ಅಲಾರಂಗಳನ್ನು ಹೊಂದಿದ್
#: ../calendar/gui/alarm-notify/alarm-queue.c:1683
#: ../calendar/gui/alarm-notify/alarm-queue.c:1711
-#: ../mail/mail-component.c:1587
+#: ../mail/mail-component.c:1592
msgid "Warning"
msgstr "ಎಚ್ಚರಿಕೆ"
@@ -4940,7 +4928,7 @@ msgstr ""
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:46
msgid "Save directory for alarm audio"
-msgstr ""
+msgstr "ಕೋಶವನ್ನು ಅಲಾರಂ ಆಡಿಯೋಗೆ ಉಳಿಸು"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:47
msgid "Show RSVP field in the event/task/meeting editor"
@@ -4986,7 +4974,7 @@ msgstr ""
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:57
msgid "Show week numbers in date navigator"
-msgstr ""
+msgstr "ದಿನಾಂಖ ನ್ಯಾವಿಗೇಟರಿನಲ್ಲಿ ವಾರದ ಸಂಖ್ಯೆಗಳನ್ನು ತೋರಿಸು"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:58
msgid "Tasks due today color"
@@ -4997,11 +4985,11 @@ msgid "Tasks vertical pane position"
msgstr "ಕಾರ್ಯಗಳ ಲಂಬ ಫಲಕದ ಸ್ಥಳ"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:61
-#, fuzzy, no-c-format
+#, no-c-format
msgid ""
"The URL template to use as a free/busy data fallback, %u is replaced by the "
"user part of the mail address and %d is replaced by the domain."
-msgstr "ಬಿಡುವಿರುವ/ಕಾರ್ಯನಿರತ"
+msgstr ""
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:62
msgid ""
@@ -5221,6 +5209,7 @@ msgstr ""
#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "ದಿನಗಳು"
@@ -5273,65 +5262,61 @@ msgstr ""
msgid "Calendar Source Selector"
msgstr ""
-#: ../calendar/gui/calendar-component.c:1595
+#: ../calendar/gui/calendar-component.c:1596
msgid "New appointment"
msgstr "ಹೊಸ ಅಪಾಯಿಂಟ್‍ಮೆಟ್"
-#: ../calendar/gui/calendar-component.c:1596
-#, fuzzy
+#: ../calendar/gui/calendar-component.c:1597
msgctxt "New"
msgid "_Appointment"
msgstr "ಅಪಾಯಿಂಟ್‍ಮೆಟ್(_A)"
-#: ../calendar/gui/calendar-component.c:1597
+#: ../calendar/gui/calendar-component.c:1598
msgid "Create a new appointment"
msgstr "ಒಂದು ಹೊಸ ಅಪಾಯಿಂಟ್‍ಮೆಟನ್ನು ನಿರ್ಮಿಸು"
-#: ../calendar/gui/calendar-component.c:1603
+#: ../calendar/gui/calendar-component.c:1604
msgid "New meeting"
msgstr "ಹೊಸ ಮೀಟಿಂಗ್"
-#: ../calendar/gui/calendar-component.c:1604
-#, fuzzy
+#: ../calendar/gui/calendar-component.c:1605
msgctxt "New"
msgid "M_eeting"
msgstr "ಮೀಟಿಂಗ್(_e)"
-#: ../calendar/gui/calendar-component.c:1605
+#: ../calendar/gui/calendar-component.c:1606
msgid "Create a new meeting request"
msgstr "ಒಂದು ಹೊಸ ಮೀಟಿಂಗ್ ಮನವಿಯನ್ನು ನಿರ್ಮಿಸು"
-#: ../calendar/gui/calendar-component.c:1611
+#: ../calendar/gui/calendar-component.c:1612
msgid "New all day appointment"
msgstr ""
-#: ../calendar/gui/calendar-component.c:1612
-#, fuzzy
+#: ../calendar/gui/calendar-component.c:1613
msgctxt "New"
msgid "All Day A_ppointment"
-msgstr "ಮುಂದಿನ ಏಳು ದಿನಗಳ ಅಪಾಯಿಂಟ್‍ಮೆಂಟುಗಳು"
+msgstr "ದಿನಪೂರ್ತಿಯ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್(_A)"
-#: ../calendar/gui/calendar-component.c:1613
+#: ../calendar/gui/calendar-component.c:1614
msgid "Create a new all-day appointment"
-msgstr ""
+msgstr "ಒಂದು ದಿನಪೂರ್ತಿಯ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್ ಅನ್ನು ರಚಿಸು"
-#: ../calendar/gui/calendar-component.c:1619
+#: ../calendar/gui/calendar-component.c:1620
msgid "New calendar"
msgstr "ಹೊಸ ಕ್ಯಾಲೆಂಡರ್"
-#: ../calendar/gui/calendar-component.c:1620
-#, fuzzy
+#: ../calendar/gui/calendar-component.c:1621
msgctxt "New"
msgid "Cale_ndar"
msgstr "ಕ್ಯಾಲೆಂಡರ್(_n)"
-#: ../calendar/gui/calendar-component.c:1621
+#: ../calendar/gui/calendar-component.c:1622
msgid "Create a new calendar"
msgstr "ಒಂದು ಹೊಸ ಕ್ಯಾಲೆಂಡರನ್ನು ನಿರ್ಮಿಸು"
#: ../calendar/gui/calendar-view-factory.c:109
msgid "Day View"
-msgstr ""
+msgstr "ದಿನದ ನೋಟ"
#: ../calendar/gui/calendar-view-factory.c:112
msgid "Work Week View"
@@ -5339,40 +5324,37 @@ msgstr ""
#: ../calendar/gui/calendar-view-factory.c:115
msgid "Week View"
-msgstr ""
+msgstr "ವಾರದ ನೋಟ"
#: ../calendar/gui/calendar-view-factory.c:118
msgid "Month View"
-msgstr ""
+msgstr "ತಿಂಗಳಿನ ನೋಟ"
#: ../calendar/gui/caltypes.xml.h:2 ../calendar/gui/memotypes.xml.h:2
#: ../calendar/gui/tasktypes.xml.h:4
-#, fuzzy
msgid "Any Field"
-msgstr "ಕ್ಷೇತ್ರ"
+msgstr "ಯಾವುದೆ ಕ್ಷೇತ್ರ"
#: ../calendar/gui/caltypes.xml.h:4 ../calendar/gui/memotypes.xml.h:4
#: ../calendar/gui/tasktypes.xml.h:6 ../mail/em-filter-i18n.h:5
msgid "Attachments"
-msgstr ""
+msgstr "ಲಗತ್ತುಗಳು"
#: ../calendar/gui/caltypes.xml.h:5
#: ../calendar/gui/e-meeting-time-sel.etspec.h:1
#: ../calendar/gui/tasktypes.xml.h:7
msgid "Attendee"
-msgstr ""
+msgstr "ಭಾಗವಹಿಸುವವರು"
#: ../calendar/gui/caltypes.xml.h:7 ../calendar/gui/memotypes.xml.h:6
#: ../calendar/gui/tasktypes.xml.h:9
-#, fuzzy
msgid "Business"
-msgstr "ಬಿಸ್‍ನೆಸ್ ಫ್ಯಾಕ್ಸ್‍"
+msgstr "ಬಿಸ್‍ನೆಸ್"
#: ../calendar/gui/caltypes.xml.h:8 ../calendar/gui/memotypes.xml.h:7
#: ../calendar/gui/tasktypes.xml.h:11
-#, fuzzy
msgid "Category"
-msgstr "ವರ್ಗವು ಹೀಗಿದೆ"
+msgstr "ವರ್ಗ"
#: ../calendar/gui/caltypes.xml.h:9 ../calendar/gui/memotypes.xml.h:8
#: ../widgets/misc/e-send-options.glade.h:6
@@ -5386,7 +5368,7 @@ msgid "Competition"
msgstr "ಪೂರ್ಣಗೊಂಡ ದಿನಾಂಕ"
#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
-#: ../calendar/gui/e-cal-model.c:329 ../calendar/gui/e-calendar-table.c:547
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
#: ../calendar/gui/memotypes.xml.h:10
msgid "Confidential"
msgstr "ಗೌಪ್ಯವಾದ"
@@ -5406,74 +5388,66 @@ msgstr "ವಿವರಣೆಯು ಇದನ್ನು ಹೊಂದಿದೆ"
#: ../calendar/gui/caltypes.xml.h:14 ../calendar/gui/memotypes.xml.h:13
#: ../calendar/gui/tasktypes.xml.h:16 ../mail/em-filter-i18n.h:22
msgid "Do Not Exist"
-msgstr ""
+msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
#: ../calendar/gui/caltypes.xml.h:15 ../calendar/gui/memotypes.xml.h:14
#: ../calendar/gui/tasktypes.xml.h:17 ../mail/em-filter-i18n.h:25
msgid "Exist"
-msgstr ""
+msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
#: ../calendar/gui/caltypes.xml.h:16 ../calendar/gui/memotypes.xml.h:15
#: ../calendar/gui/tasktypes.xml.h:18
-#, fuzzy
msgid "Favourites"
-msgstr "ಮಾರಿಶಿಸಿಯಸ್"
+msgstr "ಅಚ್ಚುಮೆಚ್ಚಿನವುಗಳು"
#: ../calendar/gui/caltypes.xml.h:17 ../calendar/gui/memotypes.xml.h:16
#: ../calendar/gui/tasktypes.xml.h:19
msgid "Gifts"
-msgstr ""
+msgstr "ಉಡುಗೊರೆಗಳು"
#: ../calendar/gui/caltypes.xml.h:18 ../calendar/gui/memotypes.xml.h:17
#: ../calendar/gui/tasktypes.xml.h:20
msgid "Goals/Objectives"
-msgstr ""
+msgstr "ಗುರಿಗಳು/ಉದ್ಧೇಶಗಳು"
#: ../calendar/gui/caltypes.xml.h:19 ../calendar/gui/memotypes.xml.h:18
#: ../calendar/gui/tasktypes.xml.h:22
-#, fuzzy
msgid "Holiday"
-msgstr "ಇಂದು"
+msgstr "ರಜಾದಿನ"
#: ../calendar/gui/caltypes.xml.h:20 ../calendar/gui/memotypes.xml.h:19
#: ../calendar/gui/tasktypes.xml.h:23
msgid "Holiday Cards"
-msgstr ""
+msgstr "ರಜಾದಿನ ಕಾರ್ಡುಗಳು"
#: ../calendar/gui/caltypes.xml.h:21 ../calendar/gui/memotypes.xml.h:20
#: ../calendar/gui/tasktypes.xml.h:24
-#, fuzzy
msgid "Hot Contacts"
-msgstr "ಸಂಪರ್ಕವಿಳಾಸಗಳು"
+msgstr "ಪ್ರಮುಖ ಸಂಪರ್ಕವಿಳಾಸಗಳು"
#: ../calendar/gui/caltypes.xml.h:22 ../calendar/gui/memotypes.xml.h:21
#: ../calendar/gui/tasktypes.xml.h:25
-#, fuzzy
msgid "Ideas"
-msgstr "ದಿನಗಳು"
+msgstr "ವಿಚಾರಗಳು(ಐಡಿಯಾ)"
#: ../calendar/gui/caltypes.xml.h:23 ../calendar/gui/memotypes.xml.h:22
#: ../calendar/gui/tasktypes.xml.h:27
-#, fuzzy
msgid "International"
-msgstr "ಟ್ರೆಡಿಶನಲ್"
+msgstr "ಅಂತರಾಷ್ಟ್ರೀಯ"
#: ../calendar/gui/caltypes.xml.h:24 ../calendar/gui/memotypes.xml.h:23
#: ../calendar/gui/tasktypes.xml.h:28
-#, fuzzy
msgid "Key Customer"
-msgstr "ಕಸ್ಟಮ್ ನೋಟವನ್ನು ಉಳಿಸು"
+msgstr "ಪ್ರಮುಖ ಗ್ರಾಹಕ"
#: ../calendar/gui/caltypes.xml.h:26 ../calendar/gui/memotypes.xml.h:24
#: ../calendar/gui/tasktypes.xml.h:30
-#, fuzzy
msgid "Miscellaneous"
msgstr "ಇತರೆ"
#: ../calendar/gui/caltypes.xml.h:27 ../calendar/gui/tasktypes.xml.h:31
-#, fuzzy
msgid "Next 7 days"
-msgstr "ಮುಂದಿನ ಏಳು ದಿನಗಳ ಕಾರ್ಯಗಳು"
+msgstr "ಮುಂದಿನ ಏಳು ದಿನಗಳು"
#: ../calendar/gui/caltypes.xml.h:28
#: ../calendar/gui/dialogs/meeting-page.glade.h:6
@@ -5483,18 +5457,17 @@ msgstr "ಆಯೋಜಕರು"
#: ../calendar/gui/caltypes.xml.h:30 ../calendar/gui/memotypes.xml.h:28
#: ../calendar/gui/tasktypes.xml.h:36
-#, fuzzy
msgid "Phone Calls"
-msgstr "ದೂರವಾಣಿ"
+msgstr "ದೂರವಾಣಿ ಕರೆಗಳು"
#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
-#: ../calendar/gui/e-cal-model.c:327 ../calendar/gui/e-calendar-table.c:546
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
#: ../calendar/gui/memotypes.xml.h:29
msgid "Private"
msgstr "ಖಾಸಗಿ"
#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
-#: ../calendar/gui/e-cal-model.c:318 ../calendar/gui/e-cal-model.c:325
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
msgid "Public"
msgstr "ಸಾರ್ವಜನಿಕ"
@@ -5502,7 +5475,7 @@ msgstr "ಸಾರ್ವಜನಿಕ"
#: ../calendar/gui/caltypes.xml.h:33
#: ../calendar/gui/dialogs/event-editor.c:297
msgid "Recurrence"
-msgstr ""
+msgstr "ಪುನರಾವೃತ್ತಿ"
#: ../calendar/gui/caltypes.xml.h:34
#: ../calendar/gui/e-calendar-table.etspec.h:10
@@ -5515,9 +5488,8 @@ msgstr "ಸ್ತಿತಿ"
#: ../calendar/gui/caltypes.xml.h:35 ../calendar/gui/memotypes.xml.h:32
#: ../calendar/gui/tasktypes.xml.h:39
-#, fuzzy
msgid "Strategies"
-msgstr "ವರ್ಗಗಳು"
+msgstr "ತಂತ್ರಗಳು"
#: ../calendar/gui/caltypes.xml.h:36
#: ../calendar/gui/e-cal-list-view.etspec.h:5
@@ -5535,9 +5507,8 @@ msgstr "ಸಾರಾಂಶವು ಇದನ್ನು ಹೊಂದಿದೆ"
#: ../calendar/gui/caltypes.xml.h:38 ../calendar/gui/memotypes.xml.h:35
#: ../calendar/gui/tasktypes.xml.h:42
-#, fuzzy
msgid "Suppliers"
-msgstr "ಶೋಧಕವನ್ನು ಅನ್ವಯಿಸು(_p)"
+msgstr "ಒದಗಿಸುವವರು"
#: ../calendar/gui/caltypes.xml.h:39 ../calendar/gui/memotypes.xml.h:36
#: ../calendar/gui/tasktypes.xml.h:43
@@ -5547,23 +5518,22 @@ msgstr ""
#: ../calendar/gui/caltypes.xml.h:40 ../calendar/gui/memotypes.xml.h:37
#: ../calendar/gui/tasktypes.xml.h:45
msgid "VIP"
-msgstr ""
+msgstr "ವಿಐಪಿ"
#: ../calendar/gui/caltypes.xml.h:41 ../calendar/gui/memotypes.xml.h:38
#: ../calendar/gui/tasktypes.xml.h:46
-#, fuzzy
msgid "Waiting"
-msgstr "ಕಾಯಲಾಗುತ್ತಿದೆ..."
+msgstr "ಕಾಯಲಾಗುತ್ತಿದೆ"
#: ../calendar/gui/caltypes.xml.h:42 ../calendar/gui/memotypes.xml.h:39
#: ../calendar/gui/tasktypes.xml.h:47 ../mail/em-filter-i18n.h:10
msgid "contains"
-msgstr ""
+msgstr "ಹೊಂದಿದೆ"
#: ../calendar/gui/caltypes.xml.h:43 ../calendar/gui/memotypes.xml.h:40
#: ../calendar/gui/tasktypes.xml.h:48 ../mail/em-filter-i18n.h:16
msgid "does not contain"
-msgstr ""
+msgstr "ಹೊಂದಿಲ್ಲ"
#: ../calendar/gui/caltypes.xml.h:44 ../calendar/gui/memotypes.xml.h:41
#: ../calendar/gui/tasktypes.xml.h:49 ../mail/em-filter-i18n.h:30
@@ -5573,7 +5543,7 @@ msgstr " "
#: ../calendar/gui/caltypes.xml.h:45 ../calendar/gui/memotypes.xml.h:42
#: ../calendar/gui/tasktypes.xml.h:52 ../mail/em-filter-i18n.h:36
msgid "is not"
-msgstr ""
+msgstr "ಇದಲ್ಲ"
#: ../calendar/gui/comp-editor-factory.c:405
msgid "Error while opening the calendar"
@@ -5581,13 +5551,13 @@ msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ತೆರೆಯುವಾಗ ದ
#: ../calendar/gui/comp-editor-factory.c:411
msgid "Method not supported when opening the calendar"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ತೆರೆಯುವ ಈ ವಿಧಾನಕ್ಕೆ ಬೆಂಬಲಿವಿಲ್ಲ"
#: ../calendar/gui/comp-editor-factory.c:417
msgid "Permission denied to open the calendar"
msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ತೆರೆಯಲು ಅನುಮತಿ ಇಲ್ಲ"
-#: ../calendar/gui/comp-editor-factory.c:429 ../shell/e-shell.c:1288
+#: ../calendar/gui/comp-editor-factory.c:429 ../shell/e-shell.c:1308
msgid "Unknown error"
msgstr "ಗೊತ್ತಿಲ್ಲದ ದೋಷ"
@@ -5617,7 +5587,7 @@ msgstr "ಕಸ್ಟಮ್ ಸಂದೇಶ(_m)"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:6
msgid "Custom alarm sound"
-msgstr ""
+msgstr "ಕಸ್ಟಮ್ ಅಲಾರಂ ಶಬ್ಧ"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:7
msgid "Mes_sage:"
@@ -5626,12 +5596,12 @@ msgstr "ಸಂದೇಶ(_s):"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:8
#: ../calendar/gui/e-alarm-list.c:442
msgid "Play a sound"
-msgstr ""
+msgstr "ಒಂದು ಶಬ್ಧವನ್ನು ಪ್ಲೇ ಮಾಡು"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:9
#: ../calendar/gui/e-alarm-list.c:446
msgid "Pop up an alert"
-msgstr ""
+msgstr "ಒಂದು ಎಚ್ಚರಿಕೆಯನ್ನು ಪುಟಿಸು(ಪಾಪ್ ಅಪ್)"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:10
#: ../calendar/gui/e-alarm-list.c:454
@@ -5694,10 +5664,7 @@ msgstr ""
msgid "hour(s)"
msgstr "ಗಂಟೆ(ಗಳು)"
-#. Translators: This is the second half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
-#: ../plugins/google-account-setup/google-contacts-source.c:247
msgid "minute(s)"
msgstr "ನಿಮಿಷ(ಗಳು)"
@@ -5788,7 +5755,7 @@ msgstr "ದಿನ ಮುಕ್ತಾಯಗೊಳ್ಳುವುದು(_e):"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:17
msgid "Display"
-msgstr ""
+msgstr "ತೋರಿಸು"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:19
#: ../calendar/gui/dialogs/recurrence-page.c:1087
@@ -5991,9 +5958,8 @@ msgid "Cop_y memo list contents locally for offline operation"
msgstr ""
#: ../calendar/gui/dialogs/calendar-setup.c:343
-#, fuzzy
msgid "Colo_r:"
-msgstr "ಬಣ್ಣ(_o):"
+msgstr "ಬಣ್ಣ(_r):"
#: ../calendar/gui/dialogs/calendar-setup.c:378
msgid "Task List"
@@ -6016,14 +5982,12 @@ msgid "Task List Properties"
msgstr "ಕಾರ್ಯ ಪಟ್ಟಿಯ ಗುಣಲಕ್ಷಣಗಳು"
#: ../calendar/gui/dialogs/calendar-setup.c:530
-#, fuzzy
msgid "New Task List"
-msgstr "ಹೊಸ ಕಾರ್ಯ ಪಟ್ಟಿ(_N)"
+msgstr "ಹೊಸ ಕಾರ್ಯ ಪಟ್ಟಿ"
#: ../calendar/gui/dialogs/calendar-setup.c:586
-#, fuzzy
msgid "Memo List Properties"
-msgstr "ಕಾರ್ಯ ಪಟ್ಟಿಯ ಗುಣಲಕ್ಷಣಗಳು"
+msgstr "ಮೆಮೊ ಪಟ್ಟಿಯ ಗುಣಲಕ್ಷಣಗಳು"
#: ../calendar/gui/dialogs/calendar-setup.c:586
msgid "New Memo List"
@@ -6100,14 +6064,14 @@ msgstr " (ಬಾಕಿ "
msgid "Due "
msgstr "ಬಾಕಿ "
-#: ../calendar/gui/dialogs/comp-editor.c:231
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "ಲಗತ್ತಿಸಲಾದ ಸಂದೇಶ - %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:236
-#: ../calendar/gui/dialogs/comp-editor.c:409 ../composer/e-msg-composer.c:1771
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
@@ -6115,233 +6079,227 @@ msgid_plural "%d attached messages"
msgstr[0] "ಲಗತ್ತಿಸಲಾದ ಸಂದೇಶ"
msgstr[1] "ಲಗತ್ತಿಸಲಾದ %d ಸಂದೇಶಗಳು"
-#: ../calendar/gui/dialogs/comp-editor.c:480 ../composer/e-msg-composer.c:2058
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "ಜರುಗಿಸು(_M)"
-#: ../calendar/gui/dialogs/comp-editor.c:482 ../composer/e-msg-composer.c:2060
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:615
-#: ../calendar/gui/dialogs/comp-editor.c:3253 ../mail/em-utils.c:371
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
#: ../plugins/prefer-plain/prefer-plain.c:74
#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:841
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:929
+#: ../calendar/gui/dialogs/comp-editor.c:930
msgid "Edit Appointment"
-msgstr ""
+msgstr "ಅಪಾಂಯಿಂಟ್‌ಮೆಂಟ್ ಅನ್ನು ಸಂಪಾದಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:936
+#: ../calendar/gui/dialogs/comp-editor.c:937
#, c-format
msgid "Meeting - %s"
msgstr "ಮೀಟಿಂಗ್ - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:938
+#: ../calendar/gui/dialogs/comp-editor.c:939
#, c-format
msgid "Appointment - %s"
msgstr "ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್‍ - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:944
+#: ../calendar/gui/dialogs/comp-editor.c:945
#, c-format
msgid "Assigned Task - %s"
msgstr "ನಿಯೋಜಿಸಲಾದ ಕಾರ್ಯ- %s"
-#: ../calendar/gui/dialogs/comp-editor.c:946
+#: ../calendar/gui/dialogs/comp-editor.c:947
#, c-format
msgid "Task - %s"
msgstr "ಕಾರ್ಯ - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:951
+#: ../calendar/gui/dialogs/comp-editor.c:952
#, c-format
msgid "Memo - %s"
msgstr "ಮೆಮೊ - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:967
-#, fuzzy
+#: ../calendar/gui/dialogs/comp-editor.c:968
msgid "No Summary"
msgstr "ಯಾವುದೆ ಸಾರಾಂಶವಿಲ್ಲ"
-#: ../calendar/gui/dialogs/comp-editor.c:1261
+#: ../calendar/gui/dialogs/comp-editor.c:1262
msgid "Click here to close the current window"
msgstr "ಪ್ರಸಕ್ತ ವಿಂಡೋವನ್ನು ಮುಚ್ಚಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ"
-#: ../calendar/gui/dialogs/comp-editor.c:1268
+#: ../calendar/gui/dialogs/comp-editor.c:1269
msgid "Copy selected text to the clipboard"
msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ಪಠ್ಯವನ್ನು ಕ್ಲಿಪ್‍ಬೋರ್ಡ್‍ಗೆ ಅಂಟಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1275
+#: ../calendar/gui/dialogs/comp-editor.c:1276
msgid "Cut selected text to the clipboard"
msgstr "ಆರಿಸಲಾದ ಪಠ್ಯಗಳನ್ನು ಕ್ಲಿಪ್‍ಬೋರ್ಡಿಗಾಗಿ ಕತ್ತರಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1282
+#: ../calendar/gui/dialogs/comp-editor.c:1283
msgid "Click here to view help available"
msgstr "ಲಭ್ಯವಿರುವ ಸಹಾಯವನ್ನು ನೋಡಲು ಕ್ಲಿಕ್ ಮಾಡಿ"
-#: ../calendar/gui/dialogs/comp-editor.c:1289
+#: ../calendar/gui/dialogs/comp-editor.c:1290
msgid "Paste text from the clipboard"
msgstr "ಕ್ಲಿಪ್‍ಬೋರ್ಡಿನಿಂದ ಪಠ್ಯವನ್ನು ಅಂಟಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1310
+#: ../calendar/gui/dialogs/comp-editor.c:1311
msgid "Click here to save the current window"
msgstr "ಪ್ರಸಕ್ತ ವಿಂಡೋವನ್ನು ಉಳಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ"
-#: ../calendar/gui/dialogs/comp-editor.c:1317
+#: ../calendar/gui/dialogs/comp-editor.c:1318
msgid "Select all text"
msgstr "ಎಲ್ಲಾ ಪಠ್ಯವನ್ನು ಆರಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1324
+#: ../calendar/gui/dialogs/comp-editor.c:1325
msgid "_Classification"
msgstr "ವರ್ಗೀಕರಣ(_C)"
-#: ../calendar/gui/dialogs/comp-editor.c:1338
+#: ../calendar/gui/dialogs/comp-editor.c:1339
#: ../mail/mail-signature-editor.c:208
#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
msgid "_File"
msgstr "ಕಡತ(_F)"
-#: ../calendar/gui/dialogs/comp-editor.c:1345
+#: ../calendar/gui/dialogs/comp-editor.c:1346
#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
msgid "_Help"
msgstr "ಸಹಾಯ(_H)"
-#: ../calendar/gui/dialogs/comp-editor.c:1352
-#, fuzzy
+#: ../calendar/gui/dialogs/comp-editor.c:1353
msgid "_Insert"
-msgstr "ಸೇರಿಸು(_n)"
+msgstr "ಸೇರಿಸು(_I)"
-#: ../calendar/gui/dialogs/comp-editor.c:1359
+#: ../calendar/gui/dialogs/comp-editor.c:1360
msgid "_Options"
msgstr "ಆಯ್ಕೆಗಳು(_O)"
-#: ../calendar/gui/dialogs/comp-editor.c:1366 ../mail/em-folder-tree.c:2098
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
#: ../ui/evolution.xml.h:55
msgid "_View"
-msgstr ""
+msgstr "ನೋಟ(_V)"
-#: ../calendar/gui/dialogs/comp-editor.c:1376
+#: ../calendar/gui/dialogs/comp-editor.c:1377
#: ../composer/e-composer-actions.c:472
msgid "_Attachment..."
msgstr "ಅಟ್ಯಾಚ್‍ಮೆಂಟ್(_A)..."
-#: ../calendar/gui/dialogs/comp-editor.c:1378
+#: ../calendar/gui/dialogs/comp-editor.c:1379
msgid "Click here to attach a file"
msgstr "ಒಂದು ಕಡತವನ್ನು ಲಗತ್ತಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ"
-#: ../calendar/gui/dialogs/comp-editor.c:1386
+#: ../calendar/gui/dialogs/comp-editor.c:1387
msgid "_Categories"
msgstr "ವರ್ಗಗಳು(_C)"
-#: ../calendar/gui/dialogs/comp-editor.c:1388
+#: ../calendar/gui/dialogs/comp-editor.c:1389
msgid "Toggles whether to display categories"
msgstr "ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1394
+#: ../calendar/gui/dialogs/comp-editor.c:1395
msgid "Time _Zone"
msgstr "ಕಾಲ ವಲಯ(_Z)"
-#: ../calendar/gui/dialogs/comp-editor.c:1396
+#: ../calendar/gui/dialogs/comp-editor.c:1397
msgid "Toggles whether the time zone is displayed"
msgstr "ಕಾಲ ವಲಯವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1405
+#: ../calendar/gui/dialogs/comp-editor.c:1406
msgid "Pu_blic"
msgstr "ಸಾರ್ವಜನಿಕ(_b)"
-#: ../calendar/gui/dialogs/comp-editor.c:1407
+#: ../calendar/gui/dialogs/comp-editor.c:1408
msgid "Classify as public"
msgstr "ಸಾರ್ವಜನಿಕ ಎಂದು ವರ್ಗೀಕರಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1412
+#: ../calendar/gui/dialogs/comp-editor.c:1413
msgid "_Private"
msgstr "ಖಾಸಗಿ(_P)"
-#: ../calendar/gui/dialogs/comp-editor.c:1414
-#, fuzzy
+#: ../calendar/gui/dialogs/comp-editor.c:1415
msgid "Classify as private"
msgstr "ಖಾಸಗಿ ಎಂದು ವರ್ಗೀಕರಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1419
+#: ../calendar/gui/dialogs/comp-editor.c:1420
msgid "_Confidential"
msgstr "ಗೌಪ್ಯವಾದ(_C)"
-#: ../calendar/gui/dialogs/comp-editor.c:1421
-#, fuzzy
+#: ../calendar/gui/dialogs/comp-editor.c:1422
msgid "Classify as confidential"
msgstr "ಗೌಪ್ಯ ಎಂದು ವರ್ಗೀಕರಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1429
+#: ../calendar/gui/dialogs/comp-editor.c:1430
msgid "R_ole Field"
msgstr "ರೋಲ್ ಕ್ಷೇತ್ರ(_F)"
-#: ../calendar/gui/dialogs/comp-editor.c:1431
+#: ../calendar/gui/dialogs/comp-editor.c:1432
msgid "Toggles whether the Role field is displayed"
msgstr "ರೋಲ್ ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1437
+#: ../calendar/gui/dialogs/comp-editor.c:1438
msgid "_RSVP"
msgstr "_RSVP"
-#: ../calendar/gui/dialogs/comp-editor.c:1439
+#: ../calendar/gui/dialogs/comp-editor.c:1440
msgid "Toggles whether the RSVP field is displayed"
msgstr "RSVP ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1445
+#: ../calendar/gui/dialogs/comp-editor.c:1446
msgid "_Status Field"
msgstr "ಸ್ಥಿತಿ ಕ್ಷೇತ್ರ(_S)"
-#: ../calendar/gui/dialogs/comp-editor.c:1447
+#: ../calendar/gui/dialogs/comp-editor.c:1448
msgid "Toggles whether the Status field is displayed"
msgstr "ಸ್ಥಿತಿ ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1453
+#: ../calendar/gui/dialogs/comp-editor.c:1454
msgid "_Type Field"
msgstr "ಟೈಪಿಸುವ ಕ್ಷೇತ್ರ(_T)"
-#: ../calendar/gui/dialogs/comp-editor.c:1455
-#, fuzzy
+#: ../calendar/gui/dialogs/comp-editor.c:1456
msgid "Toggles whether the Attendee Type is displayed"
-msgstr "ಪಾಲ್ಗೊಳ್ಳುವವರ ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
+msgstr "ಪಾಲ್ಗೊಳ್ಳುವವರ ಬಗೆಯು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
-#: ../calendar/gui/dialogs/comp-editor.c:1765
+#: ../calendar/gui/dialogs/comp-editor.c:1766
#: ../widgets/misc/e-attachment-bar.c:1381
-#, fuzzy
msgid "Recent Docu_ments"
-msgstr "ಪೂರ್ಣಗೊಂಡ ಪ್ರತಿಶತ"
+msgstr "ಇತ್ತೀಚಿನ ದಸ್ತಾವೇಜುಗಳು(_m)"
-#: ../calendar/gui/dialogs/comp-editor.c:1784
+#: ../calendar/gui/dialogs/comp-editor.c:1785
#: ../composer/e-composer-actions.c:700
msgid "Attach"
msgstr "ಲಗತ್ತಿಸು"
-#: ../calendar/gui/dialogs/comp-editor.c:1879
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "<b>%d</b> ಲಗತ್ತುಗಳು"
+msgstr[1] "<b>%d</b> ಲಗತ್ತು"
-#: ../calendar/gui/dialogs/comp-editor.c:1911
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:1914
-#: ../calendar/gui/dialogs/comp-editor.c:2222
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:2033
+#: ../calendar/gui/dialogs/comp-editor.c:2034
#: ../calendar/gui/dialogs/event-page.c:1871
#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
@@ -6350,38 +6308,38 @@ msgstr ""
msgid "_Remove"
msgstr "ತೆಗೆದು ಹಾಕು(_R)"
-#: ../calendar/gui/dialogs/comp-editor.c:2036
+#: ../calendar/gui/dialogs/comp-editor.c:2037
#: ../composer/e-msg-composer.c:1048
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:2244
+#: ../calendar/gui/dialogs/comp-editor.c:2245
#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:2394
-#: ../calendar/gui/dialogs/comp-editor.c:2441
-#: ../calendar/gui/dialogs/comp-editor.c:3286
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr ""
-#: ../calendar/gui/dialogs/comp-editor.c:3315
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "ಪ್ರಸಕ್ತ ಆವೃತ್ತಿಯನ್ನು ಬಳಸಲಾಗಿಲ್ಲ!"
#: ../calendar/gui/dialogs/copy-source-dialog.c:60
msgid "Could not open source"
-msgstr ""
+msgstr "ಆಕರವನ್ನು ತೆರೆಯಲಾಗಲಿಲ್ಲ"
#: ../calendar/gui/dialogs/copy-source-dialog.c:68
msgid "Could not open destination"
-msgstr ""
+msgstr "ಉದ್ದೇಶಿತ ಸ್ಥಳವನ್ನು ತೆರೆಯಲಾಗಲಿಲ್ಲ"
#: ../calendar/gui/dialogs/copy-source-dialog.c:77
msgid "Destination is read only"
@@ -6488,7 +6446,6 @@ msgid "Toggles whether to have All Day Event"
msgstr "ನೀವು ದಿನಪೂರ್ತಿ ಕಾರ್ಯಕ್ರಮವನ್ನು ಹೊಂದಿದ್ದೇರೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
#: ../calendar/gui/dialogs/event-editor.c:226
-#, fuzzy
msgid "Show Time as _Busy"
msgstr "ಸಮಯವನ್ನು ಬಿಡುವಿಲ್ಲ ಎಂದು ತೋರಿಸು(_b)"
@@ -6715,8 +6672,8 @@ msgstr "ಮೆಮೊ"
msgid "Unable to open memos in '%s'."
msgstr "'%s' ನಲ್ಲಿ ಮೆಮೊಗಳನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ."
-#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1561
-#: ../mail/em-format-html.c:1619 ../mail/em-format-html.c:1645
+#: ../calendar/gui/dialogs/memo-page.c:1002 ../mail/em-format-html.c:1562
+#: ../mail/em-format-html.c:1620 ../mail/em-format-html.c:1646
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:886
#: ../mail/em-mailer-prefs.c:77 ../mail/message-list.etspec.h:19
msgid "To"
@@ -7000,7 +6957,7 @@ msgstr "ಕೆಳ ಮಟ್ಟದ"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "ಸಾಮಾನ್ಯ"
@@ -7046,9 +7003,8 @@ msgid "_Status Details"
msgstr "ಸ್ಥಿತಿಯ ವಿವರಗಳು(_S)"
#: ../calendar/gui/dialogs/task-editor.c:113
-#, fuzzy
msgid "Click to change or view the status details of the task"
-msgstr "ಕಾರ್ಯದ ಸ್ತಿತಿಯ ವಿವರಗಳನ್ನು ಬದಲಾಯಿಸು / ತೋರಿಸು ಅನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ"
+msgstr "ಕಾರ್ಯದ ಸ್ಥಿತಿಯ ವಿವರಗಳನ್ನು ಬದಲಾಯಿಸಲು ಅಥವ ನೋಡಲು ಕ್ಲಿಕ್ಕಿಸಿ"
#: ../calendar/gui/dialogs/task-editor.c:121
#: ../composer/e-composer-actions.c:528
@@ -7086,9 +7042,8 @@ msgid "Categor_ies..."
msgstr "ವರ್ಗಗಳು(_i)..."
#: ../calendar/gui/dialogs/task-page.glade.h:3
-#, fuzzy
msgid "D_ue date:"
-msgstr "ಕೊನೆಯ ದಿನಾಂಕ(_D):"
+msgstr "ಕೊನೆಯ ದಿನಾಂಕ(_u):"
#: ../calendar/gui/dialogs/task-page.glade.h:7
msgid "Time zone:"
@@ -7253,7 +7208,7 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:191
#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
#: ../calendar/gui/e-meeting-store.c:746
@@ -7261,7 +7216,7 @@ msgstr ""
msgid "Yes"
msgstr "ಹೌದು"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
@@ -7269,7 +7224,7 @@ msgid "No"
msgstr "ಇಲ್ಲ"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
#: ../calendar/gui/e-meeting-list-view.c:167
@@ -7285,11 +7240,11 @@ msgstr "ಇಲ್ಲ"
msgid "Unknown"
msgstr "ಗೊತ್ತಿರದ"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "ಮರುಕಳಿಸುವ"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "ನಿಯೋಜಿಸಲಾದ"
@@ -7307,7 +7262,7 @@ msgid "untitled_image.%s"
msgstr "ಶೀರ್ಷಿಕೆ ಇಲ್ಲದ ಚಿತ್ರ(_i).%s"
#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
-#: ../calendar/gui/e-calendar-view.c:1675 ../calendar/gui/e-memo-table.c:926
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "ಹೀಗೆ ಉಳಿಸು(_S)..."
@@ -7321,19 +7276,18 @@ msgstr ""
msgid "_Save Selected"
msgstr ""
-#: ../calendar/gui/e-cal-popup.c:434 ../mail/em-popup.c:837
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "%s ನಲ್ಲಿ ತೆರೆ..."
#: ../calendar/gui/e-calendar-table.c:338
-#, fuzzy
msgid "* No Summary *"
-msgstr "ಯಾವುದೆ ಸಾರಾಂಶವಿಲ್ಲ"
+msgstr "*ಯಾವುದೆ ಸಾರಾಂಶವಿಲ್ಲ*"
#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
#: ../calendar/gui/e-calendar-table.c:374
-#: ../calendar/gui/e-calendar-view.c:2218
+#: ../calendar/gui/e-calendar-view.c:2215
#, c-format
msgid "Organizer: %s <%s>"
msgstr "ಆಯೋಜಕರು: %s <%s>"
@@ -7341,20 +7295,18 @@ msgstr "ಆಯೋಜಕರು: %s <%s>"
#. With SunOne accounts, there may be no ':' in organiser.value
#. With SunOne accouts, there may be no ':' in organiser.value
#: ../calendar/gui/e-calendar-table.c:377
-#: ../calendar/gui/e-calendar-view.c:2222
+#: ../calendar/gui/e-calendar-view.c:2219
#, c-format
msgid "Organizer: %s"
msgstr "ಆಯೋಜಕರು: %s"
#: ../calendar/gui/e-calendar-table.c:408
-#, fuzzy
msgid "Start: "
-msgstr "ಆರಂಭ"
+msgstr "ಆರಂಭ: "
#: ../calendar/gui/e-calendar-table.c:420
-#, fuzzy
msgid "Due: "
-msgstr "ಬಾಕಿ "
+msgstr "ಬಾಕಿ: "
#: ../calendar/gui/e-calendar-table.c:589
msgid "0%"
@@ -7401,23 +7353,23 @@ msgid "100%"
msgstr "100%"
#: ../calendar/gui/e-calendar-table.c:879
-#: ../calendar/gui/e-calendar-view.c:668 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr ""
#: ../calendar/gui/e-calendar-table.c:1163
-#: ../calendar/gui/e-calendar-view.c:798 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr ""
#: ../calendar/gui/e-calendar-table.c:1348
-#: ../calendar/gui/e-calendar-view.c:1224 ../calendar/gui/e-memo-table.c:821
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "ಹೀಗೆ ಉಳಿಸು..."
#: ../calendar/gui/e-calendar-table.c:1571
-#: ../calendar/gui/e-calendar-view.c:1657
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "ಹೊಸ ಕಾರ್ಯ(_T)"
@@ -7426,20 +7378,20 @@ msgid "Open _Web Page"
msgstr "ಜಾಲ ಪುಟವನ್ನು ತೆರೆ(_W)"
#: ../calendar/gui/e-calendar-table.c:1577
-#: ../calendar/gui/e-calendar-view.c:1660 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "ಮುದ್ರಿಸು(_r)..."
#: ../calendar/gui/e-calendar-table.c:1581
-#: ../calendar/gui/e-calendar-view.c:1680 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "ಕತ್ತರಿಸು(_u)"
#: ../calendar/gui/e-calendar-table.c:1583
-#: ../calendar/gui/e-calendar-view.c:1663
-#: ../calendar/gui/e-calendar-view.c:1682 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
@@ -7506,93 +7458,93 @@ msgstr "ಆದ್ಯತೆ"
msgid "Start date"
msgstr "ಆರಂಭದ ದಿನಾಂಕ"
-#: ../calendar/gui/e-calendar-view.c:1343
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1345
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1654
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "ಹೊಸ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್‍ಗಳು(_A)..."
-#: ../calendar/gui/e-calendar-view.c:1655
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1656
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "ಹೊಸ ಮೀಟಿಂಗ್(_M)"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1667
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1669
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "ಇಂದನ್ನು ಆರಿಸಿ(_o)"
-#: ../calendar/gui/e-calendar-view.c:1670
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "ದಿನಾಂಕವನ್ನು ಆರಿಸಿ(_S)..."
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "ಮುದ್ರಿಸು(_n)..."
-#: ../calendar/gui/e-calendar-view.c:1686
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "ಕ್ಯಾಲೆಂಡರಿಗೆ ನಕಲಿಸು(_y)..."
-#: ../calendar/gui/e-calendar-view.c:1687
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "ಕ್ಯಾಲೆಂಡರಿಗೆ ಸ್ಥಳಾಂತರಿಸು(_v)..."
-#: ../calendar/gui/e-calendar-view.c:1688
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1689
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1690
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1691
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "ಉತ್ತರಿಸು(_R)"
-#: ../calendar/gui/e-calendar-view.c:1692 ../mail/em-folder-view.c:1330
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "ಎಲ್ಲರಿಗೂ ಉತ್ತರಿಸು(_R)"
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1698 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr ""
-#: ../calendar/gui/e-calendar-view.c:1699
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr ""
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2238 ../calendar/gui/print.c:2508
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "ಸ್ಥಳ: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2272
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "ಕಾಲ: %s %s"
@@ -7631,19 +7583,19 @@ msgstr "%02i ನಿಮಿಷ ಭಾಗಗಳಲ್ಲಿ"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1523
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%A %d %B"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:767 ../calendar/gui/e-week-view.c:505
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
#: ../calendar/gui/print.c:829
msgid "am"
msgstr "am"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-week-view.c:508
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "pm"
@@ -7931,18 +7883,18 @@ msgid "Free/Busy Information"
msgstr "ಬಿಡುವು/ಕಾರ್ಯನಿರತ ಮಾಹಿತಿ"
#: ../calendar/gui/e-itip-control.c:1518
-#, fuzzy, c-format
+#, c-format
msgid "<b>%s</b> requests your free/busy information."
-msgstr "ಬಿಡುವಿರುವ/ಕಾರ್ಯನಿರತ(_F)"
+msgstr "<b>%s</b> ವು ನಿಮ್ಮ ಬಿಡುವು/ಕಾರ್ಯನಿರತ ಮಾಹಿತಿಗಾಗಿ ಮನವಿ ಸಲ್ಲಿಸುತ್ತದೆ."
#: ../calendar/gui/e-itip-control.c:1519
msgid "Free/Busy Request"
msgstr "ಬಿಡುವು/ಕಾರ್ಯನಿರತ ಮನವಿ"
#: ../calendar/gui/e-itip-control.c:1523
-#, fuzzy, c-format
+#, c-format
msgid "<b>%s</b> has replied to a free/busy request."
-msgstr "ಬಿಡುವಿರುವ/ಕಾರ್ಯನಿರತ"
+msgstr "<b>%s</b> ಇಂದ ನಿಮ್ಮ ಬಿಡುವು/ಕಾರ್ಯನಿರತ ಮನವಿಗೆ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ."
#: ../calendar/gui/e-itip-control.c:1524
msgid "Free/Busy Reply"
@@ -7954,11 +7906,11 @@ msgstr "ಸರಿಯಲ್ಲದ ಬಿಡುವು/ಕಾರ್ಯನಿರತ
#: ../calendar/gui/e-itip-control.c:1605
msgid "The message does not appear to be properly formed"
-msgstr ""
+msgstr "ಸಂದೇಶವು ಸಮರ್ಪಕವಾಗಿ ರಚಿತಗೊಂಡಂತೆ ತೋರುತ್ತಿಲ್ಲ"
#: ../calendar/gui/e-itip-control.c:1664
msgid "The message contains only unsupported requests."
-msgstr ""
+msgstr "ಸಂದೇಶವು ಕೇವಲ ಬೆಂಬಲವಿಲ್ಲದ ಮನವಿಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿದೆ."
#: ../calendar/gui/e-itip-control.c:1697
msgid "The attachment does not contain a valid calendar message"
@@ -7970,11 +7922,11 @@ msgstr ""
#: ../calendar/gui/e-itip-control.c:1980
msgid "Update complete\n"
-msgstr ""
+msgstr "ಅಪ್ಡೇಟ್‌ ಪೂರ್ಣಗೊಂಡಿದೆ\n"
#: ../calendar/gui/e-itip-control.c:2014
msgid "Object is invalid and cannot be updated\n"
-msgstr ""
+msgstr "ಆಬ್ಜೆಕ್ಟ್ ಅಮಾನ್ಯವಾಗಿದೆ ಹಾಗು ಅದನ್ನು ಅಪ್ಡೇಟ್‌ ಮಾಡಲಾಗುವುದಿಲ್ಲ\n"
#: ../calendar/gui/e-itip-control.c:2031
msgid "This response is not from a current attendee. Add as an attendee?"
@@ -7986,7 +7938,7 @@ msgstr ""
#: ../calendar/gui/e-itip-control.c:2073
msgid "Attendee status updated\n"
-msgstr ""
+msgstr "ಪಾಲ್ಗೊಳ್ಳುವವರ ಸ್ಥಿತಿಯು ಅಪ್ಡೇಟ್‌ ಆಗಿದೆ\n"
#: ../calendar/gui/e-itip-control.c:2080
#: ../plugins/itip-formatter/itip-formatter.c:1253
@@ -8285,7 +8237,7 @@ msgid "Click to add a memo"
msgstr "ಒಂದು ಮೆಮೊವನ್ನು ಸೇರಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ"
#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
-#: ../calendar/gui/gnome-cal.c:2864
+#: ../calendar/gui/gnome-cal.c:2961
#, c-format
msgid ""
"Error on %s:\n"
@@ -8335,43 +8287,39 @@ msgstr "ಕಾಲವಲಯವನ್ನು ಆರಿಸು"
msgid "%d %B"
msgstr "%d %B"
-#: ../calendar/gui/gnome-cal.c:830
-msgid "Updating query"
-msgstr ""
-
-#: ../calendar/gui/gnome-cal.c:2501
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr ""
-#: ../calendar/gui/gnome-cal.c:2502
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr ""
-#: ../calendar/gui/gnome-cal.c:2507
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr ""
-#: ../calendar/gui/gnome-cal.c:2688
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "%s ನಲ್ಲಿ ಅಪಾಯಿಂಟ್‍ಮೆಂಟ್‍ಗಳನ್ನು ಲೋಡ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ"
-#: ../calendar/gui/gnome-cal.c:2707
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "%s ನಲ್ಲಿ ಕಾರ್ಯಗಳನ್ನು ಲೋಡ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ"
-#: ../calendar/gui/gnome-cal.c:2716
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "%s ನಲ್ಲಿ ಮೆಮೊಗಳನ್ನು ಲೋಡ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ"
-#: ../calendar/gui/gnome-cal.c:2823
+#: ../calendar/gui/gnome-cal.c:2920
#, c-format
msgid "Opening %s"
msgstr "%s ಅನ್ನು ತೆರೆಯಲಾಗುತ್ತಿದೆ"
-#: ../calendar/gui/gnome-cal.c:3779
+#: ../calendar/gui/gnome-cal.c:3874
msgid "Purging"
msgstr ""
@@ -8520,45 +8468,42 @@ msgstr "ಮೆಮೊಗಳನ್ನು ರಚಿಸಲು ಯಾವುದೆ ಕ
msgid "Memo Source Selector"
msgstr ""
-#: ../calendar/gui/memos-component.c:1259
+#: ../calendar/gui/memos-component.c:1260
msgid "New memo"
msgstr "ಹೊಸ ಮೆಮೊ"
-#: ../calendar/gui/memos-component.c:1260
-#, fuzzy
+#: ../calendar/gui/memos-component.c:1261
msgctxt "New"
msgid "Mem_o"
msgstr "ಮೆಮೊ(_o)"
-#: ../calendar/gui/memos-component.c:1261
+#: ../calendar/gui/memos-component.c:1262
msgid "Create a new memo"
msgstr "ಒಂದು ಹೊಸ ಮೆಮೊ"
-#: ../calendar/gui/memos-component.c:1267
+#: ../calendar/gui/memos-component.c:1268
msgid "New shared memo"
msgstr ""
-#: ../calendar/gui/memos-component.c:1268
-#, fuzzy
+#: ../calendar/gui/memos-component.c:1269
msgctxt "New"
msgid "_Shared memo"
-msgstr "%d ಮೆಮೊ"
+msgstr "ಹಂಚಲಾದ ಮೆಮೊ(_S)"
-#: ../calendar/gui/memos-component.c:1269
+#: ../calendar/gui/memos-component.c:1270
msgid "Create a shared new memo"
msgstr ""
-#: ../calendar/gui/memos-component.c:1275
+#: ../calendar/gui/memos-component.c:1276
msgid "New memo list"
msgstr "ಹೊಸ ಮೆಮೊ ಪಟ್ಟಿ"
-#: ../calendar/gui/memos-component.c:1276
-#, fuzzy
+#: ../calendar/gui/memos-component.c:1277
msgctxt "New"
msgid "Memo li_st"
msgstr "ಮೆಮೊ ಪಟ್ಟಿ(_s)"
-#: ../calendar/gui/memos-component.c:1277
+#: ../calendar/gui/memos-component.c:1278
msgid "Create a new memo list"
msgstr "ಒಂದು ಹೊಸ ಮೆಮೊ ಪಟ್ಟಿಯನ್ನು ರಚಿಸು"
@@ -8567,9 +8512,8 @@ msgid "Print Memos"
msgstr "ಮೆಮೋಗಳನ್ನು ಮುದ್ರಿಸು"
#: ../calendar/gui/memotypes.xml.h:25
-#, fuzzy
msgid "Next 7 Days"
-msgstr "ಮುಂದಿನ ಏಳು ದಿನಗಳ ಕಾರ್ಯಗಳು"
+msgstr "ಮುಂದಿನ ಏಳು ದಿನಗಳು"
#: ../calendar/gui/migration.c:157
msgid ""
@@ -8844,45 +8788,42 @@ msgstr "ಕಾರ್ಯಗಳನ್ನು ರಚಿಸಲು ಯಾವುದೆ
msgid "Task Source Selector"
msgstr ""
-#: ../calendar/gui/tasks-component.c:1324
+#: ../calendar/gui/tasks-component.c:1325
msgid "New task"
msgstr "ಹೊಸ ಕಾರ್ಯ"
-#: ../calendar/gui/tasks-component.c:1325
-#, fuzzy
+#: ../calendar/gui/tasks-component.c:1326
msgctxt "New"
msgid "_Task"
msgstr "ಕಾರ್ಯ(_T)"
-#: ../calendar/gui/tasks-component.c:1326
+#: ../calendar/gui/tasks-component.c:1327
msgid "Create a new task"
msgstr "ಒಂದು ಹೊಸ ಕಾರ್ಯವನ್ನು ರಚಿಸು"
-#: ../calendar/gui/tasks-component.c:1332
+#: ../calendar/gui/tasks-component.c:1333
msgid "New assigned task"
msgstr ""
-#: ../calendar/gui/tasks-component.c:1333
-#, fuzzy
+#: ../calendar/gui/tasks-component.c:1334
msgctxt "New"
msgid "Assigne_d Task"
msgstr "ಕಾರ್ಯವನ್ನು ನಿಯೋಜಿಸು(_A)"
-#: ../calendar/gui/tasks-component.c:1334
+#: ../calendar/gui/tasks-component.c:1335
msgid "Create a new assigned task"
msgstr ""
-#: ../calendar/gui/tasks-component.c:1340
+#: ../calendar/gui/tasks-component.c:1341
msgid "New task list"
msgstr "ಹೊಸ ಕಾರ್ಯ ಪಟ್ಟಿ"
-#: ../calendar/gui/tasks-component.c:1341
-#, fuzzy
+#: ../calendar/gui/tasks-component.c:1342
msgctxt "New"
msgid "Tas_k list"
msgstr "ಕಾರ್ಯ ಪಟ್ಟಿ(_k)"
-#: ../calendar/gui/tasks-component.c:1342
+#: ../calendar/gui/tasks-component.c:1343
msgid "Create a new task list"
msgstr "ಒಂದು ಹೊಸ ಕಾರ್ಯ ಪಟ್ಟಿಯನ್ನು ರಚಿಸು"
@@ -8903,17 +8844,15 @@ msgid "Print Tasks"
msgstr "ಕಾರ್ಯಗಳನ್ನು ಮುದ್ರಿಸು"
#: ../calendar/gui/tasktypes.xml.h:2
-#, fuzzy, no-c-format
+#, no-c-format
msgid "% Completed"
-msgstr "ಪೂರ್ಣಗೊಂಡ % "
+msgstr "% ಪೂರ್ಣಗೊಂಡಿದೆ"
#: ../calendar/gui/tasktypes.xml.h:10
-#, fuzzy
msgid "Cancelled"
msgstr "ರದ್ದು ಮಾಡಲಾಗಿದೆ"
#: ../calendar/gui/tasktypes.xml.h:26
-#, fuzzy
msgid "In progress"
msgstr "ಪ್ರಗತಿಯಲ್ಲಿದೆ"
@@ -10494,9 +10433,8 @@ msgid "Pacific/Yap"
msgstr "Pacific/Yap"
#: ../composer/e-composer-autosave.c:275
-#, fuzzy
msgid "Could not open autosave file"
-msgstr "ಕಡತವನ್ನು ತೆರಯಲಾಗಲಿಲ್ಲ"
+msgstr "ತಾನಾಗಿಯೆ ಉಳಿಸಲ್ಪಟ್ಟ ಕಡತವನ್ನು ತೆರಯಲಾಗಲಿಲ್ಲ"
#: ../composer/e-composer-autosave.c:282
msgid "Unable to retrieve message from editor"
@@ -10573,19 +10511,16 @@ msgid "Insert Send options"
msgstr "ಕಳುಹಿಸುವ ಆದ್ಯತೆಗಳನ್ನು ಸೇರಿಸು"
#: ../composer/e-composer-actions.c:535
-#, fuzzy
msgid "New _Message"
-msgstr "ಸಂದೇಶ(_M)"
+msgstr "ಹೊಸ ಸಂದೇಶ(_M)"
#: ../composer/e-composer-actions.c:537
-#, fuzzy
msgid "Open New Message window"
-msgstr "ಹೊಸ ಸಂದೇಶವನ್ನು ಇಲ್ಲಿಗೆ ಕಳುಹಿಸು(_S)..."
+msgstr "ಹೊಸ ಸಂದೇಶ ವಿಂಡೋವನ್ನು ತೆರೆ"
#: ../composer/e-composer-actions.c:544
-#, fuzzy
msgid "Character _Encoding"
-msgstr "ಕ್ಯಾರೆಕ್ಟರ್ ಎನ್ಕೋಡಿಂಗ್"
+msgstr "ಅಕ್ಷರಗಳ ಎನ್ಕೋಡಿಂಗ್(_E)"
#: ../composer/e-composer-actions.c:551
msgid "_Security"
@@ -10616,7 +10551,6 @@ msgid "Set the message priority to high"
msgstr "ಸಂದೇಶದ ಆದ್ಯತೆಯನ್ನು ಉಚ್ಛ ಎಂದು ಗುರುತುಹಾಕು"
#: ../composer/e-composer-actions.c:585
-#, fuzzy
msgid "Re_quest Read Receipt"
msgstr "ಓದಿದ ಖಾತರಿಗಾಗಿನ ಮನವಿ ಸಲ್ಲಿಕೆ(_e)"
@@ -10681,14 +10615,12 @@ msgid "Toggles whether the Reply-To field is displayed"
msgstr ""
#: ../composer/e-composer-actions.c:649
-#, fuzzy
msgid "_Subject Field"
-msgstr "_Cc ಕ್ಷೇತ್ರ"
+msgstr "ವಿಷಯ ಕ್ಷೇತ್ರ (_S)"
#: ../composer/e-composer-actions.c:651
-#, fuzzy
msgid "Toggles whether the Subject field is displayed"
-msgstr "ಸ್ಥಿತಿ ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
+msgstr "ವಿಷಯ ಕ್ಷೇತ್ರವು ತೋರಿಸಲಾಗುತ್ತಿದೆಯೆ ಎಂದು ಟೋಗಲ್ ಮಾಡುತ್ತದೆ"
#: ../composer/e-composer-actions.c:657
msgid "_To Field"
@@ -10761,11 +10693,10 @@ msgid "Click here to select folders to post to"
msgstr ""
#: ../composer/e-composer-private.c:65
-#, fuzzy
msgid "Recent _Documents"
-msgstr "ಪೂರ್ಣಗೊಂಡ ಪ್ರತಿಶತ"
+msgstr "ಇತ್ತೀಚಿನ ದಸ್ತಾವೇಜುಗಳು(_D)"
-#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1558
+#: ../composer/e-composer-private.c:180 ../composer/e-msg-composer.c:1558
msgid "Show _Attachment Bar"
msgstr ""
@@ -10932,14 +10863,13 @@ msgstr "ಸಂಪಾದಿಸುವುದನ್ನು ಮುಂದುವರೆ
msgid "_Do not Recover"
msgstr ""
-#: ../composer/mail-composer.error.xml.h:32 ../shell/main.c:306
+#: ../composer/mail-composer.error.xml.h:32
msgid "_Recover"
msgstr ""
#: ../composer/mail-composer.error.xml.h:33
-#, fuzzy
msgid "_Save Draft"
-msgstr "ಡ್ರಾಫ್ಟ್‍ ಆಗಿ ಉಳಿಸು"
+msgstr "ಡ್ರಾಫ್ಟ್‍ ಅನ್ನು ಉಳಿಸು(_S)"
#: ../data/evolution.desktop.in.in.h:1
msgid "Evolution Mail and Calendar"
@@ -10975,18 +10905,17 @@ msgstr "ಇವಲ್ಯೂಶನ್ ಮಾಹಿತಿ"
#: ../e-util/e-error.c:119
msgid "Evolution Query"
-msgstr ""
+msgstr "ಇವಲ್ಯೂಶನ್ ಮನವಿ"
#. setup a dummy error
#: ../e-util/e-error.c:449
#, c-format
msgid "Internal error, unknown error '%s' requested"
-msgstr ""
+msgstr "ಆಂತರಿಕ ದೋಷ, ಅಜ್ಞಾತ ದೋಷ '%s' ಕ್ಕೆ ಮನವಿ ಸಲ್ಲಿಸಲಾಗಿದೆ"
#: ../e-util/e-logger.c:154
-#, fuzzy
msgid "Component"
-msgstr "ಪೂರ್ಣ"
+msgstr "ಘಟಕ"
#: ../e-util/e-logger.c:155
msgid "Name of the component being logged"
@@ -11043,6 +10972,10 @@ msgstr "ಕಡತವನ್ನು ತಿದ್ದಿ ಬರೆಯಬೇಕೆ?"
msgid "_Overwrite"
msgstr "ತಿದ್ದಿಬರೆ(_O)"
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "ಇವಲ್ಯೂಶನ್-ದತ್ತಾಂಶ-ಪರಿಚಾರಕವನ್ನು ಆರಂಭಿಸಲಾಗಿಲ್ಲ"
+
#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "ಪ್ರಮುಖವಾದ(_m)"
@@ -11087,7 +11020,9 @@ msgstr "ಲೇಬಲ್ ಇರದೆ ಇರಲು ಸಾಧ್ಯವಿಲ್ಲ
msgid ""
"A label having the same tag already exists on the server. Please rename your "
"label."
-msgstr "ಇದೆ ಟ್ಯಾಗ್ ಅನ್ನು ಹೊಂದಿದ ಒಂದು ಲೇಬಲ್ ಈಗಾಗಲೆ ಪರಿಚಾರಕದಲ್ಲಿ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಲೇಬಲ್‌ನ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಿ."
+msgstr ""
+"ಇದೆ ಟ್ಯಾಗ್ ಅನ್ನು ಹೊಂದಿದ ಒಂದು ಲೇಬಲ್ ಈಗಾಗಲೆ ಪರಿಚಾರಕದಲ್ಲಿ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ನಿಮ್ಮ "
+"ಲೇಬಲ್‌ನ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಿ."
#: ../e-util/gconf-bridge.c:1218
#, c-format
@@ -11130,15 +11065,15 @@ msgstr[1] "ಭವಿಷ್ಯದ %d ನಿಮಿಷಗಳು"
#, c-format
msgid "1 hour ago"
msgid_plural "%d hours ago"
-msgstr[0] "%d ಗಂಟೆಯ ಮೊದಲು"
-msgstr[1] "1 ಗಂಟೆಯ ಮೊದಲು"
+msgstr[0] "೧ ಗಂಟೆಯ ಮೊದಲು"
+msgstr[1] "%d ಗಂಟೆಗಳ ಮೊದಲು"
#: ../filter/filter-datespec.c:82
#, c-format
msgid "1 hour in the future"
msgid_plural "%d hours in the future"
-msgstr[0] "ಭವಿಷ್ಯದ %d ಗಂಟೆಗಳು"
-msgstr[1] "ಭವಿಷ್ಯದ 1 ಗಂಟೆ"
+msgstr[0] "ಮುಂದಿನ ೧ ಗಂಟೆ"
+msgstr[1] "ಮುಂದಿನ %d ಗಂಟೆಗಳು"
#: ../filter/filter-datespec.c:83
#, c-format
@@ -11381,6 +11316,7 @@ msgstr "ನೀವು ಸೂಚಿಸುವ ಸಮಯ"
#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "ವಾರಗಳು"
@@ -11417,9 +11353,8 @@ msgid "Configure your email accounts here"
msgstr "ನಿಮ್ಮ ಇಮೈಲ್ ಖಾತೆಯನ್ನು ಇಲ್ಲಿ ಸಂರಚಿಸಿ"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:5
-#, fuzzy
msgid "Configure your network connection settings here"
-msgstr "ನಿಮ್ಮ ಇಮೈಲ್ ಖಾತೆಯನ್ನು ಇಲ್ಲಿ ಸಂರಚಿಸಿ"
+msgstr "ನಿಮ್ಮ ಜಾಲಬಂಧದ ಸಂಪರ್ಕವನ್ನು ಇಲ್ಲಿ ಸಂರಚಿಸಿ"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:6
msgid "Evolution Mail"
@@ -11446,14 +11381,13 @@ msgid "Evolution Mail preferences control"
msgstr ""
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:12
-#, fuzzy
msgid "Evolution Network configuration control"
-msgstr "ಇವಲ್ಯೂಶನ್ ಕ್ಯಾಲೆಂಡರ್ ಸಂರಚನಾ ಉಪಕರಣ"
+msgstr "ಇವಲ್ಯೂಶನ್ ಜಾಲಬಂಧ ಸಂರಚನಾ ನಿಯಂತ್ರಣ"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:13 ../mail/em-folder-view.c:605
#: ../mail/importers/elm-importer.c:327 ../mail/importers/pine-importer.c:380
#: ../mail/mail-component.c:595 ../mail/mail-component.c:596
-#: ../mail/mail-component.c:760
+#: ../mail/mail-component.c:765
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:6
msgid "Mail"
msgstr "ಮೈಲ್"
@@ -11469,9 +11403,8 @@ msgid "Mail Preferences"
msgstr "ಮೈಲ್‍ನ ಆದ್ಯತೆಗಳು"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:16
-#, fuzzy
msgid "Network Preferences"
-msgstr "ಆದ್ಯತೆಗಳು(_n)"
+msgstr "ಜಾಲಬಂಧ ಆದ್ಯತೆಗಳು"
#: ../mail/GNOME_Evolution_Mail.server.in.in.h:17
msgid "_Mail"
@@ -11874,51 +11807,51 @@ msgstr ""
msgid "Add Ac_tion"
msgstr ""
-#: ../mail/em-folder-browser.c:189
+#: ../mail/em-folder-browser.c:190
msgid "C_reate Search Folder From Search..."
msgstr ""
-#: ../mail/em-folder-browser.c:214
+#: ../mail/em-folder-browser.c:215
msgid "All Messages"
msgstr "ಎಲ್ಲಾ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:215
+#: ../mail/em-folder-browser.c:216
msgid "Unread Messages"
msgstr "ಓದದೆ ಇರುವ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:217
+#: ../mail/em-folder-browser.c:218
msgid "No Label"
msgstr "ಯಾವುದೆ ಲೇಬಲ್ ಇಲ್ಲ"
-#: ../mail/em-folder-browser.c:224
+#: ../mail/em-folder-browser.c:225
msgid "Read Messages"
msgstr "ಓದಲಾದ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:225
+#: ../mail/em-folder-browser.c:226
msgid "Recent Messages"
msgstr "ಇತ್ತೀಚಿನ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:226
+#: ../mail/em-folder-browser.c:227
msgid "Last 5 Days' Messages"
msgstr "5 ದಿನಗಳ ಹಿಂದಿನ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:227
+#: ../mail/em-folder-browser.c:228
msgid "Messages with Attachments"
msgstr ""
-#: ../mail/em-folder-browser.c:228
+#: ../mail/em-folder-browser.c:229
msgid "Important Messages"
msgstr "ಪ್ರಮುಖ ಸಂದೇಶಗಳು"
-#: ../mail/em-folder-browser.c:229
+#: ../mail/em-folder-browser.c:230
msgid "Messages Not Junk"
msgstr "ಸಂದೇಶವು ಜಂಕ್ ಅಲ್ಲ"
-#: ../mail/em-folder-browser.c:1170
+#: ../mail/em-folder-browser.c:1171
msgid "Account Search"
msgstr ""
-#: ../mail/em-folder-browser.c:1223
+#: ../mail/em-folder-browser.c:1224
msgid "All Account Search"
msgstr ""
@@ -11938,9 +11871,8 @@ msgstr[0] "ಒಟ್ಟು ಸಂದೇಶಗಳು:"
msgstr[1] "ಒಟ್ಟು ಸಂದೇಶಗಳು:"
#: ../mail/em-folder-properties.c:193 ../mail/em-folder-properties.c:195
-#, fuzzy
msgid "Quota usage"
-msgstr "ಒಟ್ಟು ಸಂದೇಶಗಳು:"
+msgstr "ಕೋಟಾ ಬಳಕೆ"
#. translators: standard local mailbox names
#: ../mail/em-folder-properties.c:355 ../mail/em-folder-tree-model.c:507
@@ -12011,10 +11943,10 @@ msgstr "ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
#. * from your translation.
#.
#: ../mail/em-folder-tree.c:380
-#, fuzzy, c-format
+#, c-format
msgctxt "folder-display"
msgid "%s (%u)"
-msgstr "%s (...)"
+msgstr "%s (%u)"
#: ../mail/em-folder-tree.c:741
msgid "Mail Folder Tree"
@@ -12312,7 +12244,7 @@ msgstr "ಮುಂದಿನ(_N)"
msgid "M_atch case"
msgstr ""
-#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:649
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr ""
@@ -12322,7 +12254,7 @@ msgid ""
"authentic."
msgstr ""
-#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:650
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr ""
@@ -12332,7 +12264,7 @@ msgid ""
"message is authentic."
msgstr ""
-#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr ""
@@ -12342,7 +12274,7 @@ msgid ""
"in transit."
msgstr ""
-#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr ""
@@ -12352,7 +12284,7 @@ msgid ""
"cannot be verified."
msgstr ""
-#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr ""
@@ -12362,7 +12294,7 @@ msgid ""
"public key."
msgstr ""
-#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:659
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "ಗೂಢಲಿಪೀಕರಣಗೊಳ್ಳದ"
@@ -12372,7 +12304,7 @@ msgid ""
"the Internet."
msgstr ""
-#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:660
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr ""
@@ -12384,7 +12316,7 @@ msgid ""
"message in a practical amount of time."
msgstr "ಗೂಢಲಿಪೀಕರಣ"
-#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:661
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "ಗೂಢಲಿಪೀಕರಣಗೊಂಡ"
@@ -12394,7 +12326,7 @@ msgid ""
"the content of this message."
msgstr ""
-#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:662
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr ""
@@ -12497,84 +12429,84 @@ msgstr ""
msgid "Page %d of %d"
msgstr ""
-#: ../mail/em-format-html.c:503 ../mail/em-format-html.c:512
+#: ../mail/em-format-html.c:504 ../mail/em-format-html.c:513
#, c-format
msgid "Retrieving `%s'"
msgstr ""
-#: ../mail/em-format-html.c:924
+#: ../mail/em-format-html.c:925
msgid "Unknown external-body part."
msgstr ""
-#: ../mail/em-format-html.c:932
+#: ../mail/em-format-html.c:933
msgid "Malformed external-body part."
msgstr ""
-#: ../mail/em-format-html.c:962
+#: ../mail/em-format-html.c:963
#, c-format
msgid "Pointer to FTP site (%s)"
msgstr ""
-#: ../mail/em-format-html.c:973
+#: ../mail/em-format-html.c:974
#, c-format
msgid "Pointer to local file (%s) valid at site \"%s\""
msgstr ""
-#: ../mail/em-format-html.c:975
+#: ../mail/em-format-html.c:976
#, c-format
msgid "Pointer to local file (%s)"
msgstr ""
-#: ../mail/em-format-html.c:996
+#: ../mail/em-format-html.c:997
#, c-format
msgid "Pointer to remote data (%s)"
msgstr ""
-#: ../mail/em-format-html.c:1007
+#: ../mail/em-format-html.c:1008
#, c-format
msgid "Pointer to unknown external data (\"%s\" type)"
msgstr ""
-#: ../mail/em-format-html.c:1235
+#: ../mail/em-format-html.c:1236
msgid "Formatting message"
msgstr "ಸಂದೇಶವನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
-#: ../mail/em-format-html.c:1409
+#: ../mail/em-format-html.c:1410
msgid "Formatting Message..."
msgstr "ಸಂದೇಶವನ್ನು ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
-#: ../mail/em-format-html.c:1562 ../mail/em-format-html.c:1626
-#: ../mail/em-format-html.c:1648 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1627
+#: ../mail/em-format-html.c:1649 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:887 ../mail/em-mailer-prefs.c:78
msgid "Cc"
msgstr "Cc"
-#: ../mail/em-format-html.c:1563 ../mail/em-format-html.c:1632
-#: ../mail/em-format-html.c:1651 ../mail/em-format-quote.c:209
+#: ../mail/em-format-html.c:1564 ../mail/em-format-html.c:1633
+#: ../mail/em-format-html.c:1652 ../mail/em-format-quote.c:209
#: ../mail/em-format.c:888 ../mail/em-mailer-prefs.c:79
msgid "Bcc"
msgstr "Bcc"
#. pseudo-header
-#: ../mail/em-format-html.c:1743 ../mail/em-format-quote.c:352
+#: ../mail/em-format-html.c:1744 ../mail/em-format-quote.c:352
#: ../mail/em-mailer-prefs.c:1450
msgid "Mailer"
msgstr ""
#. translators: strftime format for local time equivalent in Date header display, with day
-#: ../mail/em-format-html.c:1770
+#: ../mail/em-format-html.c:1771
msgid " (%a, %R %Z)"
msgstr " (%a, %R %Z)"
#. translators: strftime format for local time equivalent in Date header display, without day
-#: ../mail/em-format-html.c:1775
+#: ../mail/em-format-html.c:1776
msgid " (%R %Z)"
msgstr " (%R %Z)"
#. To translators: This message suggests to the receipients that the sender of the mail is
#. different from the one listed in From field.
#.
-#: ../mail/em-format-html.c:1906
+#: ../mail/em-format-html.c:1907
#, c-format
msgid "This message was sent by <b>%s</b> on behalf of <b>%s</b>"
msgstr ""
@@ -12663,23 +12595,20 @@ msgid "Once per month"
msgstr "ತಿಂಗಳಲ್ಲಿ ಒಂದು ಬಾರಿ"
#: ../mail/em-mailer-prefs.c:326
-#, fuzzy
msgid "Add Custom Junk Header"
-msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು"
+msgstr "ಕಸ್ಟಮ್ ಜಂಕ್ ಹೆಡರುಗಳು ಸೇರಿಸು"
#: ../mail/em-mailer-prefs.c:330
-#, fuzzy
msgid "Header Name:"
-msgstr "ಫೋಲ್ಡರ್ ಹೆಸರು(_F):"
+msgstr "ಹೆಡರ್ ಹೆಸರು:"
#: ../mail/em-mailer-prefs.c:331
msgid "Header Value Contains:"
msgstr ""
#: ../mail/em-mailer-prefs.c:436
-#, fuzzy
msgid "Contains Value"
-msgstr "ಮುಂದುವರೆ"
+msgstr "ಈ ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ"
#: ../mail/em-mailer-prefs.c:458
msgid "Color"
@@ -12792,7 +12721,7 @@ msgid "Reply to _List"
msgstr "ಲಿಸ್ಟ್‍ಗೆ ಉತ್ತರಿಸು(_L)"
#. make it first item
-#: ../mail/em-popup.c:629 ../mail/em-popup.c:858
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "ವಿಳಾಸ ಪುಸ್ತಕಕ್ಕೆ ಸೇರಿಸು(_A)"
@@ -12956,14 +12885,12 @@ msgid "Default forward style"
msgstr ""
#: ../mail/evolution-mail.schemas.in.h:25
-#, fuzzy
msgid "Default height of the Composer Window."
-msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಪೂರ್ವನಿಯೋಜಿತ ಎತ್ತರ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
+msgstr "ಕಂಪೋಸರ್ ವಿಂಡೋದ ಡೀಫಾಲ್ಟ್‍ ಎತ್ತರ."
#: ../mail/evolution-mail.schemas.in.h:26
-#, fuzzy
msgid "Default height of the message window."
-msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಪೂರ್ವನಿಯೋಜಿತ ಎತ್ತರ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
+msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಡೀಫಾಲ್ಟ್‍ ಎತ್ತರ."
#: ../mail/evolution-mail.schemas.in.h:27
msgid "Default height of the subscribe dialog."
@@ -12978,19 +12905,17 @@ msgid "Default value for thread expand state"
msgstr ""
#: ../mail/evolution-mail.schemas.in.h:30
-#, fuzzy
msgid "Default width of the Composer Window."
-msgstr "ಬದಿಪಟ್ಟಿಯ ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
+msgstr "ಕಂಪೋಸರ್ ವಿಂಡೋದ ಡೀಫಾಲ್ಟ್‍ ಅಗಲ."
#: ../mail/evolution-mail.schemas.in.h:31
-#, fuzzy
msgid "Default width of the message window."
-msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
+msgstr "ಸಂದೇಶ ವಿಂಡೋದ ಡೀಫಾಲ್ಟ್‍ ಅಗಲ."
#: ../mail/evolution-mail.schemas.in.h:32
#, fuzzy
msgid "Default width of the subscribe dialog."
-msgstr "ಬದಿಪಟ್ಟಿಯ ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
+msgstr "ಬದಿಪಟ್ಟಿಯ ಡೀಫಾಲ್ಟ್‍ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
#: ../mail/evolution-mail.schemas.in.h:33
msgid ""
@@ -13074,9 +12999,8 @@ msgid "Enable or disable type ahead search feature"
msgstr ""
#: ../mail/evolution-mail.schemas.in.h:50
-#, fuzzy
msgid "Enable search folders"
-msgstr "ಫೋಲ್ಡರಿನಲ್ಲಿ ಹುಡುಕು(_o)"
+msgstr "ಹುಡುಕು ಫೋಲ್ಡರನ್ನು ಶಕ್ತಗೊಳಿಸು"
#: ../mail/evolution-mail.schemas.in.h:51
msgid "Enable search folders on startup."
@@ -13421,14 +13345,12 @@ msgid "Spell check inline"
msgstr ""
#: ../mail/evolution-mail.schemas.in.h:129
-#, fuzzy
msgid "Spell checking color"
-msgstr "ಕಾಗುಣಿತ ಪರೀಕ್ಷೆ"
+msgstr "ಕಾಗುಣಿತ ಪರೀಕ್ಷೆಯ ಬಣ್ಣ"
#: ../mail/evolution-mail.schemas.in.h:130
-#, fuzzy
msgid "Spell checking languages"
-msgstr "ಕಾಗುಣಿತ ಪರೀಕ್ಷೆ"
+msgstr "ಕಾಗುಣಿತ ಪರೀಕ್ಷೆಯ ಭಾಷೆ"
#: ../mail/evolution-mail.schemas.in.h:131
msgid "Subscribe dialog default height"
@@ -13570,17 +13492,16 @@ msgid "Use custom fonts"
msgstr "ಕಸ್ಟಮ್ ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸು"
#: ../mail/evolution-mail.schemas.in.h:160
-#, fuzzy
msgid "Use custom fonts for displaying mail."
-msgstr "ಕಸ್ಟಮ್ ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸು"
+msgstr "ಮೈಲ್ ಅನ್ನು ತೋರಿಸಲು ಕಸ್ಟಮ್ ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸು."
#: ../mail/evolution-mail.schemas.in.h:161
msgid "Use only local spam tests."
-msgstr ""
+msgstr "ಕೇವಲ ಸ್ಥಳೀಯ ಸ್ಪ್ಯಾಮ್‌ ಪರೀಕ್ಷೆಗಳನ್ನು ಮಾತ್ರ ಬಳಸು."
#: ../mail/evolution-mail.schemas.in.h:162
msgid "Use only the local spam tests (no DNS)."
-msgstr ""
+msgstr "ಕೇವಲ ಸ್ಥಳೀಯ ಸ್ಪ್ಯಾಮ್‌ ಪರೀಕ್ಷೆಗಳನ್ನು ಮಾತ್ರ ಬಳಸು(ಯಾವುದೆ DNS ಇಲ್ಲ)."
#: ../mail/evolution-mail.schemas.in.h:163
msgid "Use side-by-side or wide layout"
@@ -13592,43 +13513,43 @@ msgstr ""
#: ../mail/evolution-mail.schemas.in.h:165
msgid "View/Bcc menu item is checked"
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/Bcc ಮೆನ್ಯು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ"
#: ../mail/evolution-mail.schemas.in.h:166
msgid "View/Bcc menu item is checked."
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/Bcc ಮೆನ್ಯು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ."
#: ../mail/evolution-mail.schemas.in.h:167
msgid "View/Cc menu item is checked"
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/Cc ಮೆನ್ಯು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ"
#: ../mail/evolution-mail.schemas.in.h:168
msgid "View/Cc menu item is checked."
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/Cc ಮೆನ್ಯು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ."
#: ../mail/evolution-mail.schemas.in.h:169
msgid "View/From menu item is checked"
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇಂದ ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ"
#: ../mail/evolution-mail.schemas.in.h:170
msgid "View/From menu item is checked."
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇಂದ ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ."
#: ../mail/evolution-mail.schemas.in.h:171
msgid "View/PostTo menu item is checked"
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇವರಿಗೆ ಕಳುಹಿಸು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ"
#: ../mail/evolution-mail.schemas.in.h:172
msgid "View/PostTo menu item is checked."
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇವರಿಗೆ ಕಳುಹಿಸು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ."
#: ../mail/evolution-mail.schemas.in.h:173
msgid "View/ReplyTo menu item is checked"
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇವರಿಗೆ ಉತ್ತರಿಸು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ"
#: ../mail/evolution-mail.schemas.in.h:174
msgid "View/ReplyTo menu item is checked."
-msgstr ""
+msgstr "ವೀಕ್ಷಿಸು/ಇವರಿಗೆ ಉತ್ತರಿಸು ಅಂಶವನ್ನು ಗುರುತುಹಾಕಲಾಗಿದೆ."
#: ../mail/evolution-mail.schemas.in.h:175
msgid "Whether a read receipt request gets added to every message by default."
@@ -13737,9 +13658,8 @@ msgstr ""
#: ../mail/mail-component.c:164 ../plugins/templates/templates.c:521
#: ../plugins/templates/templates.c:691 ../plugins/templates/templates.c:726
#: ../plugins/templates/org-gnome-templates.eplug.xml.h:2
-#, fuzzy
msgid "Templates"
-msgstr "ವಿನ್ಯಾಸ:"
+msgstr "ಮಾದರಿಗಳು"
#: ../mail/mail-component.c:548
#, c-format
@@ -13797,91 +13717,88 @@ msgid_plural "%d total"
msgstr[0] "ಒಟ್ಟು %d"
msgstr[1] "ಒಟ್ಟು %d"
-#: ../mail/mail-component.c:916
+#: ../mail/mail-component.c:921
msgid "New Mail Message"
msgstr "ಹೊಸ ಮೈಲ್ ಸಂದೇಶ"
-#: ../mail/mail-component.c:917
-#, fuzzy
+#: ../mail/mail-component.c:922
msgctxt "New"
msgid "_Mail Message"
msgstr "ಮೈಲ್ ಸಂದೇಶ(_M)"
-#: ../mail/mail-component.c:918
+#: ../mail/mail-component.c:923
msgid "Compose a new mail message"
msgstr "ಒಂದು ಹೊಸ ಮೈಲ್ ಸಂದೇಶವನ್ನು ರಚಿಸು"
-#: ../mail/mail-component.c:924
+#: ../mail/mail-component.c:929
msgid "New Mail Folder"
msgstr "ಹೊಸ ಮೈಲ್ ಫೋಲ್ಡರ್"
-#: ../mail/mail-component.c:925
-#, fuzzy
+#: ../mail/mail-component.c:930
msgctxt "New"
msgid "Mail _Folder"
msgstr "ಮೈಲ್ ಫೋಲ್ಡರ್(_F)"
-#: ../mail/mail-component.c:926
+#: ../mail/mail-component.c:931
msgid "Create a new mail folder"
msgstr "ಒಂದು ಹೊಸ ಮೈಲ್ ಫೋಲ್ಡರನ್ನು ರಚಿಸು"
-#: ../mail/mail-component.c:1073
+#: ../mail/mail-component.c:1078
msgid "Failed upgrading Mail settings or folders."
msgstr ""
-#: ../mail/mail-component.c:1586
+#: ../mail/mail-component.c:1591
msgid "Error"
msgstr "ದೋಷ"
-#: ../mail/mail-component.c:1586
+#: ../mail/mail-component.c:1591
msgid "Errors"
msgstr "ದೋಷಗಳು"
-#: ../mail/mail-component.c:1587
+#: ../mail/mail-component.c:1592
msgid "Warnings and Errors"
msgstr "ಎಚ್ಚರಿಕೆಗಳು ಹಾಗು ದೋಷಗಳು"
-#: ../mail/mail-component.c:1588
+#: ../mail/mail-component.c:1593
msgid "Debug"
msgstr ""
-#: ../mail/mail-component.c:1588
+#: ../mail/mail-component.c:1593
msgid "Error, Warnings and Debug messages"
msgstr ""
-#: ../mail/mail-component.c:1715
+#: ../mail/mail-component.c:1720
msgid "Debug Logs"
msgstr ""
-#: ../mail/mail-component.c:1729
+#: ../mail/mail-component.c:1734
msgid "Show _errors in the status bar for"
msgstr ""
#. Translators: This is the second part of the sentence
#. * "Show _errors in the status bar for" - XXX - "second(s)."
-#: ../mail/mail-component.c:1745
-#, fuzzy
+#: ../mail/mail-component.c:1750
msgid "second(s)."
-msgstr "ಸೆಕೆಂಡುಗಳು."
+msgstr "ಸೆಕೆಂಡು(ಗಳು)."
-#: ../mail/mail-component.c:1751
+#: ../mail/mail-component.c:1756
msgid "Log Messages:"
msgstr ""
-#: ../mail/mail-component.c:1792
+#: ../mail/mail-component.c:1797
msgid "Log Level"
msgstr ""
-#: ../mail/mail-component.c:1801 ../widgets/misc/e-dateedit.c:395
+#: ../mail/mail-component.c:1806 ../widgets/misc/e-dateedit.c:395
msgid "Time"
msgstr "ಸಮಯ"
-#: ../mail/mail-component.c:1811 ../mail/message-list.c:2435
+#: ../mail/mail-component.c:1816 ../mail/message-list.c:2454
#: ../mail/message-list.etspec.h:10
msgid "Messages"
msgstr "ಸಂದೇಶಗಳು"
-#: ../mail/mail-component.c:1820 ../ui/evolution-mail-messagedisplay.xml.h:2
+#: ../mail/mail-component.c:1825 ../ui/evolution-mail-messagedisplay.xml.h:2
#: ../ui/evolution.xml.h:4
msgid "Close this window"
msgstr "ಈ ವಿಂಡೋವನ್ನು ಮುಚ್ಚು"
@@ -13899,9 +13816,8 @@ msgid "<b>SSL is not supported in this build of Evolution</b>"
msgstr ""
#: ../mail/mail-config.glade.h:5
-#, fuzzy
msgid "<b>Sender Photograph</b>"
-msgstr "<b>ಪರಿಚಾರಕದ ಮಾಹಿತಿ</b>"
+msgstr "<b>ಕಳುಹಿಸಿದವರ ಚಿತ್ರ</b>"
#: ../mail/mail-config.glade.h:6
msgid "<b>Sig_natures</b>"
@@ -13981,9 +13897,8 @@ msgid "<span weight=\"bold\">Printed Fonts</span>"
msgstr "<span weight=\"bold\">ಮುದ್ರಿಸಲಾದ ಅಕ್ಷರಶೈಲಿ</span>"
#: ../mail/mail-config.glade.h:27
-#, fuzzy
msgid "<span weight=\"bold\">Proxy Settings</span>"
-msgstr "<span weight=\"bold\">ಸ್ಥಿತಿ</span>"
+msgstr "<span weight=\"bold\">ಪ್ರಾಕ್ಸಿ ಸಂಯೋಜನೆಗಳು</span>"
#: ../mail/mail-config.glade.h:28
msgid "<span weight=\"bold\">Required Information</span>"
@@ -14142,9 +14057,8 @@ msgid "Do not mar_k messages as junk if sender is in my addressbook"
msgstr ""
#: ../mail/mail-config.glade.h:73
-#, fuzzy
msgid "Do not quote"
-msgstr "ಅಳಿಸಬೇಡ"
+msgstr "ಕೋಟ್ ಮಾಡಬೇಡ"
#: ../mail/mail-config.glade.h:74
msgid "Done"
@@ -14207,9 +14121,8 @@ msgid "HTML Messages"
msgstr "HTML ಸಂದೇಶಗಳು"
#: ../mail/mail-config.glade.h:91
-#, fuzzy
msgid "H_TTP Proxy:"
-msgstr "ಅಂಚೆಪೆಟ್ಟಿಗೆ(_P):"
+msgstr "H_TTP ಪ್ರಾಕ್ಸಿ:"
#: ../mail/mail-config.glade.h:92
msgid "Headers"
@@ -14282,9 +14195,8 @@ msgid "PGP/GPG _Key ID:"
msgstr "PGP/GPG _Key ID:"
#: ../mail/mail-config.glade.h:112
-#, fuzzy
msgid "Pass_word:"
-msgstr "ಗುಪ್ತಪದ(_P):"
+msgstr "ಗುಪ್ತಪದ(_w):"
#: ../mail/mail-config.glade.h:114
msgid ""
@@ -14310,9 +14222,8 @@ msgid "Please select among the following options"
msgstr ""
#: ../mail/mail-config.glade.h:119
-#, fuzzy
msgid "Port:"
-msgstr "ಸಂಪರ್ಕಸ್ಥಾನ(_P):"
+msgstr "ಸಂಪರ್ಕಸ್ಥಾನ:"
#: ../mail/mail-config.glade.h:120
msgid "Pr_ompt when sending messages with only Bcc recipients defined"
@@ -14320,7 +14231,7 @@ msgstr ""
#: ../mail/mail-config.glade.h:121
msgid "Quoted"
-msgstr ""
+msgstr "ಕೋಟ್‌ ಮಾಡಲಾದ"
#: ../mail/mail-config.glade.h:122
msgid "Re_member password"
@@ -14434,17 +14345,16 @@ msgid ""
msgstr ""
#: ../mail/mail-config.glade.h:154
-#, fuzzy
msgid "Us_ername:"
-msgstr "ಬಳಕೆದಾರ ಹೆಸರು(_n):"
+msgstr "ಬಳಕೆದಾರ ಹೆಸರು(_e):"
#: ../mail/mail-config.glade.h:155
-#, fuzzy
msgid "Use Authe_ntication"
-msgstr "ದೃಢೀಕರಣ"
+msgstr "ದೃಢೀಕರಣವನ್ನು ಬಳಸು(_n)"
#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "ಬಳಕೆದಾರ ಹೆಸರು(_n):"
@@ -14497,9 +14407,8 @@ msgid "_Load images in messages from contacts"
msgstr "ಸಂಪರ್ಕವಿಳಾಸಗಳಿಂದ ಸಂದೇಶಗಳಲ್ಲಿ ಚಿತ್ರಗಳನ್ನು ಲೋಡ್ ಮಾಡು(_L)"
#: ../mail/mail-config.glade.h:171
-#, fuzzy
msgid "_Lookup in local addressbook only"
-msgstr "ಸ್ಥಳೀಯ ವಿಳಾಸಪುಸ್ತಕದ ಫೋಲ್ಡರುಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡು"
+msgstr "ಸ್ಥಳೀಯ ವಿಳಾಸಪುಸ್ತಕದಲ್ಲಿ ನೋಡು(_L)"
#: ../mail/mail-config.glade.h:172
msgid "_Make this my default account"
@@ -14564,9 +14473,8 @@ msgid "_Use Secure Connection:"
msgstr "ಸುರಕ್ಷಿತ ಸಂಪರ್ಕವನ್ನು ಬಳಸು(_U):"
#: ../mail/mail-config.glade.h:190
-#, fuzzy
msgid "_Use system defaults"
-msgstr "ಪೂರ್ವನಿಯೋಜಿತವನ್ನು ಬಳಸು(_D)"
+msgstr "ಗಣಕದ ಡೀಫಾಲ್ಟ್‍ ಅನ್ನು ಬಳಸು(_U)"
#: ../mail/mail-config.glade.h:191
msgid "_Use the same fonts as other applications"
@@ -14755,14 +14663,14 @@ msgid "Opening folder %s"
msgstr "%s ಫೋಲ್ಡರನ್ನು ತೆರೆಯಲಾಗುತ್ತಿದೆ"
#: ../mail/mail-ops.c:1270
-#, fuzzy, c-format
+#, c-format
msgid "Retrieving quota information for folder %s"
-msgstr "%s ಗಾಗಿನ ಸಂಪರ್ಕ ಮಾಹಿತಿ"
+msgstr "%s ಕಡತಕೋಶಕ್ಕಾಗಿನ ಕೋಟಾ ಮಾಹಿತಿಯನ್ನು ಮರಳಿ ಪಡೆಯಲಾಗುತ್ತಿದೆ"
#: ../mail/mail-ops.c:1339
#, c-format
msgid "Opening store %s"
-msgstr ""
+msgstr "%s ಸಂಗ್ರಹವನ್ನು ತೆರೆ"
#: ../mail/mail-ops.c:1410
#, c-format
@@ -14814,7 +14722,7 @@ msgstr[0] ""
msgstr[1] ""
#: ../mail/mail-ops.c:1978
-#, fuzzy, c-format
+#, c-format
msgid "Saving %d message"
msgid_plural "Saving %d messages"
msgstr[0] "%d ಸಂದೇಶವನ್ನು ಉಳಿಸಲಾಗುತ್ತಿದೆ"
@@ -14826,6 +14734,8 @@ msgid ""
"Error saving messages to: %s:\n"
" %s"
msgstr ""
+"ಇಲ್ಲಿಗೆ ಸಂದೇಶವನ್ನು ಉಳಿಸುವಲ್ಲಿ ದೋಷ ಉಂಟಾಗಿದೆ: %s:\n"
+" %s"
#: ../mail/mail-ops.c:2128
msgid "Saving attachment"
@@ -14911,19 +14821,16 @@ msgid "User canceled operation."
msgstr "ಬಳಕೆದಾರ ರದ್ದುಪಡಿಸಿದ ಕಾರ್ಯಾಚರಣೆ."
#: ../mail/mail-signature-editor.c:201
-#, fuzzy
msgid "_Save and Close"
-msgstr "ಉಳಿಸು ಹಾಗು ಮುಚ್ಚು"
+msgstr "ಉಳಿಸು ಹಾಗು ಮುಚ್ಚು(_S)"
#: ../mail/mail-signature-editor.c:355
-#, fuzzy
msgid "Edit Signature"
msgstr "ಸಹಿಯನ್ನು ಸಂಪಾದಿಸು"
#: ../mail/mail-signature-editor.c:370
-#, fuzzy
msgid "_Signature Name:"
-msgstr "ಸಹಿ(_g):"
+msgstr "ಸಹಿಯ ಹೆಸರು(_S):"
#: ../mail/mail-tools.c:120
#, c-format
@@ -14973,17 +14880,15 @@ msgid "New Search Folder"
msgstr ""
#: ../mail/mail.error.xml.h:1
-#, fuzzy
msgid "A folder named \"{0}\" already exists. Please use a different name."
msgstr ""
-"&quot;{0}&quot; ಎಂಬ ಹೆಸರಿನ ಫೋಲ್ಡರ್ ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ಬೇರೊಂದು "
+"\"{0}\" ಎಂಬ ಹೆಸರಿನ ಕೋಶವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ಬೇರೊಂದು "
"ಹೆಸರನ್ನು ಬಳಸಿ."
#: ../mail/mail.error.xml.h:2
-#, fuzzy
msgid "A folder named \"{1}\" already exists. Please use a different name."
msgstr ""
-"&quot;{1}&quot; ಎಂಬ ಹೆಸರಿನ ಫೋಲ್ಡರ್ ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ಬೇರೊಂದು "
+"\"{1}\" ಎಂಬ ಹೆಸರಿನ ಕೋಶವು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ಬೇರೊಂದು "
"ಹೆಸರನ್ನು ಬಳಸಿ."
#: ../mail/mail.error.xml.h:3
@@ -15059,14 +14964,12 @@ msgid "Are you sure you want to send a message without a subject?"
msgstr ""
#: ../mail/mail.error.xml.h:18
-#, fuzzy
msgid "Because \"{0}\"."
-msgstr "ಏಕೆಂದರೆ &quot;{0}&quot;."
+msgstr "ಏಕೆಂದರೆ \"{0}\"."
#: ../mail/mail.error.xml.h:20
-#, fuzzy
msgid "Because \"{2}\"."
-msgstr "ಏಕೆಂದರೆ &quot;{2}&quot;."
+msgstr "ಏಕೆಂದರೆ \"{2}\"."
#: ../mail/mail.error.xml.h:21
msgid "Blank Signature"
@@ -15077,32 +14980,28 @@ msgid "Cannot add Search Folder \"{0}\"."
msgstr ""
#: ../mail/mail.error.xml.h:23
-#, fuzzy
msgid "Cannot copy folder \"{0}\" to \"{1}\"."
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು &quot;{1}&quot; ಗೆ ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ."
+msgstr "\"{0}\" ಕೋಶವನ್ನು \"{1}\" ಗೆ ಕಾಪಿ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:24
-#, fuzzy
msgid "Cannot create folder \"{0}\"."
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ."
+msgstr "\"{0}\" ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:25
msgid "Cannot create temporary save directory."
-msgstr ""
+msgstr "ತಾತ್ಕಾಲಿಕ ಉಳಿಕೆಗಾಗಿ ಕೋಶವನ್ನು ನಿರ್ಮಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:26
msgid "Cannot create the save directory, because \"{1}\""
msgstr ""
#: ../mail/mail.error.xml.h:27
-#, fuzzy
msgid "Cannot delete folder \"{0}\"."
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ."
+msgstr "\"{0}\" ಕೋಶವನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:28
-#, fuzzy
msgid "Cannot delete system folder \"{0}\"."
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ."
+msgstr "\"{0}\" ವ್ಯವಸ್ಥೆ ಕೋಶವನ್ನು ಅಳಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:29
#, fuzzy
@@ -15110,22 +15009,18 @@ msgid "Cannot edit Search Folder \"{0}\" as it does not exist."
msgstr "ಫೋಲ್ಡರ್ ಹುಡುಕು ವಿವರಣೆಗಳನ್ನು ರಚಿಸು ಅಥವ ಸಂಪಾದಿಸು"
#: ../mail/mail.error.xml.h:30
-#, fuzzy
msgid "Cannot move folder \"{0}\" to \"{1}\"."
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು &quot;{1}&quot; ಗೆ ಸ್ಥಳಾಂತರಿಸಲಾಗಿಲ್ಲ."
+msgstr "\"{0}\" ಕೋಶವನ್ನು \"{1}\" ಗೆ ಸ್ಥಳಾಂತರಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:31
-#, fuzzy
msgid "Cannot open source \"{1}\""
-msgstr "ಕಡತವನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ"
+msgstr "ಆಕರ \"{1}\" ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ"
#: ../mail/mail.error.xml.h:32
-#, fuzzy
msgid "Cannot open source \"{2}\"."
-msgstr "ಕಡತವನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ"
+msgstr "ಆಕರ \"{2}\" ಅನ್ನು ತೆರೆಯಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:33
-#, fuzzy
msgid "Cannot open target \"{2}\"."
msgstr "ಸಂಪರ್ಕವಿಳಾಸವನ್ನು ಜರುಗಿಸಲಾಗಿಲ್ಲ."
@@ -15137,7 +15032,7 @@ msgstr ""
#: ../mail/mail.error.xml.h:35
msgid "Cannot rename \"{0}\" to \"{1}\"."
-msgstr ""
+msgstr "\"{0}\" ನ ಹೆಸರನ್ನು \"{1}\" ಗೆ ಬದಲಾಯಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:36
#, fuzzy
@@ -15146,16 +15041,15 @@ msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ರಚಿಸಲಾಗಿ
#: ../mail/mail.error.xml.h:37
msgid "Cannot save changes to account."
-msgstr ""
+msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಖಾತೆಗೆ ಉಳಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:38
msgid "Cannot save to directory \"{0}\"."
msgstr ""
#: ../mail/mail.error.xml.h:39
-#, fuzzy
msgid "Cannot save to file \"{0}\"."
-msgstr "&quot;{0}&quot; ಕಡತವನ್ನು ಉಳಿಸಲಾಗಿಲ್ಲ."
+msgstr "\"{0}\"ಕಡತಕ್ಕೆ ಉಳಿಸಲಾಗಿಲ್ಲ."
#: ../mail/mail.error.xml.h:40
msgid "Cannot set signature script \"{0}\"."
@@ -15177,9 +15071,8 @@ msgid "Could not save signature file."
msgstr ""
#: ../mail/mail.error.xml.h:44
-#, fuzzy
msgid "Delete \"{0}\"?"
-msgstr "ಅಳಿಸಲಾಗಿದೆ: "
+msgstr "\"{0}\" ಅನ್ನು ಅಳಿಸಬೇಕೆ?"
#: ../mail/mail.error.xml.h:45
msgid "Delete account?"
@@ -15523,9 +15416,8 @@ msgid ""
msgstr ""
#: ../mail/mail.error.xml.h:134
-#, fuzzy
msgid "Your login to your server \"{0}\" as \"{0}\" failed."
-msgstr "&quot;{0}&quot; ಪರಿಚಾರಕಕ್ಕೆ &quot;{0}&quot; ಆಗಿ ನೀವು ಪ್ರವೇಶಿಸುವುದು ವಿಫಲಗೊಂಡಿದೆ."
+msgstr " \"{0}\" ಪರಿಚಾರಕಕ್ಕೆ \"{0}\" ಆಗಿ ನೀವು ಪ್ರವೇಶಿಸುವುದು ವಿಫಲಗೊಂಡಿದೆ."
#: ../mail/mail.error.xml.h:135
msgid "_Append"
@@ -15560,9 +15452,8 @@ msgid "Answered"
msgstr "ಉತ್ತರಿಸಲಾದ"
#: ../mail/message-list.c:1055
-#, fuzzy
msgid "Forwarded"
-msgstr "ಫಾರ್ವಾರ್ಡ್"
+msgstr "ಫಾರ್ವಾರ್ಡ್ ಮಾಡಲಾಗಿದೆ"
#: ../mail/message-list.c:1056
msgid "Multiple Unseen Messages"
@@ -15616,23 +15507,19 @@ msgid "%b %d %Y"
msgstr "%b %d %Y"
#. there is some info why the message list is empty, let it be something useful
-#: ../mail/message-list.c:3897 ../mail/message-list.c:4354
+#: ../mail/message-list.c:3916 ../mail/message-list.c:4373
msgid "Generating message list"
msgstr ""
-#: ../mail/message-list.c:4204
+#: ../mail/message-list.c:4223
msgid ""
"No message satisfies your search criteria. Either clear search with Search-"
">Clear menu item or change it."
msgstr ""
-#: ../mail/message-list.c:4206
-#, fuzzy
+#: ../mail/message-list.c:4225
msgid "There are no messages in this folder."
-msgstr ""
-"\n"
-"\n"
-"ಈ ನೋಟದಲ್ಲಿ ತೋರಿಸಲು ಯಾವುದೆ ಅಂಶಗಳಿಲ್ಲ."
+msgstr "ಈ ಕೋಶದಲ್ಲಿ ಯಾವುದೆ ಸಂದೇಶಗಳಿಲ್ಲ."
#: ../mail/message-list.etspec.h:3
msgid "Due By"
@@ -15775,7 +15662,6 @@ msgid "Message has no attachments"
msgstr ""
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:5
-#, fuzzy
msgid "_Edit Message"
msgstr "ಸಂದೇಶವನ್ನು ಸಂಪಾದಿಸು(_E)"
@@ -15918,9 +15804,8 @@ msgid "Please wait while Evolution is backing up your data."
msgstr ""
#: ../plugins/backup-restore/backup.c:497
-#, fuzzy
msgid "Restoring Evolution Data"
-msgstr "ಬ್ಯಾಕ್ಅಪ್‍ನ ನಂತರ ಇವಲ್ಯೂಶನನ್ನು ಪುನರ್ ಆರಂಭಿಸು(_R)"
+msgstr "ಇವಲ್ಯೂಶನ್ ಮಾಹಿತಿಯನ್ನು ಮರಳಿ ಸ್ಥಾಪಿಸಲಾಗುತ್ತಿದೆ"
#: ../plugins/backup-restore/backup.c:498
msgid "Please wait while Evolution is restoring your data."
@@ -15968,9 +15853,8 @@ msgid "Please select a valid backup file to restore."
msgstr ""
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:7
-#, fuzzy
msgid "The selected folder is not writable."
-msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ಫೋಲ್ಡರನ್ನು ಇನ್ನೊಂದು ಫೋಲ್ಡರಿಗೆ ನಕಲಿಸು"
+msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ಕೋಶಕ್ಕೆ ಬರೆಯಲು ಅನುಮತಿ ಇಲ್ಲ."
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:8
msgid ""
@@ -16076,9 +15960,8 @@ msgid "Bogofilter Options"
msgstr "Bogofilter ಆದ್ಯತೆಗಳು"
#: ../plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml.h:2
-#, fuzzy
msgid "Bogofilter junk plugin"
-msgstr "Bogofilter ಆದ್ಯತೆಗಳು"
+msgstr "Bogofilter ಜಂಕ್ ಪ್ಲಗ್ಇನ್‌"
#: ../plugins/bogo-junk-plugin/org-gnome-bogo-junk-plugin.eplug.xml.h:3
msgid "Filters junk messages using Bogofilter."
@@ -16095,6 +15978,7 @@ msgstr "_URL:"
#: ../plugins/caldav/caldav-source.c:271
#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "_SSL ಅನ್ನು ಬಳಸು"
@@ -16117,9 +16001,9 @@ msgstr ""
#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
#: ../plugins/google-account-setup/google-source.c:695
-#, fuzzy
+#: ../plugins/google-account-setup/google-contacts-source.c:320
msgid "Re_fresh:"
-msgstr "ಪುನಶ್ಚೇತನಗೊಳಿಸು(_f)..."
+msgstr "ಪುನಶ್ಚೇತನಗೊಳಿಸು(_f):"
#: ../plugins/calendar-http/calendar-http.c:332
msgid "_Secure connection"
@@ -16221,29 +16105,25 @@ msgid "Do you want to make Evolution your default e-mail client?"
msgstr ""
#: ../plugins/default-mailer/org-gnome-default-mailer.error.xml.h:2
-#: ../shell/main.c:679
+#: ../shell/main.c:585
msgid "Evolution"
msgstr "ಇವಲ್ಯೂಶನ್"
#: ../plugins/default-source/default-source.c:81
-#, fuzzy
msgid "Mark as _default address book"
-msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಫೋಲ್ಡರ್ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
+msgstr "ಡೀಫಾಲ್ಟ್‍ ವಿಳಾಸ ಪುಸ್ತಕ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
#: ../plugins/default-source/default-source.c:102
-#, fuzzy
msgid "Mark as _default calendar"
-msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಫೋಲ್ಡರ್ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
+msgstr "ಡೀಫಾಲ್ಟ್‍ ಕ್ಯಾಲೆಂಡರ್ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
#: ../plugins/default-source/default-source.c:103
-#, fuzzy
msgid "Mark as _default task list"
-msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಫೋಲ್ಡರ್ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
+msgstr "ಡೀಫಾಲ್ಟ್‍ ಕಾರ್ಯಪಟ್ಟಿ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
#: ../plugins/default-source/default-source.c:104
-#, fuzzy
msgid "Mark as _default memo list"
-msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಫೋಲ್ಡರ್ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
+msgstr "ಡೀಫಾಲ್ಟ್‍ ಮೆಮೊ ಪಟ್ಟಿ ಎಂದು ಗುರುತು ಹಾಕು(_d)"
#: ../plugins/default-source/org-gnome-default-source.eplug.xml.h:1
msgid "Default Sources"
@@ -16255,20 +16135,18 @@ msgid ""
"default one."
msgstr ""
-#: ../plugins/email-custom-header/email-custom-header.c:562
-#, fuzzy
+#: ../plugins/email-custom-header/email-custom-header.c:558
msgid "_Custom Header"
-msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು"
+msgstr "ಕಸ್ಟಮ್ ಹೆಡರ್(_C)"
-#: ../plugins/email-custom-header/email-custom-header.c:883
-#, fuzzy
+#: ../plugins/email-custom-header/email-custom-header.c:879
msgid "Key"
-msgstr "ಕೀನ್ಯಾ"
+msgstr "ಕೀ"
-#: ../plugins/email-custom-header/email-custom-header.c:894
+#: ../plugins/email-custom-header/email-custom-header.c:890
#: ../plugins/templates/templates.c:400
msgid "Values"
-msgstr ""
+msgstr "ಮೌಲ್ಯಗಳು"
#. To translators: This string is used while adding a new message header to configuration, to specifying the format of the key values
#: ../plugins/email-custom-header/email-custom-header.glade.h:2
@@ -16278,9 +16156,8 @@ msgid ""
msgstr ""
#: ../plugins/email-custom-header/org-gnome-email-custom-header.glade.h:1
-#, fuzzy
msgid "Email Custom Header"
-msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು"
+msgstr "ಇಮೈಲ್ ಕಸ್ಟಮ್ ಹೆಡರ್"
#. For Translators: 'custom header' string is used while adding a new message header to outgoing message, to specify what value for the message header would be added
#: ../plugins/email-custom-header/org-gnome-email-custom-header.eplug.xml.h:2
@@ -16288,14 +16165,12 @@ msgid "Adds custom header to outgoing messages."
msgstr ""
#: ../plugins/email-custom-header/org-gnome-email-custom-header.eplug.xml.h:3
-#, fuzzy
msgid "Custom Header"
-msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು"
+msgstr "ಕಸ್ಟಮ್ ಹೆಡರ್"
#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:1
-#, fuzzy
msgid "List of Custom Headers"
-msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು"
+msgstr "ಕಸ್ಟಮ್ ಹೆಡರುಗಳು ಪಟ್ಟಿ"
#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:2
msgid ""
@@ -16411,9 +16286,8 @@ msgid "A_uthenticate"
msgstr "ದೃಢೀಕರಿಸು(_u)"
#: ../plugins/exchange-operations/exchange-account-setup.c:735
-#, fuzzy
msgid "_Mailbox:"
-msgstr "ಮೈಲ್(_M)"
+msgstr "ಮೈಲ್‌ಬಾಕ್ಸ್‍(_M):"
#: ../plugins/exchange-operations/exchange-account-setup.c:936
msgid "_Authentication Type"
@@ -16638,9 +16512,8 @@ msgstr "ಫೋಲ್ಡರಿನ ಗಾತ್ರ"
#. FIXME Limit to one user
#: ../plugins/exchange-operations/exchange-folder-subscription.c:75
-#, fuzzy
msgid "User"
-msgstr "ಬಳಕೆದಾರ(_U)"
+msgstr "ಬಳಕೆದಾರ"
#: ../plugins/exchange-operations/exchange-folder-subscription.c:318
#: ../plugins/exchange-operations/org-gnome-folder-subscription.xml.h:1
@@ -16732,7 +16605,7 @@ msgid "Add User:"
msgstr ""
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
-#: ../plugins/exchange-operations/exchange-send-options.c:413
+#: ../plugins/exchange-operations/exchange-send-options.c:408
#: ../plugins/groupwise-features/proxy.c:934
#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
@@ -17000,7 +16873,7 @@ msgid "Folder offline"
msgstr ""
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:39
-#: ../shell/e-shell.c:1286
+#: ../shell/e-shell.c:1306
msgid "Generic error"
msgstr "ಸಾಮಾನ್ಯ ದೋಷ"
@@ -17187,9 +17060,8 @@ msgid "Check folder permissions"
msgstr "ಫೋಲ್ಡರ್ ಅನುಮತಿಗಳನ್ನು ಪರೀಕ್ಷಿಸಿ"
#: ../plugins/external-editor/apps-evolution-external-editor.schemas.in.h:1
-#, fuzzy
msgid "Default External Editor"
-msgstr "ಹೊರಗಿನ ಸಂಪಾದಕ"
+msgstr "ಡೀಫಾಲ್ಟ್‍ ಹೊರಗಿನ ಸಂಪಾದಕ"
#: ../plugins/external-editor/apps-evolution-external-editor.schemas.in.h:2
msgid "The default command that must be used as the editor."
@@ -17207,9 +17079,8 @@ msgid "External Editor"
msgstr "ಹೊರಗಿನ ಸಂಪಾದಕ"
#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:1
-#, fuzzy
msgid "Cannot create Temporary File"
-msgstr "ಒಂದು ಹೊಸ ಕಾರ್ಯಕ್ರಮವನ್ನು ಉಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
+msgstr "ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ನಿರ್ಮಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
#: ../plugins/external-editor/org-gnome-external-editor-errors.xml.h:2
msgid "Editor not launchable"
@@ -17228,9 +17099,8 @@ msgid ""
msgstr ""
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:1
-#, fuzzy
msgid "Compose in _External Editor"
-msgstr "ಹೊರಗಿನ ಸಂಪಾದಕ"
+msgstr "ಹೊರಗಿನ ಸಂಪಾದಕದಲ್ಲಿ ಬರೆ"
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:2
msgid "Compose messages using an external editor"
@@ -17295,9 +17165,8 @@ msgid "Google"
msgstr "ಗೂಗಲ್"
#: ../plugins/google-account-setup/google-source.c:493
-#, fuzzy
msgid "Please enter user name first."
-msgstr "ದಯವಿಟ್ಟು ಬೇರೊಂದು ಹೆಸರನ್ನು ಸೂಚಿಸಿ."
+msgstr "ದಯವಿಟ್ಟು ಮೊದಲು ಬಳಕೆದಾರ ಹೆಸರನ್ನು ಸೂಚಿಸಿ."
#: ../plugins/google-account-setup/google-source.c:497
#, c-format
@@ -17312,32 +17181,17 @@ msgid ""
msgstr ""
#: ../plugins/google-account-setup/google-source.c:747
-#, fuzzy
msgid "Cal_endar:"
-msgstr "ಕ್ಯಾಲೆಂಡರ್(_C):"
+msgstr "ಕ್ಯಾಲೆಂಡರ್(_e):"
#: ../plugins/google-account-setup/google-source.c:782
-#, fuzzy
msgid "Retrieve _list"
-msgstr "ಪಟ್ಟಿಯನ್ನು ಪುನಶ್ಚೇತನಗೊಳಿಸು"
+msgstr "ಪಟ್ಟಿಯನ್ನು ಮರಳಿ ಪಡೆ(_l)"
-#: ../plugins/google-account-setup/google-contacts-source.c:198
+#: ../plugins/google-account-setup/google-contacts-source.c:268
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
-#, fuzzy
msgid "<b>Server</b>"
-msgstr "<b>ಸದಸ್ಯರು</b>"
-
-#: ../plugins/google-account-setup/google-contacts-source.c:208
-#, fuzzy
-msgid "Username:"
-msgstr "ಬಳಕೆದಾರ ಹೆಸರು(_n):"
-
-#. Translators: This is the first half of the sentence "Update
-#. * every NNN minute(s)", where NNN is a spin button widget.
-#: ../plugins/google-account-setup/google-contacts-source.c:233
-#, fuzzy
-msgid "Update every"
-msgstr "ಬಿಡುವು/ಕಾರ್ಯನಿರತವನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡು(_U)"
+msgstr "<b>ಪರಿಚಾರಕ</b>"
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
msgid "A plugin to setup google calendar and contacts."
@@ -17384,20 +17238,20 @@ msgstr ""
#: ../plugins/groupwise-features/junk-mail-settings.c:78
msgid "Junk Settings"
-msgstr ""
+msgstr "ಜಂಕ್ ಸಂಯೋಜನೆಗಳು"
#: ../plugins/groupwise-features/junk-mail-settings.c:91
#: ../plugins/groupwise-features/junk-settings.glade.h:3
msgid "Junk Mail Settings"
-msgstr ""
+msgstr "ಜಂಕ್ ಮೈಲ್ ಸಂಯೋಜನೆಗಳು"
#: ../plugins/groupwise-features/junk-mail-settings.c:115
msgid "Junk Mail Settings..."
-msgstr ""
+msgstr "ಜಂಕ್ ಮೈಲ್ ಸಂಯೋಜನೆಗಳು..."
#: ../plugins/groupwise-features/junk-settings.glade.h:1
msgid "<b>Junk List:</b>"
-msgstr ""
+msgstr "<b>ಜಂಕ್ ಪಟ್ಟಿ:</b>"
#: ../plugins/groupwise-features/junk-settings.glade.h:2
msgid "Email:"
@@ -17414,10 +17268,9 @@ msgstr "ಸಕ್ರಿಯಗೊಳಿಸು(_E)"
#: ../plugins/groupwise-features/junk-settings.glade.h:7
msgid "_Junk List"
-msgstr ""
+msgstr "ಜಂಕ್ ಪಟ್ಟಿ(_J)"
#: ../plugins/groupwise-features/mail-retract.c:53
-#, fuzzy
msgid "Message Retract"
msgstr "ಸಂದೇಶ ಹೆಡರ್"
@@ -17460,71 +17313,59 @@ msgstr "ಆಯ್ದ ಸಂದೇಶಗಳನ್ನು ಕಾರ್ಯಕ್ಕ
#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:1
#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:3
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:1
-#, fuzzy
msgid "Invalid user"
-msgstr "ಅಮಾನ್ಯ ಆರ್ಗ್ಯುಮೆಂಟ್‍ಗಳು"
+msgstr "ಅಮಾನ್ಯ ಬಳಕೆದಾರ"
#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:2
-#, fuzzy
msgid "Proxy access cannot be given to user &quot;{0}&quot;"
-msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ."
+msgstr "&quot;{0}&quot; ಬಳಕೆದಾರನಿಗೆ ಪ್ರಾಕ್ಸಿ ಅನುಮತಿಯನ್ನು ಒದಗಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ"
#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:3
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:2
-#, fuzzy
msgid "Specify User"
-msgstr "ಬಳಕೆದಾರನನ್ನು ಆರಿಸು"
+msgstr "ಬಳಕೆದಾರನನ್ನು ಸೂಚಿಸು"
#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:4
-#, fuzzy
msgid "You have already given proxy permissions to this user."
-msgstr "ಈ ಮೈಲನ್ನು ಅಳಿಸಲು ನಿಮಗೆ ಸಾಕಷ್ಟು ಅನುಮತಿಗಳಿಲ್ಲ."
+msgstr "ನೀವು ಈಗಾಗಲೆ ಈ ಬಳಕೆದಾರನಿಗೆ ಪ್ರಾಕ್ಸಿ ಅನುಮತಿಗಳನ್ನು ಒದಗಿಸಿದ್ದೀರಿ."
#: ../plugins/groupwise-features/org-gnome-proxy-errors.xml.h:5
msgid "You have to specify a valid user name to give proxy rights."
-msgstr ""
+msgstr "ಪ್ರಾಕ್ಸಿ ಹಕ್ಕುಗಳನ್ನು ನೀಡಲು ನೀವು ಒಂದು ಮಾನ್ಯವಾದ ಬಳಕೆದಾರ ಹೆಸರನ್ನು ಸೂಚಿಸಬೇಕಾಗುತ್ತದೆ."
#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:1
-#, fuzzy
msgid "Account &quot;{0}&quot; already exists. Please check your folder tree."
-msgstr ""
-"&quot;{0}&quot; ಎಂಬ ಹೆಸರಿನ ಫೋಲ್ಡರ್ ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ಬೇರೊಂದು "
-"ಹೆಸರನ್ನು ಬಳಸಿ."
+msgstr "&quot;{0}&quot; ಎಂಬ ಹೆಸರಿನ ಖಾತೆಯು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಕೋಶ ಟ್ರೀ ಅನ್ನು ಪರೀಕ್ಷಿಸಿ."
#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:2
-#, fuzzy
msgid "Account Already Exists"
-msgstr "ಸಂಪರ್ಕ ಐಡಿ ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
+msgstr "ಖಾತೆಯು ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:4
msgid ""
"Proxy login as &quot;{0}&quot; was unsuccessful. Please check your email "
"address and try again."
-msgstr ""
+msgstr "&quot;{0}&quot; ಆಗಿ ಲಾಗಿನ್ ಆಗುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೈಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗು ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ."
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:3
-#, fuzzy
msgid "This is a recurring meeting"
-msgstr "ಇದನ್ನು ಒಂದು ಪುನರಾವರ್ತಿತ ಕಾರ್ಯಕ್ರಮವಾಗಿಸು"
+msgstr "ಇದು ಒಂದು ಪುನರಾವರ್ತನೆಗೊಳ್ಳುವ ಮೀಟಿಂಗ್"
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:4
-#, fuzzy
msgid "Would you like to accept it?"
-msgstr "ನಿಮ್ಮ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಲು ಬಯಸುತ್ತೀರಾ?"
+msgstr "ನೀವಿದನ್ನು ಒಪ್ಪಿಕೊಳ್ಳಲು ಬಯಸುತ್ತೀರಾ?"
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:5
-#, fuzzy
msgid "Would you like to decline it?"
-msgstr "ನಿಮ್ಮ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಲು ಬಯಸುತ್ತೀರಾ?"
+msgstr "ನೀವಿದನ್ನು ತಿರಸ್ಕರಿಸಲು ಬಯಸುತ್ತೀರಾ?"
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:6
-#, fuzzy
msgid "You cannot share folder with specified user &quot;{0}&quot;"
msgstr "&quot;{0}&quot; ಫೋಲ್ಡರನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ."
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:7
msgid "You have to specify a user name whom you want to add to the list"
-msgstr ""
+msgstr "ನೀವು ಯಾರನ್ನು ಪಟ್ಟಿಗೆ ಸೇರಿಸಲು ಬಯಸುತ್ತೀರೋ ಆ ಬಳಕೆದಾರನ ಹೆಸರನ್ನು ಸೂಚಿಸಬೇಕು"
#: ../plugins/groupwise-features/process-meeting.c:49
msgid "Accept Tentatively"
@@ -17536,7 +17377,7 @@ msgstr "<b>ಬಳಕೆದಾರರು:</b>"
#: ../plugins/groupwise-features/properties.glade.h:2
msgid "C_ustomize notification message"
-msgstr ""
+msgstr "ಸೂಚನಾ ಸಂದೇಶವನ್ನು ಕಸ್ಟಮೈಸ್‌ಗೊಳಿಸು(_u)"
#: ../plugins/groupwise-features/properties.glade.h:3
msgid "Con_tacts..."
@@ -17553,19 +17394,19 @@ msgstr ""
#: ../plugins/groupwise-features/properties.glade.h:8
msgid "The participants will receive the following notification.\n"
-msgstr ""
+msgstr "ಭಾಗವಹಿಸು ಎಲ್ಲರೂ ಈ ಕೆಳಗಿನ ಸೂಚನೆಯನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತಾರೆ.\n"
#: ../plugins/groupwise-features/properties.glade.h:12
msgid "_Not Shared"
-msgstr ""
+msgstr "ಹಂಚಲಾಗಿಲ್ಲ(_N)"
#: ../plugins/groupwise-features/properties.glade.h:14
msgid "_Shared With..."
-msgstr ""
+msgstr "ಇವರೊಂದಿಗೆ ಹಂಚಲಾಗಿದೆ(_S)..."
#: ../plugins/groupwise-features/properties.glade.h:15
msgid "_Sharing"
-msgstr ""
+msgstr "ಹಂಚಿಕೆ(_S)"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:1
msgid "<b>Name</b>"
@@ -17573,7 +17414,7 @@ msgstr "<b>ಹೆಸರು</b>"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:2
msgid "Access Rights"
-msgstr ""
+msgstr "ಅನುಮತಿಯ ಹಕ್ಕುಗಳು"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:3
msgid "Add/Edit"
@@ -17585,11 +17426,11 @@ msgstr "ಸಂಪರ್ಕವಿಳಾಸಗಳು(_t)"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:7
msgid "Modify _folders/options/rules/"
-msgstr ""
+msgstr "ಕೋಶಗಳನ್ನು/ಆಯ್ಕೆಗಗಳನ್ನು/ನಿಯಮಗಳನ್ನು/ ಮಾರ್ಪಡಿಸಿ(_f)"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:8
msgid "Read items marked _private"
-msgstr ""
+msgstr "ಖಾಸಗಿ ಎಂದು ಗುರುತು ಹಾಕಲಾದ ಅಂಶಗಳನ್ನು ಓದು(_p)"
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:9
msgid "Reminder Notes"
@@ -17609,9 +17450,8 @@ msgstr "ಬರೆ(_W)"
#. To Translators: strip the part in front of the | and the | itself
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:15
-#, fuzzy
msgid "permission to read|_Read"
-msgstr "ಅನುಮತಿಯು ನಿರಾಕರಿಸಲ್ಪಟ್ಟಿದೆ"
+msgstr "ಓದಲು ಅನುಮತಿ"
#: ../plugins/groupwise-features/proxy-listing.glade.h:1
msgid "Proxy"
@@ -17642,11 +17482,11 @@ msgstr "ಪ್ರಾಕ್ಸಿ ಪ್ರವೇಶ(_P)..."
#: ../plugins/groupwise-features/proxy.c:691
msgid "The Proxy tab will be available only when the account is online."
-msgstr ""
+msgstr "ಖಾತೆಯು ಆನ್‌ಲೈನ್‌ನಲ್ಲಿದ್ದಾಗ ಮಾತ್ರ ಪ್ರಾಕ್ಸಿ ಟ್ಯಾಬ್ ಲಭ್ಯವಾಗಿರುತ್ತದೆ."
#: ../plugins/groupwise-features/proxy.c:696
msgid "The Proxy tab will be available only when the account is enabled."
-msgstr ""
+msgstr "ಖಾತೆಯು ಶಕ್ತಗೊಂಡಿದ್ದಾಗ ಮಾತ್ರ ಪ್ರಾಕ್ಸಿ ಟ್ಯಾಬ್ ಲಭ್ಯವಾಗಿರುತ್ತದೆ."
#: ../plugins/groupwise-features/share-folder-common.c:319
#: ../plugins/groupwise-features/share-folder.c:750
@@ -17655,20 +17495,19 @@ msgstr "ಬಳಕೆದಾರರು"
#: ../plugins/groupwise-features/share-folder-common.c:320
msgid "Enter the users and set permissions"
-msgstr ""
+msgstr "ಬಳಕೆದಾರನನ್ನು ನಮೂದಿಸಿ ಹಾಗು ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸಿ"
#: ../plugins/groupwise-features/share-folder-common.c:339
msgid "New _Shared Folder..."
-msgstr ""
+msgstr "ಹಂಚಲಾದ ಹೊಸ ಕೋಶ(_S)..."
#: ../plugins/groupwise-features/share-folder-common.c:447
msgid "Sharing"
-msgstr ""
+msgstr "ಹಂಚಿಕೆ"
#: ../plugins/groupwise-features/share-folder.c:533
-#, fuzzy
msgid "Custom Notification"
-msgstr "ಜಸ್ತಿಫಿಕೇಶನ್"
+msgstr "ಕಸ್ಟಮ್ ಸೂಚನೆ"
#: ../plugins/groupwise-features/share-folder.c:755
msgid "Add "
@@ -17680,7 +17519,7 @@ msgstr "ಮಾರ್ಪಡಿಸು"
#: ../plugins/groupwise-features/status-track.c:105
msgid "Message Status"
-msgstr ""
+msgstr "ಸಂದೇಶದ ಸ್ಥಿತಿ"
#. Subject
#: ../plugins/groupwise-features/status-track.c:119
@@ -17729,7 +17568,7 @@ msgstr "ತಲುಪಿಸಲಾಗಿಲ್ಲ: "
#: ../plugins/groupwise-features/status-track.c:249
msgid "Track Message Status..."
-msgstr ""
+msgstr "ಸಂದೇಶದ ಸ್ಥಿತಿಯ ಜಾಡನ್ನು ಹಿಡಿ..."
#: ../plugins/hula-account-setup/org-gnome-evolution-hula-account-setup.eplug.xml.h:1
msgid "A plugin to setup hula calendar sources."
@@ -17737,7 +17576,7 @@ msgstr ""
#: ../plugins/hula-account-setup/org-gnome-evolution-hula-account-setup.eplug.xml.h:2
msgid "Hula Account Setup"
-msgstr ""
+msgstr "Hula ಖಾತೆ ಸೆಟ್ಅಪ್"
#: ../plugins/imap-features/imap-headers.c:320
msgid "Custom Headers"
@@ -17761,7 +17600,7 @@ msgstr ""
#: ../plugins/imap-features/imap-headers.glade.h:4
msgid "Fetch A_ll Headers"
-msgstr ""
+msgstr "ಎಲ್ಲಾ ಹೆಡರುಗಳನ್ನು ಪಡೆದುಕೋ(_l)"
#: ../plugins/imap-features/imap-headers.glade.h:5
msgid ""
@@ -17775,6 +17614,8 @@ msgid ""
"Select your IMAP Header Preferences. \n"
"The more headers you have the more time it will take to download."
msgstr ""
+"ನಿಮ್ಮ IMAP ಹೆಡರ್ ಆದ್ಯತೆಗಳನ್ನು ಆರಿಸಿ. \n"
+"ಹೆಡರುಗಳನ್ನು ಹೆಚ್ಚಿದ್ದಷ್ಟೂ ಅದು ಡೌನ್‌ಲೋಡ್‌ ಮಾಡಿಕೊಳ್ಳಲು ಹೆಚ್ಚಿನ ಸಮಯ ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ."
#: ../plugins/imap-features/imap-headers.glade.h:9
msgid ""
@@ -17784,7 +17625,7 @@ msgstr ""
#: ../plugins/imap-features/org-gnome-imap-features.eplug.xml.h:1
msgid "A plugin for the features in the IMAP accounts."
-msgstr ""
+msgstr "IMAP ಖಾತೆಗಳಲ್ಲಿನ ಸವಲತ್ತುಗಳಿಗಾಗಿನ ಒಂದು ಪ್ಲಗ್ಇನ್."
#: ../plugins/imap-features/org-gnome-imap-features.eplug.xml.h:2
msgid "IMAP Features"
@@ -17822,7 +17663,7 @@ msgstr "ಕ್ಯಾಲೆಂಡರ್‍ಗೆ ಆಮದು ಮಾಡಿಕೊ"
#: ../plugins/import-ics-attachments/org-gnome-evolution-mail-attachments-import-ics.eplug.xml.h:3
msgid "Imports ICS attachments to calendar."
-msgstr ""
+msgstr "ICS ಅಟ್ಯಾಚ್‌ಮೆಂಟುಗಳನ್ನು ಕ್ಯಾಲೆಂಡರಿಗೆ ಆಮದು ಮಾಡಿಕೊಳ್ಳಲಾಗುತ್ತಿದೆ."
#: ../plugins/ipod-sync/evolution-ipod-sync.c:34
msgid "Hardware Abstraction Layer not loaded"
@@ -17836,7 +17677,7 @@ msgstr ""
#: ../plugins/ipod-sync/evolution-ipod-sync.c:68
msgid "Search for an iPod failed"
-msgstr ""
+msgstr "ಒಂದು ಐಪಾಡ್‌ಗಾಗಿ ಹುಡುಕುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ"
#: ../plugins/ipod-sync/evolution-ipod-sync.c:69
msgid ""
@@ -17847,7 +17688,7 @@ msgstr ""
#: ../plugins/ipod-sync/ical-format.c:118
#: ../plugins/save-calendar/ical-format.c:163
msgid "iCalendar format (.ics)"
-msgstr ""
+msgstr "ಐಕ್ಯಾಲೆಂಡರ್ ಫಾರ್ಮಾಟ್(.ics)"
#: ../plugins/ipod-sync/org-gnome-ipod-sync-evolution.eplug.xml.h:1
msgid "Synchronize the selected task/memo/calendar/addressbook with Apple iPod"
@@ -17875,7 +17716,7 @@ msgstr ""
#: ../plugins/itip-formatter/itip-formatter.c:614
#, c-format
msgid "Found the appointment in the calendar '%s'"
-msgstr ""
+msgstr "'%s' ಕ್ಯಾಲೆಂಡರಿನಲ್ಲಿ ಅಪಾಯಿಂಟ್‌ಮೆಂಟ್‌ ಕಂಡುಬಂದಿದೆ"
#: ../plugins/itip-formatter/itip-formatter.c:690
msgid "Unable to find any calendars"
@@ -17883,29 +17724,28 @@ msgstr "ಯಾವುದೆ ಕ್ಯಾಲೆಂಡರುಗಳು ಕಂಡು
#: ../plugins/itip-formatter/itip-formatter.c:697
msgid "Unable to find this meeting in any calendar"
-msgstr ""
+msgstr "ಈ ಮೀಟಿಂಗ್ ಯಾವುದೆ ಕ್ಯಾಲೆಂಡರಿನಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ"
#: ../plugins/itip-formatter/itip-formatter.c:701
msgid "Unable to find this task in any task list"
-msgstr ""
+msgstr "ಈ ಕಾರ್ಯವು ಯಾವುದೆ ಕಾರ್ಯ ಪಟ್ಟಿಯಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ"
#: ../plugins/itip-formatter/itip-formatter.c:705
msgid "Unable to find this memo in any memo list"
-msgstr ""
+msgstr "ಈ ಮೆಮೊ ಯಾವುದೆ ಮೆಮೊ ಪಟ್ಟಿಯಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ"
#: ../plugins/itip-formatter/itip-formatter.c:776
-#, fuzzy
msgid "Searching for an existing version of this appointment"
-msgstr "ಆವೃತ್ತಿ"
+msgstr "ಈ ಅಪಾಯಿಂಟ್‌ಮೆಂಟಿನ ಈಗಿನ ಒಂದು ಆವೃತ್ತಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ"
#: ../plugins/itip-formatter/itip-formatter.c:945
msgid "Unable to parse item"
-msgstr ""
+msgstr "ಅಂಶವನ್ನು ಪಾರ್ಸ್ ಮಾಡಲಾಗಿಲ್ಲ"
#: ../plugins/itip-formatter/itip-formatter.c:1003
-#, fuzzy, c-format
+#, c-format
msgid "Unable to send item to calendar '%s'. %s"
-msgstr "'%s' ಕ್ಯಾಲೆಂಡರಿಗೆ . %s"
+msgstr "'%s' ಕ್ಯಾಲೆಂಡರಿಗೆ ಅಂಶವನ್ನು ಕಳುಹಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. %s"
#: ../plugins/itip-formatter/itip-formatter.c:1015
#, c-format
@@ -17993,12 +17833,11 @@ msgstr ""
#: ../plugins/itip-formatter/itip-formatter.c:1435
#: ../plugins/itip-formatter/itip-formatter.c:1517
msgid "The item in the calendar is not valid"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರಿನಲ್ಲಿನ ಅಂಶವು ಮಾನ್ಯವಾದುದಲ್ಲ"
#: ../plugins/itip-formatter/itip-formatter.c:1418
#: ../plugins/itip-formatter/itip-formatter.c:1436
#: ../plugins/itip-formatter/itip-formatter.c:1518
-#, fuzzy
msgid ""
"The message does contain a calendar, but the calendar contains no events, "
"tasks or free/busy information"
@@ -18006,13 +17845,13 @@ msgstr "ಬಿಡುವಿರುವ/ಕಾರ್ಯನಿರತ(_F)"
#: ../plugins/itip-formatter/itip-formatter.c:1447
msgid "The calendar attached contains multiple items"
-msgstr ""
+msgstr "ಲಗತ್ತಿಸಲಾದ ಕ್ಯಾಲೆಂಡರ್ ಅನೇಕ ಅಂಶಗಳನ್ನು ಒಳಗೊಂಡಿದೆ"
#: ../plugins/itip-formatter/itip-formatter.c:1448
msgid ""
"To process all of these items, the file should be saved and the calendar "
"imported"
-msgstr ""
+msgstr "ಈ ಎಲ್ಲಾ ಅಂಶಗಳನ್ನು ಸಂಸ್ಕರಿಸಲು, ಕಡತವನ್ನು ಉಳಿಸಬೇಕು ಹಾಗು ಕ್ಯಾಲೆಂಡರ್ ಅನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳಬೇಕು"
#: ../plugins/itip-formatter/itip-formatter.c:2148
msgid "This meeting recurs"
@@ -18202,12 +18041,12 @@ msgstr "<b>%s</b> ನ ಪರವಾಗಿ ಸ್ವೀಕರಿಸಲಾಗಿದ
#: ../plugins/itip-formatter/itip-view.c:356
#, c-format
msgid "<b>%s</b> through %s has published the following meeting information:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್ ಮಾಹಿತಿಯನ್ನು <b>%s</b> %s ಮೂಲಕ ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:358
#, c-format
msgid "<b>%s</b> has published the following meeting information:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್ ಮಾಹಿತಿಯನ್ನು <b>%s</b> ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:363
#, c-format
@@ -18217,49 +18056,49 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:366
#, c-format
msgid "<b>%s</b> through %s requests your presence at the following meeting:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್‌ನಲ್ಲಿ ನೀವು ಇರಬೇಕೆಂದು <b>%s</b> %s ಮೂಲಕ ಮನವಿ ಮಾಡಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:368
#, c-format
msgid "<b>%s</b> requests your presence at the following meeting:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್‌ನಲ್ಲಿ ನೀವು ಇರಬೇಕೆಂದು <b>%s</b> ಮನವಿ ಮಾಡಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:374
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing meeting:"
-msgstr ""
+msgstr "ಈಗಿರುವ ಒಂದು ಮೀಟಿಂಗ್‌ಗೆ <b>%s</b> %s ಮೂಲಕ ಸೇರಿಸಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:376
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting:"
-msgstr ""
+msgstr "ಈಗಿರುವ ಒಂದು ಮೀಟಿಂಗ್‌ಗೆ <b>%s</b> ಸೇರಿಸಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:380
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
"following meeting:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್‌ನ ಬಗ್ಗೆ <b>%s</b> %s ಮೂಲಕ ಇತ್ತೀಚಿನ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:382
#, c-format
msgid "<b>%s</b> wishes to receive the latest information for the following meeting:"
-msgstr ""
+msgstr "ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್‌ನ ಬಗ್ಗೆ <b>%s</b> ಇತ್ತೀಚಿನ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:386
#, c-format
msgid "<b>%s</b> through %s has sent back the following meeting response:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್ ಪ್ರತ್ಯುತ್ತರವನ್ನು ಹಿಂದಕ್ಕೆ ಕಳುಹಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:388
#, c-format
msgid "<b>%s</b> has sent back the following meeting response:"
-msgstr ""
+msgstr "<b>%s</b> ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗ್ ಪ್ರತ್ಯುತ್ತರವನ್ನು ಹಿಂದಕ್ಕೆ ಕಳುಹಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:392
#, c-format
msgid "<b>%s</b> through %s has canceled the following meeting:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈ ಕೆಳಗಿನ ಮೀಟಿಂಗನ್ನು ರದ್ದು ಮಾಡಿದ್ದಾರೆ."
#: ../plugins/itip-formatter/itip-view.c:394
#, c-format
@@ -18289,12 +18128,12 @@ msgstr "<b>%s</b> ವು ಈ ಕೆಳಗಿನ ಬದಲಾವಣೆಗಳನ
#: ../plugins/itip-formatter/itip-view.c:444
#, c-format
msgid "<b>%s</b> through %s has published the following task:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:446
#, c-format
msgid "<b>%s</b> has published the following task:"
-msgstr ""
+msgstr "<b>%s</b> ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:451
#, c-format
@@ -18304,7 +18143,7 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:454
#, c-format
msgid "<b>%s</b> through %s has assigned you a task:"
-msgstr ""
+msgstr "ನಿಮಗೆ <b>%s</b> %s ಮೂಲಕ ಒಂದು ಕಾರ್ಯವನ್ನು ನಿಯೋಜಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:456
#, c-format
@@ -18314,26 +18153,26 @@ msgstr "<b>%s</b> ಇಂದ ನಿಮಗೆ ಒಂದು ಕಾರ್ಯವನ
#: ../plugins/itip-formatter/itip-view.c:462
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing task:"
-msgstr ""
+msgstr "ಈಗಿರುವ ಒಂದು ಕಾರ್ಯಕ್ಕೆ <b>%s</b> %s ಮೂಲಕ ಸೇರಿಸಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:464
#, c-format
msgid "<b>%s</b> wishes to add to an existing task:"
-msgstr ""
+msgstr "<b>%s</b> ಈಗಿರುವ ಒಂದು ಕಾರ್ಯಕ್ಕೆ ಸೇರಿಸಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:468
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
"following assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯದ ಬಗ್ಗೆ <b>%s</b> %s ಮೂಲಕ ಇತ್ತೀಚಿನ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:470
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following "
"assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯದ ಬಗ್ಗೆ <b>%s</b> ಇತ್ತೀಚಿನ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊಳ್ಳಲು ಬಯಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:474
#, c-format
@@ -18348,12 +18187,12 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:480
#, c-format
msgid "<b>%s</b> through %s has canceled the following assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು <b>%s</b> %s ಮೂಲಕ ರದ್ದು ಮಾಡಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:482
#, c-format
msgid "<b>%s</b> has canceled the following assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು <b>%s</b> ರದ್ದು ಮಾಡಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:486
#, c-format
@@ -18368,42 +18207,42 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:492
#, c-format
msgid "<b>%s</b> through %s has declined the following assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು <b>%s</b> %s ಮೂಲಕ ತಿರಸ್ಕರಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:494
#, c-format
msgid "<b>%s</b> has declined the following assigned task:"
-msgstr ""
+msgstr "ನಿಯೋಜಿಸಲಾದ ಈ ಕೆಳಗಿನ ಕಾರ್ಯವನ್ನು <b>%s</b> ತಿರಸ್ಕರಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:532
#, c-format
msgid "<b>%s</b> through %s has published the following memo:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈ ಕೆಳಗಿನ ಮೆಮೊವನ್ನು ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:534
#, c-format
msgid "<b>%s</b> has published the following memo:"
-msgstr ""
+msgstr "<b>%s</b> ಈ ಕೆಳಗಿನ ಮೆಮೊವನ್ನು ಪ್ರಕಟಿಸಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:539
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing memo:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈಗಿರುವ ಒಂದು ಮೆಮೊಗೆ ಸೇರಿಸಲು ಬಯಸುತ್ತಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:541
#, c-format
msgid "<b>%s</b> wishes to add to an existing memo:"
-msgstr ""
+msgstr "<b>%s</b> ಈಗಿರುವ ಒಂದು ಮೆಮೊಗೆ ಸೇರಿಸಲು ಬಯಸುತ್ತಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:545
#, c-format
msgid "<b>%s</b> through %s has canceled the following shared memo:"
-msgstr ""
+msgstr "<b>%s</b> %s ಮೂಲಕ ಈ ಕೆಳಗಿನ ಹಂಚಲಾದ ಮೆಮೊವನ್ನು ರದ್ದು ಮಾಡಿದ್ದಾರೆ:"
#: ../plugins/itip-formatter/itip-view.c:547
#, c-format
msgid "<b>%s</b> has canceled the following shared memo:"
-msgstr ""
+msgstr "<b>%s</b> ಈ ಕೆಳಗಿನ ಹಂಚಲಾದ ಮೆಮೊವನ್ನು ರದ್ದು ಮಾಡಿದ್ದಾರೆ:"
#. Everything gets the open button
#: ../plugins/itip-formatter/itip-view.c:818
@@ -18457,7 +18296,7 @@ msgstr ""
#: ../plugins/itip-formatter/itip-view.c:848
msgid "_Update"
-msgstr ""
+msgstr "ಅಪ್ಡೇಟ್ ಮಾಡು(_U)"
#. Start time
#: ../plugins/itip-formatter/itip-view.c:1012
@@ -18481,15 +18320,15 @@ msgstr "ಕಳುಹಿಸಿದವರಿಗೆ ಪ್ರತ್ಯುತ್ತ
#: ../plugins/itip-formatter/itip-view.c:1101
msgid "Send _updates to attendees"
-msgstr ""
+msgstr "ಅಪ್ಡೇಟುಗಳನ್ನು ಭಾಗವಹಿಸುವವರಿಗೆ ಕಳುಹಿಸು(_u)"
#: ../plugins/itip-formatter/itip-view.c:1110
msgid "_Apply to all instances"
-msgstr ""
+msgstr "ಎಲ್ಲಾ ಸಂದರ್ಭಗಳಿಗೂ ಅನ್ವಯಿಸು(_A)"
#: ../plugins/itip-formatter/itip-view.c:1119
msgid "Show time as _free"
-msgstr ""
+msgstr "ಸಮಯವನ್ನು ಬಿಡುವು ಎಂದು ತೋರಿಸು(_f)"
#: ../plugins/itip-formatter/itip-view.c:1852
msgid "_Tasks :"
@@ -18501,7 +18340,7 @@ msgstr "ಮೆಮೊಗಳು :"
#: ../plugins/itip-formatter/org-gnome-itip-formatter.eplug.xml.h:1
msgid "Displays text/calendar parts in messages."
-msgstr ""
+msgstr "ಪಠ್ಯ/ಕ್ಯಾಲೆಂಡರ್ ಭಾಗಗಳನ್ನು ಸಂದೇಶಗಳಲ್ಲಿ ತೋರಿಸುತ್ತದೆ."
#: ../plugins/itip-formatter/org-gnome-itip-formatter.eplug.xml.h:2
msgid "Itip Formatter"
@@ -18514,16 +18353,17 @@ msgid ""
msgstr ""
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:3
+#, fuzzy
msgid "This meeting has been delegated"
-msgstr ""
+msgstr "ಈ ಮೀಟಿಂಗ್ ಅನ್ನು ಡೆಲಿಗೇಟ್ ಮಾಡಲಾಗಿದೆ"
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:4
msgid "This response is not from a current attendee. Add the sender as an attendee?"
-msgstr ""
+msgstr "ಈ ಪ್ರತಿಕ್ರಿಯೆಯು ಈಗಿರುವ ಭಾಗವಹಿಸುವವರಲ್ಲಿ ಒಬ್ಬರಿಂದ ಬಂದಿಲ್ಲ. ಕಳುಹಿಸದವರನ್ನು ಭಾಗವಹಿಸುವವರಲ್ಲಿ ಒಬ್ಬರು ಎಂದು ಸೇರಿಸಬೇಕೆ? "
#: ../plugins/mail-account-disable/mail-account-disable.c:47
msgid "Proxy _Logout"
-msgstr ""
+msgstr "ಪ್ರಾಕ್ಸಿ ಲಾಗ್ಔಟ್(_L)"
#: ../plugins/mail-account-disable/org-gnome-mail-account-disable.eplug.xml.h:1
msgid "Allows disabling of accounts."
@@ -18535,87 +18375,87 @@ msgstr "ಖಾತೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸ
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:1
msgid "Beep or play sound file."
-msgstr ""
+msgstr "ಬೀಪ್ ಮಾಡು ಅಥವ ಶಬ್ಧ ಕಡತವನ್ನು ಪ್ಲೇ ಮಾಡು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:2
msgid "Blink icon in notification area."
-msgstr ""
+msgstr "ಸೂಚನಾ ಜಾಗದಲ್ಲಿ ಚಿಹ್ನೆಯನ್ನು ಮಿನುಗಿಸು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:3
msgid "Enable D-Bus messages."
-msgstr ""
+msgstr "ಡಿ-ಬಸ್ ಸಂದೇಶಗಳನ್ನು ಶಕ್ತಗೊಳಿಸು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:4
msgid "Enable icon in notification area."
-msgstr ""
+msgstr "ಸೂಚನಾ ಜಾಗದಲ್ಲಿ ಚಿಹ್ನೆಯನ್ನು ಶಕ್ತಗೊಳಿಸು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:5
msgid "Generates a D-Bus message when new mail messages arrive."
-msgstr ""
+msgstr "ಹೊಸ ಮೈಲ್‌ ಸಂದೇಶಗಳು ಬಂದಾಗ ಒಂದು ಡಿ-ಬಸ್ ಸಂದೇಶವನ್ನು ನಿರ್ಮಿಸುತ್ತದೆ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:6
msgid ""
"If \"true\", then beep, otherwise will play sound file when new messages "
"arrive."
msgstr ""
+"\"true\" ಆಗಿದ್ದಲ್ಲಿ, ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ ಬೀಪ್ ಶಬ್ಧವನ್ನು ಮಾಡುತ್ತದೆ, ಇಲ್ಲದೆ ಹೋದಲ್ಲಿ ಬೇರೆ "
+"ಶಬ್ಧ ಕಡತವನ್ನು ಪ್ಲೇ ಮಾಡುತ್ತದೆ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:7
msgid "Notify new messages for Inbox only."
-msgstr ""
+msgstr "ಇನ್‌ಬಾಕ್ಸಿಗೆ ಬಂದ ಹೊಸ ಸಂದೇಶಗಳನ್ನು ಮಾತ್ರ ಸೂಚಿಸು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:8
msgid "Play sound when new messages arrive."
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ ಶಬ್ಧವನ್ನು ಪ್ಲೇ ಮಾಡು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:9
msgid "Popup message together with the icon."
-msgstr ""
+msgstr "ಸಂದೇಶವನ್ನು ಚಿಹ್ನೆಯೊಂದಿಗೆ ಪುಟಿಸು(ಪಾಪ್ಅಪ್)."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:10
msgid "Show new mail icon in notification area when new messages arrive."
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ ಸೂಚನಾ ಸ್ಥಳದಲ್ಲಿ ಹೊಸ ಮೈಲ್‌ನ ಚಿಹ್ನೆಯನ್ನು ತೋರಿಸು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:11
msgid "Sound file name to be played."
-msgstr ""
+msgstr "ಪ್ಲೇ ಮಾಡಬೇಕಿರುವ ಶಬ್ಧ ಕಡತದ ಹೆಸರು."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:12
msgid "Sound file to be played when new messages arrive, if not in beep mode."
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ, ಬೀಪ್ ಕ್ರಮದಲ್ಲಿ ಇರದೆ ಹೋದಲ್ಲಿ ಪ್ಲೇ ಮಾಡಬೇಕಿರುವ ಶಬ್ಧದ ಕಡತ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:13
msgid "Whether play sound or beep when new messages arrive."
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ ಒಂದು ಶಬ್ಧವನ್ನು ಅಥವ ಬೀಪ್ ಅನ್ನು ಪ್ಲೇ ಮಾಡಬೇಕೆ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:14
msgid "Whether show message over the icon when new messages arrive."
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಾಗ ಚಿಹ್ನೆಯಲ್ಲಿ ಸಂದೇಶವನ್ನು ತೋರಿಸಬೇಕೆ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:15
msgid "Whether the icon should blink or not."
-msgstr ""
+msgstr "ಚಿಹ್ನೆಯು ಮಿನುಗಬೇಕೆ ಅಥವ ಬೇಡವೆ."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:16
msgid "Whether to notify new messages in Inbox folder only."
-msgstr ""
+msgstr "ಕೇವಲ ಇನ್‌ಬಾಕ್ಸ್‍ ಕೋಶದಲ್ಲಿ ಮಾತ್ರ ಹೊಸ ಸಂದೇಶವನ್ನು ಸೂಚಿಸಬೇಕೆ."
#: ../plugins/mail-notification/mail-notification.c:254
msgid "Generate a _D-Bus message"
-msgstr ""
+msgstr "ಒಂದು ಡಿ-ಬಸ್ ಸಂದೇಶವನ್ನು ನಿರ್ಮಿಸು(_D)"
#: ../plugins/mail-notification/mail-notification.c:377
-#, fuzzy
msgid "Evolution's Mail Notification"
-msgstr "ಇವಲ್ಯೂಶನ್ ಮೈಲ್"
+msgstr "ಇವಲ್ಯೂಶನ್‌ನ ಮೈಲ್ ಸೂಚನೆ"
#: ../plugins/mail-notification/mail-notification.c:398
-#, fuzzy
msgid "Mail Notification Properties"
-msgstr "ಕಾರ್ಯ ಪಟ್ಟಿಯ ಗುಣಲಕ್ಷಣಗಳು"
+msgstr "ಮೈಲ್ ಸೂಚನೆಯ ಗುಣಲಕ್ಷಣಗಳು"
#. To translators: '%d' is the number of mails recieved and '%s' is the name of the folder
#: ../plugins/mail-notification/mail-notification.c:457
-#, fuzzy, c-format
+#, c-format
msgid ""
"You have received %d new message\n"
"in %s."
@@ -18623,18 +18463,18 @@ msgid_plural ""
"You have received %d new messages\n"
"in %s."
msgstr[0] ""
-"ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶಗಳು\n"
+"ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶವು\n"
"%s ನಲ್ಲಿ ಬಂದಿವೆ."
msgstr[1] ""
-"ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶಗಳು\n"
+"ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶವು\n"
"%s ನಲ್ಲಿ ಬಂದಿವೆ."
#: ../plugins/mail-notification/mail-notification.c:462
-#, fuzzy, c-format
+#, c-format
msgid "You have received %d new message."
msgid_plural "You have received %d new messages."
-msgstr[0] "ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಿವೆ."
-msgstr[1] "ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶಗಳು ಬಂದಿವೆ."
+msgstr[0] "ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶವು ಬಂದಿದೆ."
+msgstr[1] "ನಿಮಗೆ %d ಹೊಸ ಸಂದೇಶವು ಬಂದಿದೆ."
#: ../plugins/mail-notification/mail-notification.c:479
#: ../plugins/mail-notification/mail-notification.c:484
@@ -18643,19 +18483,19 @@ msgstr "ಹೊಸ ಇಮೇಲ್"
#: ../plugins/mail-notification/mail-notification.c:541
msgid "Show icon in _notification area"
-msgstr ""
+msgstr "ಸೂಚನಾ ಜಾಗದಲ್ಲಿ ಚಿಹ್ನೆಯನ್ನು ತೋರಿಸು(_n)"
#: ../plugins/mail-notification/mail-notification.c:544
msgid "B_link icon in notification area"
-msgstr ""
+msgstr "ಸೂಚನಾ ಜಾಗದಲ್ಲಿ ಚಿಹ್ನೆಯನ್ನು ಮಿನುಗಿಸು(_l)"
#: ../plugins/mail-notification/mail-notification.c:546
msgid "Popup _message together with the icon"
-msgstr ""
+msgstr "ಸಂದೇಶವನ್ನು ಚಿಹ್ನೆಯೊಂದಿಗೆ ಪುಟಿಸು(ಪಾಪ್ಅಪ್)(_m)"
#: ../plugins/mail-notification/mail-notification.c:727
msgid "_Play sound when new messages arrive"
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶವು ಬಂದಾಗ ಶಬ್ಧವನ್ನು ಪ್ಲೇ ಮಾಡು(_P)"
#: ../plugins/mail-notification/mail-notification.c:733
msgid "_Beep"
@@ -18663,7 +18503,7 @@ msgstr "ಬೀಪ್(_B)"
#: ../plugins/mail-notification/mail-notification.c:734
msgid "Play _sound file"
-msgstr ""
+msgstr "ಶಬ್ಧ ಕಡತವನ್ನು ಪ್ಲೇ ಮಾಡು(_s)"
#: ../plugins/mail-notification/mail-notification.c:745
msgid "Specify _filename:"
@@ -18671,15 +18511,15 @@ msgstr "ಕಡತದ ಹೆಸರನ್ನು ಸೂಚಿಸಿ (_f):"
#: ../plugins/mail-notification/mail-notification.c:746
msgid "Select sound file"
-msgstr ""
+msgstr "ಶಬ್ಧ ಕಡತವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
#: ../plugins/mail-notification/mail-notification.c:747
msgid "Pl_ay"
-msgstr ""
+msgstr "ಪ್ಲೇ ಮಾಡು(_a)"
#: ../plugins/mail-notification/mail-notification.c:804
msgid "Notify new messages for _Inbox only"
-msgstr ""
+msgstr "ಹೊಸ ಸಂದೇಶಗಳು ಇನ್‌ಬಾಕ್ಸಿಗೆ ಬಂದಾಗ ಮಾತ್ರ ಸೂಚಿಸು(_I)"
#: ../plugins/mail-notification/org-gnome-mail-notification.eplug.xml.h:1
msgid ""
@@ -18689,13 +18529,13 @@ msgstr ""
#: ../plugins/mail-notification/org-gnome-mail-notification.eplug.xml.h:2
msgid "Mail Notification"
-msgstr ""
+msgstr "ಮೈಲ್ ಸೂಚನೆ"
#: ../plugins/mail-to-meeting/org-gnome-mail-to-meeting.eplug.xml.h:1
msgid ""
"A plugin which allows the creation of meetings from the contents of a mail "
"message."
-msgstr ""
+msgstr "ಒಂದು ಮೈಲ್‌ ಸಂದೇಶದಲ್ಲಿರುವ ವಿಷಯಗಳಿಂದ ಮೀಟಿಂಗ್‌ಗಳನ್ನು ರಚಿಸಲು ಅನುವು ಮಾಡಿಕೊಡುವ ಒಂದು ಪ್ಲಗ್‌ಇನ್ ಇದಾಗಿದೆ."
#: ../plugins/mail-to-meeting/org-gnome-mail-to-meeting.eplug.xml.h:2
msgid "Con_vert to Meeting"
@@ -18714,13 +18554,13 @@ msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ತೆಗೆಯಲಾಗಿಲ
msgid ""
"Selected source is read only, thus cannot create task there. Select other "
"source, please."
-msgstr ""
+msgstr "ಆರಿಸಲಾದ ಆಕರವು ಕೇವಲ ಓದಲು ಮಾತ್ರವಾಗಿದೆ, ಆದ್ದರಿಂದ ಅಲ್ಲಿ ಒಂದು ಕಾರ್ಯವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು ಬೇರೊಂದು ಆಕರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ."
#: ../plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml.h:1
msgid ""
"A plugin which allows the creation of tasks from the contents of a mail "
"message."
-msgstr ""
+msgstr "ಒಂದು ಮೈಲ್‌ ಸಂದೇಶದಲ್ಲಿರುವ ವಿಷಯಗಳಿಂದ ಕಾರ್ಯಗಳನ್ನು ರಚಿಸಲು ಅನುವು ಮಾಡಿಕೊಡುವ ಒಂದು ಪ್ಲಗ್‌ಇನ್ ಇದಾಗಿದೆ."
#: ../plugins/mail-to-task/org-gnome-mail-to-task.eplug.xml.h:2
#: ../plugins/mail-to-task/org-gnome-mail-to-task.xml.h:1
@@ -18737,19 +18577,19 @@ msgstr "ಆಯ್ದ ಸಂದೇಶಗಳನ್ನು ಕಾರ್ಯಕ್ಕ
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:1
msgid "Contact list _owner"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಮಾಲಿಕನನ್ನು ಸಂಪರ್ಕಿಸು(_o)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:2
msgid "Get list _archive"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಆರ್ಕೈವನ್ನು ಪಡೆದುಕೊ(_a)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:3
msgid "Get list _usage information"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಬಳಕೆಯ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊ(_u)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:4
msgid "Mailing List Actions"
-msgstr ""
+msgstr "ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿನ ಕಾರ್ಯಗಳು"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:5
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:7
@@ -18762,11 +18602,11 @@ msgstr ""
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:7
msgid "_Post message to list"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿಗೆ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸು(_P)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:8
msgid "_Subscribe to list"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿಗೆ ಚಂದಾದಾರನಾಗು(_S)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml.h:9
msgid "_Un-subscribe to list"
@@ -18787,25 +18627,25 @@ msgstr ""
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:5
msgid "Malformed header"
-msgstr ""
+msgstr "ಸಮರ್ಪಕವಾಗಿಲ್ಲದ ಹೆಡರ್"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:6
msgid "No e-mail action"
-msgstr ""
+msgstr "ಯಾವುದೆ ಇಮೈಲ್‌ ಕಾರ್ಯಗಳಿಲ್ಲ"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:7
msgid "Posting not allowed"
-msgstr ""
+msgstr "ಕಳುಹಿಸಲು ಅನುಮತಿ ಇಲ್ಲ"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:8
msgid ""
"Posting to this mailing list is not allowed. Possibly, this is a read-only "
"mailing list. Contact the list owner for details."
-msgstr ""
+msgstr "ಈ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸಂದೇಶ ಕಳುಹಿಸಲು ಅನುಮತಿ ಇಲ್ಲ. ಬಹುಷಃ, ಇದು ಕೇವಲ ಓದಲು ಮಾತ್ರ ಇರುವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟ್‍ ಆಗಿರಬಹುದು. ವಿವರಗಳಿಗಾಗಿ ಲಿಸ್ಟಿನ ಮಾಲಿಕರನ್ನು ಸಂಪರ್ಕಿಸಿ."
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:9
msgid "Send e-mail message to mailing list?"
-msgstr ""
+msgstr "ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಒಂದು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಬೇಕೆ?"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:10
msgid ""
@@ -18821,12 +18661,15 @@ msgid ""
"\n"
"Header: {1}"
msgstr ""
+"ಈ ಸಂದೇಶದ {0} ಹೆಡರ್ ಸರಿಯಾಗಿಲ್ಲ ಆದ್ದರಿಂದ ಮುಂದುರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ .\n"
+"\n"
+"ಹೆಡರ್: {1}"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:16
msgid ""
"This message does not contain the header information required for this "
"action."
-msgstr ""
+msgstr "ಈ ಕಾರ್ಯಕ್ಕೆ ಅಗತ್ಯವಿರುವ ಯಾವುದೆ ಹೆಡರ್ ಮಾಹಿತಿಯನ್ನು ಈ ಸಂದೇಶವು ಹೊಂದಿಲ್ಲ."
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.error.xml.h:17
msgid "_Edit message"
@@ -18838,35 +18681,35 @@ msgstr "ಸಂದೇಶವನ್ನು ಕಳುಹಿಸು(_S)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:1
msgid "Contact List _Owner"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಮಾಲಿಕನನ್ನು ಸಂಪರ್ಕಿಸು(_O)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:2
msgid "Contact the owner of the mailing list this message belongs to"
-msgstr ""
+msgstr "ಈ ಸಂದೇಶವು ಯಾವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸೇರಿದೆಯೊ ಅದರ ಒಂದು ಮಾಲಿಕನನ್ನು ಸಂಪರ್ಕಿಸು"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:3
msgid "Get List _Archive"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಆರ್ಕೈವನ್ನು ಪಡೆದುಕೊ(_A)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:4
msgid "Get List _Usage Information"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿನ ಬಳಕೆಯ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊ(_U)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:5
msgid "Get an archive of the list this message belongs to"
-msgstr ""
+msgstr "ಈ ಸಂದೇಶವು ಯಾವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸೇರಿದೆಯೊ ಅದರ ಒಂದು ಆರ್ಕೈವನ್ನು ಪಡೆದುಕೊ"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:6
msgid "Get information about the usage of the list this message belongs to"
-msgstr ""
+msgstr "ಈ ಸಂದೇಶವು ಯಾವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸೇರಿದೆಯೊ ಅದರ ಬಗ್ಗೆ ಮಾಹಿತಿಯನ್ನು ಪಡೆದುಕೊ"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:8
msgid "Post a message to the mailing list this message belongs to"
-msgstr ""
+msgstr "ಈ ಸಂದೇಶವು ಯಾವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸೇರಿದೆಯೊ ಅದಕ್ಕೆ ಒಂದು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸು"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:9
msgid "Subscribe to the mailing list this message belongs to"
-msgstr ""
+msgstr "ಈ ಸಂದೇಶವು ಯಾವ ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿಗೆ ಸೇರಿದೆಯೊ ಅದಕ್ಕೆ ಚಂದಾದಾರನಾಗು"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:10
msgid "Unsubscribe to the mailing list this message belongs to"
@@ -18874,20 +18717,19 @@ msgstr ""
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:11
msgid "_Post Message to List"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿಗೆ ಸಂದೇಶವನ್ನು ಕಳುಹಿಸು (_P)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:12
msgid "_Subscribe to List"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿಗೆ ಚಂದಾದಾರನಾಗಿಸು(_S)"
#: ../plugins/mailing-list-actions/org-gnome-mailing-list-actions.xml.h:13
msgid "_Unsubscribe from List"
-msgstr ""
+msgstr "ಲಿಸ್ಟಿಂದ ಚಂದಾದಾರಿಕೆಯನ್ನು ತ್ಯಜಿಸು(_U)"
#: ../plugins/mark-all-read/mark-all-read.c:37
-#, fuzzy
msgid "Also mark messages in subfolders?"
-msgstr "ಸಂದೇಶಗಳನ್ನು %s ಫೋಲ್ಡರಿಗೆ ಸ್ಥಳಾಂತರಿಸಲಾಗುತ್ತಿದೆ"
+msgstr "ಉಪಕೋಶದಲ್ಲಿನ ಸಂದೇಶಗಳನ್ನೂ ಸಹ ಗುರುತುಹಾಕು?"
#: ../plugins/mark-all-read/mark-all-read.c:39
msgid ""
@@ -18896,22 +18738,20 @@ msgid ""
msgstr ""
#: ../plugins/mark-all-read/mark-all-read.c:162
-#, fuzzy
msgid "Current Folder and _Subfolders"
-msgstr "ಪ್ರಸ್ತುತ ಫೋಲ್ಡರ್"
+msgstr "ಪ್ರಸ್ತುತ ಕೋಶ ಹಾಗು ಉಪಕೋಶಗಳು(_S)"
#: ../plugins/mark-all-read/mark-all-read.c:174
-#, fuzzy
msgid "Current _Folder Only"
-msgstr "ಪ್ರಸ್ತುತ ಫೋಲ್ಡರ್"
+msgstr "ಪ್ರಸ್ತುತ ಕೋಶ ಮಾತ್ರ(_F)"
#: ../plugins/mark-all-read/org-gnome-mark-all-read.eplug.xml.h:1
msgid "Mark All Read"
-msgstr ""
+msgstr "ಎಲ್ಲವೂ ಓದಲಾಗಿದೆಯೆಂದು ಗುರುತು ಹಾಕು"
#: ../plugins/mark-all-read/org-gnome-mark-all-read.eplug.xml.h:2
msgid "Mark Me_ssages as Read"
-msgstr ""
+msgstr "ಸಂದೇಶವನ್ನು ಓದಲಾಗದೆ ಎಂದು ಗುರುತು ಹಾಕು(_s)"
#: ../plugins/mark-all-read/org-gnome-mark-all-read.eplug.xml.h:3
msgid "Used for marking all the messages under a folder as read"
@@ -18919,41 +18759,41 @@ msgstr ""
#: ../plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.xml.h:1
msgid "Mark calendar offline"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರನ್ನು ಆಫ್‌ಲೈನ್‌ಗಾಗಿ ಇರಿಸಿಕೊ"
#: ../plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.xml.h:2
msgid "Marks the selected calendar for offline viewing."
-msgstr ""
+msgstr "ಆಯ್ಕೆ ಮಾಡಲಾದ ಕ್ಯಾಲೆಂಡರುಗಳನ್ನು ಆಫ್‌ಲೈನ್‌ ಬಳಕೆಗಾಗಿ ಇರಿಸಿಕೊಳ್ಳುತ್ತದೆ."
#: ../plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.xml.h:3
msgid "_Do not make available for offline use"
-msgstr ""
+msgstr "ಆಫ್‌ಲೈನ್‌ ಬಳಕೆಗಾಗಿ ಇರಿಸಿಕೊಳ್ಳಬೇಡ(_M)"
#: ../plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.xml.h:4
msgid "_Make available for offline use"
-msgstr ""
+msgstr "ಆಫ್‌ಲೈನ್‌ ಬಳಕೆಗಾಗಿ ಇರಿಸಿಕೊ(_M)"
#: ../plugins/mono/org-gnome-evolution-mono.eplug.xml.h:1
msgid "A plugin which implements mono plugins."
-msgstr ""
+msgstr "ಮೋನೊ ಪ್ಲಗ್ಇನ್‌ಗಳನ್ನು ಅನ್ವಯಿಸುವ ಒಂದು ಪ್ಲಗ್ಇನ್."
#: ../plugins/mono/org-gnome-evolution-mono.eplug.xml.h:2
msgid "Mono Loader"
-msgstr ""
+msgstr "ಮೋನೊ ಲೋಡರ್"
#: ../plugins/plugin-manager/org-gnome-plugin-manager.eplug.xml.h:1
msgid "A plugin for managing which plugins are enabled or disabled."
-msgstr ""
+msgstr "ಯಾವ ಪ್ಲಗ್ಇನ್‌ ಅನ್ನು ಶಕ್ತಗೊಳಿಸಬೇಕು ಅಥವ ಅಶಕ್ತಗೊಳಿಸಬೇಕು ಎಂಬುದನ್ನು ನಿರ್ವಹಿಸುವ ಒಂದು ಪ್ಲಗ್ಇನ್."
#. Setup the ui
#: ../plugins/plugin-manager/org-gnome-plugin-manager.eplug.xml.h:2
#: ../plugins/plugin-manager/plugin-manager.c:236
msgid "Plugin Manager"
-msgstr ""
+msgstr "ಪ್ಲಗ್‌ಇನ್‌ ವ್ಯವಸ್ಥಾಪಕ"
#: ../plugins/plugin-manager/org-gnome-plugin-manager.xml.h:1
msgid "Enable and disable plugins"
-msgstr ""
+msgstr "ಪ್ಲಗ್‌ಇನ್‌ಗಳನ್ನು ಶಕ್ತಗೊಳಿಸು ಹಾಗು ಅಶಕ್ತಗೊಳಿಸು"
#: ../plugins/plugin-manager/org-gnome-plugin-manager.xml.h:2
msgid "_Plugins"
@@ -19015,7 +18855,7 @@ msgstr "HT_ML ಬಗೆ"
#: ../plugins/profiler/org-gnome-evolution-profiler.eplug.xml.h:1
msgid "Evolution Profiler"
-msgstr ""
+msgstr "ಇವಲ್ಯೂಶನ್ ಪ್ರೊಫೈಲರ್"
#: ../plugins/profiler/org-gnome-evolution-profiler.eplug.xml.h:2
msgid "Writes a log of profiling data events."
@@ -19023,11 +18863,11 @@ msgstr ""
#: ../plugins/publish-calendar/org-gnome-publish-calendar.eplug.xml.h:1
msgid "Allows calendars to be published to the web"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರುಗಳನ್ನು ಜಾಲದಲ್ಲಿ ಪ್ರಕಟಿಸಲು ಅನುವು ಮಾಡಿಕೊಡುತ್ತದೆ"
#: ../plugins/publish-calendar/org-gnome-publish-calendar.eplug.xml.h:2
msgid "Calendar Publishing"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರ್ ಪ್ರಕಟಪಡಿಸುವಿಕೆ"
#: ../plugins/publish-calendar/org-gnome-publish-calendar.eplug.xml.h:3
msgid "Locations"
@@ -19035,7 +18875,7 @@ msgstr "ತಾಣಗಳು"
#: ../plugins/publish-calendar/org-gnome-publish-calendar.xml.h:1
msgid "_Publish Calendar Information"
-msgstr ""
+msgstr "ಕ್ಯಾಲೆಂಡರ್ ಮಾಹಿತಿಯನ್ನು ಪ್ರಕಟಪಡಿಸು(_P)"
#: ../plugins/publish-calendar/publish-calendar.c:595
msgid "Are you sure you want to remove this URL?"
@@ -19047,7 +18887,7 @@ msgstr "<span weight=\"bold\">ತಾಣ</span>"
#: ../plugins/publish-calendar/publish-calendar.glade.h:4
msgid "<span weight=\"bold\">Sources</span>"
-msgstr ""
+msgstr "<span weight=\"bold\">ಆಕರಗಳು</span>"
#: ../plugins/publish-calendar/publish-calendar.glade.h:6
msgid ""
@@ -19055,6 +18895,9 @@ msgid ""
"Weekly\n"
"Manual (via Actions menu)"
msgstr ""
+"ಪ್ರತಿದಿನ\n"
+"ಪ್ರತಿವಾರ\n"
+"ಕೈಯಾರೆ (ಕ್ರಿಯೆಗಳ ಮೆನ್ಯುಗಳ ಮೂಲಕ)"
#: ../plugins/publish-calendar/publish-calendar.glade.h:9
msgid "E_nable"
@@ -19066,11 +18909,11 @@ msgstr "ಸಂಪರ್ಕಸ್ಥಾನ(_o):"
#: ../plugins/publish-calendar/publish-calendar.glade.h:11
msgid "Publishing Location"
-msgstr ""
+msgstr "ಪ್ರಕಟಪಡಿಸುವ ಸ್ಥಳ"
#: ../plugins/publish-calendar/publish-calendar.glade.h:12
msgid "Publishing _Frequency:"
-msgstr ""
+msgstr "ಪ್ರಕಟಪಡಿಸುವ ಆವರ್ತನ(_F):"
#: ../plugins/publish-calendar/publish-calendar.glade.h:13
msgid ""
@@ -19104,11 +18947,11 @@ msgstr "ಗುಪ್ತಪದ(_P):"
#: ../plugins/publish-calendar/publish-calendar.glade.h:24
msgid "_Publish as:"
-msgstr ""
+msgstr "ಹೀಗೆ ಪ್ರಕಟಪಡಿಸು(_P):"
#: ../plugins/publish-calendar/publish-calendar.glade.h:25
msgid "_Remember password"
-msgstr ""
+msgstr "ಗುಪ್ತಪದಗಳನ್ನು ನೆನಪಿಟ್ಟುಕೊ(_R)"
#: ../plugins/publish-calendar/publish-calendar.glade.h:27
msgid "_Username:"
@@ -19123,29 +18966,28 @@ msgstr ""
"ಬಿಡುವು/ಕಾರ್ಯನಿರತ"
#: ../plugins/python/example/org-gnome-hello-python-ui.xml.h:1
-#, fuzzy
msgid "Hello Python"
-msgstr "ಮನೆಯ ದೂರವಾಣಿ"
+msgstr "ಹೆಲೋ ಪೈಥಾನ್"
#: ../plugins/python/example/org-gnome-hello-python-ui.xml.h:2
msgid "Python Plugin Loader tests"
-msgstr ""
+msgstr "ಪೈಥಾನ್ ಪ್ಲಗ್ಇನ್ ಲೋಡರ್ ಪರೀಕ್ಷಿಸುತ್ತಿದೆ"
#: ../plugins/python/example/org-gnome-hello-python.eplug.xml.h:1
msgid "Python Test Plugin"
-msgstr ""
+msgstr "ಪೈಥಾನ್ ಪರೀಕ್ಷಾರ್ಥ ಪ್ಲಗ್ಇನ್"
#: ../plugins/python/example/org-gnome-hello-python.eplug.xml.h:2
msgid "Test Plugin for Python EPlugin loader."
-msgstr ""
+msgstr "ಪೈಥಾನ್ ಇಪ್ಲಗ್ಇನ್‌ ಲೋಡರಿಗಾಗಿನ ಪರೀಕ್ಷಾರ್ಥ ಪ್ಲಗ್ಇನ್."
#: ../plugins/python/org-gnome-evolution-python.eplug.xml.h:1
msgid "A plugin which loads other plugins written using python."
-msgstr ""
+msgstr "ಪೈಥಾನ್ ಬಳಸಿಕೊಂಡು ಬರೆಯಲಾದ ಇನ್ನಿತರೆ ಪ್ಲಗ್ಇನ್‌ಗಳನ್ನು ಲೋಡ್‌ ಮಾಡುವ ಪ್ಗಗ್ಇನ್."
#: ../plugins/python/org-gnome-evolution-python.eplug.xml.h:2
msgid "Python Loader"
-msgstr ""
+msgstr "ಪೈಥಾನ್ ಲೋಡರ್"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:108
msgid "SpamAssassin (built-in)"
@@ -19154,80 +18996,78 @@ msgstr "SpamAssassin (built-in)"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:134
#, c-format
msgid "SpamAssassin not found, code: %d"
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಕಂಡು ಬರುತ್ತಿಲ್ಲ, ಕೋಡ್: %d"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:142
#: ../plugins/sa-junk-plugin/em-junk-filter.c:150
-#, fuzzy, c-format
+#, c-format
msgid "Failed to create pipe: %s"
-msgstr "'%s' ಕ್ಯಾಲೆಂಡರನ್ನು ಲೋಡ್ ಮಾಡುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ"
+msgstr "ಪೈಪನ್ನು ನಿರ್ಮಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ :%s"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:189
-#, fuzzy, c-format
+#, c-format
msgid "Error after fork: %s"
-msgstr ""
-"%s ನಲ್ಲಿ ದೋಷ:\n"
-" %s"
+msgstr "ಫೋರ್ಕಿನ ನಂತರ ದೋಷ ಉಂಟಾಗಿದೆ: %s"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:244
#, c-format
msgid "SpamAssassin child process does not respond, killing..."
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಉಪ ಪ್ರಕ್ರಿಯೆಯು ಪ್ರತಿಕ್ರಿಯಿಸುತ್ತಿಲ್ಲ, ನಿಲ್ಲಿಸಲಾಗುತ್ತಿದೆ..."
#: ../plugins/sa-junk-plugin/em-junk-filter.c:246
#, c-format
msgid "Wait for Spamassassin child process interrupted, terminating..."
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಉಪ ಪ್ರಕ್ರಿಯೆಗಾಗಿ ಕಾಯುವಲ್ಲಿ ತಡೆಯುಂಟಾಗಿದೆ, ಅಂತ್ಯಗೊಳಿಸಲಾಗುತ್ತಿದೆ..."
#: ../plugins/sa-junk-plugin/em-junk-filter.c:255
#, c-format
msgid "Pipe to SpamAssassin failed, error code: %d"
-msgstr ""
+msgstr "ಪೈಪ್‌ಗೆ ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಮಾಡುವುದು ವಿಫಲಗೊಂಡಿದೆ, ದೋಷ ಕೋಡ್: %d"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:498
-#, fuzzy, c-format
+#, c-format
msgid "SpamAssassin is not available."
-msgstr "ಕ್ರಿಯೆಯು ಲಭ್ಯವಿಲ್ಲ"
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಲಭ್ಯವಿಲ್ಲ."
#: ../plugins/sa-junk-plugin/em-junk-filter.c:865
msgid "This will make SpamAssassin more reliable, but slower"
-msgstr ""
+msgstr "ಇದು ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಅನ್ನು ಇನ್ನಷ್ಟು ನಂಬುವಂತೆ ಮಾಡುತ್ತದೆ, ಆದರೆ ವೇಗವು ತಗ್ಗುತ್ತದೆ"
#: ../plugins/sa-junk-plugin/em-junk-filter.c:871
msgid "I_nclude remote tests"
-msgstr ""
+msgstr "ದೂರಸ್ಥ ಪರೀಕ್ಷೆಗಳನ್ನು ಒಳಗೊಳ್ಳಿಸು(_n)"
#: ../plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml.h:1
msgid ""
"Filters junk messages using SpamAssassin. This plugin requires SpamAssassin "
"to be installed."
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಬಳಸಿಕೊಂಡು ಜಂಕ್‌ ಸಂದೇಶಗಳನ್ನು ಫಿಲ್ಟರ್ ಮಾಡುತ್ತದೆ. ಈ ಪ್ಲಗ್ಇನ್‌ಗಾಗಿ ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಬೇಕಾಗುತ್ತದೆ. "
#: ../plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml.h:2
msgid "SpamAssassin junk plugin"
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಜಂಕ್‌ ಪ್ಲಗ್ಇನ್"
#: ../plugins/sa-junk-plugin/org-gnome-sa-junk-plugin.eplug.xml.h:3
msgid "Spamassassin Options"
-msgstr ""
+msgstr "ಸ್ಪ್ಯಾಮ್‌ಅಸಾಸಿನ್ ಆಯ್ಕೆಗಳು"
#: ../plugins/save-attachments/org-gnome-save-attachments.eplug.xml.h:1
msgid "A plugin for saving all attachments or parts of a message at once."
-msgstr ""
+msgstr "ಎಲ್ಲಾ ಅಟ್ಯಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ಅಥವ ಒಂದು ಸಂದೇಶದ ಒಂದು ಭಾಗವನ್ನು ಒಮ್ಮೆಲೆ ಉಳಿಸಲು ಒಂದು ಪ್ಲಗ್‌ಇನ್‌."
#. the path to the shared library
#: ../plugins/save-attachments/org-gnome-save-attachments.eplug.xml.h:3
#: ../plugins/save-attachments/save-attachments.c:314
msgid "Save attachments"
-msgstr ""
+msgstr "ಅಟ್ಯಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ಉಳಿಸು"
#: ../plugins/save-attachments/org-gnome-save-attachments.xml.h:1
msgid "Save Attachments..."
-msgstr ""
+msgstr "ಅಟ್ಯಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ಉಳಿಸು..."
#: ../plugins/save-attachments/org-gnome-save-attachments.xml.h:2
msgid "Save all attachments"
-msgstr ""
+msgstr "ಎಲ್ಲಾ ಅಟ್ಯಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ಉಳಿಸು"
#: ../plugins/save-attachments/save-attachments.c:320
msgid "Select save base name"
@@ -19263,11 +19103,11 @@ msgstr "ವರ್ಗಗಳ ಪಟ್ಟಿ"
#: ../plugins/save-calendar/csv-format.c:364
msgid "Comment List"
-msgstr ""
+msgstr "ಟಿಪ್ಪಣಿ ಪಟ್ಟಿ"
#: ../plugins/save-calendar/csv-format.c:366
msgid "Created"
-msgstr ""
+msgstr "ನಿರ್ಮಿಸಲಾಗಿದೆ"
#: ../plugins/save-calendar/csv-format.c:367
msgid "Contact List"
@@ -19291,7 +19131,7 @@ msgstr "URL"
#: ../plugins/save-calendar/csv-format.c:374
msgid "Attendees List"
-msgstr ""
+msgstr "ಪಾಳ್ಗೊಳ್ಳುವವರ ಪಟ್ಟಿ"
#: ../plugins/save-calendar/csv-format.c:376
msgid "Modified"
@@ -19299,7 +19139,7 @@ msgstr "ಮಾರ್ಪಡಿಸಲಾದ"
#: ../plugins/save-calendar/csv-format.c:531
msgid "Advanced options for the CSV format"
-msgstr ""
+msgstr "CSV ಮಾದರಿಗಾಗಿ ಸುಧಾರಿತ ಆಯ್ಕೆಗಳು"
#: ../plugins/save-calendar/csv-format.c:538
msgid "Prepend a header"
@@ -19307,11 +19147,11 @@ msgstr ""
#: ../plugins/save-calendar/csv-format.c:547
msgid "Value delimiter:"
-msgstr ""
+msgstr "ಮೌಲ್ಯ ಡಿಲಿಮಿಟರ್:"
#: ../plugins/save-calendar/csv-format.c:553
msgid "Record delimiter:"
-msgstr ""
+msgstr "ರೆಕಾರ್ಡ್ ಡಿಲಿಮಿಟರ್:"
#: ../plugins/save-calendar/csv-format.c:559
msgid "Encapsulate values with:"
@@ -19348,15 +19188,15 @@ msgstr "RDF ವಿನ್ಯಾಸ (.rdf)"
#: ../plugins/save-calendar/save-calendar.c:160
msgid "Select destination file"
-msgstr ""
+msgstr "ಉದ್ದೇಶಿತ ಕಡತವನ್ನು ಆರಿಸು"
#: ../plugins/select-one-source/org-gnome-select-one-source.eplug.xml.h:1
msgid "Select one source"
-msgstr ""
+msgstr "ಒಂದು ಆಕರವನ್ನು ಆರಿಸು"
#: ../plugins/select-one-source/org-gnome-select-one-source.eplug.xml.h:2
msgid "Selects a single calendar or task source for viewing."
-msgstr ""
+msgstr "ನೋಡಲು ಒಂದು ಕ್ಯಾಲೆಂಡರ್ ಅಥವ ಕಾರ್ಯ ಆಕರವನ್ನು ಆರಿಸುತ್ತದೆ."
#: ../plugins/select-one-source/org-gnome-select-one-source.eplug.xml.h:3
msgid "Show _only this Calendar"
@@ -19372,12 +19212,11 @@ msgstr "ಕೇವಲ ಈ ಕಾರ್ಯ ಪಟ್ಟಿಯನ್ನು ತೋ
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:1
msgid "Guides you through your initial account setup."
-msgstr ""
+msgstr "ಆರಂಭಿಕ ಖಾತೆ ಸಂಯೋಜನೆಗೆ ನಿಮಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡುತ್ತದೆ."
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:2
-#, fuzzy
msgid "Setup Assistant"
-msgstr "ಸಹಾಯಕ"
+msgstr "ಹೊಂದಿಸುವ ಸಹಾಯಕ"
#: ../plugins/startup-wizard/startup-wizard.c:83
msgid "Evolution Setup Assistant"
@@ -19407,7 +19246,7 @@ msgstr "ಕಡತವನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳಲಾ
#: ../plugins/startup-wizard/startup-wizard.c:135
#: ../shell/e-shell-importer.c:143
msgid "Please select the information that you would like to import:"
-msgstr ""
+msgstr "ದಯವಿಟ್ಟು ನೀವು ಆಮದು ಮಾಡಿಕೊಳ್ಳಲು ಬಯಸುವ ಮಾಹಿತಿಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ:"
#: ../plugins/startup-wizard/startup-wizard.c:150
#: ../shell/e-shell-importer.c:396
@@ -19450,19 +19289,16 @@ msgid ""
msgstr ""
#: ../plugins/templates/templates.c:614
-#, fuzzy
msgid "No title"
-msgstr "ಉದ್ಯೋಗದ ಶೀರ್ಷಿಕೆ"
+msgstr "ಯಾವುದೆ ಶೀರ್ಷಿಕೆ ಇಲ್ಲ"
#: ../plugins/templates/templates.c:743
-#, fuzzy
msgid "Save as _Template"
-msgstr "ಡ್ರಾಫ್ಟ್‍ ಆಗಿ ಉಳಿಸು"
+msgstr "ಮಾದರಿಯಾಗಿ ಆಗಿ ಉಳಿಸು(_T)"
#: ../plugins/templates/templates.c:745
-#, fuzzy
msgid "Save as Template"
-msgstr "ಡ್ರಾಫ್ಟ್‍ ಆಗಿ ಉಳಿಸು"
+msgstr "ಮಾದರಿಯಾಗಿ ಆಗಿ ಉಳಿಸು"
#: ../plugins/templates/org-gnome-templates.eplug.xml.h:1
msgid "Drafts based template plugin"
@@ -19478,27 +19314,25 @@ msgstr "TNEF ಅಟ್ಯಾಚ್‍ಮೆಂಟ್ ಡಿಕೋಡರ್"
#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:1
msgid "A plugin to setup WebDAV contacts."
-msgstr ""
+msgstr "WebDAV ಸಂಪರ್ಕಗಳನ್ನು ಸಿದ್ಧಗೊಳಿಸಲು ಬೇಕಿರುವ ಒಂದು ಪ್ಲಗ್‌ಇನ್."
#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:2
-#, fuzzy
msgid "WebDAV contacts"
-msgstr "ಯಾವುದೆ ಸಂಪರ್ಕವಿಳಾಸಗಳಿಲ್ಲ"
+msgstr "WebDAV ಸಂಪರ್ಕವಿಳಾಸಗಳು"
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:69
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:74
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:100
msgid "WebDAV"
-msgstr ""
+msgstr "WebDAV"
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:311
-#, fuzzy
msgid "URL:"
-msgstr "_URL:"
+msgstr "URL:"
#: ../plugins/webdav-account-setup/webdav-contacts-source.c:338
msgid "_Avoid IfMatch (needed on apache < 2.2.8)"
-msgstr ""
+msgstr "IfMatch ಅನ್ನು ತಪ್ಪಿಸು(apache < 2.2.8 ಯಲ್ಲಿ ಅಗತ್ಯವಿದೆ)(_A)"
#: ../shell/GNOME_Evolution_Shell.server.in.in.h:1
msgid "Evolution Shell"
@@ -19518,63 +19352,57 @@ msgstr "ಇವಲ್ಯೂಶನ್ ಪರೀಕ್ಷಾ ಘಟಕ"
#: ../shell/apps_evolution_shell.schemas.in.h:1
msgid "Authenticate proxy server connections"
-msgstr ""
+msgstr "ಪ್ರಾಕ್ಸಿ ಪರಿಚಾರಕ ಸಂರಚನೆಗಳನ್ನು ದೃಢೀಕರಿಸು"
#: ../shell/apps_evolution_shell.schemas.in.h:2
-#, fuzzy
msgid "Automatic proxy configuration URL"
-msgstr "ಪೈಲಟ್ ಸಂರಚನೆಯನ್ನು ತಯಾರುಗೊಳಿಸಿ"
+msgstr "ಸ್ವಯಂಚಾಲಿತ ಪ್ರಾಕ್ಸಿ ಸಂರಚನೆಯ ಯುಆರ್ಎಲ್"
#: ../shell/apps_evolution_shell.schemas.in.h:3
msgid "Configuration version"
msgstr "ಸಂರಚನಾ ಆವೃತ್ತಿ"
#: ../shell/apps_evolution_shell.schemas.in.h:4
-msgid "Decides whether the crash detection should be run or not."
-msgstr ""
-
-#: ../shell/apps_evolution_shell.schemas.in.h:5
msgid "Default sidebar width"
msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ಬದಿಯ ಪಟ್ಟಿಯ ಅಗಲ"
-#: ../shell/apps_evolution_shell.schemas.in.h:6
+#: ../shell/apps_evolution_shell.schemas.in.h:5
msgid "Default window height"
msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ವಿಂಡೋ ಎತ್ತರ"
-#: ../shell/apps_evolution_shell.schemas.in.h:7
+#: ../shell/apps_evolution_shell.schemas.in.h:6
msgid "Default window state"
msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ವಿಂಡೋ ಸ್ಥಿತಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:8
+#: ../shell/apps_evolution_shell.schemas.in.h:7
msgid "Default window width"
msgstr "ಪೂರ್ವನಿಯೋಜಿತವಾದ ವಿಂಡೋ ಅಗಲ"
-#: ../shell/apps_evolution_shell.schemas.in.h:9
+#: ../shell/apps_evolution_shell.schemas.in.h:8
msgid "Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:10
+#: ../shell/apps_evolution_shell.schemas.in.h:9
msgid "HTTP proxy host name"
-msgstr ""
+msgstr "HTTP ಪ್ರಾಕ್ಸಿ ಅತಿಥೇಯದ ಹೆಸರು"
-#: ../shell/apps_evolution_shell.schemas.in.h:11
-#, fuzzy
+#: ../shell/apps_evolution_shell.schemas.in.h:10
msgid "HTTP proxy password"
-msgstr "ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸು"
+msgstr "HTTP ಪ್ರಾಕ್ಸಿ ಗುಪ್ತಪದ"
-#: ../shell/apps_evolution_shell.schemas.in.h:12
+#: ../shell/apps_evolution_shell.schemas.in.h:11
msgid "HTTP proxy port"
-msgstr ""
+msgstr "HTTP ಪ್ರಾಕ್ಸಿ ಸಂಪರ್ಕಸ್ಥಾನ"
-#: ../shell/apps_evolution_shell.schemas.in.h:13
+#: ../shell/apps_evolution_shell.schemas.in.h:12
msgid "HTTP proxy username"
-msgstr ""
+msgstr "HTTP ಪ್ರಾಕ್ಸಿ ಬಳಕೆದಾರಹೆಸರು"
-#: ../shell/apps_evolution_shell.schemas.in.h:14
+#: ../shell/apps_evolution_shell.schemas.in.h:13
msgid "ID or alias of the component to be shown by default at start-up."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:15
+#: ../shell/apps_evolution_shell.schemas.in.h:14
msgid ""
"If true, then connections to the proxy server require authentication. The "
"username is retrieved from the \"/apps/evolution/shell/network_config/"
@@ -19582,45 +19410,43 @@ msgid ""
"gnome-keyring or the ~/.gnome2_private/Evolution password file."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:16
-#, fuzzy
+#: ../shell/apps_evolution_shell.schemas.in.h:15
msgid "Last upgraded configuration version"
-msgstr "ಆವೃತ್ತಿ"
+msgstr "ಹಿಂದಿನ ಬಾರಿ ನವೀಕರಿಸಲಾದ ಸಂರಚನಾ ಆವೃತ್ತಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:17
+#: ../shell/apps_evolution_shell.schemas.in.h:16
msgid "List of paths for the folders to be synchronized to disk for offline usage"
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:18
+#: ../shell/apps_evolution_shell.schemas.in.h:17
msgid "Non-proxy hosts"
-msgstr ""
+msgstr "ಪ್ರಾಕ್ಸಿಯಲ್ಲದ ಅತಿಥೇಯಗಳು"
-#: ../shell/apps_evolution_shell.schemas.in.h:19
+#: ../shell/apps_evolution_shell.schemas.in.h:18
msgid "Password to pass as authentication when doing HTTP proxying."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:20
-#, fuzzy
+#: ../shell/apps_evolution_shell.schemas.in.h:19
msgid "Proxy configuration mode"
-msgstr "ಸಂರಚನೆ"
+msgstr "ಪ್ರಾಕ್ಸಿ ಸಂರಚನಾ ಕ್ರಮ"
-#: ../shell/apps_evolution_shell.schemas.in.h:21
+#: ../shell/apps_evolution_shell.schemas.in.h:20
msgid "SOCKS proxy host name"
-msgstr ""
+msgstr "SOCKS ಪ್ರಾಕ್ಸಿ ಅತಿಥೇಯದ ಹೆಸರು"
-#: ../shell/apps_evolution_shell.schemas.in.h:22
+#: ../shell/apps_evolution_shell.schemas.in.h:21
msgid "SOCKS proxy port"
-msgstr ""
+msgstr "SOCKS ಪ್ರಾಕ್ಸಿ ಸಂಪರ್ಕಸ್ಥಾನ"
-#: ../shell/apps_evolution_shell.schemas.in.h:23
+#: ../shell/apps_evolution_shell.schemas.in.h:22
msgid "Secure HTTP proxy host name"
-msgstr ""
+msgstr "ಸುರಕ್ಷಿತ HTTP ಪ್ರಾಕ್ಸಿ ಅತಿಥೇಯದ ಹೆಸರು"
-#: ../shell/apps_evolution_shell.schemas.in.h:24
+#: ../shell/apps_evolution_shell.schemas.in.h:23
msgid "Secure HTTP proxy port"
-msgstr ""
+msgstr "ಸುರಕ್ಷಿತ HTTP ಪ್ರಾಕ್ಸಿ ಸಂಪರ್ಕಸ್ಥಾನ"
-#: ../shell/apps_evolution_shell.schemas.in.h:25
+#: ../shell/apps_evolution_shell.schemas.in.h:24
msgid ""
"Select the proxy configuration mode. Supported values are 0, 1, 2, and 3 "
"representing \"use system settings\", \"no proxy\", \"use manual proxy "
@@ -19628,90 +19454,86 @@ msgid ""
"\" respectively."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:26
+#: ../shell/apps_evolution_shell.schemas.in.h:25
msgid "Sidebar is visible"
msgstr "ಬದಿಯ ಪಟ್ಟಿಯು ಕಾಣುತ್ತಿದೆ"
-#: ../shell/apps_evolution_shell.schemas.in.h:27
+#: ../shell/apps_evolution_shell.schemas.in.h:26
msgid "Skip development warning dialog"
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:28
-msgid "Skip recovery warning dialog"
-msgstr ""
-
-#: ../shell/apps_evolution_shell.schemas.in.h:29 ../shell/main.c:565
+#: ../shell/apps_evolution_shell.schemas.in.h:27 ../shell/main.c:471
msgid "Start in offline mode"
-msgstr ""
+msgstr "ಆಫ್‌ಲೈನ್‌ ವಿಧಾನದಲ್ಲಿ ಆರಂಭಿಸು"
-#: ../shell/apps_evolution_shell.schemas.in.h:30
+#: ../shell/apps_evolution_shell.schemas.in.h:28
msgid "Statusbar is visible"
msgstr "ಸ್ಥಿತಿ ಪಟ್ಟಿಯು ಕಾಣುತ್ತಿದೆ"
-#: ../shell/apps_evolution_shell.schemas.in.h:31
+#: ../shell/apps_evolution_shell.schemas.in.h:29
#, fuzzy
msgid ""
"The configuration version of Evolution, with major/minor/configuration level "
"(for example \"2.6.0\")."
msgstr "ಆವೃತ್ತಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:32
+#: ../shell/apps_evolution_shell.schemas.in.h:30
msgid "The default height for the main window, in pixels."
msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಪೂರ್ವನಿಯೋಜಿತ ಎತ್ತರ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
-#: ../shell/apps_evolution_shell.schemas.in.h:33
+#: ../shell/apps_evolution_shell.schemas.in.h:31
msgid "The default width for the main window, in pixels."
msgstr "ಮುಖ್ಯ ವಿಂಡೋದ ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
-#: ../shell/apps_evolution_shell.schemas.in.h:34
+#: ../shell/apps_evolution_shell.schemas.in.h:32
msgid "The default width for the sidebar, in pixels."
msgstr "ಬದಿಪಟ್ಟಿಯ ಪೂರ್ವನಿಯೋಜಿತ ಅಗಲ (ಪಿಕ್ಸೆಲ್‍ಗಳಲ್ಲಿ)."
-#: ../shell/apps_evolution_shell.schemas.in.h:35
+#: ../shell/apps_evolution_shell.schemas.in.h:33
#, fuzzy
msgid ""
"The last upgraded configuration version of Evolution, with major/minor/"
"configuration level (for example \"2.6.0\")."
msgstr "ಆವೃತ್ತಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:36
+#: ../shell/apps_evolution_shell.schemas.in.h:34
msgid "The machine name to proxy HTTP through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:37
+#: ../shell/apps_evolution_shell.schemas.in.h:35
msgid "The machine name to proxy secure HTTP through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:38
+#: ../shell/apps_evolution_shell.schemas.in.h:36
msgid "The machine name to proxy socks through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:39
+#: ../shell/apps_evolution_shell.schemas.in.h:37
msgid ""
"The port on the machine defined by \"/apps/evolution/shell/network_config/"
"http_host\" that you proxy through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:40
+#: ../shell/apps_evolution_shell.schemas.in.h:38
msgid ""
"The port on the machine defined by \"/apps/evolution/shell/network_config/"
"secure_host\" that you proxy through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:41
+#: ../shell/apps_evolution_shell.schemas.in.h:39
msgid ""
"The port on the machine defined by \"/apps/evolution/shell/network_config/"
"socks_host\" that you proxy through."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:42
+#: ../shell/apps_evolution_shell.schemas.in.h:40
msgid ""
"The style of the window buttons. Can be \"text\", \"icons\", \"both\", "
"\"toolbar\". If \"toolbar\" is set, the style of the buttons is determined "
"by the GNOME toolbar setting."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:43
+#: ../shell/apps_evolution_shell.schemas.in.h:41
msgid ""
"This key contains a list of hosts which are connected to directly, rather "
"than via the proxy (if it is active). The values can be hostnames, domains "
@@ -19719,67 +19541,58 @@ msgid ""
"IPv6) and network addresses with a netmask (something like 192.168.0.0/24)."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:44
+#: ../shell/apps_evolution_shell.schemas.in.h:42
msgid "Toolbar is visible"
msgstr "ಉಪಕರಣ ಪಟ್ಟಿಯು ಕಾಣಿಸುತ್ತಿದೆ"
-#: ../shell/apps_evolution_shell.schemas.in.h:45
-#, fuzzy
+#: ../shell/apps_evolution_shell.schemas.in.h:43
msgid "URL that provides proxy configuration values."
-msgstr "ಆವೃತ್ತಿ"
+msgstr "ಪ್ರಾಕ್ಸಿ ಸಂರಚನಾ ಮೌಲ್ಯಗಳನ್ನು ಒದಗಿಸುವ ಯುಆರ್ಎಲ್."
-#: ../shell/apps_evolution_shell.schemas.in.h:46
+#: ../shell/apps_evolution_shell.schemas.in.h:44
msgid "Use HTTP proxy"
-msgstr ""
+msgstr "HTTP ಪ್ರಾಕ್ಸಿಯನ್ನು ಬಳಸು"
-#: ../shell/apps_evolution_shell.schemas.in.h:47
+#: ../shell/apps_evolution_shell.schemas.in.h:45
msgid "User name to pass as authentication when doing HTTP proxying."
msgstr ""
-#: ../shell/apps_evolution_shell.schemas.in.h:48
+#: ../shell/apps_evolution_shell.schemas.in.h:46
msgid "Whether Evolution will start up in offline mode instead of online mode."
-msgstr ""
-
-#: ../shell/apps_evolution_shell.schemas.in.h:49
-msgid "Whether crash detection should be done or not"
-msgstr ""
+msgstr "ಆನ್‌ಲೈನ್‌ ವಿಧಾನದ ಬದಲಿಗೆ ಆಫ್‌ಲೈನ್‌ ವಿಧಾನದಲ್ಲಿ ಎವಲ್ಯೂಶನ್ ಆರಂಭಗೊಳ್ಳಬೇಕೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:50
+#: ../shell/apps_evolution_shell.schemas.in.h:47
msgid "Whether or not the window should be maximized."
-msgstr ""
+msgstr "ವಿಂಡೋವನ್ನು ಹಿಗ್ಗಿಸಬೇಕೆ ಅಥವ ಬೇಡವೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:51
+#: ../shell/apps_evolution_shell.schemas.in.h:48
msgid "Whether the sidebar should be visible."
-msgstr ""
+msgstr "ಬದಿಯು ಪಟ್ಟಿಯು ಕಾಣಿಸಿಕೊಳ್ಳಬೇಕೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:52
+#: ../shell/apps_evolution_shell.schemas.in.h:49
msgid "Whether the status bar should be visible."
-msgstr ""
+msgstr "ಸ್ಥಿತಿ ಪಟ್ಟಿಯು ಕಾಣಿಸಿಕೊಳ್ಳಬೇಕೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:53
+#: ../shell/apps_evolution_shell.schemas.in.h:50
msgid "Whether the toolbar should be visible."
-msgstr ""
+msgstr "ಉಪಕರಣ ಪಟ್ಟಿಯು ಕಾಣಿಸಿಕೊಳ್ಳಬೇಕೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:54
+#: ../shell/apps_evolution_shell.schemas.in.h:51
#, fuzzy
msgid "Whether the warning dialog in development versions of Evolution is skipped."
msgstr "ಆವೃತ್ತಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:55
-msgid "Whether the warning dialog in recovery of Evolution is skipped."
-msgstr ""
-
-#: ../shell/apps_evolution_shell.schemas.in.h:56
+#: ../shell/apps_evolution_shell.schemas.in.h:52
msgid "Whether the window buttons should be visible."
-msgstr ""
+msgstr "ವಿಂಡೋ ಗುಂಡಿಗಳು ಕಾಣಿಸಿಕೊಳ್ಳಬೇಕೆ."
-#: ../shell/apps_evolution_shell.schemas.in.h:57
+#: ../shell/apps_evolution_shell.schemas.in.h:53
msgid "Window button style"
msgstr "ವಿಂಡೋ ಗುಂಡಿಯ ಶೈಲಿ"
-#: ../shell/apps_evolution_shell.schemas.in.h:58
+#: ../shell/apps_evolution_shell.schemas.in.h:54
msgid "Window buttons are visible"
-msgstr ""
+msgstr "ವಿಂಡೋ ಗುಂಡಿಗಳು ಕಾಣಿಸುತ್ತಿವೆ"
#: ../shell/e-active-connection-dialog.glade.h:1
msgid "<b>Active Connections</b>"
@@ -19791,7 +19604,7 @@ msgstr "ಸಕ್ರಿಯ ಸಂಪರ್ಕಗಳು"
#: ../shell/e-active-connection-dialog.glade.h:3
msgid "Click OK to close these connections and go offline"
-msgstr ""
+msgstr "ಈ ಸಂಪರ್ಕಗಳನ್ನು ಅಂತ್ಯಗೊಳಿಸಿ ಆಫ್‌ಲೈನ್‌ಗೆ ತೆರಳಲು ಸರಿ ಅನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ"
#: ../shell/e-shell-importer.c:131
msgid "Choose the type of importer to run:"
@@ -19805,10 +19618,13 @@ msgid ""
"You can select \"Automatic\" if you do not know, and Evolution will attempt "
"to work it out."
msgstr ""
+"ಇವಲ್ಯೂಶನ್‌ಗೆ ನೀವು ಆಮದು ಮಾಡಿಕೊಳ್ಳಲು ಬಯಸುವ ಕಡತವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ, ಹಾಗು ಪಟ್ಟಿಯಿಂದ ಅದು ಯಾವ ಬಗೆಯ ಕಡತವೆಂದು ಆರಿಸಿ.\n"
+"\n"
+"ನಿಮಗಿದು ತಿಳಿಯದೆ ಇದಲ್ಲಿ \"ಸ್ವಯಂಚಾಲಿತ\" ಅನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ, ಆಗ ಇವಲ್ಯೂಶನ್ ಇದನ್ನು ನಿರ್ವಹಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತದೆ."
#: ../shell/e-shell-importer.c:140
msgid "Choose the destination for this import"
-msgstr ""
+msgstr "ಈ ಆಮದಿಗಾಗಿ ನಿರ್ದೇಶಿತ ಜಾಗವನ್ನು ಸೂಚಿಸಿ"
#: ../shell/e-shell-importer.c:146
msgid ""
@@ -19817,6 +19633,10 @@ msgid ""
"settings found. If you would like to\n"
"try again, please click the \"Back\" button.\n"
msgstr ""
+"ಇವಲ್ಯೂಶನ್ ಸಂಯೋಜನೆಗಳನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳಲು ಈ ಕೆಳಗಿನ ಅನ್ವಯಗಳನ್ನು \n"
+"ಪರಿಶೀಲಿಸಿದೆ: ಪೈನ್, ನೆಟ್‌ಸ್ಕೇಪ್, Elm, ಐಕ್ಯಾಲೆಂಡರ್. ಆಮದು ಮಾಡಿಕೊಳ್ಳಬಹುದಾದ ಯಾವುದೆ\n"
+"ಸಂಯೋಜನೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ. ನೀವು ಇನ್ನೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಲು ಬಯಸಿದಲ್ಲಿ\n"
+" ದಯವಿಟ್ಟು\"ಹಿಂದಕ್ಕೆ\" ಗುಂಡಿಯನ್ನು ಒತ್ತಿ.\n"
#: ../shell/e-shell-importer.c:284
msgid "F_ilename:"
@@ -19832,11 +19652,11 @@ msgstr "ಕಡತದ ಬಗೆ(_t):"
#: ../shell/e-shell-importer.c:334
msgid "Import data and settings from _older programs"
-msgstr ""
+msgstr "ಹಳೆಯ ಪ್ರೋಗ್ರಾಂಗಳಿಂದ ದತ್ತಾಂಶ ಹಾಗು ಸಂಯೋಜನೆಗಳನ್ನು ಆಮದು ಮಾಡಿಕೊ (_o)"
#: ../shell/e-shell-importer.c:337
msgid "Import a _single file"
-msgstr ""
+msgstr "ಒಂದು ಕಡತವನ್ನು ಆಮದು ಮಾಡಿಕೊ(_s)"
#: ../shell/e-shell-settings-dialog.c:314
msgid "Evolution Preferences"
@@ -19844,14 +19664,14 @@ msgstr "ಇವಲ್ಯೂಶನ್ ಆದ್ಯತೆಗಳು"
#. To translators: This is the window title and %s is the
#. component name. Most translators will want to keep it as is.
-#: ../shell/e-shell-view.c:47 ../shell/e-shell-window.c:328
+#: ../shell/e-shell-view.c:47 ../shell/e-shell-window.c:332
#, c-format
msgid "%s - Evolution"
msgstr "%s - ಇವಲ್ಯೂಶನ್"
#: ../shell/e-shell-window-commands.c:75
msgid "The GNOME Pilot tools do not appear to be installed on this system."
-msgstr ""
+msgstr "ಈ ಗಣಕದಲ್ಲಿ GNOME ಪೈಲಟ್ ಉಪಕರಣಗಳು ಅನುಸ್ಥಾಪಿತಗೊಂಡಂತೆ ತೋರುತ್ತಿಲ್ಲ."
#: ../shell/e-shell-window-commands.c:83
#, c-format
@@ -19893,56 +19713,59 @@ msgstr "ಜಾಲದ ಹೊರಗೆ ಕೆಲಸ ಮಾಡು(_W)"
msgid "Work Offline"
msgstr "ಜಾಲದ ಹೊರಗೆ ಕೆಲಸ ಮಾಡು"
-#: ../shell/e-shell-window.c:377
+#: ../shell/e-shell-window.c:381
msgid ""
"Evolution is currently online.\n"
"Click on this button to work offline."
msgstr ""
+"ಇವಲ್ಯೂಶನ್ ಈಗ ಆನ್‌ಲೈನ್‌ನಲ್ಲಿದೆ.\n"
+"ಆಫ್‌ಲೈನ್‌ನಲ್ಲಿ ಕೆಲಸ ಮಾಡಲು ಈ ಗುಂಡಿಯ ಮೇಲೆ ಕ್ಲಿಕ್ಕಿಸಿ."
-#: ../shell/e-shell-window.c:384
+#: ../shell/e-shell-window.c:388
msgid "Evolution is in the process of going offline."
-msgstr ""
+msgstr "ಇವಲ್ಯೂಶನ್ ಆಫ್‌ಲೈನ್‌ಗೆ ತೆರಳುವ ತಯ್ಯಾರಿಯಲ್ಲಿದೆ."
-#: ../shell/e-shell-window.c:391
+#: ../shell/e-shell-window.c:395
msgid ""
"Evolution is currently offline.\n"
"Click on this button to work online."
msgstr ""
+"ಇವಲ್ಯೂಶನ್ ಈಗ ಆಫ್‌ಲೈನ್‌ನಲ್ಲಿದೆ.\n"
+"ಆನ್‌ಲೈನ್‌ನಲ್ಲಿ ಕೆಲಸ ಮಾಡಲು ಈ ಗುಂಡಿಯ ಮೇಲೆ ಕ್ಲಿಕ್ಕಿಸಿ."
-#: ../shell/e-shell-window.c:782
+#: ../shell/e-shell-window.c:786
#, c-format
msgid "Switch to %s"
msgstr "%s ಗೆ ಬದಲಾಯಿಸು"
-#: ../shell/e-shell.c:638
-#, fuzzy
+#: ../shell/e-shell.c:641
msgid "Unknown system error."
-msgstr "ಗೊತ್ತಿರದ ಗಣಕದ ದೋಷ"
+msgstr "ಗೊತ್ತಿರದ ವ್ಯವಸ್ಥೆಯ ದೋಷ."
-#: ../shell/e-shell.c:836 ../shell/e-shell.c:837
+#: ../shell/e-shell.c:839 ../shell/e-shell.c:840
#, c-format
msgid "%ld KB"
msgstr "%ld KB"
-#: ../shell/e-shell.c:1278 ../widgets/misc/e-cell-date-edit.c:315
+#: ../shell/e-shell.c:1298 ../widgets/misc/e-cell-date-edit.c:315
msgid "OK"
msgstr "ಸರಿ"
-#: ../shell/e-shell.c:1280
+#: ../shell/e-shell.c:1300
msgid "Invalid arguments"
msgstr "ಅಮಾನ್ಯ ಆರ್ಗ್ಯುಮೆಂಟ್‍ಗಳು"
-#: ../shell/e-shell.c:1282
+#: ../shell/e-shell.c:1302
msgid "Cannot register on OAF"
msgstr "OAF ನಲ್ಲಿ ನೋಂದಾಯಿಸಲಾಗಿಲ್ಲ"
-#: ../shell/e-shell.c:1284
+#: ../shell/e-shell.c:1304
msgid "Configuration Database not found"
msgstr "ಸಂರಚನಾ ದತ್ತಸಂಚಯ ಕಂಡು ಬಂದಿಲ್ಲ"
-#: ../shell/e-user-creatable-items-handler.c:669
-#: ../shell/e-user-creatable-items-handler.c:679
-#: ../shell/e-user-creatable-items-handler.c:684
+#: ../shell/e-user-creatable-items-handler.c:678
+#: ../shell/e-user-creatable-items-handler.c:688
+#: ../shell/e-user-creatable-items-handler.c:693
msgid "New"
msgstr "ಹೊಸ"
@@ -19951,22 +19774,21 @@ msgid "New Test"
msgstr "ಹೊಸ ಪರೀಕ್ಷೆ"
#: ../shell/test/evolution-test-component.c:108
-#, fuzzy
msgctxt "New"
msgid "_Test"
msgstr "ಪರೀಕ್ಷೆ(_T)"
#: ../shell/test/evolution-test-component.c:109
msgid "Create a new test item"
-msgstr ""
+msgstr "ಒಂದು ಹೊಸ ಪರೀಕ್ಷಾ ಅಂಶವನ್ನು ನಿರ್ಮಿಸು"
#: ../shell/import.glade.h:1
msgid "Click \"Import\" to begin importing the file into Evolution. "
-msgstr ""
+msgstr "ಇವಲ್ಯೂಶನ್‌ಗೆ ಕಡತವನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳುವುದನ್ನು ಆರಂಭಿಸಲು \"ಆಮದು ಮಾಡಿಕೊ\"ಅನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ. "
#: ../shell/import.glade.h:2
msgid "Evolution Import Assistant"
-msgstr ""
+msgstr "ಇವಲ್ಯೂಶನ್ ಆಮದು ಸಹಾಯಕ"
#: ../shell/import.glade.h:3
msgid "Import File"
@@ -19978,11 +19800,11 @@ msgstr "ಸ್ಥಳವನ್ನು ಆಮದು ಮಾಡಿಕೊ"
#: ../shell/import.glade.h:5
msgid "Importer Type"
-msgstr ""
+msgstr "ಆಮದು ಮಾಡಿಕೊಳ್ಳುವುದರ ಬಗೆ"
#: ../shell/import.glade.h:6
msgid "Select Importers"
-msgstr ""
+msgstr "ಆಮದು ಮಾಡಿಕೊಳ್ಳುವವನ್ನು ಆರಿಸಿ"
#: ../shell/import.glade.h:7
msgid "Select a File"
@@ -19994,10 +19816,13 @@ msgid ""
"With this assistant you will be guided through the process of\n"
"importing external files into Evolution."
msgstr ""
+"ಇವಲ್ಯೂಶನ್ ಆಮದು ಸಹಾಯಕಕ್ಕೆ ನಿಮಗೆ ಸ್ವಾಗತ.\n"
+"ಇವಲ್ಯೂಶನ್‌ಗೆ ಹೊರಗಿನಿಂದ ಕಡತಗಳನ್ನು ಆಮದು ಮಾಡಿಕೊಳ್ಳುವ ಪ್ರಕ್ರಿಯೆಯ ಬಗ್ಗೆ ಈ ಸಹಾಯಕದ \n"
+"ಮೂಲಕ ನಿಮಗೆ ಮಾರ್ಗದರ್ಶನ ನೀಡಲಾಗುವುದು."
#. Preview/Alpha/Beta version warning message
-#: ../shell/main.c:222
-#, fuzzy, no-c-format
+#: ../shell/main.c:217
+#, no-c-format
msgid ""
"Hi. Thanks for taking the time to download this preview release\n"
"of the Evolution groupware suite.\n"
@@ -20014,9 +19839,24 @@ msgid ""
"\n"
"We hope that you enjoy the results of our hard work, and we\n"
"eagerly await your contributions!\n"
-msgstr "ಆವೃತ್ತಿ"
+msgstr ""
+"ನಮಸ್ಕಾರ. ಈ ಇವಲ್ಯೂಶನ್ ಗ್ರೂಪ್‌ವೇರ್ ಮುನ್ನೋಟ ಬಿಡುಗಡೆಯನ್ನು ಡೌನ್‌ಲೋಡ್ \n"
+"ಮಾಡಲು ಸಮಯವನ್ನು ವ್ಯಯಿಸಿದ್ದಕ್ಕೆ ಧನ್ಯವಾದಗಳು.\n"
+"\n"
+"ಇವಲ್ಯೂಶನ್‌ನ ಈ ಆವೃತ್ತಿಯು ಇನ್ನೂ ಸಂಪೂರ್ಣಗೊಂಡಿಲ್ಲ. ಇದು ಪೂರ್ಣಗೊಳ್ಳುವ ಹಂತದಲ್ಲಿದೆಯಾದರೂ,\n"
+"ಕೆಲವು ಸವಲತ್ತುಗಳು ಇನ್ನೂ ಪೂರ್ಣಗೊಂಡಿಲ್ಲ ಅಥವ ಸರಿಯಾಗಿ ಕೆಲಸ ಮಾಡುವುದಿಲ್ಲ.\n"
+"\n"
+"ನಿಮಗೆ ಇವಲ್ಯೂಶನ್‌ನ ಒಂದು ಸದೃಢ ಆವೃತ್ತಿಯು ಬೇಕಾದಲ್ಲಿ, ಅನುಸ್ಥಾಪಿಸಲಾದ ಆವೃತ್ತಿಯನ್ನು ತೆಗದು ಹಾಕಿ\n"
+"ಇದರ ಬದಲಿಗೆ %s ಅನ್ನು ನೀವು ಅನುಸ್ಥಾಪಿಸಿರೆಂದು ಆಗ್ರಹಿಸುತ್ತೇವೆ .\n"
+"\n"
+"ಇದರಲ್ಲಿ ನಿಮಗೇನಾದರೂ ದೋಷಗಳು ಕಂಡುಬಂದಲ್ಲಿ, ದಯವಿಟ್ಟು ಅವನ್ನು bugzilla.gnome.org\n"
+"ನಲ್ಲಿ ವರದಿ ಮಾಡಿ. ಈ ಉತ್ಪನ್ನಕ್ಕೆ ಯಾವುದೆ ವಾರಂಟಿಯನ್ನು ನೀಡಲಾಗುವುದಿಲ್ಲ ಹಾಗು ಇದು ಬಹುಬೇಗನೆ \n"
+"ಕೋಪಗೊಳ್ಳುವವರಿಗೆ ಬಳಸಲು ಇದು ತರವಲ್ಲ.\n"
+"\n"
+"ನೀವು ನಮ್ಮ ಈ ಕಠಿಣ ಪರಿಶ್ರಮದ ಉತ್ಪನ್ನವನ್ನು ಸಂತೋಷದಿಂದ ಬಳಸುತ್ತೀರೆಂದು ನಂಬಿದ್ದೇವೆ, ಅಲ್ಲದೆ ನಿಮ್ಮ\n"
+"ಕೊಡುಗೆಗಾಗಿ ಉತ್ಸುಕತೆಯಿಂದ ಕಾಯುತ್ತಿದ್ದೇವೆ!\n"
-#: ../shell/main.c:246
+#: ../shell/main.c:241
msgid ""
"Thanks\n"
"The Evolution Team\n"
@@ -20024,69 +19864,50 @@ msgstr ""
"ಧನ್ಯವಾದಗಳು\n"
"ಇವಲ್ಯೂಶನ್ ತಂಡ\n"
-#: ../shell/main.c:253
+#: ../shell/main.c:248
msgid "Do not tell me again"
msgstr "ಪುನಃ ನನಗೆ ಹೇಳಬೇಡ"
-#: ../shell/main.c:303
-#, fuzzy
-msgid "Evolution Crash Detection"
-msgstr "ಇವಲ್ಯೂಶನ್ ಮಾಹಿತಿ"
-
-#: ../shell/main.c:305
-msgid "Ig_nore"
-msgstr "ನಿರ್ಲಕ್ಷಿಸು(_n)"
-
-#: ../shell/main.c:320
-#, no-c-format
-msgid ""
-"Evolution appears to have exited unexpectedly the last time it was\n"
-"run. As a precautionary measure, all preview panes will be hidden.\n"
-"You can restore the preview panes from the View menu.\n"
-msgstr ""
-
-#: ../shell/main.c:331
-msgid "_Do not show this message again"
-msgstr "ಈ ಸಂದೇಶವನ್ನು ಪುನಃ ತೋರಿಸಬೇಡ(_D)"
-
-#: ../shell/main.c:563
+#: ../shell/main.c:469
msgid "Start Evolution activating the specified component"
-msgstr ""
+msgstr "ಸೂಚಿಸಲಾದ ಘಟಕವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ ಇವಲ್ಯೂಶನ್ ಅನ್ನು ಆರಂಭಿಸು"
-#: ../shell/main.c:567
+#: ../shell/main.c:473
msgid "Start in online mode"
-msgstr ""
+msgstr "ಆನ್‌ಲೈನ್‌ ವಿಧಾನದಲ್ಲಿ ಆರಂಭಿಸು"
-#: ../shell/main.c:570
+#: ../shell/main.c:476
msgid "Forcibly shut down all Evolution components"
msgstr "ಎಲ್ಲಾ ಇವಲ್ಯೂಶನ್ ಘಟಕಗಳನ್ನು ಬಲವಂತವಾಗಿ ಮುಚ್ಚು"
-#: ../shell/main.c:574
+#: ../shell/main.c:480
msgid "Forcibly re-migrate from Evolution 1.4"
msgstr "ಇವಲ್ಯೂಶನ್ 1.4 ರಿಂದ ಬಲವಂತವಾಗಿ ಪುನರ್-ವರ್ಗಾಯಿಸು"
-#: ../shell/main.c:577
+#: ../shell/main.c:483
msgid "Send the debugging output of all components to a file."
-msgstr ""
+msgstr "ಎಲ್ಲಾ ಘಟಕಗಳ ದೋಷನಿವಾರಣಾ ಓಟ್‌ಪುಟ್ ಅನ್ನು ಒಂದು ಕಡತಕ್ಕೆ ಕಳುಹಿಸು."
-#: ../shell/main.c:579
+#: ../shell/main.c:485
msgid "Disable loading of any plugins."
msgstr "ಯಾವುದೆ ಪ್ಲಗ್ಿನ್‍ಗಳನ್ನು ಲೋಡ್ ಮಾಡುವುದನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸು."
-#: ../shell/main.c:581
+#: ../shell/main.c:487
msgid "Disable preview pane of Mail, Contacts and Tasks."
msgstr ""
-#: ../shell/main.c:666
+#: ../shell/main.c:572
msgid "- The Evolution PIM and Email Client"
msgstr "- ಇವಲ್ಯೂಶನ್ PIM ಹಾಗು ಇಮೈಲ್ ಕ್ಲೈಂಟ್"
-#: ../shell/main.c:694
+#: ../shell/main.c:600
#, c-format
msgid ""
"%s: --online and --offline cannot be used together.\n"
" Use %s --help for more information.\n"
msgstr ""
+"%s: --online ಹಾಗು --offline ಅನ್ನು ಒಂದೇ ಬಾರಿಗೆ ಬಳಸಲಾಗುವುದಿಲ್ಲ.\n"
+" ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ %s --help ಅನ್ನು ಬಳಸಿ.\n"
#: ../shell/shell.error.xml.h:1
msgid "Are you sure you want to forget all remembered passwords?"
@@ -20108,7 +19929,7 @@ msgstr "ಇವಲ್ಯೂಶನ್ ಆರಂಭಗೊಳ್ಳುವುದಿ
msgid ""
"Forgetting your passwords will clear all remembered passwords. You will be "
"reprompted next time they are needed."
-msgstr ""
+msgstr "ನಿಮ್ಮ ಗುಪ್ತಪದಗಳನ್ನು ಮರೆಯುವುದರಿಂದ ನೆನಪಿಟ್ಟುಕೊಂಡ ಎಲ್ಲಾ ಗುಪ್ತಪದಗಳು ಅಳಿಸಿ ಹೋಗುತ್ತದೆ. ಮುಂದಿನ ಬಾರಿ ಅವುಗಳ ಅಗತ್ಯವಿದ್ದಾಗ ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುವುದು."
#: ../shell/shell.error.xml.h:7
msgid "Insufficient disk space for upgrade."
@@ -20119,7 +19940,6 @@ msgid "Really delete old data?"
msgstr "ಹಳೆಯ ದತ್ತಾಂಶವನ್ನು ಖಚಿತವಾಗಿಯೂ ಅಳಿಸಬೇಕೆ?"
#: ../shell/shell.error.xml.h:9
-#, fuzzy
msgid ""
"The entire contents of the &quot;evolution&quot; directory are about to be "
"permanently removed.\n"
@@ -20130,10 +19950,18 @@ msgid ""
"\n"
"Once deleted, you cannot downgrade to the previous version of Evolution "
"without manual intervention.\n"
-msgstr "ಆವೃತ್ತಿ"
+msgstr ""
+"&quot;ಇವಲ್ಯೂಶನ್‌&quot; ಕೋಶದಲ್ಲಿರುವ ಸಂಪೂರ್ಣ ಮಾಹಿತಿಗಳು ಈಗ ಶಾಶ್ವತವಾಗಿ ತೆಗೆದು "
+"ಹಾಕಲ್ಪಡಲಿದೆ.\n"
+"\n"
+"ಹಳೆಯ ದತ್ತಾಂಶವನ್ನು ಅಳಿಸುವ ಮೊದಲು ನಿಮ್ಮ ಎಲ್ಲಾ ಮೈಲ್, ಸಂಪರ್ಕ ವಿಳಾಸ, ಹಾಗು "
+"ಕ್ಯಾಲೆಂಡರ್ ಮಾಹಿತಿಯು ಇವೆಯೆಂದು ಮತ್ತು ಈ ಇವಲ್ಯೂಶನ್‌ನ ಆವೃತ್ತಿಯು ಸರಿಯಾಗಿ "
+"ಕೆಲಸ ಮಾಡುತ್ತಿದೆ ಎಂದು ಪರಿಶೀಲಿಸಿ.\n"
+"\n"
+"ಒಮ್ಮೆ ಅಳಿಸಲಾಯಿತೆಂದರೆ, ನಿಮ್ಮ ಹಸ್ತಕ್ಷೇಪದ ಹೊರತು ನೀವು ಇವಲ್ಯೂಶನ್‌ನ ಈ "
+"ಹಿಂದಿನ ಆವೃತ್ತಿಗೆ ಮರಳಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ.\n"
#: ../shell/shell.error.xml.h:15
-#, fuzzy
msgid ""
"The previous version of evolution stored its data in a different location.\n"
"\n"
@@ -20141,12 +19969,16 @@ msgid ""
"evolution&quot; directory will be removed permanently. If you choose to keep "
"this data, then you may manually remove the contents of &quot;"
"evolution&quot; at your convenience.\n"
-msgstr "ಆವೃತ್ತಿ"
+msgstr ""
+"ಎಲ್ಯೂಶನ್‌ನ ಈ ಹಿಂದಿನ ಆವೃತ್ತಿಯು ದತ್ತಾಂಶವನ್ನು ಬೇರೊಂದು ಪ್ರತ್ಯೇಕ ಸ್ಥಳದಲ್ಲಿ ಶೇಖರಿಸಿಟ್ಟಿದೆ.\n"
+"\n"
+"ನೀವು ಈ ದತ್ತಾಂಶವನ್ನು ತೆಗೆದು ಹಾಕಲು ಬಯಸಿದಲ್ಲಿ, &quot;"
+"ಎವಲ್ಯೂಶನ್‌&quot; ಕೋಶದಲ್ಲಿರುವ ಎಲ್ಲಾ ಮಾಹಿತಿಗಳು ಶಾಶ್ವತವಾಗಿ ತೆಗೆದು ಹಾಕಲ್ಪಡುತ್ತವೆ. ನೀವು ಈ ದತ್ತಾಂಶವನ್ನು ಇರಿಸಿಕೊಳ್ಳಲು ಬಯಸಿದಲ್ಲಿ, ನಿಮ್ಮ ಸಮಯದ ಅನೂಕೂಲಕ್ಕೆ ತಕ್ಕಂತೆ ನಂತರ ನೀವೆ ಕೈಯಾರೆ &quot;"
+"ಇವಲ್ಯೂಶನ್‌&quot; ಹೊಂದಿರು ಮಾಹಿತಿಗಳನ್ನು ತೆಗೆದು ಹಾಕಬಹುದು.\n"
#: ../shell/shell.error.xml.h:19
-#, fuzzy
msgid "Upgrade from previous version failed: {0}"
-msgstr "ಆವೃತ್ತಿ"
+msgstr "ಈ ಹಿಂದಿನ ಆವೃತ್ತಿಯಿಂದ ನವೀಕರಿಸುವುದು ವಿಫಲಗೊಂಡಿದೆ: {0}"
#: ../shell/shell.error.xml.h:20
msgid ""
@@ -20156,6 +19988,9 @@ msgid ""
"You will need to make more space available in your home directory before you "
"can continue."
msgstr ""
+"ನಿಮ್ಮಲ್ಲಿನ ಮಾಹಿತಿ ಹಾಗು ಸಂಯೋಜನೆಗಳನ್ನು ನವೀಕರಿಸಲು {0} ವರೆಗೆ ಡಿಸ್ಕ್‍ ಜಾಗದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ನಿಮ್ಮಲ್ಲಿ ಕೇವಲ {1} ಲಭ್ಯವಿದೆ.\n"
+"\n"
+"ಮುಂದುವರೆಯು ಮೊದಲು ನಿಮ್ಮ ನೆಲೆ ಕಡತ ಕೋಶದಲ್ಲಿ ಒಂದಿಷ್ಟು ಹೆಚ್ಚಿನ ಜಾಗವನ್ನು ತೆರವುಗೊಳಿಸುವುದು ಅಗತ್ಯವಾಗುತ್ತದೆ."
#: ../shell/shell.error.xml.h:23
msgid ""
@@ -20163,6 +19998,9 @@ msgid ""
"\n"
"Click help for details"
msgstr ""
+"ನಿಮ್ಮ ಗಣಕದ ಸಂರಚನೆಗಳು ನಿಮ್ಮ ಎವಲ್ಯೂಶನ್ ಸಂರಚನೆಗೆ ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ:\n"
+"\n"
+"ವಿವರಕ್ಕಾಗಿ ನೆರವನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ"
#: ../shell/shell.error.xml.h:26
msgid ""
@@ -20172,6 +20010,11 @@ msgid ""
"\n"
"Click help for details."
msgstr ""
+"ನಿಮ್ಮ ಗಣಕದ ಸಂರಚನೆಗಳು ನಿಮ್ಮ ಎವಲ್ಯೂಶನ್ ಸಂರಚನೆಗೆ ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ:\n"
+"\n"
+"{0}\n"
+"\n"
+"ವಿವರಕ್ಕಾಗಿ ನೆರವನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ."
#: ../shell/shell.error.xml.h:31
msgid "_Forget"
@@ -20192,6 +20035,9 @@ msgid ""
"If you choose to continue, you may not have access to some of your old "
"data.\n"
msgstr ""
+"{1}\n"
+"\n"
+"ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸಿದಲ್ಲಿ, ನಿಮಗೆ ನಿಮ್ಮ ಕೆಲವು ಹಳೆಯ ಮಾಹಿತಿಗಳನ್ನು ನೋಡಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ.\n"
#: ../smime/gui/ca-trust-dialog.c:102
#, c-format
@@ -20200,20 +20046,23 @@ msgid ""
"\n"
"Edit trust settings:"
msgstr ""
+"ಪ್ರಮಾಣಪತ್ರ '%s' ವು ಒಂದು CA ಪ್ರಮಾಣಪತ್ರವಾಗಿದೆ.\n"
+"\n"
+"ನಂಬಿಕೆಯ ಸಂಯೋಜನೆಗಳನ್ನು ಸಂಪಾದಿಸಿ:"
#: ../smime/gui/cert-trust-dialog.c:151
msgid ""
"Because you trust the certificate authority that issued this certificate, "
"then you trust the authenticity of this certificate unless otherwise "
"indicated here"
-msgstr ""
+msgstr "ಈ ಪ್ರಮಾಣಪತ್ರವನ್ನು ಒದಗಿಸಿದ ಪ್ರಮಾಣಪತ್ರ ಅಥಾರಿಟಿಯನ್ನು ನೀವು ನಂಬುವುದರಿಂದ, ಇಲ್ಲಿ ಸೂಚಿಸದ ಹೊರತು ನೀವು ಈ ಪ್ರಮಾಣಪತ್ರದ ವಿಶ್ವಾಸಾರ್ಹತೆಯನ್ನು ನಂಬುತ್ತೀರ ಎಂದು ತಿಳಿಯಲಾಗುತ್ತದೆ"
#: ../smime/gui/cert-trust-dialog.c:155
msgid ""
"Because you do not trust the certificate authority that issued this "
"certificate, then you do not trust the authenticity of this certificate "
"unless otherwise indicated here"
-msgstr ""
+msgstr "ಈ ಪ್ರಮಾಣಪತ್ರವನ್ನು ಒದಗಿಸಿದ ಪ್ರಮಾಣಪತ್ರ ಅಥಾರಿಟಿಯನ್ನು ನೀವು ನಂಬದ ಕಾರಣ, ಇಲ್ಲಿ ಸೂಚಿಸದ ಹೊರತು ನೀವು ಈ ಪ್ರಮಾಣಪತ್ರದ ವಿಶ್ವಾಸಾರ್ಹತೆಯನ್ನು ನಂಬುವುದಿಲ್ಲ ಎಂದು ತಿಳಿಯಲಾಗುತ್ತದೆ"
#: ../smime/gui/certificate-manager.c:137
#: ../smime/gui/certificate-manager.c:380
@@ -21312,7 +21161,6 @@ msgid "Create R_ule"
msgstr "ನಿಯಮವನ್ನು ರಚಿಸು(_u)"
#: ../ui/evolution-mail-message.xml.h:15
-#, fuzzy
msgid "Create a Search Folder for these recipients"
msgstr "ಈ ಸಂದೇಶಕ್ಕಾಗಿ ಒಂದು ಹುಡುಕು ಫೋಲ್ಡರನ್ನು ರಚಿಸು"
@@ -21554,19 +21402,19 @@ msgstr "ಆರಿಸಲಾದ ಸಂದೇಶಗಳನ್ನು ಒಂದು ಪ
#: ../ui/evolution-mail-message.xml.h:86
msgid "Search Folder from Mailing _List..."
-msgstr ""
+msgstr "ಮೈಲಿಂಗ್ ಲಿಸ್ಟಿನ ಆಧಾರದ ಮೇಲೆ ಕೋಶವನ್ನು ಹುಡುಕು(_L)..."
#: ../ui/evolution-mail-message.xml.h:87
msgid "Search Folder from Recipien_ts..."
-msgstr ""
+msgstr "ಪಡೆದುಕೊಂಡವರ ಆಧಾರದ ಮೇಲೆ ಕೋಶವನ್ನು ಹುಡುಕು(_t)..."
#: ../ui/evolution-mail-message.xml.h:88
msgid "Search Folder from S_ubject..."
-msgstr ""
+msgstr "ವಿಷಯದ ಆಧಾರದ ಮೇಲೆ ಕೋಶವನ್ನು ಹುಡುಕು(_u)..."
#: ../ui/evolution-mail-message.xml.h:89
msgid "Search Folder from Sen_der..."
-msgstr ""
+msgstr "ಕಳುಹಿಸಲಾದವರ ಆಧಾರದ ಮೇಲೆ ಕೋಶವನ್ನು ಹುಡುಕು (_d)..."
#: ../ui/evolution-mail-message.xml.h:90
msgid "Search for text in the body of the displayed message"
@@ -21586,7 +21434,7 @@ msgstr "ನಿಮ್ಮ ಪ್ರಸಕ್ತ ಮುದ್ರಕಕ್ಕೆ ಪ
#: ../ui/evolution-mail-message.xml.h:94
msgid "Show a blinking cursor in the body of displayed messages"
-msgstr ""
+msgstr "ತೋರಿಸಲಾದ ಸಂದೇಶದಲ್ಲಿ ಒಂದು ಮಿನುಗುವ ತೆರೆಸೂಚಕವನ್ನು ತೋರಿಸು"
#: ../ui/evolution-mail-message.xml.h:95
msgid "Show messages with all email headers"
@@ -21839,7 +21687,7 @@ msgstr "ಪ್ರೋಗ್ರಾಂನಿಂದ ನಿರ್ಗಮಿಸು"
#: ../ui/evolution.xml.h:12
msgid "Forget remembered passwords so you will be prompted for them again"
-msgstr ""
+msgstr "ನಿಮ್ಮನ್ನು ಮತ್ತೆ ಕೇಳುವಂತೆ, ನೆನಪಿಟ್ಟುಕೊಳ್ಳಲಾದ ಗುಪ್ತಪದಗಳನ್ನು ಮರೆತುಬಿಡು"
#: ../ui/evolution.xml.h:13
msgid "Hide window buttons"
@@ -21887,7 +21735,7 @@ msgstr "ಕಳುಹಿಸು / ಸ್ವೀಕರಿಸು(_R)"
#: ../ui/evolution.xml.h:25
msgid "Send queued items and retrieve new items"
-msgstr ""
+msgstr "ಸರತಿಯಲ್ಲಿನ ಅಂಶಗಳನ್ನು ಕಳುಹಿಸು ಹಾಗು ಹೊಸ ಅಂಶಗಳನ್ನು ಮರಳಿ ಪಡೆ"
#: ../ui/evolution.xml.h:26
msgid "Set up Pilot configuration"
@@ -21923,7 +21771,7 @@ msgstr "ಬಗ್ ಬಡ್ಡಿಯನ್ನು ಬಳಸಿಕೊಂಡು ಒ
#: ../ui/evolution.xml.h:35
msgid "Toggle whether we are working offline."
-msgstr ""
+msgstr "ನಾವು ಆಫ್‌ಲೈನಿನಲ್ಲಿ ಕೆಲಸ ಮಾಡುತ್ತಿದ್ದೇವೆ ಅಥವ ಇಲ್ಲವೆ ಎಂದು ಟಾಗಲ್ ಮಾಡು."
#: ../ui/evolution.xml.h:36
msgid "Tool_bar Style"
@@ -21938,9 +21786,8 @@ msgid "View/Hide the Status Bar"
msgstr "ಸ್ಥಿತಿ ಪಟ್ಟಿಯನ್ನು ಕಾಣಿಸಿ/ಅಡಗಿಸು"
#: ../ui/evolution.xml.h:39
-#, fuzzy
msgid "Work _Offline"
-msgstr "ಜಾಲದ ಹೊರಗೆ ಕೆಲಸ ಮಾಡು"
+msgstr "ಆಫ್‌ಲೈನ್‌ನಲ್ಲಿ ಕೆಲಸ ಮಾಡು"
#: ../ui/evolution.xml.h:40
msgid "_About"
@@ -21952,7 +21799,7 @@ msgstr "ವಿಂಡೋವನ್ನು ಮುಚ್ಚು(_C)"
#: ../ui/evolution.xml.h:44
msgid "_Forget Passwords"
-msgstr ""
+msgstr "ಗುಪ್ತಪದಗಳನ್ನು ಮರೆತುಬಿಡು(_F)"
#: ../ui/evolution.xml.h:45
msgid "_Frequently Asked Questions"
@@ -21968,7 +21815,7 @@ msgstr "ಚಿಹ್ನೆಗಳು ಮಾತ್ರ(_I)"
#: ../ui/evolution.xml.h:50
msgid "_Quick Reference"
-msgstr ""
+msgstr "ಕ್ಷಿಪ್ರ ಉಲ್ಲೇಖ(_Q)"
#: ../ui/evolution.xml.h:51
msgid "_Quit"
@@ -22085,7 +21932,7 @@ msgstr "ಒಂದು ಕಾಲವಲಯವನ್ನು ಆರಿಸಿ"
#: ../widgets/e-timezone-dialog/e-timezone-dialog.glade.h:5
msgid "Timezone drop-down combination box"
-msgstr ""
+msgstr "ಕಾಲವಲಯ ಡ್ರಾಪ್-ಡೌನ್ ಕಾಂಬಿನೇಶನ್ ಬಾಕ್ಸ್‍"
#: ../widgets/e-timezone-dialog/e-timezone-dialog.glade.h:6
msgid ""
@@ -22422,9 +22269,8 @@ msgid "Click this button to show a calendar"
msgstr "ಒಂದು ಕ್ಯಾಲೆಂಡರನ್ನು ತೋರಿಸಲು ಇದನ್ನು ಕ್ಲಿಕ್ಕಿಸಿ"
#: ../widgets/misc/e-dateedit.c:394
-#, fuzzy
msgid "Drop-down combination box to select time"
-msgstr "ಸಮಯವನ್ನು ಆರಿಸಲು ಕೊಂಬೊ ಬಾಕ್ಸ್‍"
+msgstr "ಸಮಯವನ್ನು ಆರಿಸಲು ಡ್ರಾಪ್‌-ಡೌನ್ ಕಾಮಬಿನೇಶನ್ ಬಾಕ್ಸ್‍"
#: ../widgets/misc/e-dateedit.c:470
msgid "No_w"
@@ -22462,7 +22308,7 @@ msgstr "ಅಡಿಗೆರೆಯನ್ನು ಬಳಸು"
msgid ""
"If set, an underline in the text indicates the next character should be used "
"for the mnemonic accelerator key"
-msgstr ""
+msgstr "ಇದನ್ನು ಸೆಟ್ ಮಾಡಿದಲ್ಲಿ, ಅಡಿಗೆರೆಯನ್ನು ಎಳೆದ ಪಠ್ಯದ ಮುಂದಿನ ಅಕ್ಷರವು ನಿಮೋನಿಕ್ ಎಕ್ಸಲರೇಟರ್ ಕೀಲಿಗಾಗಿ ಬಳಸಬೇಕು."
#: ../widgets/misc/e-expander.c:205
msgid "Space to put between the label and the child"
@@ -22474,7 +22320,7 @@ msgstr "ವಿಜೆಟ್‍ ಅನ್ನು ಹೆಸರಿಸು"
#: ../widgets/misc/e-expander.c:215
msgid "A widget to display in place of the usual expander label"
-msgstr ""
+msgstr "ಸಾಮಾನ್ಯ ಎಕ್ಸ್‍ಪ್ಯಾಂಡರ್ ಲೇಬಲ್‌ನ ಜಾಗದಲ್ಲಿ ತೋರಿಸಬೇಕಿರುವ ಒಂದು ವಿಜೆಟ್"
#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3391
msgid "Expander Size"
@@ -22551,16 +22397,15 @@ msgstr "ಜಾಗತಿಕ ನಕ್ಷೆ"
msgid ""
"Mouse-based interactive map widget for selecting timezone. Keyboard users "
"should instead select the timezone from the drop-down combination box below."
-msgstr ""
+msgstr "ಸಮಯವನ್ನುಆಯ್ಕೆ ಮಾಡಲು ಮೌಸ್‌ ಆಧರಿತವಾದ ಸಂವಾದಾತ್ಮಕ ಮ್ಯಾಪ್ ವಿಜೆಟ್. ಕೀಲಿ ಮಣೆ ಬಳಕೆದಾರರು ಇದರ ಬದಲಿಗೆ ಕೆಳಗಿರುವ ಡ್ರಾಪ್-ಡೌನ್ ಕಾಂಬಿನೇಶನ್ ಬಾಕ್ಸಿನಿಂದ ಕಾಲವಲಯವನ್ನು ಆರಿಸಬೇಕು."
-#: ../widgets/misc/e-online-button.c:112
-#, fuzzy
+#: ../widgets/misc/e-online-button.c:109
msgid "Online"
-msgstr "ಸಾಲಿನೊಳಗೆ(_I)"
+msgstr "ಆನ್‌ಲೈನ್"
-#: ../widgets/misc/e-online-button.c:113
+#: ../widgets/misc/e-online-button.c:110
msgid "The button state is online"
-msgstr ""
+msgstr "ಗುಂಡಿಯ ಸ್ಥಿತಿಯು ಆನ್‌ಲೈನ್‌ನಲ್ಲಿದೆ"
#: ../widgets/misc/e-pilot-settings.c:103
msgid "Sync with:"
diff --git a/po/nb.po b/po/nb.po
index 85994d9dcc..652cddc82c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: evolution 2.23.x\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-07-29 12:10+0200\n"
-"PO-Revision-Date: 2008-07-29 12:24+0200\n"
+"POT-Creation-Date: 2008-08-15 13:33+0200\n"
+"PO-Revision-Date: 2008-08-15 13:44+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
"MIME-Version: 1.0\n"
@@ -151,7 +151,7 @@ msgid "calendar view for one or more days"
msgstr "kalendervisning for en eller flere dager"
#: ../a11y/calendar/ea-gnome-calendar.c:188
-#: ../calendar/gui/calendar-component.c:758
+#: ../calendar/gui/calendar-component.c:757
msgid "%A %d %b %Y"
msgstr "%A %d %b %Y"
@@ -162,8 +162,8 @@ msgstr "%A %d %b %Y"
#. You can change the order but don't change the
#. specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:191
-#: ../calendar/gui/calendar-component.c:761
-#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1540
+#: ../calendar/gui/calendar-component.c:760
+#: ../calendar/gui/e-day-view-top-item.c:856 ../calendar/gui/e-day-view.c:1568
#: ../calendar/gui/e-week-view-main-item.c:340
msgid "%a %d %b"
msgstr "%a %d %b"
@@ -171,9 +171,9 @@ msgstr "%a %d %b"
#: ../a11y/calendar/ea-gnome-calendar.c:193
#: ../a11y/calendar/ea-gnome-calendar.c:198
#: ../a11y/calendar/ea-gnome-calendar.c:200
-#: ../calendar/gui/calendar-component.c:763
-#: ../calendar/gui/calendar-component.c:768
-#: ../calendar/gui/calendar-component.c:770
+#: ../calendar/gui/calendar-component.c:762
+#: ../calendar/gui/calendar-component.c:767
+#: ../calendar/gui/calendar-component.c:769
msgid "%a %d %b %Y"
msgstr "%a %d %b %Y"
@@ -181,10 +181,10 @@ msgstr "%a %d %b %Y"
#: ../a11y/calendar/ea-gnome-calendar.c:223
#: ../a11y/calendar/ea-gnome-calendar.c:229
#: ../a11y/calendar/ea-gnome-calendar.c:231
-#: ../calendar/gui/calendar-component.c:782
-#: ../calendar/gui/calendar-component.c:789
-#: ../calendar/gui/calendar-component.c:795
-#: ../calendar/gui/calendar-component.c:797
+#: ../calendar/gui/calendar-component.c:781
+#: ../calendar/gui/calendar-component.c:788
+#: ../calendar/gui/calendar-component.c:794
+#: ../calendar/gui/calendar-component.c:796
msgid "%d %b %Y"
msgstr "%d %b %Y"
@@ -194,8 +194,8 @@ msgstr "%d %b %Y"
#. month name. You can change the order but don't
#. change the specifiers or add anything.
#: ../a11y/calendar/ea-gnome-calendar.c:221
-#: ../calendar/gui/calendar-component.c:787
-#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1556
+#: ../calendar/gui/calendar-component.c:786
+#: ../calendar/gui/e-day-view-top-item.c:860 ../calendar/gui/e-day-view.c:1584
#: ../calendar/gui/e-week-view-main-item.c:354
msgid "%d %b"
msgstr "%d %b"
@@ -339,7 +339,9 @@ msgstr "aktiver"
msgid ""
"'{0}' is a read-only address book and cannot be modified. Please select a "
"different address book from the side bar in the Contacts view."
-msgstr "«{0}» er en skrivebeskyttet adressebok og kan ikke endres. Velg en annen adressebok fra sidelinjen i kontaktvisning."
+msgstr ""
+"«{0}» er en skrivebeskyttet adressebok og kan ikke endres. Velg en annen "
+"adressebok fra sidelinjen i kontaktvisning."
#: ../addressbook/addressbook.error.xml.h:3
msgid ""
@@ -411,7 +413,7 @@ msgstr "Kunne ikke autentisere mot LDAP-tjener."
#. Unknown error
#: ../addressbook/addressbook.error.xml.h:16
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1727
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
msgid "Failed to delete contact"
msgstr "Klarte ikke å slette kontakt"
@@ -592,8 +594,8 @@ msgstr "Konfigurer automatisk fullføring her"
#. Create the contacts group
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:5
-#: ../addressbook/gui/component/addressbook-view.c:1334
-#: ../calendar/gui/calendar-component.c:300 ../calendar/gui/migration.c:396
+#: ../addressbook/gui/component/addressbook-view.c:1326
+#: ../calendar/gui/calendar-component.c:299 ../calendar/gui/migration.c:396
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:580
msgid "Contacts"
@@ -620,7 +622,7 @@ msgid "Evolution Address Book component"
msgstr "Evolution adressebok-komponent"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:11
-msgid "Evolution S/Mime Certificate Management Control"
+msgid "Evolution S/MIME Certificate Management Control"
msgstr "Kontroll for S/MIME sertifikathåndtering for Evolution"
#: ../addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in.h:12
@@ -635,13 +637,13 @@ msgstr "Håndter dine S/MIME-sertifikater her"
#. On This Computer is always first and Search Folders is always last
#: ../addressbook/gui/component/addressbook-component.c:144
#: ../addressbook/gui/component/addressbook-migrate.c:499
-#: ../calendar/gui/calendar-component.c:237
-#: ../calendar/gui/memos-component.c:200 ../calendar/gui/migration.c:475
+#: ../calendar/gui/calendar-component.c:236
+#: ../calendar/gui/memos-component.c:199 ../calendar/gui/migration.c:475
#: ../calendar/gui/migration.c:577 ../calendar/gui/migration.c:1091
-#: ../calendar/gui/tasks-component.c:196 ../mail/em-folder-tree-model.c:200
+#: ../calendar/gui/tasks-component.c:195 ../mail/em-folder-tree-model.c:200
#: ../mail/em-folder-tree-model.c:202 ../mail/em-migrate.c:2906
#: ../mail/mail-component.c:312 ../mail/mail-vfolder.c:216
-#: ../mail/message-list.c:1456
+#: ../mail/message-list.c:1457
msgid "On This Computer"
msgstr "På denne datamaskinen"
@@ -654,10 +656,10 @@ msgstr "På denne datamaskinen"
#: ../addressbook/gui/component/addressbook-migrate.c:507
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:20
#: ../addressbook/gui/widgets/eab-contact-display.c:660
-#: ../calendar/gui/calendar-component.c:248 ../calendar/gui/caltypes.xml.h:29
-#: ../calendar/gui/memos-component.c:209 ../calendar/gui/memotypes.xml.h:27
+#: ../calendar/gui/calendar-component.c:247 ../calendar/gui/caltypes.xml.h:29
+#: ../calendar/gui/memos-component.c:208 ../calendar/gui/memotypes.xml.h:27
#: ../calendar/gui/migration.c:485 ../calendar/gui/migration.c:585
-#: ../calendar/gui/migration.c:1099 ../calendar/gui/tasks-component.c:205
+#: ../calendar/gui/migration.c:1099 ../calendar/gui/tasks-component.c:204
#: ../calendar/gui/tasktypes.xml.h:35 ../mail/em-migrate.c:1058
msgid "Personal"
msgstr "Personlig"
@@ -669,6 +671,7 @@ msgid "On LDAP Servers"
msgstr "På LDAP-tjenere"
#: ../addressbook/gui/component/addressbook-component.c:229
+msgctxt "New"
msgid "_Contact"
msgstr "_Kontakt"
@@ -677,6 +680,7 @@ msgid "Create a new contact"
msgstr "Opprett en ny kontakt"
#: ../addressbook/gui/component/addressbook-component.c:237
+msgctxt "New"
msgid "Contact _List"
msgstr "Kontakt_liste"
@@ -685,11 +689,12 @@ msgid "Create a new contact list"
msgstr "Opprett en ny kontaktliste"
#: ../addressbook/gui/component/addressbook-component.c:244
-#: ../addressbook/gui/component/addressbook-config.c:1192
+#: ../addressbook/gui/component/addressbook-config.c:1206
msgid "New Address Book"
msgstr "Ny adressebok"
#: ../addressbook/gui/component/addressbook-component.c:245
+msgctxt "New"
msgid "Address _Book"
msgstr "Adresse_bok"
@@ -701,61 +706,61 @@ msgstr "Opprett en ny adressebok"
msgid "Failed upgrading Address Book settings or folders."
msgstr "Feil under oppgradering av innstillinger eller mapper for adressebok."
-#: ../addressbook/gui/component/addressbook-config.c:315
+#: ../addressbook/gui/component/addressbook-config.c:316
msgid "Base"
msgstr "Basis"
-#: ../addressbook/gui/component/addressbook-config.c:516
+#: ../addressbook/gui/component/addressbook-config.c:517
#: ../calendar/gui/dialogs/calendar-setup.c:169
msgid "_Type:"
msgstr "_Type:"
-#: ../addressbook/gui/component/addressbook-config.c:618
+#: ../addressbook/gui/component/addressbook-config.c:619
msgid "Copy _book content locally for offline operation"
msgstr "Kopier innholdet i adresse_boken lokalt for frakoblet operasjon"
-#: ../addressbook/gui/component/addressbook-config.c:967
-#: ../addressbook/gui/component/ldap-config.glade.h:20
+#: ../addressbook/gui/component/addressbook-config.c:981
+#: ../addressbook/gui/component/ldap-config.glade.h:22
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:20
#: ../calendar/gui/dialogs/calendar-setup.c:366
#: ../calendar/gui/dialogs/calendar-setup.c:377
#: ../calendar/gui/dialogs/calendar-setup.c:388
#: ../mail/em-folder-properties.c:280 ../mail/mail-config.glade.h:89
-#: ../plugins/itip-formatter/itip-formatter.c:2368
+#: ../plugins/itip-formatter/itip-formatter.c:2367
#: ../smime/gui/smime-ui.glade.h:28
msgid "General"
msgstr "Generelt"
-#: ../addressbook/gui/component/addressbook-config.c:968
-#: ../addressbook/gui/widgets/e-addressbook-view.c:556
+#: ../addressbook/gui/component/addressbook-config.c:982
+#: ../addressbook/gui/widgets/e-addressbook-view.c:555
#: ../mail/importers/pine-importer.c:385
msgid "Address Book"
msgstr "Adressebok"
-#: ../addressbook/gui/component/addressbook-config.c:972
+#: ../addressbook/gui/component/addressbook-config.c:986
msgid "Server Information"
msgstr "Tjenerinformasjon"
-#: ../addressbook/gui/component/addressbook-config.c:974
+#: ../addressbook/gui/component/addressbook-config.c:988
msgid "Authentication"
msgstr "Autentisering"
-#: ../addressbook/gui/component/addressbook-config.c:977
-#: ../addressbook/gui/component/ldap-config.glade.h:15
+#: ../addressbook/gui/component/addressbook-config.c:991
+#: ../addressbook/gui/component/ldap-config.glade.h:17
#: ../smime/gui/smime-ui.glade.h:20
msgid "Details"
msgstr "Detaljer"
-#: ../addressbook/gui/component/addressbook-config.c:978
-#: ../mail/em-folder-browser.c:965
+#: ../addressbook/gui/component/addressbook-config.c:992
+#: ../mail/em-folder-browser.c:982
msgid "Searching"
msgstr "Søker"
-#: ../addressbook/gui/component/addressbook-config.c:980
+#: ../addressbook/gui/component/addressbook-config.c:994
msgid "Downloading"
msgstr "Laster ned"
-#: ../addressbook/gui/component/addressbook-config.c:1190
+#: ../addressbook/gui/component/addressbook-config.c:1204
#: ../addressbook/gui/component/ldap-config.glade.h:11
msgid "Address Book Properties"
msgstr "Egenskaper for adressebok"
@@ -766,9 +771,9 @@ msgid "Migrating..."
msgstr "Migrerer..."
#: ../addressbook/gui/component/addressbook-migrate.c:125
-#: ../calendar/gui/migration.c:195
+#: ../calendar/gui/migration.c:195 ../mail/em-migrate.c:1247
#, c-format
-msgid "Migrating `%s':"
+msgid "Migrating '%s':"
msgstr "Migrerer «%s»:"
#: ../addressbook/gui/component/addressbook-migrate.c:645
@@ -821,68 +826,74 @@ msgstr ""
"\n"
"Vennligst vent mens Evolution migrerer dine mapper..."
-#: ../addressbook/gui/component/addressbook-view.c:430
-#: ../mail/em-folder-utils.c:503
+#: ../addressbook/gui/component/addressbook-view.c:425
+#: ../mail/em-folder-utils.c:502
#, c-format
msgid "Rename the \"%s\" folder to:"
msgstr "Endre navn på mappen «%s» til:"
-#: ../addressbook/gui/component/addressbook-view.c:433
-#: ../mail/em-folder-utils.c:505
+#: ../addressbook/gui/component/addressbook-view.c:428
+#: ../mail/em-folder-utils.c:504
msgid "Rename Folder"
msgstr "Gi nytt navn på mappe"
-#: ../addressbook/gui/component/addressbook-view.c:438
-#: ../mail/em-folder-utils.c:511
+#: ../addressbook/gui/component/addressbook-view.c:433
+#: ../mail/em-folder-utils.c:510
msgid "Folder names cannot contain '/'"
msgstr "Mappenavn kan ikke inneholde tegnet «/»"
-#: ../addressbook/gui/component/addressbook-view.c:950
+#: ../addressbook/gui/component/addressbook-view.c:942
msgid "_New Address Book"
msgstr "_Ny adressebok"
-#: ../addressbook/gui/component/addressbook-view.c:951
+#: ../addressbook/gui/component/addressbook-view.c:943
msgid "Save As vCard..."
msgstr "Lagre som vCard..."
-#: ../addressbook/gui/component/addressbook-view.c:954
-#: ../addressbook/gui/widgets/e-addressbook-view.c:956
-#: ../calendar/gui/calendar-component.c:620
-#: ../calendar/gui/e-calendar-table.c:1588
-#: ../calendar/gui/e-calendar-view.c:1702 ../calendar/gui/e-memo-table.c:941
-#: ../calendar/gui/memos-component.c:469 ../calendar/gui/tasks-component.c:460
-#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1347
+#: ../addressbook/gui/component/addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:955
+#: ../calendar/gui/calendar-component.c:619
+#: ../calendar/gui/e-calendar-table.c:1596
+#: ../calendar/gui/e-calendar-view.c:1693 ../calendar/gui/e-memo-table.c:941
+#: ../calendar/gui/memos-component.c:468 ../calendar/gui/tasks-component.c:459
+#: ../mail/em-folder-tree.c:2111 ../mail/em-folder-view.c:1340
#: ../ui/evolution-addressbook.xml.h:49 ../ui/evolution-calendar.xml.h:40
#: ../ui/evolution-mail-list.xml.h:35 ../ui/evolution-memos.xml.h:16
#: ../ui/evolution-tasks.xml.h:24
msgid "_Delete"
msgstr "_Slett"
-#: ../addressbook/gui/component/addressbook-view.c:957
-msgid "_Properties..."
-msgstr "E_genskaper ..."
+#: ../addressbook/gui/component/addressbook-view.c:949
+#: ../calendar/gui/calendar-component.c:622
+#: ../calendar/gui/dialogs/comp-editor.c:2035
+#: ../calendar/gui/memos-component.c:471 ../calendar/gui/tasks-component.c:462
+#: ../composer/e-msg-composer.c:1046 ../mail/em-folder-tree.c:2120
+#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
+msgid "_Properties"
+msgstr "Egenska_per..."
-#: ../addressbook/gui/component/addressbook-view.c:1345
+#: ../addressbook/gui/component/addressbook-view.c:1337
msgid "Contact Source Selector"
msgstr "Valg av kontaktkilde"
-#: ../addressbook/gui/component/addressbook.c:99
+#: ../addressbook/gui/component/addressbook.c:103
msgid "Accessing LDAP Server anonymously"
msgstr "Aksesserer LDAP-tjener anonymt"
-#: ../addressbook/gui/component/addressbook.c:200
+#: ../addressbook/gui/component/addressbook.c:208
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:536
msgid "Failed to authenticate.\n"
msgstr "Kunne ikke autentisere.\n"
-#: ../addressbook/gui/component/addressbook.c:207
+#: ../addressbook/gui/component/addressbook.c:215
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:516
#, c-format
msgid "Enter password for %s (user %s)"
msgstr "Oppgi passord for %s (bruker %s)"
-#: ../addressbook/gui/component/addressbook.c:215
+#: ../addressbook/gui/component/addressbook.c:223
#: ../calendar/common/authentication.c:51
+#: ../plugins/google-account-setup/google-source.c:498
#: ../plugins/publish-calendar/publish-calendar.c:190
#: ../smime/gui/component.c:50
msgid "Enter password"
@@ -985,73 +996,78 @@ msgstr "Alltid"
msgid "Anonymously"
msgstr "Anonymt"
-#: ../addressbook/gui/component/ldap-config.glade.h:14
+#. To translators: If enabled, addressbook will only fetch contacts from the server until either set time limit or amount of contacts limit reached
+#: ../addressbook/gui/component/ldap-config.glade.h:15
+msgid "B_rowse this book until limit reached"
+msgstr "B_la gjennom denne boken til grensen nås"
+
+#: ../addressbook/gui/component/ldap-config.glade.h:16
msgid "Basic"
msgstr "Grunnleggende"
-#: ../addressbook/gui/component/ldap-config.glade.h:16
+#: ../addressbook/gui/component/ldap-config.glade.h:18
msgid "Distinguished name"
msgstr "Distinguished name"
-#: ../addressbook/gui/component/ldap-config.glade.h:17
+#: ../addressbook/gui/component/ldap-config.glade.h:19
msgid "Email address"
msgstr "E-postadresse"
-#: ../addressbook/gui/component/ldap-config.glade.h:18
+#: ../addressbook/gui/component/ldap-config.glade.h:20
msgid ""
"Evolution will use this email address to authenticate you with the server."
msgstr ""
"Evolution vil bruke denne e-post adressen til å autentisere deg mot tjeneren."
-#: ../addressbook/gui/component/ldap-config.glade.h:19
+#: ../addressbook/gui/component/ldap-config.glade.h:21
msgid "Find Possible Search Bases"
msgstr "Finn mulige søkebaser"
-#: ../addressbook/gui/component/ldap-config.glade.h:21
+#: ../addressbook/gui/component/ldap-config.glade.h:23
msgid "Lo_gin:"
msgstr "Lo_gin"
-#: ../addressbook/gui/component/ldap-config.glade.h:22
+#: ../addressbook/gui/component/ldap-config.glade.h:24
#: ../mail/em-account-editor.c:760
msgid "Never"
msgstr "Aldri"
#. Translators: This string is a "Use secure connection" option for
#. the Mailer. It will not use an encrypted connection.
-#: ../addressbook/gui/component/ldap-config.glade.h:23
+#: ../addressbook/gui/component/ldap-config.glade.h:25
#: ../mail/em-account-editor.c:288
msgid "No encryption"
msgstr "Ingen kryptering"
-#: ../addressbook/gui/component/ldap-config.glade.h:24
+#: ../addressbook/gui/component/ldap-config.glade.h:26
msgid "One"
msgstr "En"
#. Translators: This string is a "Use secure connection" option for
#. the Mailer. SSL (Secure Sockets Layer) is commonly known by this
#. abbreviation.
-#: ../addressbook/gui/component/ldap-config.glade.h:25
+#: ../addressbook/gui/component/ldap-config.glade.h:27
#: ../mail/em-account-editor.c:296
msgid "SSL encryption"
msgstr "SSL-kryptering"
-#: ../addressbook/gui/component/ldap-config.glade.h:26
+#: ../addressbook/gui/component/ldap-config.glade.h:28
msgid "Search Filter"
msgstr "Søkefilter"
-#: ../addressbook/gui/component/ldap-config.glade.h:27
+#: ../addressbook/gui/component/ldap-config.glade.h:29
msgid "Search _base:"
msgstr "Søke_base:"
-#: ../addressbook/gui/component/ldap-config.glade.h:28
+#: ../addressbook/gui/component/ldap-config.glade.h:30
msgid "Search _filter:"
msgstr "Søke_filter:"
-#: ../addressbook/gui/component/ldap-config.glade.h:29
+#: ../addressbook/gui/component/ldap-config.glade.h:31
msgid "Search filter"
msgstr "Søkefilter"
-#: ../addressbook/gui/component/ldap-config.glade.h:30
+#: ../addressbook/gui/component/ldap-config.glade.h:32
msgid ""
"Search filter is the type of the objects searched for, while performing the "
"search. If this is not modified, by default search will be performed on "
@@ -1060,7 +1076,7 @@ msgstr ""
"Søkefilter angir type objekter det skal søkes etter når et søk utføres. Hvis "
"dette ikke endres vil søket bruke objektklassen «person» som forvalg."
-#: ../addressbook/gui/component/ldap-config.glade.h:31
+#: ../addressbook/gui/component/ldap-config.glade.h:33
msgid ""
"Selecting this option means that Evolution will only connect to your LDAP "
"server if your LDAP server supports SSL."
@@ -1068,7 +1084,7 @@ msgstr ""
"Hvis du velger dette alternativet vil Evolution kun koble til din LDAP-"
"tjener hvis denne støtter SSL."
-#: ../addressbook/gui/component/ldap-config.glade.h:32
+#: ../addressbook/gui/component/ldap-config.glade.h:34
msgid ""
"Selecting this option means that Evolution will only connect to your LDAP "
"server if your LDAP server supports TLS."
@@ -1076,7 +1092,7 @@ msgstr ""
"Hvis du velger dette alternativet vil Evolution kun koble til din LDAP-"
"tjener hvis denne støtter TLS."
-#: ../addressbook/gui/component/ldap-config.glade.h:33
+#: ../addressbook/gui/component/ldap-config.glade.h:35
msgid ""
"Selecting this option means that your server does not support either SSL or "
"TLS. This means that your connection will be insecure, and that you will be "
@@ -1086,23 +1102,23 @@ msgstr ""
"eller TLS. Dette betyr at din tilkobling vil være usikker, og at du vil være "
"sårbar for sikkerhetshull. "
-#: ../addressbook/gui/component/ldap-config.glade.h:34
+#: ../addressbook/gui/component/ldap-config.glade.h:36
msgid "Sub"
msgstr "Under"
-#: ../addressbook/gui/component/ldap-config.glade.h:35
+#: ../addressbook/gui/component/ldap-config.glade.h:37
msgid "Supported Search Bases"
msgstr "Støttede søkebaser"
#. Translators: This string is a "Use secure connection" option for
#. the Mailer. TLS (Transport Layer Security) is commonly known by
#. this abbreviation.
-#: ../addressbook/gui/component/ldap-config.glade.h:36
+#: ../addressbook/gui/component/ldap-config.glade.h:38
#: ../mail/em-account-editor.c:292
msgid "TLS encryption"
msgstr "TLS-kryptering"
-#: ../addressbook/gui/component/ldap-config.glade.h:37
+#: ../addressbook/gui/component/ldap-config.glade.h:39
msgid ""
"The search base is the distinguished name (DN) of the entry where your "
"searches will begin. If you leave this blank, the search will begin at the "
@@ -1111,7 +1127,7 @@ msgstr ""
"Søkebasen er det distingverte navnet (DN) for oppføringen der dine søk vil "
"starte. Hvis du lar denne stå tom vil søk starte ved roten av katalogtreet."
-#: ../addressbook/gui/component/ldap-config.glade.h:38
+#: ../addressbook/gui/component/ldap-config.glade.h:40
msgid ""
"The search scope defines how deep you would like the search to extend down "
"the directory tree. A search scope of \"sub\" will include all entries below "
@@ -1123,14 +1139,14 @@ msgstr ""
"søkebase. Et søkeområde som «one» vil kun ta med oppføringer ett nivå under "
"basen."
-#: ../addressbook/gui/component/ldap-config.glade.h:39
+#: ../addressbook/gui/component/ldap-config.glade.h:41
msgid ""
"This is the full name of your ldap server. For example, \"ldap.mycompany.com"
"\"."
msgstr ""
"Dette er fullt navn på din LDAP-tjener. For eksempel «ldap.mittfirma.no»."
-#: ../addressbook/gui/component/ldap-config.glade.h:40
+#: ../addressbook/gui/component/ldap-config.glade.h:42
msgid ""
"This is the maximum number of entries to download. Setting this number to be "
"too large will slow down your address book."
@@ -1138,7 +1154,7 @@ msgstr ""
"Dette er maksimalt antall oppføringer som skal lastes ned. Hvis du setter "
"dette tallet for høyt vil adresseboken bli treg."
-#: ../addressbook/gui/component/ldap-config.glade.h:41
+#: ../addressbook/gui/component/ldap-config.glade.h:43
msgid ""
"This is the method Evolution will use to authenticate you. Note that "
"setting this to \"Email Address\" requires anonymous access to your ldap "
@@ -1147,7 +1163,7 @@ msgstr ""
"Dette er metoden Evolution bruker for å autentisere deg. Merk at hvis du "
"setter denne til «E-post-adresse» kreves anonym tilgang til din LDAP-tjener."
-#: ../addressbook/gui/component/ldap-config.glade.h:42
+#: ../addressbook/gui/component/ldap-config.glade.h:44
msgid ""
"This is the name for this server that will appear in your Evolution folder "
"list. It is for display purposes only. "
@@ -1155,7 +1171,7 @@ msgstr ""
"Dette er navnet på denne tjeneren som vises i mappelisten i Evolution. Det "
"brukes kun for visning på skjermen."
-#: ../addressbook/gui/component/ldap-config.glade.h:43
+#: ../addressbook/gui/component/ldap-config.glade.h:45
msgid ""
"This is the port on the LDAP server that Evolution will try to connect to. A "
"list of standard ports has been provided. Ask your system administrator what "
@@ -1165,35 +1181,35 @@ msgstr ""
"liste med standardporter er gitt. Spør din systemadministrator hvilken port "
"du skal bruke."
-#: ../addressbook/gui/component/ldap-config.glade.h:44
+#: ../addressbook/gui/component/ldap-config.glade.h:46
msgid "Using distinguished name (DN)"
msgstr "Bruker distinguished name (DN)"
-#: ../addressbook/gui/component/ldap-config.glade.h:45
+#: ../addressbook/gui/component/ldap-config.glade.h:47
msgid "Using email address"
msgstr "Bruker e-post adresse"
-#: ../addressbook/gui/component/ldap-config.glade.h:46
+#: ../addressbook/gui/component/ldap-config.glade.h:48
msgid "Whenever Possible"
msgstr "Når mulig"
-#: ../addressbook/gui/component/ldap-config.glade.h:47
+#: ../addressbook/gui/component/ldap-config.glade.h:49
msgid "_Add Address Book"
msgstr "Legg til _adressebok"
-#: ../addressbook/gui/component/ldap-config.glade.h:48
+#: ../addressbook/gui/component/ldap-config.glade.h:50
msgid "_Download limit:"
msgstr "Grense for ne_dlasting:"
-#: ../addressbook/gui/component/ldap-config.glade.h:49
+#: ../addressbook/gui/component/ldap-config.glade.h:51
msgid "_Find Possible Search Bases"
msgstr "_Finn mulige søkebaser"
-#: ../addressbook/gui/component/ldap-config.glade.h:50
+#: ../addressbook/gui/component/ldap-config.glade.h:52
msgid "_Login method:"
msgstr "Metode for på_logging:"
-#: ../addressbook/gui/component/ldap-config.glade.h:51
+#: ../addressbook/gui/component/ldap-config.glade.h:53
#: ../calendar/gui/dialogs/calendar-setup.c:226
#: ../mail/mail-config.glade.h:175
#: ../plugins/groupwise-features/properties.glade.h:11
@@ -1201,39 +1217,40 @@ msgstr "Metode for på_logging:"
msgid "_Name:"
msgstr "_Navn:"
-#: ../addressbook/gui/component/ldap-config.glade.h:52
+#: ../addressbook/gui/component/ldap-config.glade.h:54
msgid "_Port:"
msgstr "_Port:"
-#: ../addressbook/gui/component/ldap-config.glade.h:53
+#: ../addressbook/gui/component/ldap-config.glade.h:55
msgid "_Search scope:"
msgstr "_Søkeområde:"
-#: ../addressbook/gui/component/ldap-config.glade.h:54
+#: ../addressbook/gui/component/ldap-config.glade.h:56
#: ../mail/mail-config.glade.h:184
#: ../plugins/publish-calendar/publish-calendar.glade.h:26
msgid "_Server:"
msgstr "Tj_ener:"
-#: ../addressbook/gui/component/ldap-config.glade.h:55
+#: ../addressbook/gui/component/ldap-config.glade.h:57
msgid "_Timeout:"
msgstr "_Tidsavbrudd:"
-#: ../addressbook/gui/component/ldap-config.glade.h:56
+#: ../addressbook/gui/component/ldap-config.glade.h:58
msgid "_Use secure connection:"
msgstr "Br_uk sikker forbindelse:"
-#: ../addressbook/gui/component/ldap-config.glade.h:57
+#: ../addressbook/gui/component/ldap-config.glade.h:59
msgid "cards"
msgstr "kort"
-#: ../addressbook/gui/component/ldap-config.glade.h:58
+#: ../addressbook/gui/component/ldap-config.glade.h:60
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:8
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:27
#: ../calendar/gui/dialogs/event-page.glade.h:20 ../filter/filter.glade.h:17
#: ../plugins/calendar-http/calendar-http.c:279
#: ../plugins/calendar-weather/calendar-weather.c:561
-#: ../plugins/google-account-setup/google-source.c:401
+#: ../plugins/google-account-setup/google-source.c:715
+#: ../plugins/google-account-setup/google-contacts-source.c:328
msgid "minutes"
msgstr "minutter"
@@ -1274,7 +1291,7 @@ msgid "<b>Work</b>"
msgstr "<b>Arbeid</b>"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:10
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:174
#: ../addressbook/gui/widgets/eab-contact-display.c:614
msgid "AIM"
msgstr "AIM"
@@ -1286,16 +1303,16 @@ msgid "Ca_tegories..."
msgstr "Kate_gorier..."
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:12
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:263
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1156
#: ../addressbook/gui/widgets/e-minicard.c:198
msgid "Contact"
msgstr "Kontakt"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:13
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:542
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:557
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2422
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:540
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:555
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2420
msgid "Contact Editor"
msgstr "Kontaktredigering"
@@ -1308,7 +1325,7 @@ msgid "Image"
msgstr "Bilde"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:16
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:58
msgid "MSN Messenger"
msgstr "MSN Messenger"
@@ -1321,7 +1338,7 @@ msgid "Nic_kname:"
msgstr "_Kallenavn:"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:19
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:54
msgid "Novell Groupwise"
msgstr "Novell Groupwise"
@@ -1336,7 +1353,7 @@ msgstr "Telefon"
#. red
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:23
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:229
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:192
#: ../addressbook/gui/widgets/eab-contact-display.c:57
#: ../addressbook/gui/widgets/eab-contact-display.c:643
#: ../mail/em-migrate.c:1057
@@ -1361,8 +1378,8 @@ msgid "_Birthday:"
msgstr "_Fødselsdag:"
#: ../addressbook/gui/contact-editor/contact-editor.glade.h:28
-#: ../calendar/gui/dialogs/event-page.c:788
-#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/event-page.c:787
+#: ../calendar/gui/dialogs/event-page.glade.h:14
#: ../plugins/itip-formatter/itip-view.c:1850
msgid "_Calendar:"
msgstr "_Kalender:"
@@ -1451,16 +1468,16 @@ msgstr "_Hvor:"
msgid "_Zip/Postal Code:"
msgstr "_Zip/postnummer:"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:92
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:91
#: ../addressbook/gui/widgets/eab-contact-display.c:640
#: ../addressbook/gui/widgets/eab-contact-display.c:655
msgid "Address"
msgstr "Adresse"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:99
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:92
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:135
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:98
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:91
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:134
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:291
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1176
#: ../addressbook/gui/widgets/e-addressbook-model.c:312
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:404
@@ -1474,975 +1491,975 @@ msgstr "Adresse"
msgid "Editable"
msgstr "Redigerbar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:132
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:131
msgid "United States"
msgstr "De forente stater"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:133
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:132
msgid "Afghanistan"
msgstr "Afghanistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:134
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:133
msgid "Albania"
msgstr "Albania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:135
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:134
msgid "Algeria"
msgstr "Algerie"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:135
msgid "American Samoa"
msgstr "Amerikansk Samoa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:136
msgid "Andorra"
msgstr "Andorra"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:137
msgid "Angola"
msgstr "Angola"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:138
msgid "Anguilla"
msgstr "Anguilla"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:139
msgid "Antarctica"
msgstr "Antarktika"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:140
msgid "Antigua And Barbuda"
msgstr "Antigua og Barbuda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:141
msgid "Argentina"
msgstr "Argentina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:142
msgid "Armenia"
msgstr "Armenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:143
msgid "Aruba"
msgstr "Aruba"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:144
msgid "Australia"
msgstr "Australia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:145
msgid "Austria"
msgstr "Østerrike"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:146
msgid "Azerbaijan"
msgstr "Aserbajdsjan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:147
msgid "Bahamas"
msgstr "Bahamas"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:148
msgid "Bahrain"
msgstr "Bahrain"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:149
msgid "Bangladesh"
msgstr "Bangladesh"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:150
msgid "Barbados"
msgstr "Barbados"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:151
msgid "Belarus"
msgstr "Hviterussland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:152
msgid "Belgium"
msgstr "Belgia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:153
msgid "Belize"
msgstr "Belize"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:154
msgid "Benin"
msgstr "Benin"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:155
msgid "Bermuda"
msgstr "Bermuda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:156
msgid "Bhutan"
msgstr "Bhutan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:157
msgid "Bolivia"
msgstr "Bolivia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:158
msgid "Bosnia And Herzegowina"
msgstr "Bosnia-Hercegovina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:159
msgid "Botswana"
msgstr "Botswana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:160
msgid "Bouvet Island"
msgstr "Bouvetøya"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:161
msgid "Brazil"
msgstr "Brasil"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:162
msgid "British Indian Ocean Territory"
msgstr "Britisk-Indisk havområde"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:163
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:164
msgid "Bulgaria"
msgstr "Bulgaria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:165
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:166
msgid "Burundi"
msgstr "Burundi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:167
msgid "Cambodia"
msgstr "Kambodsja"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:168
msgid "Cameroon"
msgstr "Kamerun"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:169
msgid "Canada"
msgstr "Canada"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:170
msgid "Cape Verde"
msgstr "Kapp Verde"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:171
msgid "Cayman Islands"
msgstr "Caymanøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:172
msgid "Central African Republic"
msgstr "Den sentralafrikanske republikk"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:173
msgid "Chad"
msgstr "Tsjad"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:174
msgid "Chile"
msgstr "Chile"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:175
msgid "China"
msgstr "Kina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:176
msgid "Christmas Island"
msgstr "Christmasøya"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:177
msgid "Cocos (Keeling) Islands"
msgstr "Kokosøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:178
msgid "Colombia"
msgstr "Colombia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:179
msgid "Comoros"
msgstr "Komorene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:180
msgid "Congo"
msgstr "Kongo-Brazaville"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:181
msgid "Congo, The Democratic Republic Of The"
msgstr "Kongo"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:182
msgid "Cook Islands"
msgstr "Cookøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:183
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:184
msgid "Cote d'Ivoire"
msgstr "Elfenbenskysten"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:185
msgid "Croatia"
msgstr "Kroatia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:186
msgid "Cuba"
msgstr "Kuba"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:187
msgid "Cyprus"
msgstr "Kypros"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:188
msgid "Czech Republic"
msgstr "Tsjekkia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:189
msgid "Denmark"
msgstr "Danmark"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:190
msgid "Djibouti"
msgstr "Djibouti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:191
msgid "Dominica"
msgstr "Dominica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:192
msgid "Dominican Republic"
msgstr "Den dominikanske republikk"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:193
msgid "Ecuador"
msgstr "Ecuador"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:194
msgid "Egypt"
msgstr "Egypt"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:195
msgid "El Salvador"
msgstr "El Salvador"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:196
msgid "Equatorial Guinea"
msgstr "Ekvatorial-Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:197
msgid "Eritrea"
msgstr "Eritrea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:198
msgid "Estonia"
msgstr "Estland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:199
msgid "Ethiopia"
msgstr "Etiopia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:200
msgid "Falkland Islands"
msgstr "Falklandsøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:201
msgid "Faroe Islands"
msgstr "Færøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:202
msgid "Fiji"
msgstr "Fiji"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:203
msgid "Finland"
msgstr "Finland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:204
msgid "France"
msgstr "Frankrike"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:205
msgid "French Guiana"
msgstr "Fransk Guyana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:206
msgid "French Polynesia"
msgstr "Fransk Polynesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:207
msgid "French Southern Territories"
msgstr "Sydlige Franske territorier"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:208
msgid "Gabon"
msgstr "Gabon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:209
msgid "Gambia"
msgstr "Gambia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:210
msgid "Georgia"
msgstr "Georgia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:211
msgid "Germany"
msgstr "Tyskland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:212
msgid "Ghana"
msgstr "Ghana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:213
msgid "Gibraltar"
msgstr "Gibraltar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:214
msgid "Greece"
msgstr "Hellas"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:215
msgid "Greenland"
msgstr "Grønland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:216
msgid "Grenada"
msgstr "Grenada"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:217
msgid "Guadeloupe"
msgstr "Guadelope"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:218
msgid "Guam"
msgstr "Guam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:219
msgid "Guatemala"
msgstr "Guatemala"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:220
msgid "Guernsey"
msgstr "Guernsey"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:221
msgid "Guinea"
msgstr "Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:222
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:223
msgid "Guyana"
msgstr "Guyana"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:224
msgid "Haiti"
msgstr "Haiti"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:225
msgid "Heard And McDonald Islands"
msgstr "Heard og McDonald-øyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:226
msgid "Holy See"
msgstr "Vatikanstaten"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:227
msgid "Honduras"
msgstr "Honduras"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:228
msgid "Hong Kong"
msgstr "Hong Kong"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:229
msgid "Hungary"
msgstr "Ungarn"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:230
msgid "Iceland"
msgstr "Island"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:231
msgid "India"
msgstr "India"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:232
msgid "Indonesia"
msgstr "Indonesia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:233
msgid "Iran"
msgstr "Iran"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:234
msgid "Iraq"
msgstr "Irak"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:235
msgid "Ireland"
msgstr "Irland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:236
msgid "Isle of Man"
msgstr "Isle of Man"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:237
msgid "Israel"
msgstr "Israel"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:238
msgid "Italy"
msgstr "Italia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:239
msgid "Jamaica"
msgstr "Jamaica"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:240
msgid "Japan"
msgstr "Japan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:241
msgid "Jersey"
msgstr "Jersey"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:242
msgid "Jordan"
msgstr "Jordan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:243
msgid "Kazakhstan"
msgstr "Kasakhstan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:244
msgid "Kenya"
msgstr "Kenya"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:245
msgid "Kiribati"
msgstr "Kiribati"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:246
msgid "Korea, Democratic People's Republic Of"
msgstr "Sør-Korea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:247
msgid "Korea, Republic Of"
msgstr "Sør-Korea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:248
msgid "Kuwait"
msgstr "Kuwait"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:249
msgid "Kyrgyzstan"
msgstr "Kirgisistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:250
msgid "Laos"
msgstr "Laos"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:251
msgid "Latvia"
msgstr "Latvia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:252
msgid "Lebanon"
msgstr "Libanon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:253
msgid "Lesotho"
msgstr "Lesotho"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:254
msgid "Liberia"
msgstr "Liberia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:255
msgid "Libya"
msgstr "Libya"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:256
msgid "Liechtenstein"
msgstr "Liechtenstein"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:257
msgid "Lithuania"
msgstr "Litauen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:258
msgid "Luxembourg"
msgstr "Luxembourg"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:259
msgid "Macao"
msgstr "Macao"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:260
msgid "Macedonia"
msgstr "Makedonia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:261
msgid "Madagascar"
msgstr "Madagaskar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:262
msgid "Malawi"
msgstr "Malawi"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:263
msgid "Malaysia"
msgstr "Malaysia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:264
msgid "Maldives"
msgstr "Maldivene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:265
msgid "Mali"
msgstr "Mali"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:266
msgid "Malta"
msgstr "Malta"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:267
msgid "Marshall Islands"
msgstr "Marshalløyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:268
msgid "Martinique"
msgstr "Martinique"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:269
msgid "Mauritania"
msgstr "Mauritania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:270
msgid "Mauritius"
msgstr "Mauritius"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:271
msgid "Mayotte"
msgstr "Mayotte"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:272
msgid "Mexico"
msgstr "Mexico"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:273
msgid "Micronesia"
msgstr "Mikronesiaføderasjonen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:274
msgid "Moldova, Republic Of"
msgstr "Moldova"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:275
msgid "Monaco"
msgstr "Monaco"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:276
msgid "Mongolia"
msgstr "Mongolia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:277
msgid "Montserrat"
msgstr "Montserrat"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:278
msgid "Morocco"
msgstr "Marokko"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:279
msgid "Mozambique"
msgstr "Mosambik"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:280
msgid "Myanmar"
msgstr "Myanmar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:281
msgid "Namibia"
msgstr "Namibia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:282
msgid "Nauru"
msgstr "Nauru"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:283
msgid "Nepal"
msgstr "Nepal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:284
msgid "Netherlands"
msgstr "Nederland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:285
msgid "Netherlands Antilles"
msgstr "De nederlandske antillene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:286
msgid "New Caledonia"
msgstr "Ny-Caledonia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:287
msgid "New Zealand"
msgstr "New Zealand"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:288
msgid "Nicaragua"
msgstr "Nicaragua"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:289
msgid "Niger"
msgstr "Niger"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:290
msgid "Nigeria"
msgstr "Nigeria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:291
msgid "Niue"
msgstr "Niue"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:292
msgid "Norfolk Island"
msgstr "Norfolkøya"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:293
msgid "Northern Mariana Islands"
msgstr "Nord-Marianene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:294
msgid "Norway"
msgstr "Norge"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:295
msgid "Oman"
msgstr "Oman"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:296
msgid "Pakistan"
msgstr "Pakistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:297
msgid "Palau"
msgstr "Palau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:298
msgid "Palestinian Territory"
msgstr "Palestinsk område"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:299
msgid "Panama"
msgstr "Panama"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:300
msgid "Papua New Guinea"
msgstr "Papua Ny-Guinea"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:301
msgid "Paraguay"
msgstr "Paraguay"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:302
msgid "Peru"
msgstr "Peru"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:303
msgid "Philippines"
msgstr "Filippinene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:304
msgid "Pitcairn"
msgstr "Pitcairn"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:305
msgid "Poland"
msgstr "Polen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:306
msgid "Portugal"
msgstr "Portugal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:307
msgid "Puerto Rico"
msgstr "Puerto Rico"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:308
msgid "Qatar"
msgstr "Qatar"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:309
msgid "Reunion"
msgstr "Réunion"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:310
msgid "Romania"
msgstr "Romania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:311
msgid "Russian Federation"
msgstr "Russland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:312
msgid "Rwanda"
msgstr "Rwanda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:313
msgid "Saint Kitts And Nevis"
msgstr "Saint Kitts og Nevis"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:314
msgid "Saint Lucia"
msgstr "Saint Lucia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:315
msgid "Saint Vincent And The Grenadines"
msgstr "Saint Vincent og Grenadinene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:316
msgid "Samoa"
msgstr "Samoa"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:317
msgid "San Marino"
msgstr "San Marino"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:318
msgid "Sao Tome And Principe"
msgstr "São Tomé og Príncipe"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:319
msgid "Saudi Arabia"
msgstr "Saudi-Arabia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:320
msgid "Senegal"
msgstr "Senegal"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:321
msgid "Serbia And Montenegro"
msgstr "Serbia og Montenegro"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:322
msgid "Seychelles"
msgstr "Seychellene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:323
msgid "Sierra Leone"
msgstr "Sierra Leone"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:324
msgid "Singapore"
msgstr "Singapore"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:325
msgid "Slovakia"
msgstr "Slovakia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:326
msgid "Slovenia"
msgstr "Slovenia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:327
msgid "Solomon Islands"
msgstr "Salomonøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:328
msgid "Somalia"
msgstr "Somalia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:329
msgid "South Africa"
msgstr "Sør-Afrika"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:330
msgid "South Georgia And The South Sandwich Islands"
msgstr "Sør-Georgia og de sørlige Sandwichøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:331
msgid "Spain"
msgstr "Spania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:332
msgid "Sri Lanka"
msgstr "Sri Lanka"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:333
msgid "St. Helena"
msgstr "St. Helena"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:334
msgid "St. Pierre And Miquelon"
msgstr "Saint-Pierre-et-Miquelon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:335
msgid "Sudan"
msgstr "Sudan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:336
msgid "Suriname"
msgstr "Surinam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:337
msgid "Svalbard And Jan Mayen Islands"
msgstr "Svalbard og Jan Mayen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:338
msgid "Swaziland"
msgstr "Swaziland"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:339
msgid "Sweden"
msgstr "Sverige"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:340
msgid "Switzerland"
msgstr "Sveits"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:341
msgid "Syria"
msgstr "Syria"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:342
msgid "Taiwan"
msgstr "Taiwan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:343
msgid "Tajikistan"
msgstr "Tadsjikistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:344
msgid "Tanzania, United Republic Of"
msgstr "Tanzania"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:345
msgid "Thailand"
msgstr "Thailand"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:346
msgid "Timor-Leste"
msgstr "Timor-Leste"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:347
msgid "Togo"
msgstr "Togo"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:348
msgid "Tokelau"
msgstr "Tokelau"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:349
msgid "Tonga"
msgstr "Tonga"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:350
msgid "Trinidad And Tobago"
msgstr "Trinidad og Tobago"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:351
msgid "Tunisia"
msgstr "Tunisia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:352
msgid "Turkey"
msgstr "Tyrkia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:353
msgid "Turkmenistan"
msgstr "Turkmenistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:354
msgid "Turks And Caicos Islands"
msgstr "Turks- og Caicosøyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:355
msgid "Tuvalu"
msgstr "Tuvalu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:356
msgid "Uganda"
msgstr "Uganda"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:357
msgid "Ukraine"
msgstr "Ukraina"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:358
msgid "United Arab Emirates"
msgstr "De forente arabiske emirater"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:359
msgid "United Kingdom"
msgstr "Storbritannia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:360
msgid "United States Minor Outlying Islands"
msgstr "USA, mindre omliggende øyer"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:361
msgid "Uruguay"
msgstr "Uruguay"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:362
msgid "Uzbekistan"
msgstr "Usbekistan"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:363
msgid "Vanuatu"
msgstr "Vanuatu"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:364
msgid "Venezuela"
msgstr "Venezuela"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:365
msgid "Viet Nam"
msgstr "Vietnam"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:366
msgid "Virgin Islands, British"
msgstr "Jomfruøyene, Britisk"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:367
msgid "Virgin Islands, U.S."
msgstr "Jomfruøyene, USA"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:368
msgid "Wallis And Futuna Islands"
msgstr "Wallis- og Futuna-øyene"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:369
msgid "Western Sahara"
msgstr "Vest-Sahara"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:370
msgid "Yemen"
msgstr "Jemen"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:371
msgid "Zambia"
msgstr "Zambia"
-#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:373
+#: ../addressbook/gui/contact-editor/e-contact-editor-address.c:372
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:86
+#: ../addressbook/gui/contact-editor/e-contact-editor-fullname.c:85
#: ../mail/em-mailer-prefs.c:466
#: ../plugins/exchange-operations/exchange-delegates.c:952
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:709
@@ -2454,35 +2471,35 @@ msgstr "Zimbabwe"
msgid "Name"
msgstr "Navn"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:54
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:53
msgid "AOL Instant Messenger"
msgstr "AOL øyeblikksmeldinger"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:56
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:55
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:175
#: ../addressbook/gui/widgets/eab-contact-display.c:617
msgid "Jabber"
msgstr "Jabber"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:57
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:56
msgid "Yahoo Messenger"
msgstr "Yahoo Messenger"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:58
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:57
msgid "Gadu-Gadu Messenger"
msgstr "Gadu-Gadu Messenger"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:60
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:181
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:59
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
#: ../addressbook/gui/widgets/eab-contact-display.c:616
msgid "ICQ"
msgstr "ICQ"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:112
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:111
msgid "Service"
msgstr "Tjeneste"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:121
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:120
#: ../calendar/gui/caltypes.xml.h:25
#: ../calendar/gui/e-cal-list-view.etspec.h:3 ../mail/message-list.etspec.h:9
#: ../plugins/publish-calendar/publish-calendar.c:693
@@ -2490,82 +2507,82 @@ msgstr "Tjeneste"
msgid "Location"
msgstr "Lokasjon"
-#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:128
+#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:127
msgid "Username"
msgstr "Brukernavn"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:225
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:195
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:193
#: ../addressbook/gui/widgets/eab-contact-display.c:58
msgid "Home"
msgstr "Hjemme"
#: ../addressbook/gui/contact-editor/e-contact-editor-im.c:233
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:196
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:194
#: ../addressbook/gui/widgets/eab-contact-display.c:59
#: ../addressbook/gui/widgets/eab-contact-display.c:528
msgid "Other"
msgstr "Andre"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:176
#: ../addressbook/gui/widgets/eab-contact-display.c:619
msgid "Yahoo"
msgstr "Yahoo"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:179
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:177
#: ../addressbook/gui/widgets/eab-contact-display.c:620
msgid "Gadu-Gadu"
msgstr "Gadu-Gadu"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:178
#: ../addressbook/gui/widgets/eab-contact-display.c:618
msgid "MSN"
msgstr "MSN"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:182
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:180
#: ../addressbook/gui/widgets/eab-contact-display.c:615
msgid "GroupWise"
msgstr "GroupWise"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:251
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:249
msgid "Source Book"
msgstr "Kildebok"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:258
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:256
msgid "Target Book"
msgstr "Målbok"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:272
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:270
msgid "Is New Contact"
msgstr "Er ny kontakt"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:279
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:277
msgid "Writable Fields"
msgstr "Skrivbare felter"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:286
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:284
msgid "Required Fields"
msgstr "Obligatoriske felt"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:300
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:298
msgid "Changed"
msgstr "Endret"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:552
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2417
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:550
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2415
#, c-format
msgid "Contact Editor - %s"
msgstr "Kontaktredigering - %s"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2813
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2811
msgid "Please select an image for this contact"
msgstr "Vennligst velg et bilde for denne kontakten"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:2814
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:2812
msgid "_No image"
msgstr "_Uten bilde"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3087
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3085
msgid ""
"The contact data is invalid:\n"
"\n"
@@ -2573,23 +2590,23 @@ msgstr ""
"Kontaktdata er ugyldig:\n"
"\n"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3091
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3089
#, c-format
msgid "'%s' has an invalid format"
msgstr "«%s» har ugyldig format"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3098
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3096
#, c-format
msgid "%s'%s' has an invalid format"
msgstr "%s«%s» har ugyldig format"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3113
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3124
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3111
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3122
#, c-format
msgid "%s'%s' is empty"
msgstr "%s«%s» er tom"
-#: ../addressbook/gui/contact-editor/e-contact-editor.c:3139
+#: ../addressbook/gui/contact-editor/e-contact-editor.c:3137
msgid "Invalid contact."
msgstr "Ugyldig kontakt."
@@ -2789,7 +2806,7 @@ msgstr "_Medlemmer"
#: ../addressbook/gui/contact-list-editor/e-contact-list-editor.c:1146
#: ../addressbook/gui/widgets/e-addressbook-model.c:298
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:390
-#: ../addressbook/gui/widgets/e-addressbook-view.c:213
+#: ../addressbook/gui/widgets/e-addressbook-view.c:212
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:116
#: ../addressbook/gui/widgets/e-minicard-view.c:530
msgid "Book"
@@ -2836,14 +2853,15 @@ msgstr ""
"Navnet eller e-post adressen for denne kontakten eksisterer allerede\n"
"i denne mappen. Vil du legge den til likevel?"
-#: ../addressbook/gui/merging/eab-contact-merging.c:185
-msgid "Merge Contact"
-msgstr "Flett kontakt"
-
+#: ../addressbook/gui/merging/eab-contact-duplicate-detected.glade.h:6
#: ../addressbook/gui/merging/eab-contact-merging.c:200
msgid "_Merge"
msgstr "_Flett"
+#: ../addressbook/gui/merging/eab-contact-merging.c:185
+msgid "Merge Contact"
+msgstr "Flett kontakt"
+
#: ../addressbook/gui/merging/eab-contact-merging.c:253
#: ../addressbook/gui/widgets/e-addressbook-view.etspec.h:11
#: ../addressbook/gui/widgets/eab-contact-display.c:592
@@ -2855,14 +2873,14 @@ msgid "Email"
msgstr "E-post"
#: ../addressbook/gui/widgets/addresstypes.xml.h:1
-#: ../addressbook/gui/widgets/e-addressbook-view.c:162
-#: ../calendar/gui/cal-search-bar.c:77 ../calendar/gui/caltypes.xml.h:3
+#: ../addressbook/gui/widgets/e-addressbook-view.c:161
+#: ../calendar/gui/cal-search-bar.c:76 ../calendar/gui/caltypes.xml.h:3
#: ../calendar/gui/memotypes.xml.h:3 ../calendar/gui/tasktypes.xml.h:5
msgid "Any field contains"
msgstr "Et felt inneholder"
#: ../addressbook/gui/widgets/addresstypes.xml.h:2
-#: ../addressbook/gui/widgets/e-addressbook-view.c:161
+#: ../addressbook/gui/widgets/e-addressbook-view.c:160
msgid "Email begins with"
msgstr "E-post begynner med"
@@ -2883,7 +2901,7 @@ msgstr[1] "%d kontakter"
#: ../addressbook/gui/widgets/e-addressbook-model.c:305
#: ../addressbook/gui/widgets/e-addressbook-reflow-adapter.c:397
-#: ../addressbook/gui/widgets/e-addressbook-view.c:227
+#: ../addressbook/gui/widgets/e-addressbook-view.c:226
#: ../addressbook/gui/widgets/e-minicard-view-widget.c:123
#: ../addressbook/gui/widgets/e-minicard-view.c:537
msgid "Query"
@@ -2906,15 +2924,15 @@ msgstr "Modell"
msgid "Error modifying card"
msgstr "Feil ved endring av kort"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:160
+#: ../addressbook/gui/widgets/e-addressbook-view.c:159
msgid "Name begins with"
msgstr "Navn begynner med"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:220
+#: ../addressbook/gui/widgets/e-addressbook-view.c:219
msgid "Source"
msgstr "Kilde"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:234
+#: ../addressbook/gui/widgets/e-addressbook-view.c:233
#: ../calendar/gui/e-calendar-table.etspec.h:12
#: ../calendar/gui/e-meeting-list-view.c:508
#: ../calendar/gui/e-meeting-time-sel.etspec.h:11
@@ -2922,92 +2940,92 @@ msgstr "Kilde"
msgid "Type"
msgstr "Type"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:813
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:812
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1953
msgid "Save as vCard..."
msgstr "Lagre som vCard..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:934
-#: ../calendar/gui/dialogs/comp-editor.c:2032
-#: ../calendar/gui/e-calendar-table.c:1566
-#: ../calendar/gui/e-calendar-view.c:1680 ../calendar/gui/e-memo-table.c:924
+#: ../addressbook/gui/widgets/e-addressbook-view.c:933
+#: ../calendar/gui/dialogs/comp-editor.c:2033
+#: ../calendar/gui/e-calendar-table.c:1574
+#: ../calendar/gui/e-calendar-view.c:1671 ../calendar/gui/e-memo-table.c:924
#: ../ui/evolution-addressbook.xml.h:56
msgid "_Open"
msgstr "_Åpne"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:936
+#: ../addressbook/gui/widgets/e-addressbook-view.c:935
msgid "_New Contact..."
msgstr "_Ny kontakt..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:937
+#: ../addressbook/gui/widgets/e-addressbook-view.c:936
msgid "New Contact _List..."
msgstr "Ny kontakt_liste..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:940
+#: ../addressbook/gui/widgets/e-addressbook-view.c:939
msgid "_Save as vCard..."
msgstr "Lagre _som vCard..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:941
+#: ../addressbook/gui/widgets/e-addressbook-view.c:940
msgid "_Forward Contact"
msgstr "_Videresend kontakt"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:942
+#: ../addressbook/gui/widgets/e-addressbook-view.c:941
msgid "_Forward Contacts"
msgstr "_Videresend kontakter"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:943
+#: ../addressbook/gui/widgets/e-addressbook-view.c:942
msgid "Send _Message to Contact"
msgstr "Send _melding til kontakt"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:944
+#: ../addressbook/gui/widgets/e-addressbook-view.c:943
msgid "Send _Message to List"
msgstr "Send _melding til liste"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:945
+#: ../addressbook/gui/widgets/e-addressbook-view.c:944
msgid "Send _Message to Contacts"
msgstr "Send _melding til kontakter"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:946
+#: ../addressbook/gui/widgets/e-addressbook-view.c:945
msgid "_Print"
msgstr "_Skriv ut"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:949
+#: ../addressbook/gui/widgets/e-addressbook-view.c:948
msgid "Cop_y to Address Book..."
msgstr "_Kopier til adressebok..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:950
+#: ../addressbook/gui/widgets/e-addressbook-view.c:949
msgid "Mo_ve to Address Book..."
msgstr "_Flytt til adressebok..."
-#: ../addressbook/gui/widgets/e-addressbook-view.c:953
+#: ../addressbook/gui/widgets/e-addressbook-view.c:952
msgid "Cu_t"
msgstr "Klipp u_t"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:954
-#: ../calendar/gui/dialogs/comp-editor.c:479
-#: ../calendar/gui/e-calendar-table.c:1574
-#: ../calendar/gui/e-calendar-view.c:1687 ../calendar/gui/e-memo-table.c:932
-#: ../composer/e-msg-composer.c:2058 ../mail/em-folder-tree.c:1005
-#: ../mail/em-folder-view.c:1332 ../mail/message-list.c:2046
+#: ../addressbook/gui/widgets/e-addressbook-view.c:953
+#: ../calendar/gui/dialogs/comp-editor.c:480
+#: ../calendar/gui/e-calendar-table.c:1582
+#: ../calendar/gui/e-calendar-view.c:1678 ../calendar/gui/e-memo-table.c:932
+#: ../composer/e-msg-composer.c:2057 ../mail/em-folder-tree.c:1005
+#: ../mail/em-folder-view.c:1325 ../mail/message-list.c:2044
#: ../ui/evolution-addressbook.xml.h:46 ../ui/evolution-calendar.xml.h:39
-#: ../ui/evolution-mail-message.xml.h:104 ../ui/evolution-memos.xml.h:15
+#: ../ui/evolution-mail-message.xml.h:103 ../ui/evolution-memos.xml.h:15
#: ../ui/evolution-tasks.xml.h:23
msgid "_Copy"
msgstr "_Kopier"
-#: ../addressbook/gui/widgets/e-addressbook-view.c:955
+#: ../addressbook/gui/widgets/e-addressbook-view.c:954
msgid "P_aste"
msgstr "_Lim inn"
#. All, unmatched, separator
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1517
-#: ../calendar/gui/cal-search-bar.c:618 ../calendar/gui/cal-search-bar.c:661
-#: ../calendar/gui/cal-search-bar.c:680
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1524
+#: ../calendar/gui/cal-search-bar.c:625 ../calendar/gui/cal-search-bar.c:668
+#: ../calendar/gui/cal-search-bar.c:687
msgid "Any Category"
msgstr "Enhver kategori"
#. E_BOOK_ERROR_OTHER_ERROR
-#: ../addressbook/gui/widgets/e-addressbook-view.c:1727
+#: ../addressbook/gui/widgets/e-addressbook-view.c:1734
#: ../addressbook/gui/widgets/eab-gui-util.c:77
msgid "Other error"
msgstr "Annen feil"
@@ -3242,7 +3260,10 @@ msgid ""
"\n"
"\n"
"Searching for the Contacts..."
-msgstr "\n\nSøker etter kontakter..."
+msgstr ""
+"\n"
+"\n"
+"Søker etter kontakter..."
#: ../addressbook/gui/widgets/e-minicard-view.c:180
msgid ""
@@ -3317,16 +3338,16 @@ msgstr "Valgt"
msgid "Has Cursor"
msgstr "Har markør"
-#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:628
+#: ../addressbook/gui/widgets/eab-contact-display.c:172 ../mail/em-popup.c:627
msgid "_Open Link in Browser"
msgstr "_Åpne lenke i nettleser"
#: ../addressbook/gui/widgets/eab-contact-display.c:173
-#: ../mail/em-folder-view.c:2810
+#: ../mail/em-folder-view.c:2795
msgid "_Copy Link Location"
msgstr "_Kopier lokasjon for lenke"
-#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:629
+#: ../addressbook/gui/widgets/eab-contact-display.c:174 ../mail/em-popup.c:628
msgid "_Send New Message To..."
msgstr "_Send ny melding til..."
@@ -3370,9 +3391,8 @@ msgstr "Videosamtale"
#: ../addressbook/gui/widgets/eab-contact-display.c:636
#: ../calendar/gui/calendar-commands.c:92
-#: ../calendar/gui/calendar-component.c:806
#: ../calendar/gui/dialogs/calendar-setup.c:367
-#: ../calendar/gui/gnome-cal.c:2376
+#: ../calendar/gui/gnome-cal.c:2451
#: ../plugins/exchange-operations/exchange-delegates-user.c:76
#: ../plugins/exchange-operations/exchange-folder.c:574
#: ../plugins/groupwise-account-setup/camel-gw-listener.c:425
@@ -3386,7 +3406,7 @@ msgstr "Kalender"
#: ../addressbook/gui/widgets/eab-contact-display.c:637
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:18
-#: ../calendar/gui/dialogs/event-editor.c:114
+#: ../calendar/gui/dialogs/event-editor.c:113
msgid "Free/Busy"
msgstr "Ledig/opptatt"
@@ -3408,13 +3428,13 @@ msgid "Web Log"
msgstr "Nettdagbok"
#: ../addressbook/gui/widgets/eab-contact-display.c:656
-#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2352
+#: ../calendar/gui/caltypes.xml.h:6 ../calendar/gui/e-calendar-view.c:2343
#: ../calendar/gui/memotypes.xml.h:5 ../calendar/gui/tasktypes.xml.h:8
msgid "Birthday"
msgstr "Fødselsdag"
#: ../addressbook/gui/widgets/eab-contact-display.c:657
-#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2353
+#: ../calendar/gui/caltypes.xml.h:1 ../calendar/gui/e-calendar-view.c:2344
#: ../calendar/gui/memotypes.xml.h:1 ../calendar/gui/tasktypes.xml.h:3
msgid "Anniversary"
msgstr "Bryllupsdag"
@@ -3487,7 +3507,7 @@ msgstr "Protokollen er ikke støttet"
#: ../calendar/gui/e-cal-model-tasks.c:360
#: ../calendar/gui/e-cal-model-tasks.c:677
#: ../calendar/gui/e-calendar-table.c:240
-#: ../calendar/gui/e-calendar-table.c:635 ../calendar/gui/print.c:2523
+#: ../calendar/gui/e-calendar-table.c:643 ../calendar/gui/print.c:2555
msgid "Canceled"
msgstr "Avbrutt"
@@ -3528,7 +3548,12 @@ msgstr "Ikke tilgjengelig i frakoblet modus"
msgid "Invalid server version"
msgstr "Ugyldig versjon av tjener"
-#: ../addressbook/gui/widgets/eab-gui-util.c:101
+#. E_BOOK_ERROR_UNSUPPORTED_AUTHENTICATION_METHOD
+#: ../addressbook/gui/widgets/eab-gui-util.c:79
+msgid "Unsupported authentication method"
+msgstr "Autentiseringsmetoden er ikke støttet"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:102
msgid ""
"We were unable to open this addressbook. This either means this book is not "
"marked for offline usage or not yet downloaded for offline usage. Please "
@@ -3538,7 +3563,7 @@ msgstr ""
"for frakoblet bruk eller at den ikke er lastet ned enda. Last adresseboken i "
"tilkoblet tilstand for å laste ned innholdet"
-#: ../addressbook/gui/widgets/eab-gui-util.c:110
+#: ../addressbook/gui/widgets/eab-gui-util.c:111
#, c-format
msgid ""
"We were unable to open this addressbook. Please check that the path %s "
@@ -3547,7 +3572,7 @@ msgstr ""
"Kunne ikke åpne denne adresseboken. Vennligst sjekk at stien %s eksisterer "
"og at du har rettigheter til å aksessere den."
-#: ../addressbook/gui/widgets/eab-gui-util.c:119
+#: ../addressbook/gui/widgets/eab-gui-util.c:120
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the LDAP server is unreachable."
@@ -3555,7 +3580,7 @@ msgstr ""
"Kunne ikke åpne denne adresseboken. Dette betyr enten at du har skrevet inn "
"en ugyldig URI, eller at LDAP-tjeneren ikke kan nås."
-#: ../addressbook/gui/widgets/eab-gui-util.c:124
+#: ../addressbook/gui/widgets/eab-gui-util.c:125
msgid ""
"This version of Evolution does not have LDAP support compiled in to it. If "
"you want to use LDAP in Evolution, you must install an LDAP-enabled "
@@ -3565,7 +3590,7 @@ msgstr ""
"ønsker å bruke LDAP i Evolution må du installere en pakke som har denne "
"støtten."
-#: ../addressbook/gui/widgets/eab-gui-util.c:131
+#: ../addressbook/gui/widgets/eab-gui-util.c:132
msgid ""
"We were unable to open this addressbook. This either means you have entered "
"an incorrect URI, or the server is unreachable."
@@ -3573,7 +3598,11 @@ msgstr ""
"Kunne ikke åpne denne adresseboken. Dette betyr enten at du har skrevet inn "
"en ugyldig URI, eller at tjeneren ikke kan nås."
-#: ../addressbook/gui/widgets/eab-gui-util.c:154
+#: ../addressbook/gui/widgets/eab-gui-util.c:138
+msgid "Detailed error:"
+msgstr "Detaljert feil:"
+
+#: ../addressbook/gui/widgets/eab-gui-util.c:161
msgid ""
"More cards matched this query than either the server is \n"
"configured to return or Evolution is configured to display.\n"
@@ -3585,7 +3614,7 @@ msgstr ""
"Gjør søket ditt mer nøyaktig eller hev grensen på resultater i\n"
"brukervalgene til mappetjeneren for denne adresseboken."
-#: ../addressbook/gui/widgets/eab-gui-util.c:160
+#: ../addressbook/gui/widgets/eab-gui-util.c:167
msgid ""
"The time to execute this query exceeded the server limit or the limit\n"
"you have configured for this addressbook. Please make your search\n"
@@ -3597,45 +3626,45 @@ msgstr ""
"nøyaktig eller hev tidsgrensen i brukervalgene til mappetjeneren\n"
"for denne adresseboken."
-#: ../addressbook/gui/widgets/eab-gui-util.c:166
+#: ../addressbook/gui/widgets/eab-gui-util.c:173
msgid "The backend for this addressbook was unable to parse this query."
msgstr "Bakenden for denne adresseboken forsto ikke denne spørringen."
-#: ../addressbook/gui/widgets/eab-gui-util.c:169
+#: ../addressbook/gui/widgets/eab-gui-util.c:176
msgid "The backend for this addressbook refused to perform this query."
msgstr "Bakenden for denne adresseboken nektet å utføre denne spørringen."
-#: ../addressbook/gui/widgets/eab-gui-util.c:172
+#: ../addressbook/gui/widgets/eab-gui-util.c:179
msgid "This query did not complete successfully."
msgstr "Denne spørringen ble ikke fullført."
-#: ../addressbook/gui/widgets/eab-gui-util.c:194
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
msgid "Error adding list"
msgstr "Feil under innlegging av liste"
-#: ../addressbook/gui/widgets/eab-gui-util.c:194
-#: ../addressbook/gui/widgets/eab-gui-util.c:670
+#: ../addressbook/gui/widgets/eab-gui-util.c:201
+#: ../addressbook/gui/widgets/eab-gui-util.c:677
msgid "Error adding contact"
msgstr "Feil under innlegging av kontakt"
-#: ../addressbook/gui/widgets/eab-gui-util.c:205
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying list"
msgstr "Feil ved endring av liste"
-#: ../addressbook/gui/widgets/eab-gui-util.c:205
+#: ../addressbook/gui/widgets/eab-gui-util.c:212
msgid "Error modifying contact"
msgstr "Feil under endring av kontakt"
-#: ../addressbook/gui/widgets/eab-gui-util.c:217
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
msgid "Error removing list"
msgstr "Feil under fjerning av liste"
-#: ../addressbook/gui/widgets/eab-gui-util.c:217
-#: ../addressbook/gui/widgets/eab-gui-util.c:620
+#: ../addressbook/gui/widgets/eab-gui-util.c:224
+#: ../addressbook/gui/widgets/eab-gui-util.c:627
msgid "Error removing contact"
msgstr "Feil under fjerning av kontakt"
-#: ../addressbook/gui/widgets/eab-gui-util.c:299
+#: ../addressbook/gui/widgets/eab-gui-util.c:306
#, c-format
msgid ""
"Opening %d contact will open %d new window as well.\n"
@@ -3650,16 +3679,16 @@ msgstr[1] ""
"Åpning av %d kontakter vil medføre at %d nye vinduer vil\n"
"vises på skjermen. Vil du virkelig vise alle disse kontaktene?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:307
+#: ../addressbook/gui/widgets/eab-gui-util.c:314
msgid "_Don't Display"
msgstr "Ikke _vis"
-#: ../addressbook/gui/widgets/eab-gui-util.c:308
+#: ../addressbook/gui/widgets/eab-gui-util.c:315
msgid "Display _All Contacts"
msgstr "Vis _alle kontakter"
#. For Translators only: "it" refers to the filename %s.
-#: ../addressbook/gui/widgets/eab-gui-util.c:334
+#: ../addressbook/gui/widgets/eab-gui-util.c:341
#, c-format
msgid ""
"%s already exists\n"
@@ -3668,65 +3697,65 @@ msgstr ""
"%s eksisterer allerede\n"
"Vil du overskrive den?"
-#: ../addressbook/gui/widgets/eab-gui-util.c:338
+#: ../addressbook/gui/widgets/eab-gui-util.c:345
msgid "Overwrite"
msgstr "Overskriv"
#. more than one, finding the total number of contacts might
#. * hit performance while saving large number of contacts
#.
-#: ../addressbook/gui/widgets/eab-gui-util.c:379
-#: ../addressbook/gui/widgets/eab-gui-util.c:382
+#: ../addressbook/gui/widgets/eab-gui-util.c:386
+#: ../addressbook/gui/widgets/eab-gui-util.c:389
msgid "contact"
msgid_plural "contacts"
msgstr[0] "kontakt"
msgstr[1] "kontakter"
#. This is a filename. Translators take note.
-#: ../addressbook/gui/widgets/eab-gui-util.c:428
+#: ../addressbook/gui/widgets/eab-gui-util.c:435
msgid "card.vcf"
msgstr "kort.vcf"
-#: ../addressbook/gui/widgets/eab-gui-util.c:465
+#: ../addressbook/gui/widgets/eab-gui-util.c:472
msgid "Select Address Book"
msgstr "Velg adressebok"
-#: ../addressbook/gui/widgets/eab-gui-util.c:579
+#: ../addressbook/gui/widgets/eab-gui-util.c:586
msgid "list"
msgstr "liste"
-#: ../addressbook/gui/widgets/eab-gui-util.c:731
+#: ../addressbook/gui/widgets/eab-gui-util.c:738
msgid "Move contact to"
msgstr "Flytt kontakt til"
-#: ../addressbook/gui/widgets/eab-gui-util.c:733
+#: ../addressbook/gui/widgets/eab-gui-util.c:740
msgid "Copy contact to"
msgstr "Kopier kontakt til"
-#: ../addressbook/gui/widgets/eab-gui-util.c:736
+#: ../addressbook/gui/widgets/eab-gui-util.c:743
msgid "Move contacts to"
msgstr "Flytt kontakter til"
-#: ../addressbook/gui/widgets/eab-gui-util.c:738
+#: ../addressbook/gui/widgets/eab-gui-util.c:745
msgid "Copy contacts to"
msgstr "Kopier kontakter til"
-#: ../addressbook/gui/widgets/eab-gui-util.c:883
+#: ../addressbook/gui/widgets/eab-gui-util.c:890
msgid "Multiple vCards"
msgstr "Flere vCard"
-#: ../addressbook/gui/widgets/eab-gui-util.c:890
+#: ../addressbook/gui/widgets/eab-gui-util.c:897
#, c-format
msgid "vCard for %s"
msgstr "vCard for %s"
-#: ../addressbook/gui/widgets/eab-gui-util.c:902
-#: ../addressbook/gui/widgets/eab-gui-util.c:928
+#: ../addressbook/gui/widgets/eab-gui-util.c:909
+#: ../addressbook/gui/widgets/eab-gui-util.c:935
#, c-format
msgid "Contact information"
msgstr "Kontaktinformasjon"
-#: ../addressbook/gui/widgets/eab-gui-util.c:930
+#: ../addressbook/gui/widgets/eab-gui-util.c:937
#, c-format
msgid "Contact information for %s"
msgstr "Kontaktinformasjon for %s"
@@ -3955,7 +3984,7 @@ msgstr "Skyggelegging"
#. FIXME: Take care of i18n
#: ../addressbook/printing/e-contact-print.glade.h:36
-#: ../plugins/exchange-operations/exchange-account-setup.c:1055
+#: ../plugins/exchange-operations/exchange-account-setup.c:1069
#: ../plugins/exchange-operations/exchange-calendar.c:231
#: ../plugins/exchange-operations/exchange-contacts.c:217
msgid "Size:"
@@ -4084,14 +4113,18 @@ msgstr "Uhåndtert feil"
msgid ""
"'{0}' is a read-only calendar and cannot be modified. Please select a "
"different calendar from the side bar in the Calendar view."
-msgstr "«{0}» er en skrivebeskyttet kalender og kan ikke endres. Velg en annen kalender fra sidelinjen i kalendervisning."
+msgstr ""
+"«{0}» er en skrivebeskyttet kalender og kan ikke endres. Velg en annen "
+"kalender fra sidelinjen i kalendervisning."
#. For Translators: {0} is the name of the calendar source
#: ../calendar/calendar.error.xml.h:4
msgid ""
"'{0}' is a read-only calendar and cannot be modified. Please select a "
"different calendar that can accept appointments."
-msgstr "«{0}» er en skrivebeskyttet kalender og kan ikke endres. Velg en annen kalender som kan motta avtaler."
+msgstr ""
+"«{0}» er en skrivebeskyttet kalender og kan ikke endres. Velg en annen "
+"kalender som kan motta avtaler."
#: ../calendar/calendar.error.xml.h:5
msgid ""
@@ -4182,19 +4215,19 @@ msgid "Are you sure you want to delete this appointment?"
msgstr "Er du sikker på at du vil slette denne avtalen?"
#: ../calendar/calendar.error.xml.h:22
-#: ../calendar/gui/dialogs/delete-comp.c:179
+#: ../calendar/gui/dialogs/delete-comp.c:178
#, c-format
msgid "Are you sure you want to delete this meeting?"
msgstr "Er du sikker på at du vil slette dette møtet?"
#: ../calendar/calendar.error.xml.h:23
-#: ../calendar/gui/dialogs/delete-comp.c:185
+#: ../calendar/gui/dialogs/delete-comp.c:184
#, c-format
msgid "Are you sure you want to delete this memo?"
msgstr "Er du sikker på at du vil slette dette notatet?"
#: ../calendar/calendar.error.xml.h:24
-#: ../calendar/gui/dialogs/delete-comp.c:182
+#: ../calendar/gui/dialogs/delete-comp.c:181
#, c-format
msgid "Are you sure you want to delete this task?"
msgstr "Er du sikker på at du vil slette denne oppgaven?"
@@ -4443,7 +4476,7 @@ msgstr ""
"Oppgavene dine vil ikke være tilgjengelige før Evolution startes på nytt."
#: ../calendar/calendar.error.xml.h:75
-#: ../composer/mail-composer.error.xml.h:29
+#: ../composer/mail-composer.error.xml.h:30
msgid "_Discard Changes"
msgstr "_Forkast endringer"
@@ -4456,7 +4489,7 @@ msgid "_Save Changes"
msgstr "_Lagre endringer"
#: ../calendar/calendar.error.xml.h:78
-#: ../composer/mail-composer.error.xml.h:33 ../mail/mail.error.xml.h:142
+#: ../composer/mail-composer.error.xml.h:34 ../mail/mail.error.xml.h:142
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:6
msgid "_Send"
msgstr "_Send"
@@ -4512,12 +4545,13 @@ msgid "Could not write pilot's ToDo application block"
msgstr "Kunne ikke skrive til pilotens applikasjonsblokk for oppgaveliste"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:1
-#: ../plugins/itip-formatter/itip-formatter.c:2359
+#: ../plugins/itip-formatter/itip-formatter.c:2358
msgid "Calendar and Tasks"
msgstr "Kalender og oppgaver"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:2
-#: ../calendar/gui/calendar-component.c:1403
+#: ../calendar/gui/calendar-component.c:805
+#: ../calendar/gui/calendar-component.c:1402
msgid "Calendars"
msgstr "Kalendere"
@@ -4559,17 +4593,17 @@ msgstr "_Notater"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:12
#: ../calendar/gui/e-memo-table.c:280 ../calendar/gui/e-memos.c:1120
-#: ../calendar/gui/gnome-cal.c:1702 ../calendar/gui/memos-component.c:549
-#: ../calendar/gui/memos-component.c:1102 ../calendar/gui/memos-control.c:353
+#: ../calendar/gui/gnome-cal.c:1774 ../calendar/gui/memos-component.c:548
+#: ../calendar/gui/memos-component.c:1101 ../calendar/gui/memos-control.c:353
#: ../calendar/gui/memos-control.c:369
msgid "Memos"
msgstr "Notater"
#: ../calendar/gui/GNOME_Evolution_Calendar.server.in.in.h:13
-#: ../calendar/gui/e-calendar-table.c:696 ../calendar/gui/e-tasks.c:1429
-#: ../calendar/gui/gnome-cal.c:1574 ../calendar/gui/print.c:1966
-#: ../calendar/gui/tasks-component.c:540
-#: ../calendar/gui/tasks-component.c:1091 ../calendar/gui/tasks-control.c:492
+#: ../calendar/gui/e-calendar-table.c:704 ../calendar/gui/e-tasks.c:1429
+#: ../calendar/gui/gnome-cal.c:1642 ../calendar/gui/print.c:1982
+#: ../calendar/gui/tasks-component.c:539
+#: ../calendar/gui/tasks-component.c:1090 ../calendar/gui/tasks-control.c:492
#: ../calendar/gui/tasks-control.c:508
#: ../calendar/importers/icalendar-importer.c:74
#: ../calendar/importers/icalendar-importer.c:735
@@ -4594,25 +4628,26 @@ msgstr "_Oppgaver"
msgid "Evolution Calendar alarm notification service"
msgstr "Tjeneste for alarm-meldinger i Evolution kalender"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:102
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:101
msgid "minute"
msgid_plural "minutes"
msgstr[0] "minutt"
msgstr[1] "minutter"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:117
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:116
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:6
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:25
#: ../calendar/gui/dialogs/event-page.glade.h:19 ../filter/filter.glade.h:15
#: ../plugins/calendar-http/calendar-http.c:280
#: ../plugins/calendar-weather/calendar-weather.c:562
-#: ../plugins/google-account-setup/google-source.c:402
+#: ../plugins/google-account-setup/google-source.c:716
+#: ../plugins/google-account-setup/google-contacts-source.c:329
msgid "hours"
msgid_plural "hours"
msgstr[0] "timer"
msgstr[1] "timer"
-#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:273
+#: ../calendar/gui/alarm-notify/alarm-notify-dialog.c:270
msgid "Start time"
msgstr "Starttid:"
@@ -4623,8 +4658,8 @@ msgstr "Avtaler"
#. Location
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:2
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1593
#: ../calendar/gui/alarm-notify/alarm-queue.c:1599
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1605
#: ../calendar/gui/e-itip-control.c:1172
#: ../plugins/itip-formatter/itip-view.c:1004
msgid "Location:"
@@ -4635,14 +4670,14 @@ msgid "Snooze _time:"
msgstr "Utsett-_tid:"
#: ../calendar/gui/alarm-notify/alarm-notify.glade.h:4
-#: ../calendar/gui/dialogs/comp-editor.c:1331
+#: ../calendar/gui/dialogs/comp-editor.c:1332
#: ../calendar/gui/dialogs/recurrence-page.glade.h:10
#: ../filter/filter.glade.h:11 ../mail/mail-config.glade.h:167
#: ../plugins/exchange-operations/exchange-delegates.glade.h:15
#: ../plugins/publish-calendar/publish-calendar.glade.h:21
#: ../ui/evolution-addressbook.xml.h:51 ../ui/evolution-calendar.xml.h:41
#: ../ui/evolution-mail-messagedisplay.xml.h:5 ../ui/evolution-memos.xml.h:17
-#: ../ui/evolution-tasks.xml.h:25 ../ui/evolution.xml.h:41
+#: ../ui/evolution-tasks.xml.h:25 ../ui/evolution.xml.h:42
#: ../widgets/menus/gal-define-views.glade.h:5
msgid "_Edit"
msgstr "R_ediger"
@@ -4655,32 +4690,32 @@ msgstr "Ut_sett"
msgid "location of appointment"
msgstr "lokasjon for avtalen"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1454
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1576
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1457
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1582
msgid "No summary available."
msgstr "Sammendrag er ikke tilgjengelig."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1463
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1465
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1466
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1468
msgid "No description available."
msgstr "Ingen beskrivelse tilgjengelig."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1473
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1476
msgid "No location information available."
msgstr "Beskrivelse av lokasjon er ikke tilgjengelig."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1517
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1521
#, c-format
msgid "You have %d alarms"
msgstr "Du har %d alarmer"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1677
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1705
-#: ../mail/mail-component.c:1585
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1683
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1711
+#: ../mail/mail-component.c:1587
msgid "Warning"
msgstr "Advarsel"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1681
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1687
msgid ""
"Evolution does not support calendar reminders with\n"
"email notifications yet, but this reminder was\n"
@@ -4692,7 +4727,7 @@ msgstr ""
"å sende e-post. Evolution vil vise en vanlig dialog\n"
"for påminnelse i stedet."
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1711
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1717
#, c-format
msgid ""
"An Evolution Calendar reminder is about to trigger. This reminder is "
@@ -4709,7 +4744,7 @@ msgstr ""
"\n"
"Er du sikker på at du ønsker å kjøre dette programmet?"
-#: ../calendar/gui/alarm-notify/alarm-queue.c:1725
+#: ../calendar/gui/alarm-notify/alarm-queue.c:1731
msgid "Do not ask me about this program again."
msgstr "Ikke spør meg om dette programmet igjen."
@@ -4990,12 +5025,12 @@ msgid "Show status field in the event/task/meeting editor"
msgstr "Vis statusfelt ved redigering av hendelse/oppgave/møte"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:53
-#: ../mail/evolution-mail.schemas.in.h:122
+#: ../mail/evolution-mail.schemas.in.h:124
msgid "Show the \"Preview\" pane"
msgstr "Vis forhåndsvisningsvinduet"
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:54
-#: ../mail/evolution-mail.schemas.in.h:123
+#: ../mail/evolution-mail.schemas.in.h:125
msgid "Show the \"Preview\" pane."
msgstr "Vis forhåndsvisningsvinduet."
@@ -5045,7 +5080,7 @@ msgid "Time the last alarm ran, in time_t."
msgstr "Tid for forrige alarm, som time_t."
#: ../calendar/gui/apps_evolution_calendar.schemas.in.h:65
-#: ../plugins/startup-wizard/startup-wizard.c:108
+#: ../plugins/startup-wizard/startup-wizard.c:107
msgid "Timezone"
msgstr "Tidssone"
@@ -5183,56 +5218,56 @@ msgstr "Hvilket minutt arbeidsdagen starter"
msgid "daylight savings time"
msgstr "daylight savings time"
-#: ../calendar/gui/cal-search-bar.c:72
+#: ../calendar/gui/cal-search-bar.c:71
msgid "Summary contains"
msgstr "Sammendrag inneholder"
-#: ../calendar/gui/cal-search-bar.c:73
+#: ../calendar/gui/cal-search-bar.c:72
msgid "Description contains"
msgstr "Beskrivelse inneholder"
-#: ../calendar/gui/cal-search-bar.c:74
+#: ../calendar/gui/cal-search-bar.c:73
msgid "Category is"
msgstr "Kategorien er"
-#: ../calendar/gui/cal-search-bar.c:75
+#: ../calendar/gui/cal-search-bar.c:74
msgid "Comment contains"
msgstr "Kommentar inneholder"
-#: ../calendar/gui/cal-search-bar.c:76
+#: ../calendar/gui/cal-search-bar.c:75
msgid "Location contains"
msgstr "Lokasjon inneholder"
-#: ../calendar/gui/cal-search-bar.c:622 ../calendar/gui/cal-search-bar.c:665
-#: ../calendar/gui/cal-search-bar.c:684
+#: ../calendar/gui/cal-search-bar.c:629 ../calendar/gui/cal-search-bar.c:672
+#: ../calendar/gui/cal-search-bar.c:691
msgid "Unmatched"
msgstr "Ingen treff"
-#: ../calendar/gui/cal-search-bar.c:630
+#: ../calendar/gui/cal-search-bar.c:637
msgid "Next 7 Days' Tasks"
msgstr "Oppgaver for de neste 7 dagene"
-#: ../calendar/gui/cal-search-bar.c:634
+#: ../calendar/gui/cal-search-bar.c:641
msgid "Active Tasks"
msgstr "Aktive oppgaver"
-#: ../calendar/gui/cal-search-bar.c:638
+#: ../calendar/gui/cal-search-bar.c:645
msgid "Overdue Tasks"
msgstr "Utgåtte oppgaver"
-#: ../calendar/gui/cal-search-bar.c:642
+#: ../calendar/gui/cal-search-bar.c:649
msgid "Completed Tasks"
msgstr "Fullførte oppgaver"
-#: ../calendar/gui/cal-search-bar.c:646
+#: ../calendar/gui/cal-search-bar.c:653
msgid "Tasks with Attachments"
msgstr "Oppgaver med vedlegg"
-#: ../calendar/gui/cal-search-bar.c:692
+#: ../calendar/gui/cal-search-bar.c:699
msgid "Active Appointments"
msgstr "Aktive avtaler"
-#: ../calendar/gui/cal-search-bar.c:696
+#: ../calendar/gui/cal-search-bar.c:703
msgid "Next 7 Days' Appointments"
msgstr "Avtaler for de neste 7 dagene"
@@ -5259,7 +5294,8 @@ msgstr "Slett hendelser eldre enn"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:21 ../filter/filter.glade.h:14
#: ../plugins/calendar-http/calendar-http.c:281
#: ../plugins/calendar-weather/calendar-weather.c:563
-#: ../plugins/google-account-setup/google-source.c:403
+#: ../plugins/google-account-setup/google-source.c:717
+#: ../plugins/google-account-setup/google-contacts-source.c:330
#: ../widgets/misc/e-send-options.glade.h:39
msgid "days"
msgstr "dager"
@@ -5268,103 +5304,99 @@ msgstr "dager"
#. Create the LDAP source group
#. Create the Webcal source group
#. Create the LDAP source group
-#: ../calendar/gui/calendar-component.c:274
-#: ../calendar/gui/memos-component.c:236 ../calendar/gui/migration.c:505
+#: ../calendar/gui/calendar-component.c:273
+#: ../calendar/gui/memos-component.c:235 ../calendar/gui/migration.c:505
#: ../calendar/gui/migration.c:604 ../calendar/gui/migration.c:1118
-#: ../calendar/gui/tasks-component.c:232
+#: ../calendar/gui/tasks-component.c:231
msgid "On The Web"
msgstr "På nettet"
-#: ../calendar/gui/calendar-component.c:311 ../calendar/gui/migration.c:399
+#: ../calendar/gui/calendar-component.c:310 ../calendar/gui/migration.c:399
msgid "Birthdays & Anniversaries"
msgstr "Fødselsdager og jubileum"
#. Create the weather group
-#: ../calendar/gui/calendar-component.c:324
+#: ../calendar/gui/calendar-component.c:323
#: ../plugins/calendar-weather/calendar-weather.c:100
msgid "Weather"
msgstr "Vær"
-#: ../calendar/gui/calendar-component.c:616
+#: ../calendar/gui/calendar-component.c:615
msgid "_New Calendar"
msgstr "_Ny kalender"
-#: ../calendar/gui/calendar-component.c:617
-#: ../calendar/gui/memos-component.c:466 ../calendar/gui/tasks-component.c:457
+#: ../calendar/gui/calendar-component.c:616
+#: ../calendar/gui/memos-component.c:465 ../calendar/gui/tasks-component.c:456
#: ../mail/em-folder-tree.c:2106
msgid "_Copy..."
msgstr "_Kopier..."
-#: ../calendar/gui/calendar-component.c:623
-#: ../calendar/gui/dialogs/comp-editor.c:2034
-#: ../calendar/gui/memos-component.c:472 ../calendar/gui/tasks-component.c:463
-#: ../composer/e-msg-composer.c:1047 ../mail/em-folder-tree.c:2120
-#: ../ui/evolution-addressbook.xml.h:59 ../ui/evolution-mail-list.xml.h:38
-msgid "_Properties"
-msgstr "Egenska_per..."
-
-#: ../calendar/gui/calendar-component.c:950
+#: ../calendar/gui/calendar-component.c:949
msgid "Failed upgrading calendars."
msgstr "Feil under oppgradering av kalendere."
-#: ../calendar/gui/calendar-component.c:1249
+#: ../calendar/gui/calendar-component.c:1248
#, c-format
msgid "Unable to open the calendar '%s' for creating events and meetings"
msgstr "Kan ikke åpne kalender «%s» for oppretting av hendelser og møter"
-#: ../calendar/gui/calendar-component.c:1265
+#: ../calendar/gui/calendar-component.c:1264
msgid "There is no calendar available for creating events and meetings"
msgstr "Ingen kalender er tilgjengelig for oppretting av hendelser og møter"
-#: ../calendar/gui/calendar-component.c:1378
+#: ../calendar/gui/calendar-component.c:1377
msgid "Calendar Source Selector"
msgstr "Valg av kalenderkilde"
-#: ../calendar/gui/calendar-component.c:1596
+#: ../calendar/gui/calendar-component.c:1595
msgid "New appointment"
msgstr "Ny avtale"
-#: ../calendar/gui/calendar-component.c:1597
+#: ../calendar/gui/calendar-component.c:1596
+msgctxt "New"
msgid "_Appointment"
-msgstr "A_vtale"
+msgstr "_Avtale"
-#: ../calendar/gui/calendar-component.c:1598
+#: ../calendar/gui/calendar-component.c:1597
msgid "Create a new appointment"
msgstr "Opprett en ny avtale"
-#: ../calendar/gui/calendar-component.c:1604
+#: ../calendar/gui/calendar-component.c:1603
msgid "New meeting"
msgstr "Nytt møte"
-#: ../calendar/gui/calendar-component.c:1605
+#: ../calendar/gui/calendar-component.c:1604
+msgctxt "New"
msgid "M_eeting"
msgstr "Møt_e"
-#: ../calendar/gui/calendar-component.c:1606
+#: ../calendar/gui/calendar-component.c:1605
msgid "Create a new meeting request"
msgstr "Opprett en ny møteforespørsel"
-#: ../calendar/gui/calendar-component.c:1612
+#: ../calendar/gui/calendar-component.c:1611
msgid "New all day appointment"
msgstr "Ny avtale for hele dagen"
-#: ../calendar/gui/calendar-component.c:1613
+#: ../calendar/gui/calendar-component.c:1612
+msgctxt "New"
msgid "All Day A_ppointment"
msgstr "Avtale for hele _dagen"
-#: ../calendar/gui/calendar-component.c:1614
+#: ../calendar/gui/calendar-component.c:1613
msgid "Create a new all-day appointment"
msgstr "Opprett en ny avtale for hele dagen"
-#: ../calendar/gui/calendar-component.c:1620
+#: ../calendar/gui/calendar-component.c:1619
msgid "New calendar"
msgstr "Ny kalender"
-#: ../calendar/gui/calendar-component.c:1621
+#: ../calendar/gui/calendar-component.c:1620
+msgctxt "New"
msgid "Cale_ndar"
msgstr "Kale_nder"
-#: ../calendar/gui/calendar-component.c:1622
+#: ../calendar/gui/calendar-component.c:1621
msgid "Create a new calendar"
msgstr "Opprett en ny kalender"
@@ -5421,7 +5453,7 @@ msgid "Competition"
msgstr "Konkurranse"
#: ../calendar/gui/caltypes.xml.h:11 ../calendar/gui/e-cal-list-view.c:255
-#: ../calendar/gui/e-cal-model.c:329 ../calendar/gui/e-calendar-table.c:539
+#: ../calendar/gui/e-cal-model.c:333 ../calendar/gui/e-calendar-table.c:547
#: ../calendar/gui/memotypes.xml.h:10
msgid "Confidential"
msgstr "Konfidensiell"
@@ -5514,19 +5546,19 @@ msgid "Phone Calls"
msgstr "Telefonsamtaler"
#: ../calendar/gui/caltypes.xml.h:31 ../calendar/gui/e-cal-list-view.c:254
-#: ../calendar/gui/e-cal-model.c:327 ../calendar/gui/e-calendar-table.c:538
+#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-calendar-table.c:546
#: ../calendar/gui/memotypes.xml.h:29
msgid "Private"
msgstr "Privat"
#: ../calendar/gui/caltypes.xml.h:32 ../calendar/gui/e-cal-list-view.c:253
-#: ../calendar/gui/e-cal-model.c:318 ../calendar/gui/e-cal-model.c:325
-#: ../calendar/gui/e-calendar-table.c:537 ../calendar/gui/memotypes.xml.h:30
+#: ../calendar/gui/e-cal-model.c:322 ../calendar/gui/e-cal-model.c:329
+#: ../calendar/gui/e-calendar-table.c:545 ../calendar/gui/memotypes.xml.h:30
msgid "Public"
msgstr "Offentlig"
#: ../calendar/gui/caltypes.xml.h:33
-#: ../calendar/gui/dialogs/event-editor.c:298
+#: ../calendar/gui/dialogs/event-editor.c:297
msgid "Recurrence"
msgstr "Gjeninntreffelse"
@@ -5535,7 +5567,7 @@ msgstr "Gjeninntreffelse"
#: ../calendar/gui/e-meeting-list-view.c:545
#: ../calendar/gui/e-meeting-time-sel.etspec.h:10
#: ../calendar/gui/memotypes.xml.h:31 ../calendar/gui/tasktypes.xml.h:38
-#: ../mail/em-filter-i18n.h:70 ../mail/message-list.etspec.h:17
+#: ../mail/em-filter-i18n.h:69 ../mail/message-list.etspec.h:17
msgid "Status"
msgstr "Status"
@@ -5614,7 +5646,7 @@ msgstr "Tilgang nektet ved åpning av kalender"
msgid "Unknown error"
msgstr "Ukjent feil"
-#: ../calendar/gui/dialogs/alarm-dialog.c:602
+#: ../calendar/gui/dialogs/alarm-dialog.c:601
msgid "Edit Alarm"
msgstr "Rediger varsel"
@@ -5718,7 +5750,6 @@ msgid "hour(s)"
msgstr "time(r)"
#: ../calendar/gui/dialogs/alarm-dialog.glade.h:26
-#: ../plugins/google-account-setup/google-contacts-source.c:242
msgid "minute(s)"
msgstr "minutt(er)"
@@ -5726,7 +5757,7 @@ msgstr "minutt(er)"
msgid "start of appointment"
msgstr "start på avtale"
-#: ../calendar/gui/dialogs/alarm-list-dialog.c:243
+#: ../calendar/gui/dialogs/alarm-list-dialog.c:242
msgid "Action/Trigger"
msgstr "Handling/utløser"
@@ -5740,12 +5771,12 @@ msgstr "Le_gg til"
msgid "Alarms"
msgstr "Varsel"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:84
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:82
#: ../composer/e-composer-actions.c:64
msgid "_Suggest automatic display of attachment"
msgstr "Fore_slå automatisk visning av vedlegg"
-#: ../calendar/gui/dialogs/cal-attachment-select-file.c:150
+#: ../calendar/gui/dialogs/cal-attachment-select-file.c:143
msgid "Attach file(s)"
msgstr "Legg ved fil(er)"
@@ -5907,7 +5938,7 @@ msgid "Thursday"
msgstr "Torsdag"
#: ../calendar/gui/dialogs/cal-prefs-dialog.glade.h:45
-#: ../calendar/gui/dialogs/event-page.glade.h:13
+#: ../calendar/gui/dialogs/event-page.glade.h:12
msgid "Time _zone:"
msgstr "Tids_sone:"
@@ -6049,48 +6080,48 @@ msgstr "Egenskaper for notatliste"
msgid "New Memo List"
msgstr "Ny notatliste"
-#: ../calendar/gui/dialogs/changed-comp.c:58
+#: ../calendar/gui/dialogs/changed-comp.c:56
msgid "This event has been deleted."
msgstr "Denne hendelsen er slettet."
-#: ../calendar/gui/dialogs/changed-comp.c:62
+#: ../calendar/gui/dialogs/changed-comp.c:60
msgid "This task has been deleted."
msgstr "Denne oppgaven er slettet."
-#: ../calendar/gui/dialogs/changed-comp.c:66
+#: ../calendar/gui/dialogs/changed-comp.c:64
msgid "This memo has been deleted."
msgstr "Dette notatet er slettet."
-#: ../calendar/gui/dialogs/changed-comp.c:75
+#: ../calendar/gui/dialogs/changed-comp.c:73
#, c-format
msgid "%s You have made changes. Forget those changes and close the editor?"
msgstr ""
"%s Du har gjort endringer. Forkast disse endringene og lukk redigering?"
-#: ../calendar/gui/dialogs/changed-comp.c:77
+#: ../calendar/gui/dialogs/changed-comp.c:75
#, c-format
msgid "%s You have made no changes, close the editor?"
msgstr "%s Du har ikke gjort endringer. Lukk redigering?"
-#: ../calendar/gui/dialogs/changed-comp.c:82
+#: ../calendar/gui/dialogs/changed-comp.c:80
msgid "This event has been changed."
msgstr "Denne hendelsen er endret."
-#: ../calendar/gui/dialogs/changed-comp.c:86
+#: ../calendar/gui/dialogs/changed-comp.c:84
msgid "This task has been changed."
msgstr "Denne oppgaven er endret."
-#: ../calendar/gui/dialogs/changed-comp.c:90
+#: ../calendar/gui/dialogs/changed-comp.c:88
msgid "This memo has been changed."
msgstr "Dette notatet er endret."
-#: ../calendar/gui/dialogs/changed-comp.c:99
+#: ../calendar/gui/dialogs/changed-comp.c:97
#, c-format
msgid "%s You have made changes. Forget those changes and update the editor?"
msgstr ""
"%s Du har gjort endringer. Forkast disse endringene og oppdater redigering?"
-#: ../calendar/gui/dialogs/changed-comp.c:101
+#: ../calendar/gui/dialogs/changed-comp.c:99
#, c-format
msgid "%s You have made no changes, update the editor?"
msgstr "%s Du har ikke gjort endringer. Oppdater redigering?"
@@ -6100,294 +6131,294 @@ msgstr "%s Du har ikke gjort endringer. Oppdater redigering?"
msgid "Validation error: %s"
msgstr "Valideringsfeil: %s"
-#: ../calendar/gui/dialogs/comp-editor-util.c:182 ../calendar/gui/print.c:2340
+#: ../calendar/gui/dialogs/comp-editor-util.c:182 ../calendar/gui/print.c:2356
msgid " to "
msgstr " til "
-#: ../calendar/gui/dialogs/comp-editor-util.c:186 ../calendar/gui/print.c:2344
+#: ../calendar/gui/dialogs/comp-editor-util.c:186 ../calendar/gui/print.c:2360
msgid " (Completed "
msgstr " (Fullført "
-#: ../calendar/gui/dialogs/comp-editor-util.c:188 ../calendar/gui/print.c:2346
+#: ../calendar/gui/dialogs/comp-editor-util.c:188 ../calendar/gui/print.c:2362
msgid "Completed "
msgstr "Fullført "
-#: ../calendar/gui/dialogs/comp-editor-util.c:193 ../calendar/gui/print.c:2351
+#: ../calendar/gui/dialogs/comp-editor-util.c:193 ../calendar/gui/print.c:2367
msgid " (Due "
msgstr " (Ferdig "
-#: ../calendar/gui/dialogs/comp-editor-util.c:195 ../calendar/gui/print.c:2353
+#: ../calendar/gui/dialogs/comp-editor-util.c:195 ../calendar/gui/print.c:2369
msgid "Due "
msgstr "Ferdig "
-#: ../calendar/gui/dialogs/comp-editor.c:231
+#: ../calendar/gui/dialogs/comp-editor.c:232
#, c-format
msgid "Attached message - %s"
msgstr "Vedlagt melding - %s"
#. translators, this count will always be >1
-#: ../calendar/gui/dialogs/comp-editor.c:236
-#: ../calendar/gui/dialogs/comp-editor.c:409 ../composer/e-msg-composer.c:1772
-#: ../composer/e-msg-composer.c:1991
+#: ../calendar/gui/dialogs/comp-editor.c:237
+#: ../calendar/gui/dialogs/comp-editor.c:410 ../composer/e-msg-composer.c:1771
+#: ../composer/e-msg-composer.c:1990
#, c-format
msgid "Attached message"
msgid_plural "%d attached messages"
msgstr[0] "Vedlagt melding"
msgstr[1] "%d vedlagte meldinger"
-#: ../calendar/gui/dialogs/comp-editor.c:480 ../composer/e-msg-composer.c:2059
-#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:366
-#: ../mail/em-folder-view.c:1193 ../mail/message-list.c:2047
+#: ../calendar/gui/dialogs/comp-editor.c:481 ../composer/e-msg-composer.c:2058
+#: ../mail/em-folder-tree.c:1006 ../mail/em-folder-utils.c:365
+#: ../mail/em-folder-view.c:1186 ../mail/message-list.c:2045
msgid "_Move"
msgstr "_Flytt"
-#: ../calendar/gui/dialogs/comp-editor.c:482 ../composer/e-msg-composer.c:2061
-#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2049
+#: ../calendar/gui/dialogs/comp-editor.c:483 ../composer/e-msg-composer.c:2060
+#: ../mail/em-folder-tree.c:1008 ../mail/message-list.c:2047
msgid "Cancel _Drag"
msgstr "Avbryt _draoperasjon"
-#: ../calendar/gui/dialogs/comp-editor.c:615
-#: ../calendar/gui/dialogs/comp-editor.c:3253 ../mail/em-utils.c:371
+#: ../calendar/gui/dialogs/comp-editor.c:616
+#: ../calendar/gui/dialogs/comp-editor.c:3249 ../mail/em-utils.c:371
#: ../plugins/prefer-plain/prefer-plain.c:74
#: ../widgets/misc/e-attachment-bar.c:453
msgid "attachment"
msgstr "vedlegg"
-#: ../calendar/gui/dialogs/comp-editor.c:841
+#: ../calendar/gui/dialogs/comp-editor.c:842
msgid "Could not update object"
msgstr "Kunne ikke oppdatere objekt"
-#: ../calendar/gui/dialogs/comp-editor.c:929
+#: ../calendar/gui/dialogs/comp-editor.c:930
msgid "Edit Appointment"
msgstr "Rediger avtale"
-#: ../calendar/gui/dialogs/comp-editor.c:936
+#: ../calendar/gui/dialogs/comp-editor.c:937
#, c-format
msgid "Meeting - %s"
msgstr "Møte- %s"
-#: ../calendar/gui/dialogs/comp-editor.c:938
+#: ../calendar/gui/dialogs/comp-editor.c:939
#, c-format
msgid "Appointment - %s"
msgstr "Avtale - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:944
+#: ../calendar/gui/dialogs/comp-editor.c:945
#, c-format
msgid "Assigned Task - %s"
msgstr "Tildelt oppgave - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:946
+#: ../calendar/gui/dialogs/comp-editor.c:947
#, c-format
msgid "Task - %s"
msgstr "Oppgave - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:951
+#: ../calendar/gui/dialogs/comp-editor.c:952
#, c-format
msgid "Memo - %s"
msgstr "Notat - %s"
-#: ../calendar/gui/dialogs/comp-editor.c:967
+#: ../calendar/gui/dialogs/comp-editor.c:968
msgid "No Summary"
msgstr "Ingen sammendrag"
-#: ../calendar/gui/dialogs/comp-editor.c:1261
+#: ../calendar/gui/dialogs/comp-editor.c:1262
msgid "Click here to close the current window"
msgstr "Klikk her for å lukke dette vinduet"
-#: ../calendar/gui/dialogs/comp-editor.c:1268
+#: ../calendar/gui/dialogs/comp-editor.c:1269
msgid "Copy selected text to the clipboard"
msgstr "Kopier valgt tekst til utklippstavlen"
-#: ../calendar/gui/dialogs/comp-editor.c:1275
+#: ../calendar/gui/dialogs/comp-editor.c:1276
msgid "Cut selected text to the clipboard"
msgstr "Klipp ut valgt tekst til utklippstavlen"
-#: ../calendar/gui/dialogs/comp-editor.c:1282
+#: ../calendar/gui/dialogs/comp-editor.c:1283
msgid "Click here to view help available"
msgstr "klikk her for å vise tilgjengelig hjelp"
-#: ../calendar/gui/dialogs/comp-editor.c:1289
+#: ../calendar/gui/dialogs/comp-editor.c:1290
msgid "Paste text from the clipboard"
msgstr "Lim inn tekst fra utklippstavlen"
-#: ../calendar/gui/dialogs/comp-editor.c:1310
+#: ../calendar/gui/dialogs/comp-editor.c:1311
msgid "Click here to save the current window"
msgstr "Klikk her for å lagre dette vinduet"
-#: ../calendar/gui/dialogs/comp-editor.c:1317
+#: ../calendar/gui/dialogs/comp-editor.c:1318
msgid "Select all text"
msgstr "Velg all tekst"
-#: ../calendar/gui/dialogs/comp-editor.c:1324
+#: ../calendar/gui/dialogs/comp-editor.c:1325
msgid "_Classification"
msgstr "K_lassifisering"
-#: ../calendar/gui/dialogs/comp-editor.c:1338
+#: ../calendar/gui/dialogs/comp-editor.c:1339
#: ../mail/mail-signature-editor.c:208
-#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:42
+#: ../ui/evolution-mail-messagedisplay.xml.h:6 ../ui/evolution.xml.h:43
msgid "_File"
msgstr "_Fil"
-#: ../calendar/gui/dialogs/comp-editor.c:1345
-#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:45
+#: ../calendar/gui/dialogs/comp-editor.c:1346
+#: ../ui/evolution-mail-global.xml.h:24 ../ui/evolution.xml.h:46
msgid "_Help"
msgstr "_Hjelp"
-#: ../calendar/gui/dialogs/comp-editor.c:1352
+#: ../calendar/gui/dialogs/comp-editor.c:1353
msgid "_Insert"
msgstr "Sett _inn"
-#: ../calendar/gui/dialogs/comp-editor.c:1359
+#: ../calendar/gui/dialogs/comp-editor.c:1360
msgid "_Options"
msgstr "_Alternativer"
-#: ../calendar/gui/dialogs/comp-editor.c:1366 ../mail/em-folder-tree.c:2098
+#: ../calendar/gui/dialogs/comp-editor.c:1367 ../mail/em-folder-tree.c:2098
#: ../ui/evolution-addressbook.xml.h:64 ../ui/evolution-mail-global.xml.h:34
#: ../ui/evolution-mail-messagedisplay.xml.h:8 ../ui/evolution-tasks.xml.h:30
-#: ../ui/evolution.xml.h:54
+#: ../ui/evolution.xml.h:55
msgid "_View"
msgstr "_Vis"
-#: ../calendar/gui/dialogs/comp-editor.c:1376
+#: ../calendar/gui/dialogs/comp-editor.c:1377
#: ../composer/e-composer-actions.c:472
msgid "_Attachment..."
msgstr "_Vedlegg..."
-#: ../calendar/gui/dialogs/comp-editor.c:1378
+#: ../calendar/gui/dialogs/comp-editor.c:1379
msgid "Click here to attach a file"
msgstr "klikk her for å legge ved en fil"
-#: ../calendar/gui/dialogs/comp-editor.c:1386
+#: ../calendar/gui/dialogs/comp-editor.c:1387
msgid "_Categories"
msgstr "_Kategorier"
-#: ../calendar/gui/dialogs/comp-editor.c:1388
+#: ../calendar/gui/dialogs/comp-editor.c:1389
msgid "Toggles whether to display categories"
msgstr "Slår av/på visning av kategorier"
-#: ../calendar/gui/dialogs/comp-editor.c:1394
+#: ../calendar/gui/dialogs/comp-editor.c:1395
msgid "Time _Zone"
msgstr "Tids_sone"
-#: ../calendar/gui/dialogs/comp-editor.c:1396
+#: ../calendar/gui/dialogs/comp-editor.c:1397
msgid "Toggles whether the time zone is displayed"
msgstr "Slår av/på visning av tidssone"
-#: ../calendar/gui/dialogs/comp-editor.c:1405
+#: ../calendar/gui/dialogs/comp-editor.c:1406
msgid "Pu_blic"
msgstr "O_ffentlig"
-#: ../calendar/gui/dialogs/comp-editor.c:1407
+#: ../calendar/gui/dialogs/comp-editor.c:1408
msgid "Classify as public"
msgstr "Klassifiser som offentlig"
-#: ../calendar/gui/dialogs/comp-editor.c:1412
+#: ../calendar/gui/dialogs/comp-editor.c:1413
msgid "_Private"
msgstr "_Privat"
-#: ../calendar/gui/dialogs/comp-editor.c:1414
+#: ../calendar/gui/dialogs/comp-editor.c:1415
msgid "Classify as private"
msgstr "Klassifiser som privat"
-#: ../calendar/gui/dialogs/comp-editor.c:1419
+#: ../calendar/gui/dialogs/comp-editor.c:1420
msgid "_Confidential"
msgstr "_Konfidensiell"
-#: ../calendar/gui/dialogs/comp-editor.c:1421
+#: ../calendar/gui/dialogs/comp-editor.c:1422
msgid "Classify as confidential"
msgstr "Klassifiser som konfidensiell"
-#: ../calendar/gui/dialogs/comp-editor.c:1429
+#: ../calendar/gui/dialogs/comp-editor.c:1430
msgid "R_ole Field"
msgstr "R_olle-felt"
-#: ../calendar/gui/dialogs/comp-editor.c:1431
+#: ../calendar/gui/dialogs/comp-editor.c:1432
msgid "Toggles whether the Role field is displayed"
msgstr "Slår av/på visning av rolle-feltet"
-#: ../calendar/gui/dialogs/comp-editor.c:1437
+#: ../calendar/gui/dialogs/comp-editor.c:1438
msgid "_RSVP"
msgstr "_RSVP"
-#: ../calendar/gui/dialogs/comp-editor.c:1439
+#: ../calendar/gui/dialogs/comp-editor.c:1440
msgid "Toggles whether the RSVP field is displayed"
msgstr "Slår av/på visning av RSVP-feltet"
-#: ../calendar/gui/dialogs/comp-editor.c:1445
+#: ../calendar/gui/dialogs/comp-editor.c:1446
msgid "_Status Field"
msgstr "_Status-felt"
-#: ../calendar/gui/dialogs/comp-editor.c:1447
+#: ../calendar/gui/dialogs/comp-editor.c:1448
msgid "Toggles whether the Status field is displayed"
msgstr "Slår av/på visning av status-feltet"
-#: ../calendar/gui/dialogs/comp-editor.c:1453
+#: ../calendar/gui/dialogs/comp-editor.c:1454
msgid "_Type Field"
msgstr "_Type felt"
-#: ../calendar/gui/dialogs/comp-editor.c:1455
+#: ../calendar/gui/dialogs/comp-editor.c:1456
msgid "Toggles whether the Attendee Type is displayed"
msgstr "Slår av/på visning av deltakertype-feltet"
-#: ../calendar/gui/dialogs/comp-editor.c:1765
+#: ../calendar/gui/dialogs/comp-editor.c:1766
#: ../widgets/misc/e-attachment-bar.c:1381
msgid "Recent Docu_ments"
msgstr "Siste doku_menter"
-#: ../calendar/gui/dialogs/comp-editor.c:1784
+#: ../calendar/gui/dialogs/comp-editor.c:1785
#: ../composer/e-composer-actions.c:700
msgid "Attach"
msgstr "Legg ved"
-#: ../calendar/gui/dialogs/comp-editor.c:1879
+#: ../calendar/gui/dialogs/comp-editor.c:1880
#, c-format
msgid "<b>%d</b> Attachment"
msgid_plural "<b>%d</b> Attachments"
msgstr[0] "<b>%d</b> vedlegg"
msgstr[1] "<b>%d</b> vedlegg"
-#: ../calendar/gui/dialogs/comp-editor.c:1911
+#: ../calendar/gui/dialogs/comp-editor.c:1912
msgid "Hide Attachment _Bar"
msgstr "Skjul ve_dleggsfelt"
-#: ../calendar/gui/dialogs/comp-editor.c:1914
-#: ../calendar/gui/dialogs/comp-editor.c:2222
+#: ../calendar/gui/dialogs/comp-editor.c:1915
+#: ../calendar/gui/dialogs/comp-editor.c:2223
msgid "Show Attachment _Bar"
msgstr "Vis ve_dleggsfelt"
-#: ../calendar/gui/dialogs/comp-editor.c:2033
-#: ../calendar/gui/dialogs/event-page.c:1872
-#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1046
+#: ../calendar/gui/dialogs/comp-editor.c:2034
+#: ../calendar/gui/dialogs/event-page.c:1871
+#: ../calendar/gui/dialogs/task-page.c:1193 ../composer/e-msg-composer.c:1045
#: ../plugins/groupwise-features/junk-settings.glade.h:8
#: ../plugins/groupwise-features/properties.glade.h:13
#: ../widgets/table/e-table-config.glade.h:21
msgid "_Remove"
msgstr "Fje_rn"
-#: ../calendar/gui/dialogs/comp-editor.c:2036
-#: ../composer/e-msg-composer.c:1049
+#: ../calendar/gui/dialogs/comp-editor.c:2037
+#: ../composer/e-msg-composer.c:1048
#: ../plugins/attachment-reminder/org-gnome-attachment-reminder.error.xml.h:4
msgid "_Add attachment..."
msgstr "_Legg til vedlegg..."
-#: ../calendar/gui/dialogs/comp-editor.c:2244
-#: ../mail/em-format-html-display.c:2196
+#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../mail/em-format-html-display.c:2195
msgid "Show Attachments"
msgstr "Vis vedlegg"
-#: ../calendar/gui/dialogs/comp-editor.c:2245
+#: ../calendar/gui/dialogs/comp-editor.c:2246
msgid "Press space key to toggle attachment bar"
msgstr "Trykk mellomrom for å slå av/på vedleggsfeltet"
-#: ../calendar/gui/dialogs/comp-editor.c:2394
-#: ../calendar/gui/dialogs/comp-editor.c:2441
-#: ../calendar/gui/dialogs/comp-editor.c:3286
+#: ../calendar/gui/dialogs/comp-editor.c:2390
+#: ../calendar/gui/dialogs/comp-editor.c:2437
+#: ../calendar/gui/dialogs/comp-editor.c:3282
msgid "Changes made to this item may be discarded if an update arrives"
msgstr ""
"Endringer som gjøres i denne oppføringen kan bli forkastet hvis det kommer "
"enoppdatering"
-#: ../calendar/gui/dialogs/comp-editor.c:3315
+#: ../calendar/gui/dialogs/comp-editor.c:3311
msgid "Unable to use current version!"
msgstr "Kan ikke bruke denne versjonen!"
@@ -6403,55 +6434,55 @@ msgstr "Kunne ikke åpne destinasjon"
msgid "Destination is read only"
msgstr "Destinasjonen er skrivebeskyttet"
-#: ../calendar/gui/dialogs/delete-comp.c:202
+#: ../calendar/gui/dialogs/delete-comp.c:201
msgid "_Delete this item from all other recipient's mailboxes?"
msgstr "_Slett denne oppføringen fra andre mottakere's postbokser?"
-#: ../calendar/gui/dialogs/delete-error.c:53
+#: ../calendar/gui/dialogs/delete-error.c:52
msgid "The event could not be deleted due to a corba error"
msgstr "Hendelsen kunne ikke slettes pga en CORBA-feil"
-#: ../calendar/gui/dialogs/delete-error.c:56
+#: ../calendar/gui/dialogs/delete-error.c:55
msgid "The task could not be deleted due to a corba error"
msgstr "Oppgaven kunne ikke slettes pga en CORBA-feil"
-#: ../calendar/gui/dialogs/delete-error.c:59
+#: ../calendar/gui/dialogs/delete-error.c:58
msgid "The memo could not be deleted due to a corba error"
msgstr "Notatet kunne ikke slettes pga en CORBA-feil"
-#: ../calendar/gui/dialogs/delete-error.c:62
+#: ../calendar/gui/dialogs/delete-error.c:61
msgid "The item could not be deleted due to a corba error"
msgstr "Oppføringen kunne ikke slettes pga en CORBA-feil"
-#: ../calendar/gui/dialogs/delete-error.c:69
+#: ../calendar/gui/dialogs/delete-error.c:68
msgid "The event could not be deleted because permission was denied"
msgstr "Hendelsen kunne ikke slettes fordi tilgang ble nektet"
-#: ../calendar/gui/dialogs/delete-error.c:72
+#: ../calendar/gui/dialogs/delete-error.c:71
msgid "The task could not be deleted because permission was denied"
msgstr "Oppgaven kunne ikke slettes fordi tilgang nektes"
-#: ../calendar/gui/dialogs/delete-error.c:75
+#: ../calendar/gui/dialogs/delete-error.c:74
msgid "The memo could not be deleted because permission was denied"
msgstr "Notatet kunne ikke slettes fordi tilgang ble nektet"
-#: ../calendar/gui/dialogs/delete-error.c:78
+#: ../calendar/gui/dialogs/delete-error.c:77
msgid "The item could not be deleted because permission was denied"
msgstr "Oppføringen kunne ikke slettes fordi tilgang ble nektet"
-#: ../calendar/gui/dialogs/delete-error.c:85
+#: ../calendar/gui/dialogs/delete-error.c:84
msgid "The event could not be deleted due to an error"
msgstr "Hendelsen kunne ikke slettes pga en feil"
-#: ../calendar/gui/dialogs/delete-error.c:88
+#: ../calendar/gui/dialogs/delete-error.c:87
msgid "The task could not be deleted due to an error"
msgstr "Oppgaven kunne ikke slettes pga en feil"
-#: ../calendar/gui/dialogs/delete-error.c:91
+#: ../calendar/gui/dialogs/delete-error.c:90
msgid "The memo could not be deleted due to an error"
msgstr "Notatet kunne ikke slettes pga en feil"
-#: ../calendar/gui/dialogs/delete-error.c:94
+#: ../calendar/gui/dialogs/delete-error.c:93
msgid "The item could not be deleted due to an error"
msgstr "Oppføringen kunne ikke slettes pga en feil"
@@ -6468,178 +6499,178 @@ msgstr "Deleger til:"
msgid "Enter Delegate"
msgstr "Skriv inn delegat"
-#: ../calendar/gui/dialogs/event-editor.c:195
+#: ../calendar/gui/dialogs/event-editor.c:194
msgid "_Alarms"
msgstr "V_arsel"
-#: ../calendar/gui/dialogs/event-editor.c:197
+#: ../calendar/gui/dialogs/event-editor.c:196
msgid "Click here to set or unset alarms for this event"
msgstr "Klikk her for å sette eller fjerne varsling for denne hendelsen"
-#: ../calendar/gui/dialogs/event-editor.c:202
+#: ../calendar/gui/dialogs/event-editor.c:201
msgid "_Recurrence"
msgstr "Gjeninnt_reffelse"
-#: ../calendar/gui/dialogs/event-editor.c:204
+#: ../calendar/gui/dialogs/event-editor.c:203
msgid "Make this a recurring event"
msgstr "Gjør denne hendelsen til repeterende"
-#: ../calendar/gui/dialogs/event-editor.c:209
+#: ../calendar/gui/dialogs/event-editor.c:208
#: ../plugins/groupwise-features/org-gnome-compose-send-options.xml.h:2
#: ../widgets/misc/e-send-options.glade.h:19
msgid "Send Options"
msgstr "Alternativer for sending"
-#: ../calendar/gui/dialogs/event-editor.c:211
-#: ../calendar/gui/dialogs/task-editor.c:124
+#: ../calendar/gui/dialogs/event-editor.c:210
+#: ../calendar/gui/dialogs/task-editor.c:123
msgid "Insert advanced send options"
msgstr "Sett inn avanserte alternativer for sending"
-#: ../calendar/gui/dialogs/event-editor.c:219
+#: ../calendar/gui/dialogs/event-editor.c:218
msgid "All _Day Event"
msgstr "Avtale som varer hele _dagen"
-#: ../calendar/gui/dialogs/event-editor.c:221
+#: ../calendar/gui/dialogs/event-editor.c:220
msgid "Toggles whether to have All Day Event"
msgstr "Slår av/på hendelser som varer hele dagen"
-#: ../calendar/gui/dialogs/event-editor.c:227
+#: ../calendar/gui/dialogs/event-editor.c:226
msgid "Show Time as _Busy"
msgstr "Vis tiden som _opptatt"
-#: ../calendar/gui/dialogs/event-editor.c:229
+#: ../calendar/gui/dialogs/event-editor.c:228
msgid "Toggles whether to show time as busy"
msgstr "Slår av/på visning av tid som opptatt"
-#: ../calendar/gui/dialogs/event-editor.c:238
+#: ../calendar/gui/dialogs/event-editor.c:237
msgid "_Free/Busy"
msgstr "_Ledig/opptatt"
-#: ../calendar/gui/dialogs/event-editor.c:240
+#: ../calendar/gui/dialogs/event-editor.c:239
msgid "Query free / busy information for the attendees"
msgstr "Slå opp ledig/opptatt informasjon for deltakerene"
-#: ../calendar/gui/dialogs/event-editor.c:295
+#: ../calendar/gui/dialogs/event-editor.c:294
msgid "Appoint_ment"
msgstr "Av_tale"
-#: ../calendar/gui/dialogs/event-page.c:732
-#: ../calendar/gui/dialogs/event-page.c:2715
+#: ../calendar/gui/dialogs/event-page.c:731
+#: ../calendar/gui/dialogs/event-page.c:2714
msgid "This event has alarms"
msgstr "Denne hendelsen har varsel"
-#: ../calendar/gui/dialogs/event-page.c:795
-#: ../calendar/gui/dialogs/event-page.glade.h:11
+#: ../calendar/gui/dialogs/event-page.c:794
+#: ../calendar/gui/dialogs/event-page.glade.h:10
#: ../calendar/gui/dialogs/meeting-page.glade.h:5
#: ../calendar/gui/dialogs/memo-page.glade.h:2
msgid "Or_ganizer:"
msgstr "Or_ganisator:"
-#: ../calendar/gui/dialogs/event-page.c:841
+#: ../calendar/gui/dialogs/event-page.c:840
msgid "_Delegatees"
msgstr "_Delegater"
-#: ../calendar/gui/dialogs/event-page.c:843
+#: ../calendar/gui/dialogs/event-page.c:842
msgid "Atte_ndees"
msgstr "De_ltakere"
-#: ../calendar/gui/dialogs/event-page.c:1027
+#: ../calendar/gui/dialogs/event-page.c:1026
msgid "Event with no start date"
msgstr "Hendelse uten startdato"
-#: ../calendar/gui/dialogs/event-page.c:1030
+#: ../calendar/gui/dialogs/event-page.c:1029
msgid "Event with no end date"
msgstr "Hendelse uten sluttdato"
-#: ../calendar/gui/dialogs/event-page.c:1199
+#: ../calendar/gui/dialogs/event-page.c:1198
#: ../calendar/gui/dialogs/memo-page.c:636
#: ../calendar/gui/dialogs/task-page.c:808
msgid "Start date is wrong"
msgstr "Startdato er feil"
-#: ../calendar/gui/dialogs/event-page.c:1209
+#: ../calendar/gui/dialogs/event-page.c:1208
msgid "End date is wrong"
msgstr "Sluttdato er feil"
-#: ../calendar/gui/dialogs/event-page.c:1232
+#: ../calendar/gui/dialogs/event-page.c:1231
msgid "Start time is wrong"
msgstr "Tid for start er feil"
-#: ../calendar/gui/dialogs/event-page.c:1239
+#: ../calendar/gui/dialogs/event-page.c:1238
msgid "End time is wrong"
msgstr "Tid for slutt er feil"
-#: ../calendar/gui/dialogs/event-page.c:1402
+#: ../calendar/gui/dialogs/event-page.c:1401
#: ../calendar/gui/dialogs/memo-page.c:677
#: ../calendar/gui/dialogs/task-page.c:868
msgid "The organizer selected no longer has an account."
msgstr "Valgt organisator har ingen konto lenger."
-#: ../calendar/gui/dialogs/event-page.c:1408
+#: ../calendar/gui/dialogs/event-page.c:1407
#: ../calendar/gui/dialogs/memo-page.c:683
#: ../calendar/gui/dialogs/task-page.c:874
msgid "An organizer is required."
msgstr "En organisator kreves."
-#: ../calendar/gui/dialogs/event-page.c:1433
+#: ../calendar/gui/dialogs/event-page.c:1432
#: ../calendar/gui/dialogs/task-page.c:898
msgid "At least one attendee is required."
msgstr "Minst en deltaker kreves."
-#: ../calendar/gui/dialogs/event-page.c:1873
+#: ../calendar/gui/dialogs/event-page.c:1872
#: ../calendar/gui/dialogs/task-page.c:1194
msgid "_Add "
msgstr "_Legg til"
-#: ../calendar/gui/dialogs/event-page.c:2591
+#: ../calendar/gui/dialogs/event-page.c:2590
#, c-format
msgid "Unable to open the calendar '%s'."
msgstr "Kunne ikke åpne kalender «%s»."
-#: ../calendar/gui/dialogs/event-page.c:2635
+#: ../calendar/gui/dialogs/event-page.c:2634
#: ../calendar/gui/dialogs/memo-page.c:886
#: ../calendar/gui/dialogs/task-page.c:1793
#, c-format
msgid "You are acting on behalf of %s"
msgstr "Du opptrer på vegne av %s"
-#: ../calendar/gui/dialogs/event-page.c:2915
+#: ../calendar/gui/dialogs/event-page.c:2914
#, c-format
msgid "%d day before appointment"
msgid_plural "%d days before appointment"
msgstr[0] "%d dag før avtalen"
msgstr[1] "%d dager før avtalen"
-#: ../calendar/gui/dialogs/event-page.c:2921
+#: ../calendar/gui/dialogs/event-page.c:2920
#, c-format
msgid "%d hour before appointment"
msgid_plural "%d hours before appointment"
msgstr[0] "%d time før avtalen"
msgstr[1] "%d timer før avtalen"
-#: ../calendar/gui/dialogs/event-page.c:2927
+#: ../calendar/gui/dialogs/event-page.c:2926
#, c-format
msgid "%d minute before appointment"
msgid_plural "%d minutes before appointment"
msgstr[0] "%d minutt før avtalen"
msgstr[1] "%d minutter før avtalen"
-#: ../calendar/gui/dialogs/event-page.c:2940
+#: ../calendar/gui/dialogs/event-page.c:2939
msgid "Customize"
msgstr "Tilpass"
#. an empty string is the same as 'None'
-#: ../calendar/gui/dialogs/event-page.c:2945
+#: ../calendar/gui/dialogs/event-page.c:2944
#: ../calendar/gui/dialogs/meeting-page.glade.h:4
#: ../calendar/gui/e-cal-model-tasks.c:669
-#: ../calendar/gui/e-itip-control.c:1158 ../filter/filter-rule.c:943
+#: ../calendar/gui/e-itip-control.c:1158 ../filter/filter-rule.c:944
#: ../mail/em-account-editor.c:685 ../mail/em-account-editor.c:1409
-#: ../mail/em-account-prefs.c:438 ../mail/em-junk-hook.c:94
+#: ../mail/em-account-prefs.c:438 ../mail/em-junk-hook.c:93
#: ../plugins/calendar-weather/calendar-weather.c:370
#: ../plugins/calendar-weather/calendar-weather.c:424
#: ../plugins/exchange-operations/exchange-delegates-user.c:193
#: ../plugins/exchange-operations/exchange-delegates.glade.h:9
-#: ../plugins/itip-formatter/itip-formatter.c:2022
+#: ../plugins/itip-formatter/itip-formatter.c:2021
#: ../widgets/misc/e-cell-date-edit.c:307 ../widgets/misc/e-dateedit.c:1517
#: ../widgets/misc/e-dateedit.c:1731
#: ../widgets/misc/e-signature-combo-box.c:69
@@ -6667,23 +6698,25 @@ msgid "Custom Alarm:"
msgstr "Egendefinert varsel:"
#: ../calendar/gui/dialogs/event-page.glade.h:9
-msgid "D_escription:"
-msgstr "B_eskrivelse:"
-
-#: ../calendar/gui/dialogs/event-page.glade.h:10
msgid "Event Description"
msgstr "Beskrivelse av hendelse"
-#: ../calendar/gui/dialogs/event-page.glade.h:12
+#: ../calendar/gui/dialogs/event-page.glade.h:11
#: ../calendar/gui/dialogs/memo-page.glade.h:4
#: ../calendar/gui/dialogs/task-page.glade.h:6
msgid "Su_mmary:"
msgstr "Sa_mmendrag:"
-#: ../calendar/gui/dialogs/event-page.glade.h:14
+#: ../calendar/gui/dialogs/event-page.glade.h:13
msgid "_Alarm"
msgstr "_Varsel"
+#: ../calendar/gui/dialogs/event-page.glade.h:15
+#: ../calendar/gui/dialogs/memo-page.glade.h:6
+#: ../calendar/gui/dialogs/task-page.glade.h:8
+msgid "_Description:"
+msgstr "_Beskrivelse:"
+
#: ../calendar/gui/dialogs/event-page.glade.h:17
msgid "_Time:"
msgstr "_Tid:"
@@ -6719,7 +6752,7 @@ msgstr "Ko_ntakter..."
msgid "Organizer:"
msgstr "Organisator:"
-#: ../calendar/gui/dialogs/memo-editor.c:141 ../calendar/gui/print.c:2448
+#: ../calendar/gui/dialogs/memo-editor.c:141 ../calendar/gui/print.c:2476
msgid "Memo"
msgstr "Notat"
@@ -6744,10 +6777,6 @@ msgstr "Sta_rtdato:"
msgid "T_o:"
msgstr "T_il:"
-#: ../calendar/gui/dialogs/memo-page.glade.h:6
-msgid "_Description:"
-msgstr "_Beskrivelse:"
-
#: ../calendar/gui/dialogs/memo-page.glade.h:7
#: ../calendar/gui/dialogs/task-page.c:360
#: ../calendar/gui/dialogs/task-page.glade.h:9
@@ -6985,17 +7014,17 @@ msgstr "<span weight=\"bold\">Status</span>"
#: ../calendar/gui/e-cal-model-tasks.c:358
#: ../calendar/gui/e-cal-model-tasks.c:675
#: ../calendar/gui/e-calendar-table.c:238
-#: ../calendar/gui/e-calendar-table.c:634 ../calendar/gui/e-itip-control.c:946
+#: ../calendar/gui/e-calendar-table.c:642 ../calendar/gui/e-itip-control.c:946
#: ../calendar/gui/e-meeting-store.c:181 ../calendar/gui/e-meeting-store.c:204
-#: ../calendar/gui/print.c:2520 ../calendar/gui/tasktypes.xml.h:13
+#: ../calendar/gui/print.c:2552 ../calendar/gui/tasktypes.xml.h:13
#: ../plugins/save-calendar/csv-format.c:365
msgid "Completed"
msgstr "Fullført"
#: ../calendar/gui/dialogs/task-details-page.glade.h:5
#: ../calendar/gui/e-cal-component-preview.c:272
-#: ../calendar/gui/e-calendar-table.c:559 ../calendar/gui/tasktypes.xml.h:21
-#: ../mail/message-list.c:1064
+#: ../calendar/gui/e-calendar-table.c:567 ../calendar/gui/tasktypes.xml.h:21
+#: ../mail/message-list.c:1065
msgid "High"
msgstr "Høy"
@@ -7005,21 +7034,21 @@ msgstr "Høy"
#: ../calendar/gui/e-cal-model-tasks.c:673
#: ../calendar/gui/e-cal-model-tasks.c:750
#: ../calendar/gui/e-calendar-table.c:236
-#: ../calendar/gui/e-calendar-table.c:633 ../calendar/gui/print.c:2517
+#: ../calendar/gui/e-calendar-table.c:641 ../calendar/gui/print.c:2549
msgid "In Progress"
msgstr "Under arbeid"
#: ../calendar/gui/dialogs/task-details-page.glade.h:7
#: ../calendar/gui/e-cal-component-preview.c:276
-#: ../calendar/gui/e-calendar-table.c:561 ../calendar/gui/tasktypes.xml.h:29
-#: ../mail/message-list.c:1062
+#: ../calendar/gui/e-calendar-table.c:569 ../calendar/gui/tasktypes.xml.h:29
+#: ../mail/message-list.c:1063
msgid "Low"
msgstr "Lav"
#: ../calendar/gui/dialogs/task-details-page.glade.h:8
#: ../calendar/gui/e-cal-component-preview.c:274
-#: ../calendar/gui/e-cal-model.c:966 ../calendar/gui/e-calendar-table.c:560
-#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1063
+#: ../calendar/gui/e-cal-model.c:970 ../calendar/gui/e-calendar-table.c:568
+#: ../calendar/gui/tasktypes.xml.h:32 ../mail/message-list.c:1064
msgid "Normal"
msgstr "Normal"
@@ -7028,7 +7057,7 @@ msgstr "Normal"
#: ../calendar/gui/e-cal-model-tasks.c:354
#: ../calendar/gui/e-cal-model-tasks.c:671
#: ../calendar/gui/e-calendar-table.c:234
-#: ../calendar/gui/e-calendar-table.c:632 ../calendar/gui/print.c:2514
+#: ../calendar/gui/e-calendar-table.c:640 ../calendar/gui/print.c:2546
#: ../calendar/gui/tasktypes.xml.h:33
msgid "Not Started"
msgstr "Ikke startet"
@@ -7042,7 +7071,7 @@ msgid "Stat_us:"
msgstr "Stat_us:"
#: ../calendar/gui/dialogs/task-details-page.glade.h:12
-#: ../calendar/gui/e-calendar-table.c:562 ../calendar/gui/tasktypes.xml.h:44
+#: ../calendar/gui/e-calendar-table.c:570 ../calendar/gui/tasktypes.xml.h:44
msgid "Undefined"
msgstr "Udefinert"
@@ -7059,25 +7088,24 @@ msgstr "_Prioritet:"
msgid "_Web Page:"
msgstr "_Nettside:"
-#: ../calendar/gui/dialogs/task-editor.c:112
+#: ../calendar/gui/dialogs/task-editor.c:111
msgid "_Status Details"
msgstr "Detaljert _status"
-#: ../calendar/gui/dialogs/task-editor.c:114
+#: ../calendar/gui/dialogs/task-editor.c:113
msgid "Click to change or view the status details of the task"
msgstr "Klikk for å endre/vise detaljer om status for oppgaven"
-#: ../calendar/gui/dialogs/task-editor.c:122
+#: ../calendar/gui/dialogs/task-editor.c:121
#: ../composer/e-composer-actions.c:528
msgid "_Send Options"
msgstr "Alternativer for _sending"
-#: ../calendar/gui/dialogs/task-editor.c:317
-#: ../calendar/gui/tasks-component.c:1326
+#: ../calendar/gui/dialogs/task-editor.c:316
msgid "_Task"
msgstr "_Oppgave"
-#: ../calendar/gui/dialogs/task-editor.c:320
+#: ../calendar/gui/dialogs/task-editor.c:319
msgid "Task Details"
msgstr "Oppgavedetaljer"
@@ -7104,17 +7132,13 @@ msgid "Categor_ies..."
msgstr "Kategor_ier..."
#: ../calendar/gui/dialogs/task-page.glade.h:3
-msgid "De_scription:"
-msgstr "Be_skrivelse:"
+msgid "D_ue date:"
+msgstr "Fer_dig-dato:"
#: ../calendar/gui/dialogs/task-page.glade.h:7
msgid "Time zone:"
msgstr "Tids_sone:"
-#: ../calendar/gui/dialogs/task-page.glade.h:8
-msgid "_Due date:"
-msgstr "Fer_dig-dato:"
-
#. Translator: Entire string is like "Pop up an alert %d days before start of appointment"
#: ../calendar/gui/e-alarm-list.c:392
#, c-format
@@ -7192,13 +7216,13 @@ msgid "%s for an unknown trigger type"
msgstr "%s for en ukjent utløsertype"
#: ../calendar/gui/e-cal-component-memo-preview.c:75
-#: ../calendar/gui/e-cal-component-preview.c:73 ../mail/em-folder-view.c:3330
+#: ../calendar/gui/e-cal-component-preview.c:73 ../mail/em-folder-view.c:3315
#, c-format
msgid "Click to open %s"
msgstr "Klikk for å åpne %s"
#: ../calendar/gui/e-cal-component-memo-preview.c:135
-#: ../calendar/gui/e-cal-component-preview.c:177 ../filter/filter-rule.c:856
+#: ../calendar/gui/e-cal-component-preview.c:177 ../filter/filter-rule.c:857
msgid "Untitled"
msgstr "Uten navn"
@@ -7254,12 +7278,12 @@ msgid "Start Date"
msgstr "Startdato"
#: ../calendar/gui/e-cal-model-calendar.c:183
-#: ../calendar/gui/e-calendar-table.c:611
+#: ../calendar/gui/e-calendar-table.c:619
msgid "Free"
msgstr "Ledig"
#: ../calendar/gui/e-cal-model-calendar.c:186
-#: ../calendar/gui/e-calendar-table.c:612
+#: ../calendar/gui/e-calendar-table.c:620
#: ../calendar/gui/e-meeting-time-sel.c:398
msgid "Busy"
msgstr "Opptatt"
@@ -7274,7 +7298,7 @@ msgstr ""
"\n"
"45.436845,125.862501"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:191
#: ../calendar/gui/e-meeting-store.c:153 ../calendar/gui/e-meeting-store.c:163
#: ../calendar/gui/e-meeting-store.c:746
@@ -7282,7 +7306,7 @@ msgstr ""
msgid "Yes"
msgstr "Ja"
-#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:972
+#: ../calendar/gui/e-cal-model-tasks.c:1025 ../calendar/gui/e-cal-model.c:976
#: ../calendar/gui/e-meeting-list-view.c:192
#: ../calendar/gui/e-meeting-store.c:165
#: ../plugins/itip-formatter/org-gnome-itip-formatter.error.xml.h:2
@@ -7290,51 +7314,51 @@ msgid "No"
msgstr "Nei"
#. This is the default filename used for temporary file creation
-#: ../calendar/gui/e-cal-model.c:331 ../calendar/gui/e-cal-popup.c:105
+#: ../calendar/gui/e-cal-model.c:335 ../calendar/gui/e-cal-popup.c:105
#: ../calendar/gui/e-cal-popup.c:122 ../calendar/gui/e-cal-popup.c:177
#: ../calendar/gui/e-itip-control.c:1203 ../calendar/gui/e-itip-control.c:1343
#: ../calendar/gui/e-meeting-list-view.c:167
#: ../calendar/gui/e-meeting-list-view.c:181
#: ../calendar/gui/e-meeting-store.c:111 ../calendar/gui/e-meeting-store.c:146
-#: ../calendar/gui/e-meeting-store.c:209 ../calendar/gui/print.c:969
-#: ../calendar/gui/print.c:986 ../mail/em-utils.c:1340
-#: ../plugins/itip-formatter/itip-formatter.c:410
-#: ../plugins/itip-formatter/itip-formatter.c:2047
+#: ../calendar/gui/e-meeting-store.c:209 ../calendar/gui/print.c:985
+#: ../calendar/gui/print.c:1002 ../mail/em-utils.c:1340
+#: ../plugins/itip-formatter/itip-formatter.c:409
+#: ../plugins/itip-formatter/itip-formatter.c:2046
#: ../plugins/plugin-manager/plugin-manager.c:73
#: ../widgets/misc/e-attachment-bar.c:821
#: ../widgets/misc/e-charset-picker.c:55
msgid "Unknown"
msgstr "Ukjent"
-#: ../calendar/gui/e-cal-model.c:968
+#: ../calendar/gui/e-cal-model.c:972
msgid "Recurring"
msgstr "Gjeninntreffer"
-#: ../calendar/gui/e-cal-model.c:970
+#: ../calendar/gui/e-cal-model.c:974
msgid "Assigned"
msgstr "Tildelt"
-#: ../calendar/gui/e-cal-popup.c:183 ../mail/em-popup.c:417
+#: ../calendar/gui/e-cal-popup.c:183 ../mail/em-popup.c:416
msgid "Save As..."
msgstr "Lagre som..."
-#: ../calendar/gui/e-cal-popup.c:199 ../mail/em-format-html-display.c:2030
+#: ../calendar/gui/e-cal-popup.c:199 ../mail/em-format-html-display.c:2029
msgid "Select folder to save selected attachments..."
msgstr "Velg mappe å lagre valgte vedlegg i..."
-#: ../calendar/gui/e-cal-popup.c:231 ../mail/em-popup.c:445
+#: ../calendar/gui/e-cal-popup.c:231 ../mail/em-popup.c:444
#, c-format
msgid "untitled_image.%s"
msgstr "bilde_uten_navn.%s"
-#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1568
-#: ../calendar/gui/e-calendar-view.c:1681 ../calendar/gui/e-memo-table.c:926
-#: ../mail/em-folder-view.c:1343 ../mail/em-popup.c:562 ../mail/em-popup.c:573
+#: ../calendar/gui/e-cal-popup.c:285 ../calendar/gui/e-calendar-table.c:1576
+#: ../calendar/gui/e-calendar-view.c:1672 ../calendar/gui/e-memo-table.c:926
+#: ../mail/em-folder-view.c:1336 ../mail/em-popup.c:561 ../mail/em-popup.c:572
msgid "_Save As..."
msgstr "Lagre _som..."
-#: ../calendar/gui/e-cal-popup.c:286 ../mail/em-popup.c:563
-#: ../mail/em-popup.c:574
+#: ../calendar/gui/e-cal-popup.c:286 ../mail/em-popup.c:562
+#: ../mail/em-popup.c:573
msgid "Set as _Background"
msgstr "Sett som _bakgrunn"
@@ -7342,157 +7366,157 @@ msgstr "Sett som _bakgrunn"
msgid "_Save Selected"
msgstr "_Lagre utvalg"
-#: ../calendar/gui/e-cal-popup.c:434 ../mail/em-popup.c:838
+#: ../calendar/gui/e-cal-popup.c:428 ../mail/em-popup.c:831
#, c-format
msgid "Open in %s..."
msgstr "Åpne i %s..."
-#: ../calendar/gui/e-calendar-table.c:330
+#: ../calendar/gui/e-calendar-table.c:338
msgid "* No Summary *"
msgstr "* Ingen sammendrag *"
#. To Translators: It will display "Organiser: NameOfTheUser <email@ofuser.com>"
-#: ../calendar/gui/e-calendar-table.c:366
-#: ../calendar/gui/e-calendar-view.c:2224
+#: ../calendar/gui/e-calendar-table.c:374
+#: ../calendar/gui/e-calendar-view.c:2215
#, c-format
msgid "Organizer: %s <%s>"
msgstr "Organisator: %s <%s>"
#. With SunOne accounts, there may be no ':' in organiser.value
#. With SunOne accouts, there may be no ':' in organiser.value
-#: ../calendar/gui/e-calendar-table.c:369
-#: ../calendar/gui/e-calendar-view.c:2228
+#: ../calendar/gui/e-calendar-table.c:377
+#: ../calendar/gui/e-calendar-view.c:2219
#, c-format
msgid "Organizer: %s"
msgstr "Organisator: %s"
-#: ../calendar/gui/e-calendar-table.c:400
+#: ../calendar/gui/e-calendar-table.c:408
msgid "Start: "
msgstr "Start: "
-#: ../calendar/gui/e-calendar-table.c:412
+#: ../calendar/gui/e-calendar-table.c:420
msgid "Due: "
msgstr "Ferdig: "
-#: ../calendar/gui/e-calendar-table.c:581
+#: ../calendar/gui/e-calendar-table.c:589
msgid "0%"
msgstr "0%"
-#: ../calendar/gui/e-calendar-table.c:582
+#: ../calendar/gui/e-calendar-table.c:590
msgid "10%"
msgstr "10%"
-#: ../calendar/gui/e-calendar-table.c:583
+#: ../calendar/gui/e-calendar-table.c:591
msgid "20%"
msgstr "20%"
-#: ../calendar/gui/e-calendar-table.c:584
+#: ../calendar/gui/e-calendar-table.c:592
msgid "30%"
msgstr "30%"
-#: ../calendar/gui/e-calendar-table.c:585
+#: ../calendar/gui/e-calendar-table.c:593
msgid "40%"
msgstr "40%"
-#: ../calendar/gui/e-calendar-table.c:586
+#: ../calendar/gui/e-calendar-table.c:594
msgid "50%"
msgstr "50%"
-#: ../calendar/gui/e-calendar-table.c:587
+#: ../calendar/gui/e-calendar-table.c:595
msgid "60%"
msgstr "60%"
-#: ../calendar/gui/e-calendar-table.c:588
+#: ../calendar/gui/e-calendar-table.c:596
msgid "70%"
msgstr "70%"
-#: ../calendar/gui/e-calendar-table.c:589
+#: ../calendar/gui/e-calendar-table.c:597
msgid "80%"
msgstr "80%"
-#: ../calendar/gui/e-calendar-table.c:590
+#: ../calendar/gui/e-calendar-table.c:598
msgid "90%"
msgstr "90%"
-#: ../calendar/gui/e-calendar-table.c:591
+#: ../calendar/gui/e-calendar-table.c:599
msgid "100%"
msgstr "100%"
-#: ../calendar/gui/e-calendar-table.c:871
-#: ../calendar/gui/e-calendar-view.c:674 ../calendar/gui/e-memo-table.c:439
+#: ../calendar/gui/e-calendar-table.c:879
+#: ../calendar/gui/e-calendar-view.c:665 ../calendar/gui/e-memo-table.c:439
msgid "Deleting selected objects"
msgstr "Sletter valgte objekter"
-#: ../calendar/gui/e-calendar-table.c:1155
-#: ../calendar/gui/e-calendar-view.c:804 ../calendar/gui/e-memo-table.c:645
+#: ../calendar/gui/e-calendar-table.c:1163
+#: ../calendar/gui/e-calendar-view.c:795 ../calendar/gui/e-memo-table.c:645
msgid "Updating objects"
msgstr "Oppdaterer objekter"
-#: ../calendar/gui/e-calendar-table.c:1340
-#: ../calendar/gui/e-calendar-view.c:1230 ../calendar/gui/e-memo-table.c:821
+#: ../calendar/gui/e-calendar-table.c:1348
+#: ../calendar/gui/e-calendar-view.c:1221 ../calendar/gui/e-memo-table.c:821
#: ../composer/e-composer-actions.c:278
msgid "Save as..."
msgstr "Lagre som..."
-#: ../calendar/gui/e-calendar-table.c:1563
-#: ../calendar/gui/e-calendar-view.c:1663
+#: ../calendar/gui/e-calendar-table.c:1571
+#: ../calendar/gui/e-calendar-view.c:1654
msgid "New _Task"
msgstr "Ny _oppgave"
-#: ../calendar/gui/e-calendar-table.c:1567 ../calendar/gui/e-memo-table.c:925
+#: ../calendar/gui/e-calendar-table.c:1575 ../calendar/gui/e-memo-table.c:925
msgid "Open _Web Page"
msgstr "_Åpne nettside"
-#: ../calendar/gui/e-calendar-table.c:1569
-#: ../calendar/gui/e-calendar-view.c:1666 ../calendar/gui/e-memo-table.c:927
+#: ../calendar/gui/e-calendar-table.c:1577
+#: ../calendar/gui/e-calendar-view.c:1657 ../calendar/gui/e-memo-table.c:927
msgid "P_rint..."
msgstr "Sk_riv ut..."
-#: ../calendar/gui/e-calendar-table.c:1573
-#: ../calendar/gui/e-calendar-view.c:1686 ../calendar/gui/e-memo-table.c:931
+#: ../calendar/gui/e-calendar-table.c:1581
+#: ../calendar/gui/e-calendar-view.c:1677 ../calendar/gui/e-memo-table.c:931
#: ../ui/evolution-addressbook.xml.h:2 ../ui/evolution-calendar.xml.h:1
#: ../ui/evolution-memos.xml.h:1 ../ui/evolution-tasks.xml.h:1
msgid "C_ut"
msgstr "Kli_pp ut"
-#: ../calendar/gui/e-calendar-table.c:1575
-#: ../calendar/gui/e-calendar-view.c:1669
-#: ../calendar/gui/e-calendar-view.c:1688 ../calendar/gui/e-memo-table.c:933
+#: ../calendar/gui/e-calendar-table.c:1583
+#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1679 ../calendar/gui/e-memo-table.c:933
#: ../ui/evolution-addressbook.xml.h:57 ../ui/evolution-calendar.xml.h:43
#: ../ui/evolution-memos.xml.h:19 ../ui/evolution-tasks.xml.h:28
msgid "_Paste"
msgstr "_Lim inn"
-#: ../calendar/gui/e-calendar-table.c:1579 ../ui/evolution-tasks.xml.h:22
+#: ../calendar/gui/e-calendar-table.c:1587 ../ui/evolution-tasks.xml.h:22
msgid "_Assign Task"
msgstr "Tildel oppg_ave"
-#: ../calendar/gui/e-calendar-table.c:1580 ../calendar/gui/e-memo-table.c:937
+#: ../calendar/gui/e-calendar-table.c:1588 ../calendar/gui/e-memo-table.c:937
#: ../ui/evolution-tasks.xml.h:26
msgid "_Forward as iCalendar"
msgstr "_Videresend som iCalendar"
-#: ../calendar/gui/e-calendar-table.c:1581
+#: ../calendar/gui/e-calendar-table.c:1589
msgid "_Mark as Complete"
msgstr "_Merk som fullført"
-#: ../calendar/gui/e-calendar-table.c:1582
+#: ../calendar/gui/e-calendar-table.c:1590
msgid "_Mark Selected Tasks as Complete"
msgstr "_Merk valgte oppgaver som fullført"
-#: ../calendar/gui/e-calendar-table.c:1583
+#: ../calendar/gui/e-calendar-table.c:1591
msgid "_Mark as Incomplete"
msgstr "_Merk som ikke-fullført"
-#: ../calendar/gui/e-calendar-table.c:1584
+#: ../calendar/gui/e-calendar-table.c:1592
msgid "_Mark Selected Tasks as Incomplete"
msgstr "_Merk valgte oppgaver som ikke-fullført"
-#: ../calendar/gui/e-calendar-table.c:1589
+#: ../calendar/gui/e-calendar-table.c:1597
msgid "_Delete Selected Tasks"
msgstr "Sle_tt valgte oppgaver"
-#: ../calendar/gui/e-calendar-table.c:1826
+#: ../calendar/gui/e-calendar-table.c:1834
#: ../calendar/gui/e-calendar-table.etspec.h:4
msgid "Click to add a task"
msgstr "Klikk for å legge til en oppgave"
@@ -7524,93 +7548,93 @@ msgstr "Prioritet"
msgid "Start date"
msgstr "Startdato"
-#: ../calendar/gui/e-calendar-view.c:1349
+#: ../calendar/gui/e-calendar-view.c:1340
msgid "Moving items"
msgstr "Flytter oppføringer"
-#: ../calendar/gui/e-calendar-view.c:1351
+#: ../calendar/gui/e-calendar-view.c:1342
msgid "Copying items"
msgstr "Kopierer oppføringer"
-#: ../calendar/gui/e-calendar-view.c:1660
+#: ../calendar/gui/e-calendar-view.c:1651
msgid "New _Appointment..."
msgstr "Ny _avtale..."
-#: ../calendar/gui/e-calendar-view.c:1661
+#: ../calendar/gui/e-calendar-view.c:1652
msgid "New All Day _Event"
msgstr "Ny avtale som varer h_ele dagen"
-#: ../calendar/gui/e-calendar-view.c:1662
+#: ../calendar/gui/e-calendar-view.c:1653
msgid "New _Meeting"
msgstr "Nytt _møte"
#. FIXME: hook in this somehow
-#: ../calendar/gui/e-calendar-view.c:1673
+#: ../calendar/gui/e-calendar-view.c:1664
msgid "_Current View"
msgstr "_Aktiv visning"
-#: ../calendar/gui/e-calendar-view.c:1675
+#: ../calendar/gui/e-calendar-view.c:1666
msgid "Select T_oday"
msgstr "Velg i_dag"
-#: ../calendar/gui/e-calendar-view.c:1676
+#: ../calendar/gui/e-calendar-view.c:1667
msgid "_Select Date..."
msgstr "_Velg dato..."
-#: ../calendar/gui/e-calendar-view.c:1682
+#: ../calendar/gui/e-calendar-view.c:1673
msgid "Pri_nt..."
msgstr "S_kriv ut..."
-#: ../calendar/gui/e-calendar-view.c:1692
+#: ../calendar/gui/e-calendar-view.c:1683
msgid "Cop_y to Calendar..."
msgstr "Kop_ier til kalender..."
-#: ../calendar/gui/e-calendar-view.c:1693
+#: ../calendar/gui/e-calendar-view.c:1684
msgid "Mo_ve to Calendar..."
msgstr "Fl_ytt til kalender..."
-#: ../calendar/gui/e-calendar-view.c:1694
+#: ../calendar/gui/e-calendar-view.c:1685
msgid "_Delegate Meeting..."
msgstr "_Deleger møte..."
-#: ../calendar/gui/e-calendar-view.c:1695
+#: ../calendar/gui/e-calendar-view.c:1686
msgid "_Schedule Meeting..."
msgstr "_Sett opp møte..."
-#: ../calendar/gui/e-calendar-view.c:1696
+#: ../calendar/gui/e-calendar-view.c:1687
msgid "_Forward as iCalendar..."
msgstr "_Videresend som iCalendar..."
-#: ../calendar/gui/e-calendar-view.c:1697
+#: ../calendar/gui/e-calendar-view.c:1688
msgid "_Reply"
msgstr "Sva_r"
-#: ../calendar/gui/e-calendar-view.c:1698 ../mail/em-folder-view.c:1337
-#: ../mail/em-popup.c:567 ../mail/em-popup.c:578
+#: ../calendar/gui/e-calendar-view.c:1689 ../mail/em-folder-view.c:1330
+#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
#: ../ui/evolution-mail-message.xml.h:82
msgid "Reply to _All"
msgstr "Svar til _alle"
-#: ../calendar/gui/e-calendar-view.c:1703
+#: ../calendar/gui/e-calendar-view.c:1694
msgid "Make this Occurrence _Movable"
msgstr "Gjør denne hendelsen _flyttbar"
-#: ../calendar/gui/e-calendar-view.c:1704 ../ui/evolution-calendar.xml.h:9
+#: ../calendar/gui/e-calendar-view.c:1695 ../ui/evolution-calendar.xml.h:9
msgid "Delete this _Occurrence"
msgstr "Slett denne _hendelsen"
-#: ../calendar/gui/e-calendar-view.c:1705
+#: ../calendar/gui/e-calendar-view.c:1696
msgid "Delete _All Occurrences"
msgstr "Slett _alle hendelser"
#. To Translators: It will display "Location: PlaceOfTheMeeting"
-#: ../calendar/gui/e-calendar-view.c:2244 ../calendar/gui/print.c:2477
+#: ../calendar/gui/e-calendar-view.c:2235 ../calendar/gui/print.c:2508
#, c-format
msgid "Location: %s"
msgstr "Plassering: %s"
#. To Translators: It will display "Time: ActualStartDateAndTime (DurationOfTheMeeting)"
-#: ../calendar/gui/e-calendar-view.c:2278
+#: ../calendar/gui/e-calendar-view.c:2269
#, c-format
msgid "Time: %s %s"
msgstr "Tidspunkt: %s %s"
@@ -7649,20 +7673,20 @@ msgstr "%02i minutters oppdeling"
#. month, %B = full month name. You can change the
#. order but don't change the specifiers or add
#. anything.
-#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1523
-#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1656
+#: ../calendar/gui/e-day-view-top-item.c:852 ../calendar/gui/e-day-view.c:1551
+#: ../calendar/gui/e-week-view-main-item.c:331 ../calendar/gui/print.c:1672
msgid "%A %d %B"
msgstr "%A %d %B"
#. String to use in 12-hour time format for times in the morning.
-#: ../calendar/gui/e-day-view.c:767 ../calendar/gui/e-week-view.c:505
-#: ../calendar/gui/print.c:813
+#: ../calendar/gui/e-day-view.c:791 ../calendar/gui/e-week-view.c:528
+#: ../calendar/gui/print.c:829
msgid "am"
msgstr "am"
#. String to use in 12-hour time format for times in the afternoon.
-#: ../calendar/gui/e-day-view.c:770 ../calendar/gui/e-week-view.c:508
-#: ../calendar/gui/print.c:815
+#: ../calendar/gui/e-day-view.c:794 ../calendar/gui/e-week-view.c:531
+#: ../calendar/gui/print.c:831
msgid "pm"
msgstr "pm"
@@ -7758,12 +7782,12 @@ msgstr "iCalendar-feil"
#: ../calendar/gui/e-itip-control.c:1092 ../calendar/gui/e-itip-control.c:1108
#: ../calendar/gui/e-itip-control.c:1119 ../calendar/gui/e-itip-control.c:1136
+#: ../plugins/itip-formatter/itip-view.c:344
#: ../plugins/itip-formatter/itip-view.c:345
-#: ../plugins/itip-formatter/itip-view.c:346
+#: ../plugins/itip-formatter/itip-view.c:432
#: ../plugins/itip-formatter/itip-view.c:433
-#: ../plugins/itip-formatter/itip-view.c:434
+#: ../plugins/itip-formatter/itip-view.c:520
#: ../plugins/itip-formatter/itip-view.c:521
-#: ../plugins/itip-formatter/itip-view.c:522
msgid "An unknown person"
msgstr "En ukjent person"
@@ -7780,12 +7804,12 @@ msgstr ""
#: ../calendar/gui/e-meeting-list-view.c:203
#: ../calendar/gui/e-meeting-store.c:173 ../calendar/gui/e-meeting-store.c:196
#: ../calendar/gui/itip-utils.c:664
-#: ../plugins/itip-formatter/itip-formatter.c:2035
+#: ../plugins/itip-formatter/itip-formatter.c:2034
msgid "Accepted"
msgstr "Godtatt"
#: ../calendar/gui/e-itip-control.c:1195 ../calendar/gui/itip-utils.c:667
-#: ../plugins/itip-formatter/itip-formatter.c:2038
+#: ../plugins/itip-formatter/itip-formatter.c:2037
msgid "Tentatively Accepted"
msgstr "Akseptert tentativt"
@@ -7793,7 +7817,7 @@ msgstr "Akseptert tentativt"
#: ../calendar/gui/e-meeting-list-view.c:204
#: ../calendar/gui/e-meeting-store.c:175 ../calendar/gui/e-meeting-store.c:198
#: ../calendar/gui/itip-utils.c:670 ../calendar/gui/itip-utils.c:699
-#: ../plugins/itip-formatter/itip-formatter.c:2041
+#: ../plugins/itip-formatter/itip-formatter.c:2040
msgid "Declined"
msgstr "Avslått"
@@ -8010,7 +8034,7 @@ msgid "Attendee status updated\n"
msgstr "Deltakerstatus oppdatert\n"
#: ../calendar/gui/e-itip-control.c:2080
-#: ../plugins/itip-formatter/itip-formatter.c:1254
+#: ../plugins/itip-formatter/itip-formatter.c:1253
msgid "Attendee status can not be updated because the item no longer exists"
msgstr ""
"Deltakerstatus kan ikke oppdateres fordi oppføringen ikke eksisterer lenger"
@@ -8108,49 +8132,49 @@ msgstr "Deltakere"
#: ../calendar/gui/e-meeting-list-view.c:163
#: ../calendar/gui/e-meeting-store.c:86 ../calendar/gui/e-meeting-store.c:103
-#: ../calendar/gui/e-meeting-store.c:740 ../calendar/gui/print.c:965
+#: ../calendar/gui/e-meeting-store.c:740 ../calendar/gui/print.c:981
msgid "Individual"
msgstr "Individuell"
#: ../calendar/gui/e-meeting-list-view.c:164
#: ../calendar/gui/e-meeting-store.c:88 ../calendar/gui/e-meeting-store.c:105
-#: ../calendar/gui/print.c:966 ../widgets/table/e-table-config.glade.h:7
+#: ../calendar/gui/print.c:982 ../widgets/table/e-table-config.glade.h:7
msgid "Group"
msgstr "Gruppe"
#: ../calendar/gui/e-meeting-list-view.c:165
#: ../calendar/gui/e-meeting-store.c:90 ../calendar/gui/e-meeting-store.c:107
-#: ../calendar/gui/print.c:967
+#: ../calendar/gui/print.c:983
msgid "Resource"
msgstr "Ressurs"
#: ../calendar/gui/e-meeting-list-view.c:166
#: ../calendar/gui/e-meeting-store.c:92 ../calendar/gui/e-meeting-store.c:109
-#: ../calendar/gui/print.c:968
+#: ../calendar/gui/print.c:984
msgid "Room"
msgstr "Rom"
#: ../calendar/gui/e-meeting-list-view.c:177
#: ../calendar/gui/e-meeting-store.c:121 ../calendar/gui/e-meeting-store.c:138
-#: ../calendar/gui/print.c:982
+#: ../calendar/gui/print.c:998
msgid "Chair"
msgstr "Styremedlem"
#: ../calendar/gui/e-meeting-list-view.c:178
#: ../calendar/gui/e-meeting-store.c:123 ../calendar/gui/e-meeting-store.c:140
-#: ../calendar/gui/e-meeting-store.c:743 ../calendar/gui/print.c:983
+#: ../calendar/gui/e-meeting-store.c:743 ../calendar/gui/print.c:999
msgid "Required Participant"
msgstr "Obligatorisk deltaker"
#: ../calendar/gui/e-meeting-list-view.c:179
#: ../calendar/gui/e-meeting-store.c:125 ../calendar/gui/e-meeting-store.c:142
-#: ../calendar/gui/print.c:984
+#: ../calendar/gui/print.c:1000
msgid "Optional Participant"
msgstr "Valgfri deltaker"
#: ../calendar/gui/e-meeting-list-view.c:180
#: ../calendar/gui/e-meeting-store.c:127 ../calendar/gui/e-meeting-store.c:144
-#: ../calendar/gui/print.c:985
+#: ../calendar/gui/print.c:1001
msgid "Non-Participant"
msgstr "Ikke-deltaker"
@@ -8169,7 +8193,7 @@ msgstr "Tentativ"
#: ../calendar/gui/e-meeting-list-view.c:206
#: ../calendar/gui/e-meeting-store.c:179 ../calendar/gui/e-meeting-store.c:202
#: ../calendar/gui/itip-utils.c:673
-#: ../plugins/itip-formatter/itip-formatter.c:2044
+#: ../plugins/itip-formatter/itip-formatter.c:2043
msgid "Delegated"
msgstr "Delegert"
@@ -8307,7 +8331,7 @@ msgid "Click to add a memo"
msgstr "Klikk for å legge til et notat"
#: ../calendar/gui/e-memos.c:760 ../calendar/gui/e-tasks.c:910
-#: ../calendar/gui/gnome-cal.c:2864
+#: ../calendar/gui/gnome-cal.c:2960
#, c-format
msgid ""
"Error on %s:\n"
@@ -8346,54 +8370,50 @@ msgstr "Fullfører oppgaver..."
msgid "Expunging"
msgstr "Tømmer"
-#: ../calendar/gui/e-timezone-entry.c:130
+#: ../calendar/gui/e-timezone-entry.c:129
msgid "Select Timezone"
msgstr "Velg tidssone"
#. strftime format %d = day of month, %B = full
#. month name. You can change the order but don't
#. change the specifiers or add anything.
-#: ../calendar/gui/e-week-view-main-item.c:348 ../calendar/gui/print.c:1637
+#: ../calendar/gui/e-week-view-main-item.c:348 ../calendar/gui/print.c:1653
msgid "%d %B"
msgstr "%d %B"
-#: ../calendar/gui/gnome-cal.c:830
-msgid "Updating query"
-msgstr "Oppdaterer spørring"
-
-#: ../calendar/gui/gnome-cal.c:2501
+#: ../calendar/gui/gnome-cal.c:2576
msgid "_Custom View"
msgstr "_Egendefinert visning"
-#: ../calendar/gui/gnome-cal.c:2502
+#: ../calendar/gui/gnome-cal.c:2577
msgid "_Save Custom View"
msgstr "_Lagre egendefinert visning"
-#: ../calendar/gui/gnome-cal.c:2507
+#: ../calendar/gui/gnome-cal.c:2582
msgid "_Define Views..."
msgstr "_Definer visninger..."
-#: ../calendar/gui/gnome-cal.c:2688
+#: ../calendar/gui/gnome-cal.c:2791
#, c-format
msgid "Loading appointments at %s"
msgstr "Laster avtaler på %s"
-#: ../calendar/gui/gnome-cal.c:2707
+#: ../calendar/gui/gnome-cal.c:2806
#, c-format
msgid "Loading tasks at %s"
msgstr "Laster oppgaver på %s"
-#: ../calendar/gui/gnome-cal.c:2716
+#: ../calendar/gui/gnome-cal.c:2815
#, c-format
msgid "Loading memos at %s"
msgstr "Laster notat på %s"
-#: ../calendar/gui/gnome-cal.c:2823
+#: ../calendar/gui/gnome-cal.c:2919
#, c-format
msgid "Opening %s"
msgstr "Åpner %s"
-#: ../calendar/gui/gnome-cal.c:3779
+#: ../calendar/gui/gnome-cal.c:3873
msgid "Purging"
msgstr "Sletter"
@@ -8507,74 +8527,77 @@ msgstr "iCalendar-informasjon"
msgid "You must be an attendee of the event."
msgstr "Du må være en deltager i hendelsen."
-#: ../calendar/gui/memos-component.c:465
+#: ../calendar/gui/memos-component.c:464
msgid "_New Memo List"
msgstr "_Ny notatliste"
-#: ../calendar/gui/memos-component.c:545
+#: ../calendar/gui/memos-component.c:544
#, c-format
msgid "%d memo"
msgid_plural "%d memos"
msgstr[0] "%d notat"
msgstr[1] "%d notater"
-#: ../calendar/gui/memos-component.c:547 ../calendar/gui/tasks-component.c:538
+#: ../calendar/gui/memos-component.c:546 ../calendar/gui/tasks-component.c:537
#, c-format
msgid ", %d selected"
msgid_plural ", %d selected"
msgstr[0] ", %d valgt"
msgstr[1] ", %d valgt"
-#: ../calendar/gui/memos-component.c:594
+#: ../calendar/gui/memos-component.c:593
msgid "Failed upgrading memos."
msgstr "Feil under oppgradering av notater."
-#: ../calendar/gui/memos-component.c:954
+#: ../calendar/gui/memos-component.c:953
#, c-format
msgid "Unable to open the memo list '%s' for creating events and meetings"
msgstr "Kan ikke åpne notatliste «%s» for oppretting av hendelser og møter"
-#: ../calendar/gui/memos-component.c:967
+#: ../calendar/gui/memos-component.c:966
msgid "There is no calendar available for creating memos"
msgstr "Ingen kalender tilgjengelig for opppretting av notater"
-#: ../calendar/gui/memos-component.c:1077
+#: ../calendar/gui/memos-component.c:1076
msgid "Memo Source Selector"
msgstr "Valgt av notatkilde"
-#: ../calendar/gui/memos-component.c:1260
+#: ../calendar/gui/memos-component.c:1259
msgid "New memo"
msgstr "Nytt notat"
-#: ../calendar/gui/memos-component.c:1261
+#: ../calendar/gui/memos-component.c:1260
+msgctxt "New"
msgid "Mem_o"
msgstr "N_otat"
-#: ../calendar/gui/memos-component.c:1262
+#: ../calendar/gui/memos-component.c:1261
msgid "Create a new memo"
msgstr "Lag et nytt notat"
-#: ../calendar/gui/memos-component.c:1268
+#: ../calendar/gui/memos-component.c:1267
msgid "New shared memo"
msgstr "Nytt delt notat"
-#: ../calendar/gui/memos-component.c:1269
+#: ../calendar/gui/memos-component.c:1268
+msgctxt "New"
msgid "_Shared memo"
msgstr "_Delt notat"
-#: ../calendar/gui/memos-component.c:1270
+#: ../calendar/gui/memos-component.c:1269
msgid "Create a shared new memo"
msgstr "Lag et nytt delt notat"
-#: ../calendar/gui/memos-component.c:1276
+#: ../calendar/gui/memos-component.c:1275
msgid "New memo list"
msgstr "Ny notatliste"
-#: ../calendar/gui/memos-component.c:1277
+#: ../calendar/gui/memos-component.c:1276
+msgctxt "New"
msgid "Memo li_st"
msgstr "Notatli_ste"
-#: ../calendar/gui/memos-component.c:1278
+#: ../calendar/gui/memos-component.c:1277
msgid "Create a new memo list"
msgstr "Lag en ny notatliste"
@@ -8583,7 +8606,7 @@ msgid "Print Memos"
msgstr "Skriv ut notater"
#: ../calendar/gui/memotypes.xml.h:25
-msgid "Next 7 Days'"
+msgid "Next 7 Days"
msgstr "De neste 7 dagene"
#: ../calendar/gui/migration.c:157
@@ -8788,114 +8811,121 @@ msgstr "Fr."
msgid "Sa"
msgstr "Lø."
-#: ../calendar/gui/print.c:2444
+#: ../calendar/gui/print.c:2472
msgid "Appointment"
msgstr "Avtale"
-#: ../calendar/gui/print.c:2446
+#: ../calendar/gui/print.c:2474
msgid "Task"
msgstr "Oppgave"
-#: ../calendar/gui/print.c:2468
+#: ../calendar/gui/print.c:2499
#, c-format
msgid "Summary: %s"
msgstr "Sammendrag: %s"
-#: ../calendar/gui/print.c:2490
+#: ../calendar/gui/print.c:2522
msgid "Attendees: "
msgstr "Deltakere: "
-#: ../calendar/gui/print.c:2530
+#: ../calendar/gui/print.c:2562
#, c-format
msgid "Status: %s"
msgstr "Status: %s"
-#: ../calendar/gui/print.c:2547
+#: ../calendar/gui/print.c:2579
#, c-format
msgid "Priority: %s"
msgstr "Prioritet: %s"
-#: ../calendar/gui/print.c:2559
+#: ../calendar/gui/print.c:2591
#, c-format
msgid "Percent Complete: %i"
msgstr "Prosent fullført: %i"
-#: ../calendar/gui/print.c:2571
+#: ../calendar/gui/print.c:2603
#, c-format
msgid "URL: %s"
msgstr "URL: %s"
-#: ../calendar/gui/print.c:2584
+#: ../calendar/gui/print.c:2616
#, c-format
msgid "Categories: %s"
msgstr "Kategorier: %s"
-#: ../calendar/gui/print.c:2595
+#: ../calendar/gui/print.c:2627
msgid "Contacts: "
msgstr "Kontakter: "
#. TODO Allow the user to customize the title.
-#: ../calendar/gui/print.c:2697
+#: ../calendar/gui/print.c:2762
msgid "Upcoming Appointments"
msgstr "Kommende avtaler"
-#: ../calendar/gui/tasks-component.c:456
+#: ../calendar/gui/tasks-component.c:455
msgid "_New Task List"
msgstr "_Ny oppgaveliste"
-#: ../calendar/gui/tasks-component.c:536
+#: ../calendar/gui/tasks-component.c:535
#, c-format
msgid "%d task"
msgid_plural "%d tasks"
msgstr[0] "%d oppgave"
msgstr[1] "%d oppgaver"
-#: ../calendar/gui/tasks-component.c:585
+#: ../calendar/gui/tasks-component.c:584
msgid "Failed upgrading tasks."
msgstr "Feil under oppgradering av oppgaver."
-#: ../calendar/gui/tasks-component.c:942
+#: ../calendar/gui/tasks-component.c:941
#, c-format
msgid "Unable to open the task list '%s' for creating events and meetings"
msgstr "Kan ikke åpne oppgaveliste «%s» for oppretting av hendelser og møter"
-#: ../calendar/gui/tasks-component.c:955
+#: ../calendar/gui/tasks-component.c:954
msgid "There is no calendar available for creating tasks"
msgstr "Ingen kalender tilgjengelig for opppretting av oppgaver"
-#: ../calendar/gui/tasks-component.c:1066
+#: ../calendar/gui/tasks-component.c:1065
msgid "Task Source Selector"
msgstr "Valgt av oppgavekilde"
-#: ../calendar/gui/tasks-component.c:1325
+#: ../calendar/gui/tasks-component.c:1324
msgid "New task"
msgstr "Ny oppgave"
-#: ../calendar/gui/tasks-component.c:1327
+#: ../calendar/gui/tasks-component.c:1325
+msgctxt "New"
+msgid "_Task"
+msgstr "_Oppgave"
+
+#: ../calendar/gui/tasks-component.c:1326
msgid "Create a new task"
msgstr "Opprett en ny oppgave"
-#: ../calendar/gui/tasks-component.c:1333
+#: ../calendar/gui/tasks-component.c:1332
msgid "New assigned task"
msgstr "Ny tildelt oppgave"
-#: ../calendar/gui/tasks-component.c:1334
+#: ../calendar/gui/tasks-component.c:1333
+msgctxt "New"
msgid "Assigne_d Task"
msgstr "Til_delt oppgave"
-#: ../calendar/gui/tasks-component.c:1335
+#: ../calendar/gui/tasks-component.c:1334
msgid "Create a new assigned task"
msgstr "Opprett en ny tildelt oppgave"
-#: ../calendar/gui/tasks-component.c:1341
+#: ../calendar/gui/tasks-component.c:1340
msgid "New task list"
msgstr "Ny oppgaveliste"
-#: ../calendar/gui/tasks-component.c:1342
+#: ../calendar/gui/tasks-component.c:1341
+msgctxt "New"
msgid "Tas_k list"
msgstr "Oppgave_liste"
-#: ../calendar/gui/tasks-component.c:1343
+#: ../calendar/gui/tasks-component.c:1342
msgid "Create a new task list"
msgstr "Opprett en ny oppgaveliste"
@@ -8911,7 +8941,7 @@ msgstr ""
"\n"
"Vil du virkelig slette disse oppgavene?"
-#: ../calendar/gui/tasks-control.c:455 ../mail/em-folder-view.c:1133
+#: ../calendar/gui/tasks-control.c:455 ../mail/em-folder-view.c:1126
msgid "Do not ask me again."
msgstr "Ikke spør meg igjen."
@@ -8946,7 +8976,7 @@ msgstr "Avtaler og møter"
#: ../calendar/importers/icalendar-importer.c:331
#: ../calendar/importers/icalendar-importer.c:614
-#: ../plugins/itip-formatter/itip-formatter.c:1578
+#: ../plugins/itip-formatter/itip-formatter.c:1577
msgid "Opening calendar"
msgstr "Åpner kalender"
@@ -10541,9 +10571,9 @@ msgstr "L_ukk"
msgid "Close the current file"
msgstr "Lukk aktiv fil"
-#: ../composer/e-composer-actions.c:486 ../mail/em-folder-view.c:1344
+#: ../composer/e-composer-actions.c:486 ../mail/em-folder-view.c:1337
#: ../ui/evolution-addressbook.xml.h:58 ../ui/evolution-calendar.xml.h:44
-#: ../ui/evolution-mail-message.xml.h:124 ../ui/evolution-memos.xml.h:20
+#: ../ui/evolution-mail-message.xml.h:123 ../ui/evolution-memos.xml.h:20
#: ../ui/evolution-tasks.xml.h:29
msgid "_Print..."
msgstr "S_kriv ut..."
@@ -10774,18 +10804,18 @@ msgstr "Klikk her for å velge mapper å poste til"
msgid "Recent _Documents"
msgstr "Siste _dokumenter"
-#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1559
+#: ../composer/e-composer-private.c:173 ../composer/e-msg-composer.c:1558
msgid "Show _Attachment Bar"
msgstr "Vis ve_dleggsfelt"
-#: ../composer/e-msg-composer.c:873
+#: ../composer/e-msg-composer.c:872
msgid ""
"Cannot sign outgoing message: No signing certificate set for this account"
msgstr ""
"Kan ikke signere utgående melding: Ingen sertifikat for signering satt for "
"denne kontoen"
-#: ../composer/e-msg-composer.c:880
+#: ../composer/e-msg-composer.c:879
msgid ""
"Cannot encrypt outgoing message: No encryption certificate set for this "
"account"
@@ -10793,23 +10823,23 @@ msgstr ""
"Kan ikke kryptere utgående melding: Sertifikat for kryptering ikke satt for "
"denne kontoen"
-#: ../composer/e-msg-composer.c:1501 ../mail/em-format-html-display.c:1914
-#: ../mail/em-format-html-display.c:2404 ../mail/mail-config.glade.h:45
+#: ../composer/e-msg-composer.c:1500 ../mail/em-format-html-display.c:1913
+#: ../mail/em-format-html-display.c:2405 ../mail/mail-config.glade.h:45
#: ../mail/message-list.etspec.h:1
msgid "Attachment"
msgid_plural "Attachments"
msgstr[0] "Vedlegg"
msgstr[1] "Vedlegg"
-#: ../composer/e-msg-composer.c:1557
+#: ../composer/e-msg-composer.c:1556
msgid "Hide _Attachment Bar"
msgstr "Skjul ve_dleggsfelt"
-#: ../composer/e-msg-composer.c:1574 ../composer/e-msg-composer.c:2781
+#: ../composer/e-msg-composer.c:1573 ../composer/e-msg-composer.c:2780
msgid "Compose Message"
msgstr "Skriv melding"
-#: ../composer/e-msg-composer.c:4056
+#: ../composer/e-msg-composer.c:4055
msgid ""
"<b>(The composer contains a non-text message body, which cannot be edited.)</"
"b>"
@@ -10954,17 +10984,21 @@ msgstr "Du kan ikke legge ved filen «{0}» i denne meldingen."
msgid "You need to configure an account before you can compose mail."
msgstr "Du må konfigurere en konto før du kan skrive meldinger."
-#: ../composer/mail-composer.error.xml.h:30
+#: ../composer/mail-composer.error.xml.h:29
+msgid "_Continue Editing"
+msgstr "_Fortsett redigering"
+
+#: ../composer/mail-composer.error.xml.h:31
msgid "_Do not Recover"
msgstr "Ikke _gjenopprett"
-#: ../composer/mail-composer.error.xml.h:31 ../shell/main.c:306
+#: ../composer/mail-composer.error.xml.h:32 ../shell/main.c:306
msgid "_Recover"
msgstr "Gjenopp_rett"
-#: ../composer/mail-composer.error.xml.h:32
-msgid "_Save Message"
-msgstr "_Lagre melding"
+#: ../composer/mail-composer.error.xml.h:33
+msgid "_Save Draft"
+msgstr "L_agre skisse"
#: ../data/evolution.desktop.in.in.h:1
msgid "Evolution Mail and Calendar"
@@ -11068,6 +11102,10 @@ msgstr "Overskriv fil?"
msgid "_Overwrite"
msgstr "_Overskriv"
+#: ../e-util/e-util.c:97
+msgid "Could not display help for Evolution."
+msgstr "Kunne ikke vise hjelp for Evolution."
+
#: ../e-util/e-util-labels.c:37
msgid "I_mportant"
msgstr "V_iktig"
@@ -11250,56 +11288,56 @@ msgstr "Velg en fil"
msgid "Test"
msgstr "Test"
-#: ../filter/filter-rule.c:851
+#: ../filter/filter-rule.c:852
msgid "R_ule name:"
msgstr "Regel_navn:"
-#: ../filter/filter-rule.c:879
+#: ../filter/filter-rule.c:880
msgid "Find items that meet the following criteria"
msgstr "Finn oppføringer som møter følgende kriterier"
-#: ../filter/filter-rule.c:913
+#: ../filter/filter-rule.c:914
msgid "A_dd Filter Criteria"
msgstr "Le_gg til filterkriterie"
-#: ../filter/filter-rule.c:919
+#: ../filter/filter-rule.c:920
msgid "If all criteria are met"
msgstr "Hvis alle kriterier er møtt"
-#: ../filter/filter-rule.c:919
+#: ../filter/filter-rule.c:920
msgid "If any criteria are met"
msgstr "Hvis noe kriterie er møtt"
-#: ../filter/filter-rule.c:921
+#: ../filter/filter-rule.c:922
msgid "_Find items:"
msgstr "_Finn oppføringer:"
-#: ../filter/filter-rule.c:943
+#: ../filter/filter-rule.c:944
msgid "All related"
msgstr "Alle relaterte"
-#: ../filter/filter-rule.c:943
+#: ../filter/filter-rule.c:944
msgid "Replies"
msgstr "Svar"
-#: ../filter/filter-rule.c:943
+#: ../filter/filter-rule.c:944
msgid "Replies and parents"
msgstr "Svar med opphav"
-#: ../filter/filter-rule.c:943
+#: ../filter/filter-rule.c:944
msgid "No reply or parent"
msgstr "Ingen svar eller opphav"
-#: ../filter/filter-rule.c:945
+#: ../filter/filter-rule.c:946
msgid "I_nclude threads"
msgstr "Ta _med tråder"
-#: ../filter/filter-rule.c:1043 ../filter/filter.glade.h:3
+#: ../filter/filter-rule.c:1044 ../filter/filter.glade.h:3
#: ../mail/em-utils.c:308
msgid "Incoming"
msgstr "Innkommende"
-#: ../filter/filter-rule.c:1043 ../mail/em-utils.c:309
+#: ../filter/filter-rule.c:1044 ../mail/em-utils.c:309
msgid "Outgoing"
msgstr "Utgående"
@@ -11413,7 +11451,8 @@ msgstr "tiden du spesifiserer"
#: ../filter/filter.glade.h:22 ../plugins/calendar-http/calendar-http.c:282
#: ../plugins/calendar-weather/calendar-weather.c:564
-#: ../plugins/google-account-setup/google-source.c:404
+#: ../plugins/google-account-setup/google-source.c:718
+#: ../plugins/google-account-setup/google-contacts-source.c:331
msgid "weeks"
msgstr "uker"
@@ -11483,10 +11522,10 @@ msgstr "Brukervalg-kontroll for Evolution e-post"
msgid "Evolution Network configuration control"
msgstr "Konfigurasjonskontroll for nettverk i Evolution"
-#: ../mail/GNOME_Evolution_Mail.server.in.in.h:13 ../mail/em-folder-view.c:612
+#: ../mail/GNOME_Evolution_Mail.server.in.in.h:13 ../mail/em-folder-view.c:605
#: ../mail/importers/elm-importer.c:327 ../mail/importers/pine-importer.c:380
-#: ../mail/mail-component.c:593 ../mail/mail-component.c:594
-#: ../mail/mail-component.c:758
+#: ../mail/mail-component.c:595 ../mail/mail-component.c:596
+#: ../mail/mail-component.c:760
#: ../plugins/groupwise-features/proxy-add-dialog.glade.h:6
msgid "Mail"
msgstr "E-post"
@@ -11549,42 +11588,42 @@ msgstr "Identitet"
msgid "Receiving Email"
msgstr "Innkommende e-post"
-#: ../mail/em-account-editor.c:2041
+#: ../mail/em-account-editor.c:2131
msgid "Check for _new messages every"
msgstr "Se etter _nye meldinger hver(t)"
-#: ../mail/em-account-editor.c:2049
+#: ../mail/em-account-editor.c:2139
msgid "minu_tes"
msgstr "minu_tter"
-#: ../mail/em-account-editor.c:2223 ../mail/mail-config.glade.h:136
+#: ../mail/em-account-editor.c:2327 ../mail/mail-config.glade.h:136
msgid "Sending Email"
msgstr "Utgående e-post"
-#: ../mail/em-account-editor.c:2282 ../mail/mail-config.glade.h:67
+#: ../mail/em-account-editor.c:2386 ../mail/mail-config.glade.h:67
msgid "Defaults"
msgstr "Forvalg"
#. Security settings
-#: ../mail/em-account-editor.c:2348 ../mail/mail-config.glade.h:131
+#: ../mail/em-account-editor.c:2452 ../mail/mail-config.glade.h:131
#: ../plugins/exchange-operations/exchange-account-setup.c:315
msgid "Security"
msgstr "Sikkerhet"
#. Most sections for this is auto-generated fromt the camel config
-#: ../mail/em-account-editor.c:2385 ../mail/em-account-editor.c:2476
+#: ../mail/em-account-editor.c:2489 ../mail/em-account-editor.c:2580
msgid "Receiving Options"
msgstr "Alternativer for mottak"
-#: ../mail/em-account-editor.c:2386 ../mail/em-account-editor.c:2477
+#: ../mail/em-account-editor.c:2490 ../mail/em-account-editor.c:2581
msgid "Checking for New Messages"
msgstr "Ser etter nye meldinger"
-#: ../mail/em-account-editor.c:2828 ../mail/mail-config.glade.h:34
+#: ../mail/em-account-editor.c:2932 ../mail/mail-config.glade.h:34
msgid "Account Editor"
msgstr "Kontoredigering"
-#: ../mail/em-account-editor.c:2828 ../mail/mail-config.glade.h:83
+#: ../mail/em-account-editor.c:2932 ../mail/mail-config.glade.h:83
msgid "Evolution Account Assistant"
msgstr "Evolution kontoassistent"
@@ -11815,89 +11854,88 @@ msgstr "Send til program"
msgid "Play Sound"
msgstr "Spill lyd"
-#. Translators: "Read" as in "has been read" (em-filter-i18n.h)
#. Translators: "Read" as in "has been read" (message-tag-followup.c)
-#: ../mail/em-filter-i18n.h:53 ../mail/message-tag-followup.c:63
+#: ../mail/em-filter-i18n.h:52 ../mail/message-tag-followup.c:62
msgid "Read"
msgstr "Les"
-#: ../mail/em-filter-i18n.h:54 ../mail/message-list.etspec.h:12
+#: ../mail/em-filter-i18n.h:53 ../mail/message-list.etspec.h:12
msgid "Recipients"
msgstr "Mottakere"
-#: ../mail/em-filter-i18n.h:55
+#: ../mail/em-filter-i18n.h:54
msgid "Regex Match"
msgstr "Treff på vanlig uttrykk"
-#: ../mail/em-filter-i18n.h:56
+#: ../mail/em-filter-i18n.h:55
msgid "Replied to"
msgstr "Svart til"
-#: ../mail/em-filter-i18n.h:57
+#: ../mail/em-filter-i18n.h:56
msgid "returns"
msgstr "returnerer"
-#: ../mail/em-filter-i18n.h:58
+#: ../mail/em-filter-i18n.h:57
msgid "returns greater than"
msgstr "returnerer større enn"
-#: ../mail/em-filter-i18n.h:59
+#: ../mail/em-filter-i18n.h:58
msgid "returns less than"
msgstr "returnerer mindre enn"
-#: ../mail/em-filter-i18n.h:60
+#: ../mail/em-filter-i18n.h:59
msgid "Run Program"
msgstr "Kjør program"
-#: ../mail/em-filter-i18n.h:61 ../mail/message-list.etspec.h:13
+#: ../mail/em-filter-i18n.h:60 ../mail/message-list.etspec.h:13
msgid "Score"
msgstr "Gi poeng"
-#: ../mail/em-filter-i18n.h:62 ../mail/message-list.etspec.h:14
+#: ../mail/em-filter-i18n.h:61 ../mail/message-list.etspec.h:14
msgid "Sender"
msgstr "Avsender"
-#: ../mail/em-filter-i18n.h:63
+#: ../mail/em-filter-i18n.h:62
msgid "Set Label"
msgstr "Sett etikett"
-#: ../mail/em-filter-i18n.h:64
+#: ../mail/em-filter-i18n.h:63
msgid "Set Status"
msgstr "Sett status"
-#: ../mail/em-filter-i18n.h:65
+#: ../mail/em-filter-i18n.h:64
msgid "Size (kB)"
msgstr "Størrelse (kB)"
-#: ../mail/em-filter-i18n.h:66
+#: ../mail/em-filter-i18n.h:65
msgid "sounds like"
msgstr "lyder som"
-#: ../mail/em-filter-i18n.h:67
+#: ../mail/em-filter-i18n.h:66
msgid "Source Account"
msgstr "Kildekonto"
-#: ../mail/em-filter-i18n.h:68
+#: ../mail/em-filter-i18n.h:67
msgid "Specific header"
msgstr "Spesifikk header"
-#: ../mail/em-filter-i18n.h:69
+#: ../mail/em-filter-i18n.h:68
msgid "starts with"
msgstr "starter med"
-#: ../mail/em-filter-i18n.h:71
+#: ../mail/em-filter-i18n.h:70
msgid "Stop Processing"
msgstr "Stopp behandling"
-#: ../mail/em-filter-i18n.h:72 ../mail/em-format-quote.c:341
+#: ../mail/em-filter-i18n.h:71 ../mail/em-format-quote.c:341
#: ../mail/em-format.c:889 ../mail/em-mailer-prefs.c:80
-#: ../mail/message-list.etspec.h:18 ../mail/message-tag-followup.c:318
+#: ../mail/message-list.etspec.h:18 ../mail/message-tag-followup.c:311
#: ../plugins/groupwise-features/properties.glade.h:7
#: ../smime/lib/e-cert.c:1132
msgid "Subject"
msgstr "Emne"
-#: ../mail/em-filter-i18n.h:73
+#: ../mail/em-filter-i18n.h:72
msgid "Unset Status"
msgstr "Nullstill status"
@@ -11950,11 +11988,11 @@ msgstr "Viktige meldinger"
msgid "Messages Not Junk"
msgstr "Meldinger som ikke er uønsket e-post"
-#: ../mail/em-folder-browser.c:1153
+#: ../mail/em-folder-browser.c:1170
msgid "Account Search"
msgstr "Søk i konto"
-#: ../mail/em-folder-browser.c:1206
+#: ../mail/em-folder-browser.c:1223
msgid "All Account Search"
msgstr "Søk i alle kontoer"
@@ -11977,7 +12015,16 @@ msgstr[1] "Totalt antall meldinger:"
msgid "Quota usage"
msgstr "Bruk av kvote"
-#: ../mail/em-folder-properties.c:385
+#. translators: standard local mailbox names
+#: ../mail/em-folder-properties.c:355 ../mail/em-folder-tree-model.c:507
+#: ../mail/em-folder-tree.c:2556 ../mail/mail-component.c:160
+#: ../mail/mail-component.c:583
+#: ../plugins/exchange-operations/exchange-delegates-user.c:76
+#: ../plugins/exchange-operations/exchange-folder.c:592
+msgid "Inbox"
+msgstr "Innboks"
+
+#: ../mail/em-folder-properties.c:386
#: ../plugins/groupwise-features/properties.glade.h:4
msgid "Folder Properties"
msgstr "Egenskaper for mappe"
@@ -12009,14 +12056,6 @@ msgstr "UTEN TREFF"
msgid "Drafts"
msgstr "Skisser"
-#. translators: standard local mailbox names
-#: ../mail/em-folder-tree-model.c:507 ../mail/em-folder-tree.c:2556
-#: ../mail/mail-component.c:160
-#: ../plugins/exchange-operations/exchange-delegates-user.c:76
-#: ../plugins/exchange-operations/exchange-folder.c:592
-msgid "Inbox"
-msgstr "Innboks"
-
#: ../mail/em-folder-tree-model.c:510 ../mail/mail-component.c:162
msgid "Outbox"
msgstr "Utboks"
@@ -12046,7 +12085,8 @@ msgstr "Laster..."
#.
#: ../mail/em-folder-tree.c:380
#, c-format
-msgid "folder-display|%s (%u)"
+msgctxt "folder-display"
+msgid "%s (%u)"
msgstr "%s (%u)"
#: ../mail/em-folder-tree.c:741
@@ -12063,12 +12103,12 @@ msgstr "Flytter mappe %s"
msgid "Copying folder %s"
msgstr "Kopierer mappe %s"
-#: ../mail/em-folder-tree.c:909 ../mail/message-list.c:1955
+#: ../mail/em-folder-tree.c:909 ../mail/message-list.c:1953
#, c-format
msgid "Moving messages into folder %s"
msgstr "Flytter meldinger til mappe %s"
-#: ../mail/em-folder-tree.c:911 ../mail/message-list.c:1957
+#: ../mail/em-folder-tree.c:911 ../mail/message-list.c:1955
#, c-format
msgid "Copying messages into folder %s"
msgstr "Kopierer meldinger til mappe %s"
@@ -12077,11 +12117,11 @@ msgstr "Kopierer meldinger til mappe %s"
msgid "Cannot drop message(s) into toplevel store"
msgstr "Kan ikke slippe melding(er) toppnivå for lageret"
-#: ../mail/em-folder-tree.c:1003 ../ui/evolution-mail-message.xml.h:105
+#: ../mail/em-folder-tree.c:1003 ../ui/evolution-mail-message.xml.h:104
msgid "_Copy to Folder"
msgstr "_Kopier til mappe"
-#: ../mail/em-folder-tree.c:1004 ../ui/evolution-mail-message.xml.h:118
+#: ../mail/em-folder-tree.c:1004 ../ui/evolution-mail-message.xml.h:117
msgid "_Move to Folder"
msgstr "_Flytt til mappe"
@@ -12119,232 +12159,237 @@ msgstr "T_øm utboks"
msgid "_Empty Trash"
msgstr "_Tøm papirkurven"
-#: ../mail/em-folder-utils.c:103
+#: ../mail/em-folder-utils.c:102
#, c-format
msgid "Copying `%s' to `%s'"
msgstr "Kopierer «%s» til «%s»"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1193
-#: ../mail/em-folder-view.c:1208
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1186
+#: ../mail/em-folder-view.c:1201
#: ../mail/importers/evolution-mbox-importer.c:83
msgid "Select folder"
msgstr "Velg mappe"
-#: ../mail/em-folder-utils.c:366 ../mail/em-folder-view.c:1208
+#: ../mail/em-folder-utils.c:365 ../mail/em-folder-view.c:1201
msgid "C_opy"
msgstr "K_opier"
-#: ../mail/em-folder-utils.c:587
+#: ../mail/em-folder-utils.c:586
#: ../plugins/groupwise-features/share-folder-common.c:143
#, c-format
msgid "Creating folder `%s'"
msgstr "Oppretter mappe «%s»"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Create folder"
msgstr "Opprett mappe"
-#: ../mail/em-folder-utils.c:745
+#: ../mail/em-folder-utils.c:744
#: ../plugins/groupwise-features/install-shared.c:168
#: ../plugins/groupwise-features/share-folder-common.c:385
msgid "Specify where to create the folder:"
msgstr "Spesifiser hvor mappen skal opprettes:"
-#: ../mail/em-folder-view.c:1097 ../mail/mail.error.xml.h:70
+#: ../mail/em-folder-view.c:1090 ../mail/mail.error.xml.h:70
msgid "Mail Deletion Failed"
msgstr "Sletting av e-post feilet"
-#: ../mail/em-folder-view.c:1098 ../mail/mail.error.xml.h:126
+#: ../mail/em-folder-view.c:1091 ../mail/mail.error.xml.h:126
msgid "You do not have sufficient permissions to delete this mail."
msgstr "Du har ikke tilstrekkelige rettigheter til å slette denne meldingen."
-#: ../mail/em-folder-view.c:1336 ../ui/evolution-mail-message.xml.h:128
+#: ../mail/em-folder-view.c:1329 ../ui/evolution-mail-message.xml.h:127
msgid "_Reply to Sender"
msgstr "Sva_r til avsender"
-#: ../mail/em-folder-view.c:1338 ../mail/em-popup.c:569 ../mail/em-popup.c:580
-#: ../ui/evolution-mail-message.xml.h:110
+#: ../mail/em-folder-view.c:1331 ../mail/em-popup.c:568 ../mail/em-popup.c:579
+#: ../ui/evolution-mail-message.xml.h:109
msgid "_Forward"
msgstr "_Videresend"
#. EM_POPUP_EDIT was used here. This is changed to EM_POPUP_SELECT_ONE as Edit-as-new-messaeg need not be restricted to Sent-Items folder alone
-#: ../mail/em-folder-view.c:1342 ../ui/evolution-mail-message.xml.h:107
+#: ../mail/em-folder-view.c:1335 ../ui/evolution-mail-message.xml.h:106
msgid "_Edit as New Message..."
msgstr "R_ediger som ny melding..."
-#: ../mail/em-folder-view.c:1348
+#: ../mail/em-folder-view.c:1341
msgid "U_ndelete"
msgstr "A_ngre slett"
-#: ../mail/em-folder-view.c:1349
+#: ../mail/em-folder-view.c:1342
msgid "_Move to Folder..."
msgstr "Fl_ytt til mappe..."
-#: ../mail/em-folder-view.c:1350
+#: ../mail/em-folder-view.c:1343
msgid "_Copy to Folder..."
msgstr "K_opier til mappe..."
-#: ../mail/em-folder-view.c:1353
+#: ../mail/em-folder-view.c:1346
msgid "Mar_k as Read"
msgstr "Mer_k som lest"
-#: ../mail/em-folder-view.c:1354
+#: ../mail/em-folder-view.c:1347
msgid "Mark as _Unread"
msgstr "Merk som _ulest"
-#: ../mail/em-folder-view.c:1355
+#: ../mail/em-folder-view.c:1348
msgid "Mark as _Important"
msgstr "Merk som v_iktig"
-#: ../mail/em-folder-view.c:1356
+#: ../mail/em-folder-view.c:1349
msgid "Mark as Un_important"
msgstr "Merk som uv_iktig"
-#: ../mail/em-folder-view.c:1357
+#: ../mail/em-folder-view.c:1350
msgid "Mark as _Junk"
msgstr "Merk som _uønsket e-post"
-#: ../mail/em-folder-view.c:1358
+#: ../mail/em-folder-view.c:1351
msgid "Mark as _Not Junk"
msgstr "Merk som _gyldig melding"
-#: ../mail/em-folder-view.c:1359
+#: ../mail/em-folder-view.c:1352
msgid "Mark for Follo_w Up..."
msgstr "Merk for oppføl_ging..."
-#: ../mail/em-folder-view.c:1361
+#: ../mail/em-folder-view.c:1354
msgid "_Label"
msgstr "_Etikett"
#. Note that we don't show this here, since by default a 'None' date
#. is not permitted.
-#: ../mail/em-folder-view.c:1362 ../widgets/misc/e-dateedit.c:484
+#: ../mail/em-folder-view.c:1355 ../widgets/misc/e-dateedit.c:484
msgid "_None"
msgstr "I_ngen"
-#: ../mail/em-folder-view.c:1365
+#: ../mail/em-folder-view.c:1358
msgid "_New Label"
msgstr "_Ny etikett"
-#: ../mail/em-folder-view.c:1369
+#: ../mail/em-folder-view.c:1362
msgid "Fla_g Completed"
msgstr "Mer_k som fullført"
-#: ../mail/em-folder-view.c:1370
+#: ../mail/em-folder-view.c:1363
msgid "Cl_ear Flag"
msgstr "Fj_ern flagg"
-#: ../mail/em-folder-view.c:1373
+#: ../mail/em-folder-view.c:1366
msgid "Crea_te Rule From Message"
msgstr "Oppre_tt regel fra melding"
#. Translators: The following strings are used while creating a new search folder, to specify what parameter the search folder would be based on.
-#: ../mail/em-folder-view.c:1375
+#: ../mail/em-folder-view.c:1368
msgid "Search Folder based on _Subject"
msgstr "Søkemappe ba_sert på emne"
-#: ../mail/em-folder-view.c:1376
+#: ../mail/em-folder-view.c:1369
msgid "Search Folder based on Se_nder"
msgstr "Søkemappe basert på se_nder"
-#: ../mail/em-folder-view.c:1377
+#: ../mail/em-folder-view.c:1370
msgid "Search Folder based on _Recipients"
msgstr "Søkemappe basert på mottake_re"
-#: ../mail/em-folder-view.c:1378
+#: ../mail/em-folder-view.c:1371
msgid "Search Folder based on Mailing _List"
msgstr "Søkemappe basert på e-post_liste"
#. Translators: The following strings are used while creating a new message filter, to specify what parameter the filter would be based on.
-#: ../mail/em-folder-view.c:1383
+#: ../mail/em-folder-view.c:1376
msgid "Filter based on Sub_ject"
msgstr "Filter basert på em_ne"
-#: ../mail/em-folder-view.c:1384
+#: ../mail/em-folder-view.c:1377
msgid "Filter based on Sen_der"
msgstr "Filter basert på sen_der"
-#: ../mail/em-folder-view.c:1385
+#: ../mail/em-folder-view.c:1378
msgid "Filter based on Re_cipients"
msgstr "Filter basert på motta_kere"
-#: ../mail/em-folder-view.c:1386
+#: ../mail/em-folder-view.c:1379
msgid "Filter based on _Mailing List"
msgstr "Filter basert på e-_postliste"
#. default charset used in mail view
-#: ../mail/em-folder-view.c:2269 ../mail/em-folder-view.c:2313
+#. we changed user, thus reset the chosen calendar combo too, because
+#. other user means other calendars subscribed
+#: ../mail/em-folder-view.c:2255 ../mail/em-folder-view.c:2298
+#: ../plugins/google-account-setup/google-source.c:301
+#: ../plugins/google-account-setup/google-source.c:586
+#: ../plugins/google-account-setup/google-source.c:772
msgid "Default"
msgstr "Forvalgt"
-#: ../mail/em-folder-view.c:2531
+#: ../mail/em-folder-view.c:2516
msgid "Unable to retrieve message"
msgstr "Kunne ikke hente ut melding"
-#: ../mail/em-folder-view.c:2550
+#: ../mail/em-folder-view.c:2535
msgid "Retrieving Message..."
msgstr "Henter melding..."
-#: ../mail/em-folder-view.c:2809
+#: ../mail/em-folder-view.c:2794
msgid "C_all To..."
msgstr "R_ing til..."
-#: ../mail/em-folder-view.c:2812
+#: ../mail/em-folder-view.c:2797
msgid "Create _Search Folder"
msgstr "Opprett _søkemappe"
-#: ../mail/em-folder-view.c:2813
+#: ../mail/em-folder-view.c:2798
msgid "_From this Address"
msgstr "_Fra denne adressen"
-#: ../mail/em-folder-view.c:2814
+#: ../mail/em-folder-view.c:2799
msgid "_To this Address"
msgstr "_Til denne adressen"
-#: ../mail/em-folder-view.c:3311
+#: ../mail/em-folder-view.c:3296
#, c-format
msgid "Click to mail %s"
msgstr "Klikk for å sende melding til %s"
-#: ../mail/em-folder-view.c:3323
+#: ../mail/em-folder-view.c:3308
#, c-format
msgid "Click to call %s"
msgstr "Klikk for å ringe %s"
-#: ../mail/em-folder-view.c:3328
+#: ../mail/em-folder-view.c:3313
msgid "Click to hide/unhide addresses"
msgstr "Klikk for å skjule/vise adresser"
#. message-search popup match count string
-#: ../mail/em-format-html-display.c:472
+#: ../mail/em-format-html-display.c:470
#, c-format
msgid "Matches: %d"
msgstr "Treff: %d"
-#: ../mail/em-format-html-display.c:616
+#: ../mail/em-format-html-display.c:614
msgid "Fin_d:"
msgstr "Fi_nn:"
#. gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, TRUE, TRUE, 5);
-#: ../mail/em-format-html-display.c:640
+#: ../mail/em-format-html-display.c:638
msgid "_Previous"
msgstr "_Forrige"
-#: ../mail/em-format-html-display.c:645
+#: ../mail/em-format-html-display.c:643
msgid "_Next"
msgstr "_Neste"
-#: ../mail/em-format-html-display.c:650
+#: ../mail/em-format-html-display.c:648
msgid "M_atch case"
msgstr "Tr_eff på store/små bokstaver"
-#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:650
+#: ../mail/em-format-html-display.c:947 ../mail/em-format-html.c:650
msgid "Unsigned"
msgstr "Usignert"
-#: ../mail/em-format-html-display.c:949
+#: ../mail/em-format-html-display.c:947
msgid ""
"This message is not signed. There is no guarantee that this message is "
"authentic."
@@ -12352,11 +12397,11 @@ msgstr ""
"Denne meldingen er ikke signert. Du har ingen garanti for at meldingen er "
"autentisk."
-#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:651
+#: ../mail/em-format-html-display.c:948 ../mail/em-format-html.c:651
msgid "Valid signature"
msgstr "Gyldig signatur"
-#: ../mail/em-format-html-display.c:950
+#: ../mail/em-format-html-display.c:948
msgid ""
"This message is signed and is valid meaning that it is very likely that this "
"message is authentic."
@@ -12364,11 +12409,11 @@ msgstr ""
"Denne meldingen er signert og gyldig hvilket betyr denne meldingen høyst "
"sannsynlig er autentisk."
-#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:652
+#: ../mail/em-format-html-display.c:949 ../mail/em-format-html.c:652
msgid "Invalid signature"
msgstr "Ugyldig signatur"
-#: ../mail/em-format-html-display.c:951
+#: ../mail/em-format-html-display.c:949
msgid ""
"The signature of this message cannot be verified, it may have been altered "
"in transit."
@@ -12376,11 +12421,11 @@ msgstr ""
"Signaturen for denne meldingen kan ikke verifiseres. Den kan være endret "
"under overføring."
-#: ../mail/em-format-html-display.c:952 ../mail/em-format-html.c:653
+#: ../mail/em-format-html-display.c:950 ../mail/em-format-html.c:653
msgid "Valid signature, but cannot verify sender"
msgstr "Gyldig signatur, men kan ikke verifisere avsender"
-#: ../mail/em-format-html-display.c:952
+#: ../mail/em-format-html-display.c:950
msgid ""
"This message is signed with a valid signature, but the sender of the message "
"cannot be verified."
@@ -12388,11 +12433,11 @@ msgstr ""
"Denne meldingen er signert med en gyldig signatur, men avsender av meldingen "
"kan ikke verifiseres."
-#: ../mail/em-format-html-display.c:953 ../mail/em-format-html.c:654
+#: ../mail/em-format-html-display.c:951 ../mail/em-format-html.c:654
msgid "Signature exists, but need public key"
msgstr "Signatur eksisterer, men trenger offentlig nøkkel"
-#: ../mail/em-format-html-display.c:953
+#: ../mail/em-format-html-display.c:951
msgid ""
"This message is signed with a signature, but there is no corresponding "
"public key."
@@ -12400,11 +12445,11 @@ msgstr ""
"Denne meldingen er signert med en gyldig signatur, men det finnes ingen "
"tilhørende offentlig nøkkel."
-#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:660
+#: ../mail/em-format-html-display.c:958 ../mail/em-format-html.c:660
msgid "Unencrypted"
msgstr "Ukryptert"
-#: ../mail/em-format-html-display.c:960
+#: ../mail/em-format-html-display.c:958
msgid ""
"This message is not encrypted. Its content may be viewed in transit across "
"the Internet."
@@ -12412,11 +12457,11 @@ msgstr ""
"Denne meldingen er ikke kryptert. Innholdet kan vises under overføring over "
"Internett."
-#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:661
+#: ../mail/em-format-html-display.c:959 ../mail/em-format-html.c:661
msgid "Encrypted, weak"
msgstr "Kryptert, svak"
-#: ../mail/em-format-html-display.c:961
+#: ../mail/em-format-html-display.c:959
msgid ""
"This message is encrypted, but with a weak encryption algorithm. It would be "
"difficult, but not impossible for an outsider to view the content of this "
@@ -12426,11 +12471,11 @@ msgstr ""
"vanskelig, men ikke umulig for en utenforstående å se innholdet i denne "
"meldingen på noenlunde kort tid."
-#: ../mail/em-format-html-display.c:962 ../mail/em-format-html.c:662
+#: ../mail/em-format-html-display.c:960 ../mail/em-format-html.c:662
msgid "Encrypted"
msgstr "Kryptert"
-#: ../mail/em-format-html-display.c:962
+#: ../mail/em-format-html-display.c:960
msgid ""
"This message is encrypted. It would be difficult for an outsider to view "
"the content of this message."
@@ -12438,11 +12483,11 @@ msgstr ""
"Denne meldingen er kryptert. Det vil være vanskelig for en utenforstående å "
"se innholdet i denne meldingen."
-#: ../mail/em-format-html-display.c:963 ../mail/em-format-html.c:663
+#: ../mail/em-format-html-display.c:961 ../mail/em-format-html.c:663
msgid "Encrypted, strong"
msgstr "Kryptert, sterk"
-#: ../mail/em-format-html-display.c:963
+#: ../mail/em-format-html-display.c:961
msgid ""
"This message is encrypted, with a strong encryption algorithm. It would be "
"very difficult for an outsider to view the content of this message in a "
@@ -12451,87 +12496,87 @@ msgstr ""
"Denne meldingen er kryptert med en sterk algoritme. Det vil være meget "
"vanskelig for en utenforstående å se innholdet i denne meldingen på kort tid."
-#: ../mail/em-format-html-display.c:1064 ../smime/gui/smime-ui.glade.h:48
+#: ../mail/em-format-html-display.c:1062 ../smime/gui/smime-ui.glade.h:48
msgid "_View Certificate"
msgstr "_Vis sertifikat"
-#: ../mail/em-format-html-display.c:1079
+#: ../mail/em-format-html-display.c:1077
msgid "This certificate is not viewable"
msgstr "Dette sertifikatet kan ikke vises"
-#: ../mail/em-format-html-display.c:1372
+#: ../mail/em-format-html-display.c:1371
msgid "Completed on %B %d, %Y, %l:%M %p"
msgstr "Ferdigstilt på %d %B, %Y, %H.%M"
-#: ../mail/em-format-html-display.c:1380
+#: ../mail/em-format-html-display.c:1379
msgid "Overdue:"
msgstr "Utgått:"
-#: ../mail/em-format-html-display.c:1383
+#: ../mail/em-format-html-display.c:1382
msgid "by %B %d, %Y, %l:%M %p"
msgstr "til %d %B %Y %H.%M"
-#: ../mail/em-format-html-display.c:1461
+#: ../mail/em-format-html-display.c:1460
msgid "_View Inline"
msgstr "_Vis i meldingsteksten"
-#: ../mail/em-format-html-display.c:1462
+#: ../mail/em-format-html-display.c:1461
msgid "_Hide"
msgstr "_Skjul"
-#: ../mail/em-format-html-display.c:1463
+#: ../mail/em-format-html-display.c:1462
msgid "_Fit to Width"
msgstr "_Tilpass bredde"
-#: ../mail/em-format-html-display.c:1464
+#: ../mail/em-format-html-display.c:1463
msgid "Show _Original Size"
msgstr "Vis _opprinnelig størrelse"
-#: ../mail/em-format-html-display.c:1984
+#: ../mail/em-format-html-display.c:1983
msgid "Save attachment as"
msgstr "Lagre vedlegg som"
-#: ../mail/em-format-html-display.c:1988
+#: ../mail/em-format-html-display.c:1987
msgid "Select folder to save all attachments"
msgstr "Velg mappe å lagre alle vedlegg i"
-#: ../mail/em-format-html-display.c:2039
+#: ../mail/em-format-html-display.c:2038
msgid "_Save Selected..."
msgstr "_Lagre valgte..."
#. Cant i put in the number of attachments here ?
-#: ../mail/em-format-html-display.c:2106
+#: ../mail/em-format-html-display.c:2105
#, c-format
msgid "%d at_tachment"
msgid_plural "%d at_tachments"
msgstr[0] "%d vedle_gg"
msgstr[1] "%d vedle_gg"
-#: ../mail/em-format-html-display.c:2113 ../mail/em-format-html-display.c:2202
+#: ../mail/em-format-html-display.c:2112 ../mail/em-format-html-display.c:2201
msgid "S_ave"
msgstr "L_agre"
-#: ../mail/em-format-html-display.c:2124
+#: ../mail/em-format-html-display.c:2123
msgid "S_ave All"
msgstr "L_agre alle"
-#: ../mail/em-format-html-display.c:2198
+#: ../mail/em-format-html-display.c:2197
msgid "No Attachment"
msgstr "Ingen vedlegg"
-#: ../mail/em-format-html-display.c:2339 ../mail/em-format-html-display.c:2377
+#: ../mail/em-format-html-display.c:2338 ../mail/em-format-html-display.c:2377
msgid "View _Unformatted"
msgstr "Vis uformattert"
-#: ../mail/em-format-html-display.c:2341
+#: ../mail/em-format-html-display.c:2340
msgid "Hide _Unformatted"
msgstr "Skjul _uformatterte"
-#: ../mail/em-format-html-display.c:2396
+#: ../mail/em-format-html-display.c:2397
msgid "O_pen With"
msgstr "Å_pne med"
-#: ../mail/em-format-html-display.c:2467
+#: ../mail/em-format-html-display.c:2468
msgid ""
"Evolution cannot render this email as it is too large to process. You can "
"view it unformatted or with an external text editor."
@@ -12628,7 +12673,7 @@ msgstr "Denne meldingen ble sendt av <b>%s</b> på vegne av <b>%s</b>"
#: ../mail/em-format-quote.c:209 ../mail/em-format.c:884
#: ../mail/em-mailer-prefs.c:75 ../mail/message-list.etspec.h:7
-#: ../mail/message-tag-followup.c:314
+#: ../mail/message-tag-followup.c:307
msgid "From"
msgstr "Fra"
@@ -12652,43 +12697,43 @@ msgstr "Nyhetsgrupper"
msgid "%s attachment"
msgstr "%s-vedlegg"
-#: ../mail/em-format.c:1198
+#: ../mail/em-format.c:1199
msgid "Could not parse S/MIME message: Unknown error"
msgstr "Kunne ikke lese S/MIME-melding: Ukjent feil"
-#: ../mail/em-format.c:1335 ../mail/em-format.c:1491
+#: ../mail/em-format.c:1336 ../mail/em-format.c:1492
msgid "Could not parse MIME message. Displaying as source."
msgstr "Kunne ikke lese MIME-melding. Viser ren meldingstekst."
-#: ../mail/em-format.c:1343
+#: ../mail/em-format.c:1344
msgid "Unsupported encryption type for multipart/encrypted"
msgstr "Krypteringstype for multipart/encrypted som ikke er støttet"
-#: ../mail/em-format.c:1353
+#: ../mail/em-format.c:1354
msgid "Could not parse PGP/MIME message"
msgstr "Kunne ikke lese PGP/MIME-melding"
-#: ../mail/em-format.c:1353
+#: ../mail/em-format.c:1354
msgid "Could not parse PGP/MIME message: Unknown error"
msgstr "Kunne ikke lese PGP/MIME-melding: Ukjent feil"
-#: ../mail/em-format.c:1510
+#: ../mail/em-format.c:1511
msgid "Unsupported signature format"
msgstr "Ustøttet signaturformat"
-#: ../mail/em-format.c:1518 ../mail/em-format.c:1589
+#: ../mail/em-format.c:1519 ../mail/em-format.c:1590
msgid "Error verifying signature"
msgstr "Feil under verifisering av signatur"
-#: ../mail/em-format.c:1518 ../mail/em-format.c:1580 ../mail/em-format.c:1589
+#: ../mail/em-format.c:1519 ../mail/em-format.c:1581 ../mail/em-format.c:1590
msgid "Unknown error verifying signature"
msgstr "Ukjent feil under verifisering av signatur"
-#: ../mail/em-format.c:1661
+#: ../mail/em-format.c:1662
msgid "Could not parse PGP message"
msgstr "Kunne ikke lese PGP-melding"
-#: ../mail/em-format.c:1661
+#: ../mail/em-format.c:1662
msgid "Could not parse PGP message: Unknown error"
msgstr "Kunne ikke lese PGP-melding: Ukjent feil"
@@ -12760,11 +12805,6 @@ msgstr "Oppgaver"
msgid "Later"
msgstr "Senere"
-#: ../mail/em-migrate.c:1247
-#, c-format
-msgid "Migrating '%s':"
-msgstr "Migrerer «%s»:"
-
#: ../mail/em-migrate.c:1652
#, c-format
msgid "Unable to create new folder `%s': %s"
@@ -12822,7 +12862,8 @@ msgid ""
"\n"
"Please be patient while Evolution migrates your folders..."
msgstr ""
-"Sammendragsformat for Evolutions e-postmapper bruker sqlite fra Evolution 2.24.\n"
+"Sammendragsformat for Evolutions e-postmapper bruker sqlite fra Evolution "
+"2.24.\n"
"\n"
"Vennligst vent mens Evolution migrere dine mapper..."
@@ -12839,17 +12880,17 @@ msgstr ""
"Kan ikke lese innstillinger fra tidligere Evolution-installasjon. «evolution/"
"config.xmldb» er korrupt eller ser ikke ut til å eksistere."
-#: ../mail/em-popup.c:565 ../mail/em-popup.c:576
+#: ../mail/em-popup.c:564 ../mail/em-popup.c:575
msgid "_Reply to sender"
msgstr "Sva_r til avsender"
-#: ../mail/em-popup.c:566 ../mail/em-popup.c:577
+#: ../mail/em-popup.c:565 ../mail/em-popup.c:576
#: ../ui/evolution-mail-message.xml.h:83
msgid "Reply to _List"
msgstr "Svar til _listen"
#. make it first item
-#: ../mail/em-popup.c:630 ../mail/em-popup.c:859
+#: ../mail/em-popup.c:629 ../mail/em-popup.c:852
msgid "_Add to Address Book"
msgstr "Legg til i _adressebok"
@@ -12980,10 +13021,16 @@ msgstr ""
"address_count."
#: ../mail/evolution-mail.schemas.in.h:17
+msgid ""
+"Controls how frequently local changes are synchronized with the remote mail "
+"server. The interval must be at least 30 seconds."
+msgstr ""
+
+#: ../mail/evolution-mail.schemas.in.h:18
msgid "Custom headers to use while checking for junk."
msgstr "Egendefinert meldingshode som skal sjekkes for uønsket e-post."
-#: ../mail/evolution-mail.schemas.in.h:18
+#: ../mail/evolution-mail.schemas.in.h:19
msgid ""
"Custom headers to use while checking for junk. The list elements are string "
"in the format \"headername=value\"."
@@ -12991,59 +13038,59 @@ msgstr ""
"Egendefinerte meldingshoder som brukes ved sjekk etter uønsket e-post. "
"Formatet for listeelementene er «headername=value»."
-#: ../mail/evolution-mail.schemas.in.h:19
+#: ../mail/evolution-mail.schemas.in.h:20
msgid "Default charset in which to compose messages"
msgstr "Forvalgt tegnsett for nye meldinger"
-#: ../mail/evolution-mail.schemas.in.h:20
+#: ../mail/evolution-mail.schemas.in.h:21
msgid "Default charset in which to compose messages."
msgstr "Forvalgt tegnsett for nye meldinger."
-#: ../mail/evolution-mail.schemas.in.h:21
+#: ../mail/evolution-mail.schemas.in.h:22
msgid "Default charset in which to display messages"
msgstr "Forvalgt tegnsett for visning av meldinger"
-#: ../mail/evolution-mail.schemas.in.h:22
+#: ../mail/evolution-mail.schemas.in.h:23
msgid "Default charset in which to display messages."
msgstr "Forvalgt tegnsett for visning av meldinger."
-#: ../mail/evolution-mail.schemas.in.h:23
+#: ../mail/evolution-mail.schemas.in.h:24
msgid "Default forward style"
msgstr "Forvalgt videresendingsstil"
-#: ../mail/evolution-mail.schemas.in.h:24
+#: ../mail/evolution-mail.schemas.in.h:25
msgid "Default height of the Composer Window."
msgstr "Forvalgt høyde for redigeringsvinduet."
-#: ../mail/evolution-mail.schemas.in.h:25
+#: ../mail/evolution-mail.schemas.in.h:26
msgid "Default height of the message window."
msgstr "Forvalgt høyde for meldingsvinduet."
-#: ../mail/evolution-mail.schemas.in.h:26
+#: ../mail/evolution-mail.schemas.in.h:27
msgid "Default height of the subscribe dialog."
msgstr "Forvalgt høyde for dialog for abonnering."
-#: ../mail/evolution-mail.schemas.in.h:27
+#: ../mail/evolution-mail.schemas.in.h:28
msgid "Default reply style"
msgstr "Forvalgt svarstil"
-#: ../mail/evolution-mail.schemas.in.h:28
+#: ../mail/evolution-mail.schemas.in.h:29
msgid "Default value for thread expand state"
msgstr "Forvalgt verdi for trådutvidelsestilstand"
-#: ../mail/evolution-mail.schemas.in.h:29
+#: ../mail/evolution-mail.schemas.in.h:30
msgid "Default width of the Composer Window."
msgstr "Forvalgt bredde for redigeringsvinduet."
-#: ../mail/evolution-mail.schemas.in.h:30
+#: ../mail/evolution-mail.schemas.in.h:31
msgid "Default width of the message window."
msgstr "Forvalgt bredde for meldingsvinduet."
-#: ../mail/evolution-mail.schemas.in.h:31
+#: ../mail/evolution-mail.schemas.in.h:32
msgid "Default width of the subscribe dialog."
msgstr "Forvalgt bredde for abonneringsdialogen."
-#: ../mail/evolution-mail.schemas.in.h:32
+#: ../mail/evolution-mail.schemas.in.h:33
msgid ""
"Determines whether to look up addresses for junk filtering in local "
"addressbook only"
@@ -13051,11 +13098,11 @@ msgstr ""
"Bestemmer om oppslag for filtrering av uønsket e-post kun skal slås opp i "
"lokale adressebøker"
-#: ../mail/evolution-mail.schemas.in.h:33
+#: ../mail/evolution-mail.schemas.in.h:34
msgid "Determines whether to lookup in addressbook for sender email"
msgstr "Bestemmer om avsenders e-post skal slås opp i adresseboken"
-#: ../mail/evolution-mail.schemas.in.h:34
+#: ../mail/evolution-mail.schemas.in.h:35
msgid ""
"Determines whether to loopup the sender email in addressbook. If found, it "
"shouldn't be a spam. It looks up in the books marked for autocompletion. It "
@@ -13067,13 +13114,13 @@ msgstr ""
"som er merket for automatisk fullføring. Operasjonen kan være treg hvils "
"eksterne adressebøker som LDAP er merket for automatisk fullføring."
-#: ../mail/evolution-mail.schemas.in.h:35
+#: ../mail/evolution-mail.schemas.in.h:36
msgid "Determines whether to use custom headers to check for junk"
msgstr ""
"Bestemmer om egendefinerte meldingshoder skal brukes for å se etter uønsket "
"e-post"
-#: ../mail/evolution-mail.schemas.in.h:36
+#: ../mail/evolution-mail.schemas.in.h:37
msgid ""
"Determines whether to use custom headers to check for junk. If this option "
"is enabled and the headers are mentioned, it will be improve the junk "
@@ -13083,7 +13130,7 @@ msgstr ""
"post. Hvis dette alternativet er aktivert og meldingshodene finnes vil "
"dette forbedre hastigheten for denne sjekken."
-#: ../mail/evolution-mail.schemas.in.h:37
+#: ../mail/evolution-mail.schemas.in.h:38
msgid ""
"Determines whether to use the same fonts for both \"From\" and \"Subject\" "
"lines in the \"Messages\" column in vertical view."
@@ -13091,60 +13138,60 @@ msgstr ""
"Bestemmer om samme skrift skal brukes for både «Fra» og «Emne»-linjene i "
"«Meldinger»-kolonnen i vertikal visning."
-#: ../mail/evolution-mail.schemas.in.h:38
+#: ../mail/evolution-mail.schemas.in.h:39
msgid "Directory for loading/attaching files to composer."
msgstr "Katalog for å laste/legge ved filer i redigering av ny e-post."
-#: ../mail/evolution-mail.schemas.in.h:39
+#: ../mail/evolution-mail.schemas.in.h:40
msgid "Directory for saving mail component files."
msgstr "Katalog for å lagre komponentfiler for e-post."
-#: ../mail/evolution-mail.schemas.in.h:40
+#: ../mail/evolution-mail.schemas.in.h:41
msgid "Disable or enable ellipsizing of folder names in folder tree"
msgstr "Slå av eller på bruk av ellipse for mappenavn i mappetreet"
-#: ../mail/evolution-mail.schemas.in.h:41
+#: ../mail/evolution-mail.schemas.in.h:42
msgid "Draw spelling error indicators on words as you type."
msgstr "Vis indikatorer for stavefeil mens du skriver."
-#: ../mail/evolution-mail.schemas.in.h:42
+#: ../mail/evolution-mail.schemas.in.h:43
msgid "Empty Junk folders on exit"
msgstr "Tøm mappe for uønsket e-post når programmet avsluttes"
-#: ../mail/evolution-mail.schemas.in.h:43
+#: ../mail/evolution-mail.schemas.in.h:44
msgid "Empty Trash folders on exit"
msgstr "Tøm papirkurven når programmet avsluttes"
-#: ../mail/evolution-mail.schemas.in.h:44
+#: ../mail/evolution-mail.schemas.in.h:45
msgid "Empty all Junk folders when exiting Evolution."
msgstr "Tøm alle mapper for uønsket e-post når programmet avsluttes."
-#: ../mail/evolution-mail.schemas.in.h:45
+#: ../mail/evolution-mail.schemas.in.h:46
msgid "Empty all Trash folders when exiting Evolution."
msgstr "Tøm alle papirkurver når programmet avsluttes."
-#: ../mail/evolution-mail.schemas.in.h:46
+#: ../mail/evolution-mail.schemas.in.h:47
msgid "Enable caret mode, so that you can see a cursor when reading mail."
msgstr ""
"Slå på skrivemerkemodus slik at insettingspunktet vises når du leser e-post."
-#: ../mail/evolution-mail.schemas.in.h:47
+#: ../mail/evolution-mail.schemas.in.h:48
msgid "Enable or disable magic space bar"
msgstr "Aktiver eller deaktiver magisk mellomrom"
-#: ../mail/evolution-mail.schemas.in.h:48
+#: ../mail/evolution-mail.schemas.in.h:49
msgid "Enable or disable type ahead search feature"
msgstr "Aktiver eller deaktiver funksjon for å søke mens du skriver"
-#: ../mail/evolution-mail.schemas.in.h:49
+#: ../mail/evolution-mail.schemas.in.h:50
msgid "Enable search folders"
msgstr "Aktiver søkemapper"
-#: ../mail/evolution-mail.schemas.in.h:50
+#: ../mail/evolution-mail.schemas.in.h:51
msgid "Enable search folders on startup."
msgstr "Aktiver søkemapper ved oppstart."
-#: ../mail/evolution-mail.schemas.in.h:51
+#: ../mail/evolution-mail.schemas.in.h:52
msgid ""
"Enable side bar search feature so that you can start interactive searching "
"by typing in the text. Use is that you can easily find a folder in that side "
@@ -13155,7 +13202,7 @@ msgstr ""
"ved å skrive tekst. Gjør det mulig å finne en mappe i dette feltet ved å "
"skrive mappenavnet. Fokus vil da flyttes til mappen automatisk."
-#: ../mail/evolution-mail.schemas.in.h:52
+#: ../mail/evolution-mail.schemas.in.h:53
msgid ""
"Enable this to use Space bar key to scroll in message preview, message list "
"and folders."
@@ -13163,27 +13210,27 @@ msgstr ""
"Aktiver dette for å bruke mellomrom-tasten til å gå forover i "
"meldingsvisning, meldingsliste og mapper."
-#: ../mail/evolution-mail.schemas.in.h:53
+#: ../mail/evolution-mail.schemas.in.h:54
msgid "Enable to render message text part of limited size."
msgstr "Vis tekstdel av melding med begrenset størrelse."
-#: ../mail/evolution-mail.schemas.in.h:54
+#: ../mail/evolution-mail.schemas.in.h:55
msgid "Enable/disable caret mode"
msgstr "Aktiver/deaktiver markørmodus"
-#: ../mail/evolution-mail.schemas.in.h:55
+#: ../mail/evolution-mail.schemas.in.h:56
msgid "Height of the message-list pane"
msgstr "Høyde på e-postlistefeltet"
-#: ../mail/evolution-mail.schemas.in.h:56
+#: ../mail/evolution-mail.schemas.in.h:57
msgid "Height of the message-list pane."
msgstr "Høyde på e-postlistefeltet."
-#: ../mail/evolution-mail.schemas.in.h:57
+#: ../mail/evolution-mail.schemas.in.h:58
msgid "Hides the per-folder preview and removes the selection"
msgstr "Skjuler per-mappe forhåndsvisning og fjerner utvalget"
-#: ../mail/evolution-mail.schemas.in.h:58
+#: ../mail/evolution-mail.schemas.in.h:59
msgid ""
"If a user tries to open 10 or more messages at one time, ask the user if "
"they really want to do it."
@@ -13191,7 +13238,7 @@ msgstr ""
"Spør brukeren om han virkelig vil gjøre det hvis han prøver å åpne 10 eller "
"flere e-poster på en gang."
-#: ../mail/evolution-mail.schemas.in.h:59
+#: ../mail/evolution-mail.schemas.in.h:60
msgid ""
"If the \"Preview\" pane is on, then show it side-by-side rather than "
"vertically."
@@ -13199,20 +13246,20 @@ msgstr ""
"Vis forhåndsvisningsområdet ved siden av meldingslisten i stedet for "
"vertikalt hvis det er aktivt."
-#: ../mail/evolution-mail.schemas.in.h:60
+#: ../mail/evolution-mail.schemas.in.h:61
msgid ""
"If there isn't a builtin viewer for a particular mime-type inside Evolution, "
"any mime-types appearing in this list which map to a bonobo-component viewer "
"in GNOME's mime-type database may be used for displaying content."
msgstr "Hvis det ikke finnes et innebygd program v"
-#: ../mail/evolution-mail.schemas.in.h:61
+#: ../mail/evolution-mail.schemas.in.h:62
msgid ""
"Initial height of the \"Send and Receive Mail\" window. The value updates as "
"the user resizes the window vertically."
msgstr ""
-#: ../mail/evolution-mail.schemas.in.h:62
+#: ../mail/evolution-mail.schemas.in.h:63
msgid ""
"Initial maximize state of the \"Send and Receive Mail\" window. The value "
"updates when the user maximizes or unmaximizes the window. Note, this "
@@ -13221,17 +13268,17 @@ msgid ""
"detail."
msgstr ""
-#: ../mail/evolution-mail.schemas.in.h:63
+#: ../mail/evolution-mail.schemas.in.h:64
msgid ""
"Initial width of the \"Send and Receive Mail\" window. The value updates as "
"the user resizes the window horizontally."
msgstr ""
-#: ../mail/evolution-mail.schemas.in.h:64
+#: ../mail/evolution-mail.schemas.in.h:65
msgid "It disables/enables the prompt while marking multiple messages."
msgstr "Aktiver/deaktiver spørring ved merking av flere meldinger."
-#: ../mail/evolution-mail.schemas.in.h:65
+#: ../mail/evolution-mail.schemas.in.h:66
msgid ""
"It disables/enables the repeated prompts to ask if offline sync is required "
"before going into offline mode."
@@ -13239,7 +13286,7 @@ msgstr ""
"Aktiver/deaktiver funksjonen hvor gjentatte spørsmål stilles om frakoblet "
"synkronisering kreves."
-#: ../mail/evolution-mail.schemas.in.h:66
+#: ../mail/evolution-mail.schemas.in.h:67
msgid ""
"It disables/enables the repeated prompts to warn that deleting messages from "
"a search folder permanently deletes the message, not simply removing it from "
@@ -13249,31 +13296,31 @@ msgstr ""
"en søkemappe sletter meldingene permanent, og ikke bare fjerner dem fra "
"søkeresultatene."
-#: ../mail/evolution-mail.schemas.in.h:67
+#: ../mail/evolution-mail.schemas.in.h:68
msgid "Last time empty junk was run"
msgstr "Sist gang mapper for uønsket e-post ble tømt"
-#: ../mail/evolution-mail.schemas.in.h:68
+#: ../mail/evolution-mail.schemas.in.h:69
msgid "Last time empty trash was run"
msgstr "Sist gang papirkurven ble tømt"
-#: ../mail/evolution-mail.schemas.in.h:69
+#: ../mail/evolution-mail.schemas.in.h:70
msgid "Level beyond which the message should be logged."
msgstr "Over dette nivået skal meldingen logges."
-#: ../mail/evolution-mail.schemas.in.h:70
+#: ../mail/evolution-mail.schemas.in.h:71
msgid "List of Labels and their associated colors"
msgstr "Liste over etiketter og deres assosierte farger"
-#: ../mail/evolution-mail.schemas.in.h:71
+#: ../mail/evolution-mail.schemas.in.h:72
msgid "List of accepted licenses"
msgstr "Liste med godtatte lisenser"
-#: ../mail/evolution-mail.schemas.in.h:72
+#: ../mail/evolution-mail.schemas.in.h:73
msgid "List of accounts"
msgstr "Liste med kontoer"
-#: ../mail/evolution-mail.schemas.in.h:73
+#: ../mail/evolution-mail.schemas.in.h:74
msgid ""
"List of accounts known to the mail component of Evolution. The list contains "
"strings naming subdirectories relative to /apps/evolution/mail/accounts."
@@ -13282,15 +13329,15 @@ msgstr ""
"innholder strenger som er undermapper relativt til /apps/evolution/mail/"
"accounts."
-#: ../mail/evolution-mail.schemas.in.h:74
+#: ../mail/evolution-mail.schemas.in.h:75
msgid "List of custom headers and whether they are enabled."
msgstr "Liste over tillpassede topptekster og om de er slått på."
-#: ../mail/evolution-mail.schemas.in.h:75
+#: ../mail/evolution-mail.schemas.in.h:76
msgid "List of dictionary language codes used for spell checking."
msgstr ""
-#: ../mail/evolution-mail.schemas.in.h:76
+#: ../mail/evolution-mail.schemas.in.h:77
msgid ""
"List of labels known to the mail component of Evolution. The list contains "
"strings containing name:color where color uses the HTML hex encoding."
@@ -13299,131 +13346,128 @@ msgstr ""
"inneholder strenger som inneholder «name:color» hvor «color» bruker HTML hex "
"koding."
-#: ../mail/evolution-mail.schemas.in.h:77
+#: ../mail/evolution-mail.schemas.in.h:78
msgid "List of mime types to check for bonobo component viewers"
msgstr "Liste over mime-typer som skal se etter bonobo-komponentvisere"
-#: ../mail/evolution-mail.schemas.in.h:78
+#: ../mail/evolution-mail.schemas.in.h:79
msgid "List of protocol names whose license has been accepted."
msgstr "Liste over protokollnavn som har en godkjent lisens."
-#: ../mail/evolution-mail.schemas.in.h:79
+#: ../mail/evolution-mail.schemas.in.h:80
msgid "Load images for HTML messages over http"
msgstr "Last bilder for HTML-meldinger og http"
-#: ../mail/evolution-mail.schemas.in.h:80
+#: ../mail/evolution-mail.schemas.in.h:81
msgid ""
-"Load images for HTML messages over http(s). Possible values are: 0 - Never "
-"load images off the net. 1 - Load images in messages from contacts. 2 - "
-"Always load images off the net."
-msgstr ""
-"Last bilder for HTML e-poster over http(s). Mulige verdier er: 0 - Aldri "
-"last bilder fra nettet 1 - Last bilder i e-poster fra kontakter 2 - Alltid "
-"last bilder fra nettet."
+"Load images for HTML messages over http(s). Possible values are: \"0\" - "
+"Never load images off the net. \"1\" - Load images in messages from "
+"contacts. \"2\" - Always load images off the net."
+msgstr "Last bilder for HTML e-poster over http(s). Mulige verdier er: «0» - Aldri last bilder fra nettet «1» - Last bilder i e-poster fra kontakter «2» - Alltid last bilder fra nettet."
-#: ../mail/evolution-mail.schemas.in.h:81
+#: ../mail/evolution-mail.schemas.in.h:82
msgid "Log filter actions"
msgstr "Loggfør filterhandlinger"
-#: ../mail/evolution-mail.schemas.in.h:82
+#: ../mail/evolution-mail.schemas.in.h:83
msgid "Log filter actions to the specified log file."
msgstr "Logg filterhandlinger til oppgitt loggfil."
-#: ../mail/evolution-mail.schemas.in.h:83
+#: ../mail/evolution-mail.schemas.in.h:84
msgid "Logfile to log filter actions"
msgstr "Loggfil med filterhandlinger"
-#: ../mail/evolution-mail.schemas.in.h:84
+#: ../mail/evolution-mail.schemas.in.h:85
msgid "Logfile to log filter actions."
msgstr "Loggfil med filterhandlinger."
-#: ../mail/evolution-mail.schemas.in.h:85
+#: ../mail/evolution-mail.schemas.in.h:86
msgid "Mark as Seen after specified timeout"
msgstr "Merk som «lest» etter spesifisert tidsgrense"
-#: ../mail/evolution-mail.schemas.in.h:86
+#: ../mail/evolution-mail.schemas.in.h:87
msgid "Mark as Seen after specified timeout."
msgstr "Merk som «sett» etter spesifisert tidsgrense."
-#: ../mail/evolution-mail.schemas.in.h:87
+#: ../mail/evolution-mail.schemas.in.h:88
msgid "Mark citations in the message \"Preview\""
msgstr "Merk sitat in e-posten «Forhåndsvisning»"
-#: ../mail/evolution-mail.schemas.in.h:88
+#: ../mail/evolution-mail.schemas.in.h:89
msgid "Mark citations in the message \"Preview\"."
msgstr "Merk sitat in e-posten «Forhåndsvisning»."
-#: ../mail/evolution-mail.schemas.in.h:89
+#: ../mail/evolution-mail.schemas.in.h:90
msgid "Message Window default height"
msgstr "Forvalgt høyde på meldingsvinduet"
-#: ../mail/evolution-mail.schemas.in.h:90
+#: ../mail/evolution-mail.schemas.in.h:91
msgid "Message Window default width"
msgstr "Forvalgt bredde på meldingsvinduet"
-#: ../mail/evolution-mail.schemas.in.h:91
+#: ../mail/evolution-mail.schemas.in.h:92
msgid "Message-display style (\"normal\", \"full headers\", \"source\")"
msgstr "Stil på e-postvisning («normal», «fulle overskrifter», «kilde»)"
-#: ../mail/evolution-mail.schemas.in.h:92
+#: ../mail/evolution-mail.schemas.in.h:93
msgid "Minimum days between emptying the junk on exit"
msgstr ""
"Minimum antall dager mellom tømming av mapper for uønsket e-post ved "
"avslutting"
-#: ../mail/evolution-mail.schemas.in.h:93
+#: ../mail/evolution-mail.schemas.in.h:94
msgid "Minimum days between emptying the trash on exit"
msgstr "Minimum antall dager mellom tømming av papirkurven ved avslutting"
-#: ../mail/evolution-mail.schemas.in.h:94
+#: ../mail/evolution-mail.schemas.in.h:95
msgid "Minimum time between emptying the junk on exit, in days."
msgstr ""
"Minste tidsperiode mellom tømming av mapper for uønsket e-post ved "
"avslutting, i dager."
-#: ../mail/evolution-mail.schemas.in.h:95
+#: ../mail/evolution-mail.schemas.in.h:96
msgid "Minimum time between emptying the trash on exit, in days."
msgstr ""
"Minste tidsperiode mellom tømming av papirkurven ved avslutting, i dager."
-#: ../mail/evolution-mail.schemas.in.h:96
+#: ../mail/evolution-mail.schemas.in.h:97
msgid "Number of addresses to display in TO/CC/BCC"
msgstr "Antall adresser som skal vises i Til/Cc/Bcc"
-#: ../mail/evolution-mail.schemas.in.h:97
+#: ../mail/evolution-mail.schemas.in.h:98
msgid "Prompt on empty subject"
msgstr "Stopp og spør ved tomt emne"
-#: ../mail/evolution-mail.schemas.in.h:98
+#: ../mail/evolution-mail.schemas.in.h:99
msgid "Prompt the user when he or she tries to expunge a folder."
msgstr "Stopp og spør før en mappe blir tømt."
-#: ../mail/evolution-mail.schemas.in.h:99
+#: ../mail/evolution-mail.schemas.in.h:100
msgid ""
"Prompt the user when he or she tries to send a message without a Subject."
msgstr "Stopp og spør når en en e-post uten emne skal bli sendt."
-#: ../mail/evolution-mail.schemas.in.h:100
+#: ../mail/evolution-mail.schemas.in.h:101
msgid "Prompt to check if the user wants to go offline immediately"
msgstr "Spør om bruker ønsker å gå til frakoblet modus med en gang"
-#: ../mail/evolution-mail.schemas.in.h:101
+#: ../mail/evolution-mail.schemas.in.h:102
msgid "Prompt when deleting messages in search folder"
msgstr "Spør ved sletting av meldinger fra søkemappe"
-#: ../mail/evolution-mail.schemas.in.h:102
+#: ../mail/evolution-mail.schemas.in.h:103
msgid "Prompt when user expunges"
msgstr "Stopp og spør før tømming"
-#: ../mail/evolution-mail.schemas.in.h:103
+#: ../mail/evolution-mail.schemas.in.h:104
msgid "Prompt when user only fills Bcc"
msgstr "Stopp og spør når bare «Bcc» er utfylt"
-#: ../mail/evolution-mail.schemas.in.h:104
+#: ../mail/evolution-mail.schemas.in.h:105
msgid "Prompt when user tries to open 10 or more messages at once"
msgstr "Spør når bruker prøver å åpne 10 eller flere meldinger samtidig"
-#: ../mail/evolution-mail.schemas.in.h:105
+#: ../mail/evolution-mail.schemas.in.h:106
msgid ""
"Prompt when user tries to send HTML mail to recipients that may not want to "
"receive HTML mail."
@@ -13431,138 +13475,140 @@ msgstr ""
"Spør når bruker prøver å sende HTML-meldinger til mottakere som ikke ønsker "
"å motta HTML-meldinger."
-#: ../mail/evolution-mail.schemas.in.h:106
+#: ../mail/evolution-mail.schemas.in.h:107
msgid "Prompt when user tries to send a message with no To or Cc recipients."
msgstr ""
"Spør når bruker prøver å sende en melding uten Til- eller Cc-mottakere."
-#: ../mail/evolution-mail.schemas.in.h:107
+#: ../mail/evolution-mail.schemas.in.h:108
msgid "Prompt when user tries to send unwanted HTML"
msgstr "Spør når bruker prøver å sende uønsket HTML"
-#: ../mail/evolution-mail.schemas.in.h:108
+#: ../mail/evolution-mail.schemas.in.h:109
msgid "Prompt while marking multiple messages"
msgstr "Spør ved merking av flere meldinger"
-#: ../mail/evolution-mail.schemas.in.h:109
+#: ../mail/evolution-mail.schemas.in.h:110
msgid "Recognize emoticons in text and replace them with images."
msgstr "Gjenkjenn smilefjes i tekst og erstatt dem med bilder."
-#: ../mail/evolution-mail.schemas.in.h:110
+#: ../mail/evolution-mail.schemas.in.h:111
msgid "Recognize links in text and replace them."
msgstr "Gjenkjenn lenker i tekst og erstatt dem."
-#: ../mail/evolution-mail.schemas.in.h:111
+#: ../mail/evolution-mail.schemas.in.h:112
msgid "Run junk test on incoming mail."
msgstr "Sjekk om innkommende e-post er uønsket."
-#: ../mail/evolution-mail.schemas.in.h:112
+#: ../mail/evolution-mail.schemas.in.h:113
msgid "Save directory"
msgstr "Lagre katalog"
-#: ../mail/evolution-mail.schemas.in.h:113
+#: ../mail/evolution-mail.schemas.in.h:114
msgid "Search for the sender photo in local addressbooks"
msgstr "Søk etter avsenders bilde i lokale adressebøker"
-#: ../mail/evolution-mail.schemas.in.h:114
+#: ../mail/evolution-mail.schemas.in.h:115
msgid "Send HTML mail by default"
msgstr "Send HTML e-post som forvalg"
-#: ../mail/evolution-mail.schemas.in.h:115
+#: ../mail/evolution-mail.schemas.in.h:116
msgid "Send HTML mail by default."
msgstr "Send HTML e-post som forvalg."
-#: ../mail/evolution-mail.schemas.in.h:116
+#: ../mail/evolution-mail.schemas.in.h:117
msgid "Sender email-address column in the message list"
msgstr "Kolonne for avsenders e-postadresse i meldingslisten"
-#: ../mail/evolution-mail.schemas.in.h:117
+#: ../mail/evolution-mail.schemas.in.h:118
+msgid "Server synchronization interval"
+msgstr "Intervall for serversynkronisering"
+
+#: ../mail/evolution-mail.schemas.in.h:119
msgid "Show Animations"
msgstr "Vis animasjoner"
-#: ../mail/evolution-mail.schemas.in.h:118
+#: ../mail/evolution-mail.schemas.in.h:120
msgid "Show animated images as animations."
msgstr "Vis animerte bilder som animasjoner."
-#: ../mail/evolution-mail.schemas.in.h:119
+#: ../mail/evolution-mail.schemas.in.h:121
msgid "Show deleted messages (with a strike-through) in the message-list."
msgstr "Vis slettede meldinger i meldingslisten (gjennomstreket)."
-#: ../mail/evolution-mail.schemas.in.h:120
+#: ../mail/evolution-mail.schemas.in.h:122
msgid "Show deleted messages in the message-list"
msgstr "Vis slettede meldinger i meldingslisten"
-#: ../mail/evolution-mail.schemas.in.h:121
+#: ../mail/evolution-mail.schemas.in.h:123
msgid "Show photo of the sender"
msgstr "Vis bilde av avsender"
-#: ../mail/evolution-mail.schemas.in.h:124
+#: ../mail/evolution-mail.schemas.in.h:126
msgid ""
"Show the email-address of the sender in a separate column in the message "
"list."
msgstr "Vis avsenders e-postadresse i en egen kolonne i meldingslisten."
-#: ../mail/evolution-mail.schemas.in.h:125
+#: ../mail/evolution-mail.schemas.in.h:127
msgid "Show the photo of the sender in the message reading pane."
msgstr "Vis bilde av avsender i meldingsområdet."
-#: ../mail/evolution-mail.schemas.in.h:126
+#: ../mail/evolution-mail.schemas.in.h:128
msgid "Spell check inline"
msgstr "Stavekontroll i meldingen"
-#: ../mail/evolution-mail.schemas.in.h:127
+#: ../mail/evolution-mail.schemas.in.h:129
msgid "Spell checking color"
msgstr "Farge for stavekontroll"
-#: ../mail/evolution-mail.schemas.in.h:128
+#: ../mail/evolution-mail.schemas.in.h:130
msgid "Spell checking languages"
msgstr "Språk for stavekontroll"
-#: ../mail/evolution-mail.schemas.in.h:129
+#: ../mail/evolution-mail.schemas.in.h:131
msgid "Subscribe dialog default height"
msgstr "Forvalgt høyde på abonneringsvinduet"
-#: ../mail/evolution-mail.schemas.in.h:130
+#: ../mail/evolution-mail.schemas.in.h:132
msgid "Subscribe dialog default width"
msgstr "Forvalgt bredde på abonneringsvinduet"
-#: ../mail/evolution-mail.schemas.in.h:131
+#: ../mail/evolution-mail.schemas.in.h:133
msgid "Terminal font"
msgstr "Terminalskrift"
-#: ../mail/evolution-mail.schemas.in.h:132
+#: ../mail/evolution-mail.schemas.in.h:134
msgid "Text message part limit"
msgstr "Grense for tekstdel av melding"
-#: ../mail/evolution-mail.schemas.in.h:133
+#: ../mail/evolution-mail.schemas.in.h:135
msgid "The default plugin for Junk hook"
msgstr "Forvalgt tillegg for uønsket e-post"
-#: ../mail/evolution-mail.schemas.in.h:134
+#: ../mail/evolution-mail.schemas.in.h:136
msgid "The last time empty junk was run, in days since the epoch."
msgstr "Sist gang mapper for uønsket e-post ble tømt i dager siden epoch."
-#: ../mail/evolution-mail.schemas.in.h:135
+#: ../mail/evolution-mail.schemas.in.h:137
msgid "The last time empty trash was run, in days since the epoch."
msgstr "Sist gang papirkurven ble tømt i dager."
-#: ../mail/evolution-mail.schemas.in.h:136
+#: ../mail/evolution-mail.schemas.in.h:138
msgid "The terminal font for mail display."
msgstr "Terminalskrift for meldingsvisning."
-#: ../mail/evolution-mail.schemas.in.h:137
+#: ../mail/evolution-mail.schemas.in.h:139
msgid "The variable width font for mail display."
msgstr "Skrift med variabel bredde for meldingsvisning."
-#: ../mail/evolution-mail.schemas.in.h:138
+#: ../mail/evolution-mail.schemas.in.h:140
msgid ""
-"This can have three possible values. 0 for errors. 1 for warnings. 2 for "
-"debug messages."
-msgstr ""
-"Denne har tre mulige verdier. 0 for feil. 1 for advarsler. 2 for "
-"feilsøkingsmeldinger."
+"This can have three possible values. \"0\" for errors. \"1\" for warnings. "
+"\"2\" for debug messages."
+msgstr "Denne har tre mulige verdier. «0» for feil. «1» for advarsler. «2» for feilsøkingsmeldinger."
-#: ../mail/evolution-mail.schemas.in.h:139
+#: ../mail/evolution-mail.schemas.in.h:141
msgid ""
"This decides the max size of the text part that can be formatted under "
"evolution. The default is 4MB / 4096 KB and is specified interms of KB."
@@ -13570,7 +13616,7 @@ msgstr ""
"Bestemmer maksimal størrelse for tekstdelen som kan formatteres i evolution. "
"Forvalg er 4MB / 4096 KB og oppgis i KB."
-#: ../mail/evolution-mail.schemas.in.h:140
+#: ../mail/evolution-mail.schemas.in.h:142
msgid ""
"This is the default junk plugin, even though there are multiple plugins "
"enabled. If the default listed plugin is disabled, then it won't fall back "
@@ -13580,16 +13626,13 @@ msgstr ""
"tillegg er aktivert. Hvis forvalgt tillegg deaktiveres vil ikke de andre "
"brukes."
-#: ../mail/evolution-mail.schemas.in.h:141
+#: ../mail/evolution-mail.schemas.in.h:143
msgid ""
-"This key is read only once and reset to false after read. This unselects the "
-"mail in the list and removes the preview for that folder."
-msgstr ""
-"Denne nøkkelen leses kun en gang og settes til «false» etter at den er lest. "
-"Dette fjerner markering fra e-posten i listen og fjerner forhåndsvisning for "
-"den mappen."
+"This key is read only once and reset to \"false\" after read. This unselects "
+"the mail in the list and removes the preview for that folder."
+msgstr "Denne nøkkelen leses kun en gang og settes til «false» etter at den er lest. Dette fjerner markering fra e-posten i listen og fjerner forhåndsvisning for den mappen."
-#: ../mail/evolution-mail.schemas.in.h:142
+#: ../mail/evolution-mail.schemas.in.h:144
msgid ""
"This key should contain a list of XML structures specifying custom headers, "
"and whether they are to be displayed. The format of the XML structure is &lt;"
@@ -13601,18 +13644,18 @@ msgstr ""
"&lt;header enabled&gt; - sett «enabled» hvis toppteksten skal vises i e-"
"postvisningen. "
-#: ../mail/evolution-mail.schemas.in.h:143
+#: ../mail/evolution-mail.schemas.in.h:145
msgid ""
"This option is related to the key lookup_addressbook and is used to "
"determine whether to look up addresses in local addressbook only to exclude "
"mail sent by known contacts from junk filtering."
msgstr ""
-#: ../mail/evolution-mail.schemas.in.h:144
+#: ../mail/evolution-mail.schemas.in.h:146
msgid "This option would help in improving the speed of fetching."
msgstr "Dette valget vil øke hastigheten ved henting."
-#: ../mail/evolution-mail.schemas.in.h:145
+#: ../mail/evolution-mail.schemas.in.h:147
msgid ""
"This sets the number of addresses to show in default message list view, "
"beyond which a '...' is shown."
@@ -13620,7 +13663,7 @@ msgstr ""
"Setter antall adresser som skal vises i forvalgt listevisning for meldinger. "
"Etter dette vises «...»."
-#: ../mail/evolution-mail.schemas.in.h:146
+#: ../mail/evolution-mail.schemas.in.h:148
msgid ""
"This setting specifies whether the threads should be in expanded or "
"collapsed state by default. Evolution requires a restart."
@@ -13628,7 +13671,7 @@ msgstr ""
"Denne innstillingen spesifiserer om tråder skal være i utvidet eller "
"sammenslått tilstand som forvalg. Evolution må startes på nytt."
-#: ../mail/evolution-mail.schemas.in.h:147
+#: ../mail/evolution-mail.schemas.in.h:149
msgid ""
"This setting specifies whether the threads should be sorted based on latest "
"message in each thread, rather than by message's date. Evolution requires a "
@@ -13638,28 +13681,18 @@ msgstr ""
"melding i hver tråd i stedet for meldingens dato. Evolution må startes på "
"nytt."
-#: ../mail/evolution-mail.schemas.in.h:148
+#: ../mail/evolution-mail.schemas.in.h:150
msgid "Thread the message list."
msgstr "Bruk meldingsliste med tråder."
-#: ../mail/evolution-mail.schemas.in.h:149
+#: ../mail/evolution-mail.schemas.in.h:151
msgid "Thread the message-list"
msgstr "Bruk meldingsliste med tråder"
-#: ../mail/evolution-mail.schemas.in.h:150
+#: ../mail/evolution-mail.schemas.in.h:152
msgid "Thread the message-list based on Subject"
msgstr "Lag tråder av e-postlisten basert på emne"
-#: ../mail/evolution-mail.schemas.in.h:151
-msgid "Time interval, in seconds, how often upload store changes to server."
-msgstr ""
-
-#: ../mail/evolution-mail.schemas.in.h:152
-msgid ""
-"Time interval, in seconds, how often upload store changes to server. The "
-"actual value cannot be less than 30 seconds."
-msgstr ""
-
#: ../mail/evolution-mail.schemas.in.h:153
msgid "Timeout for marking message as seen"
msgstr "Tidsgrense for å merke e-post som sett"
@@ -13810,7 +13843,7 @@ msgstr "Importer mapper i Berkeley Mailbox format"
msgid "Importing mailbox"
msgstr "Importerer postboks"
-#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:515
+#: ../mail/importers/mail-importer.c:232 ../shell/e-shell-importer.c:514
#, c-format
msgid "Importing `%s'"
msgstr "Importerer «%s»"
@@ -13918,86 +13951,88 @@ msgid_plural "%d total"
msgstr[0] "%d totalt"
msgstr[1] "%d totalt"
-#: ../mail/mail-component.c:914
+#: ../mail/mail-component.c:916
msgid "New Mail Message"
msgstr "Ny e-post melding"
-#: ../mail/mail-component.c:915
+#: ../mail/mail-component.c:917
+msgctxt "New"
msgid "_Mail Message"
-msgstr "Send _melding"
+msgstr "E-post_melding"
-#: ../mail/mail-component.c:916
+#: ../mail/mail-component.c:918
msgid "Compose a new mail message"
msgstr "Skriv en ny e-postmelding"
-#: ../mail/mail-component.c:922
+#: ../mail/mail-component.c:924
msgid "New Mail Folder"
msgstr "Ny e-postmappe"
-#: ../mail/mail-component.c:923
+#: ../mail/mail-component.c:925
+msgctxt "New"
msgid "Mail _Folder"
-msgstr "_E-postmappe"
+msgstr "E-post_mappe"
-#: ../mail/mail-component.c:924
+#: ../mail/mail-component.c:926
msgid "Create a new mail folder"
msgstr "Opprett en ny e-postmappe"
-#: ../mail/mail-component.c:1071
+#: ../mail/mail-component.c:1073
msgid "Failed upgrading Mail settings or folders."
msgstr "Feil under oppgradering av innstillinger eller mapper for e-post."
-#: ../mail/mail-component.c:1584
+#: ../mail/mail-component.c:1586
msgid "Error"
msgstr "Feil"
-#: ../mail/mail-component.c:1584
+#: ../mail/mail-component.c:1586
msgid "Errors"
msgstr "Feil"
-#: ../mail/mail-component.c:1585
+#: ../mail/mail-component.c:1587
msgid "Warnings and Errors"
msgstr "Advarsler og feil"
-#: ../mail/mail-component.c:1586
+#: ../mail/mail-component.c:1588
msgid "Debug"
msgstr "Feilsøk"
-#: ../mail/mail-component.c:1586
+#: ../mail/mail-component.c:1588
msgid "Error, Warnings and Debug messages"
msgstr "Feil, advarsler og feilsøkingsmeldinger"
-#: ../mail/mail-component.c:1713
+#: ../mail/mail-component.c:1715
msgid "Debug Logs"
msgstr "Feilsøkingslogger"
-#: ../mail/mail-component.c:1727
+#: ../mail/mail-component.c:1729
msgid "Show _errors in the status bar for"
msgstr "Vis f_eil i statuslinjen i"
#. Translators: This is the second part of the sentence
#. * "Show _errors in the status bar for" - XXX - "second(s)."
-#: ../mail/mail-component.c:1743
+#: ../mail/mail-component.c:1745
msgid "second(s)."
msgstr "sekund(er)."
-#: ../mail/mail-component.c:1749
+#: ../mail/mail-component.c:1751
msgid "Log Messages:"
msgstr "Loggmeldinger:"
-#: ../mail/mail-component.c:1790
+#: ../mail/mail-component.c:1792
msgid "Log Level"
msgstr "Loggnivå"
-#: ../mail/mail-component.c:1799 ../widgets/misc/e-dateedit.c:395
+#: ../mail/mail-component.c:1801 ../widgets/misc/e-dateedit.c:395
msgid "Time"
msgstr "Tid"
-#: ../mail/mail-component.c:1809 ../mail/message-list.c:2430
+#: ../mail/mail-component.c:1811 ../mail/message-list.c:2454
#: ../mail/message-list.etspec.h:10
msgid "Messages"
msgstr "Meldinger"
-#: ../mail/mail-component.c:1818 ../ui/evolution-mail-messagedisplay.xml.h:2
+#: ../mail/mail-component.c:1820 ../ui/evolution-mail-messagedisplay.xml.h:2
#: ../ui/evolution.xml.h:4
msgid "Close this window"
msgstr "Lukk dette vinduet"
@@ -14386,7 +14421,9 @@ msgstr ""
#: ../mail/mail-config.glade.h:109
msgid "Option is ignored if a match for custom junk headers is found."
-msgstr "Alternativet vil ignoreres hvis det finnes treff for egendefinerte meldingshoder for uønsket e-post."
+msgstr ""
+"Alternativet vil ignoreres hvis det finnes treff for egendefinerte "
+"meldingshoder for uønsket e-post."
#: ../mail/mail-config.glade.h:110
msgid "Or_ganization:"
@@ -14568,8 +14605,10 @@ msgstr "Bruk_ernavn:"
msgid "Use Authe_ntication"
msgstr "Bruk aute_ntisering"
-#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:282
-#: ../plugins/google-account-setup/google-source.c:364
+#: ../mail/mail-config.glade.h:156 ../plugins/caldav/caldav-source.c:284
+#: ../plugins/google-account-setup/google-source.c:678
+#: ../plugins/google-account-setup/google-contacts-source.c:278
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:323
msgid "User_name:"
msgstr "Bruker_navn:"
@@ -14752,7 +14791,7 @@ msgstr "F_inn:"
msgid "Find in Message"
msgstr "Finn i melding"
-#: ../mail/mail-dialogs.glade.h:12 ../mail/message-tag-followup.c:279
+#: ../mail/mail-dialogs.glade.h:12 ../mail/message-tag-followup.c:276
msgid "Flag to Follow Up"
msgstr "Merk for oppfølging"
@@ -14851,11 +14890,11 @@ msgstr "Sender melding %d av %d"
msgid "Failed to send %d of %d messages"
msgstr "Feil under sending av %d av %d meldinger"
-#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:700
+#: ../mail/mail-ops.c:763 ../mail/mail-send-recv.c:693
msgid "Canceled."
msgstr "Avbrutt."
-#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:702
+#: ../mail/mail-ops.c:765 ../mail/mail-send-recv.c:695
msgid "Complete."
msgstr "Fullført."
@@ -14944,9 +14983,9 @@ msgstr[1] "Henter %d melding(er)"
#: ../mail/mail-ops.c:1978
#, c-format
msgid "Saving %d message"
-msgid_plural "Saving %d messsages"
+msgid_plural "Saving %d messages"
msgstr[0] "Lagrer %d melding"
-msgstr[1] "Lagrer %d melding(er)"
+msgstr[1] "Lagrer %d meldinger"
#: ../mail/mail-ops.c:2056
#, c-format
@@ -14994,27 +15033,27 @@ msgstr "Forbereder konto «%s» for frakoblet bruk"
msgid "Checking Service"
msgstr "Sjekker tjeneste"
-#: ../mail/mail-send-recv.c:182
+#: ../mail/mail-send-recv.c:181
msgid "Canceling..."
msgstr "Avbryter..."
-#: ../mail/mail-send-recv.c:385
+#: ../mail/mail-send-recv.c:383
msgid "Send & Receive Mail"
msgstr "Send & motta e-post"
-#: ../mail/mail-send-recv.c:396
+#: ../mail/mail-send-recv.c:394
msgid "Cancel _All"
msgstr "Avbryt _alle"
-#: ../mail/mail-send-recv.c:505
+#: ../mail/mail-send-recv.c:498
msgid "Updating..."
msgstr "Oppdaterer..."
-#: ../mail/mail-send-recv.c:505 ../mail/mail-send-recv.c:580
+#: ../mail/mail-send-recv.c:498 ../mail/mail-send-recv.c:573
msgid "Waiting..."
msgstr "Venter..."
-#: ../mail/mail-send-recv.c:806
+#: ../mail/mail-send-recv.c:799
#, c-format
msgid "Checking for new mail"
msgstr "Ser etter nye meldinger"
@@ -15711,79 +15750,79 @@ msgstr "T_øm"
msgid "_Open Messages"
msgstr "_Åpne meldinger"
-#: ../mail/message-list.c:1051
+#: ../mail/message-list.c:1052
msgid "Unseen"
msgstr "Ulest"
-#: ../mail/message-list.c:1052
+#: ../mail/message-list.c:1053
msgid "Seen"
msgstr "Lest"
-#: ../mail/message-list.c:1053
+#: ../mail/message-list.c:1054
msgid "Answered"
msgstr "Besvart"
-#: ../mail/message-list.c:1054
+#: ../mail/message-list.c:1055
msgid "Forwarded"
msgstr "Videresendt"
-#: ../mail/message-list.c:1055
+#: ../mail/message-list.c:1056
msgid "Multiple Unseen Messages"
msgstr "Flere uleste meldinger"
-#: ../mail/message-list.c:1056
+#: ../mail/message-list.c:1057
msgid "Multiple Messages"
msgstr "Flere meldinger"
-#: ../mail/message-list.c:1060
+#: ../mail/message-list.c:1061
msgid "Lowest"
msgstr "Lavest"
-#: ../mail/message-list.c:1061
+#: ../mail/message-list.c:1062
msgid "Lower"
msgstr "Lavere"
-#: ../mail/message-list.c:1065
+#: ../mail/message-list.c:1066
msgid "Higher"
msgstr "Høyere"
-#: ../mail/message-list.c:1066
+#: ../mail/message-list.c:1067
msgid "Highest"
msgstr "Høyest"
-#: ../mail/message-list.c:1595 ../widgets/table/e-cell-date.c:55
+#: ../mail/message-list.c:1596 ../widgets/table/e-cell-date.c:55
msgid "?"
msgstr "?"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../mail/message-list.c:1602 ../plugins/itip-formatter/itip-view.c:204
+#: ../mail/message-list.c:1603 ../plugins/itip-formatter/itip-view.c:203
#: ../widgets/table/e-cell-date.c:70
msgid "Today %l:%M %p"
msgstr "I dag %l:%M %p"
-#: ../mail/message-list.c:1611 ../widgets/table/e-cell-date.c:80
+#: ../mail/message-list.c:1612 ../widgets/table/e-cell-date.c:80
msgid "Yesterday %l:%M %p"
msgstr "I går %l:%M %p"
-#: ../mail/message-list.c:1623 ../widgets/table/e-cell-date.c:92
+#: ../mail/message-list.c:1624 ../widgets/table/e-cell-date.c:92
msgid "%a %l:%M %p"
msgstr "%a %H.%M"
-#: ../mail/message-list.c:1631 ../widgets/table/e-cell-date.c:100
+#: ../mail/message-list.c:1632 ../widgets/table/e-cell-date.c:100
msgid "%b %d %l:%M %p"
msgstr "%d %b %H.%M"
-#: ../mail/message-list.c:1633 ../widgets/table/e-cell-date.c:102
+#: ../mail/message-list.c:1634 ../widgets/table/e-cell-date.c:102
msgid "%b %d %Y"
msgstr "%d %b %Y"
#. there is some info why the message list is empty, let it be something useful
-#: ../mail/message-list.c:3885 ../mail/message-list.c:4321
+#: ../mail/message-list.c:3916 ../mail/message-list.c:4373
msgid "Generating message list"
msgstr "Genererer meldingsliste"
-#: ../mail/message-list.c:4176
+#: ../mail/message-list.c:4223
msgid ""
"No message satisfies your search criteria. Either clear search with Search-"
">Clear menu item or change it."
@@ -15791,7 +15830,7 @@ msgstr ""
"Ingen meldinger passer dine søkekriterier. Du kan enten tømme søket med "
"menyoppføringen Søk->Tøm eller endre det."
-#: ../mail/message-list.c:4178
+#: ../mail/message-list.c:4225
msgid "There are no messages in this folder."
msgstr "Det er ingen meldinger i denne mappen."
@@ -15824,39 +15863,39 @@ msgstr "Sendte meldinger"
msgid "Size"
msgstr "Størrelse"
-#: ../mail/message-tag-followup.c:56
+#: ../mail/message-tag-followup.c:55
msgid "Call"
msgstr "Ring"
-#: ../mail/message-tag-followup.c:57
+#: ../mail/message-tag-followup.c:56
msgid "Do Not Forward"
msgstr "Ikke videresend"
-#: ../mail/message-tag-followup.c:58
+#: ../mail/message-tag-followup.c:57
msgid "Follow-Up"
msgstr "Følg opp"
-#: ../mail/message-tag-followup.c:59
+#: ../mail/message-tag-followup.c:58
msgid "For Your Information"
msgstr "Til din informasjon"
-#: ../mail/message-tag-followup.c:60 ../ui/evolution-mail-message.xml.h:42
+#: ../mail/message-tag-followup.c:59 ../ui/evolution-mail-message.xml.h:42
msgid "Forward"
msgstr "Videresend"
-#: ../mail/message-tag-followup.c:61
+#: ../mail/message-tag-followup.c:60
msgid "No Response Necessary"
msgstr "Ingen respons nødvendig"
-#: ../mail/message-tag-followup.c:64 ../ui/evolution-mail-message.xml.h:80
+#: ../mail/message-tag-followup.c:63 ../ui/evolution-mail-message.xml.h:80
msgid "Reply"
msgstr "Svar"
-#: ../mail/message-tag-followup.c:65 ../ui/evolution-mail-message.xml.h:81
+#: ../mail/message-tag-followup.c:64 ../ui/evolution-mail-message.xml.h:81
msgid "Reply to All"
msgstr "Svar til alle"
-#: ../mail/message-tag-followup.c:66
+#: ../mail/message-tag-followup.c:65
msgid "Review"
msgstr "Gjennomgå"
@@ -15881,6 +15920,10 @@ msgid "Subject contains"
msgstr "Emne inneholder"
#: ../mail/searchtypes.xml.h:6
+msgid "Subject or Recipients contains"
+msgstr "Emne eller mottakere inneholder"
+
+#: ../mail/searchtypes.xml.h:7
msgid "Subject or Sender contains"
msgstr "Emne eller avsender inneholder"
@@ -16143,8 +16186,8 @@ msgid "Please select a valid backup file to restore."
msgstr "Velg en gyldig sikkerhetskopi for gjenoppretting."
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:7
-msgid "The selected folder does not have enough permissions to create the file"
-msgstr "Valgt mappe har ikke tilstrekkelige rettigheter til å opprette filen."
+msgid "The selected folder is not writable."
+msgstr "Valgt mappe er ikke skrivbar."
#: ../plugins/backup-restore/org-gnome-backup-restore.error.xml.h:8
msgid ""
@@ -16173,35 +16216,35 @@ msgstr "Gj_enopprett innstillinger..."
msgid "_Backup Settings..."
msgstr "_Innstillinger for sikkerhetskopiering..."
-#: ../plugins/bbdb/bbdb.c:541 ../plugins/bbdb/bbdb.c:550
+#: ../plugins/bbdb/bbdb.c:543 ../plugins/bbdb/bbdb.c:552
#: ../plugins/bbdb/org-gnome-evolution-bbdb.eplug.xml.h:1
msgid "Automatic Contacts"
msgstr "Automatiske kontakter"
#. Enable BBDB checkbox
-#: ../plugins/bbdb/bbdb.c:565
+#: ../plugins/bbdb/bbdb.c:567
msgid "_Auto-create addressbook entries when replying to messages"
msgstr "Opprett oppføringer i adresseboken _automatisk når du svarer på e-post"
-#: ../plugins/bbdb/bbdb.c:571
+#: ../plugins/bbdb/bbdb.c:573
msgid "Select Address book for Automatic Contacts"
msgstr "Velg adressebok for automatiske kontakter"
-#: ../plugins/bbdb/bbdb.c:586
+#: ../plugins/bbdb/bbdb.c:588
msgid "Instant Messaging Contacts"
msgstr "Kontakter for lynmeldinger"
#. Enable Gaim Checkbox
-#: ../plugins/bbdb/bbdb.c:601
+#: ../plugins/bbdb/bbdb.c:603
msgid "Synchronize contact info and images from Pidgin buddy list"
msgstr "Synkroniser kontaktinformasjon og bilder fra vennelisten i Pidgin"
-#: ../plugins/bbdb/bbdb.c:607
+#: ../plugins/bbdb/bbdb.c:609
msgid "Select Address book for Pidgin buddy list"
msgstr "Velg adressebok for venneliste fra Pidgin"
#. Synchronize now button.
-#: ../plugins/bbdb/bbdb.c:618
+#: ../plugins/bbdb/bbdb.c:620
msgid "Synchronize with _buddy list now"
msgstr "Synkroniser med _vennelisten nå"
@@ -16268,17 +16311,18 @@ msgstr "Bogofilter-tillegg"
msgid "Filters junk messages using Bogofilter."
msgstr "Filtrer uønsket e-post med Bogofilter."
-#: ../plugins/caldav/caldav-source.c:64 ../plugins/caldav/caldav-source.c:68
+#: ../plugins/caldav/caldav-source.c:66 ../plugins/caldav/caldav-source.c:70
msgid "CalDAV"
msgstr "CalDAV"
-#: ../plugins/caldav/caldav-source.c:247
+#: ../plugins/caldav/caldav-source.c:249
#: ../plugins/calendar-http/calendar-http.c:126
msgid "_URL:"
msgstr "_URL:"
-#: ../plugins/caldav/caldav-source.c:269
-#: ../plugins/google-account-setup/google-source.c:357
+#: ../plugins/caldav/caldav-source.c:271
+#: ../plugins/google-account-setup/google-source.c:671
+#: ../plugins/google-account-setup/google-contacts-source.c:301
msgid "Use _SSL"
msgstr "Bruk _SSL"
@@ -16300,7 +16344,8 @@ msgstr "Gir kjernefunksjoner for lokale kalendere."
#: ../plugins/calendar-http/calendar-http.c:264
#: ../plugins/calendar-weather/calendar-weather.c:546
-#: ../plugins/google-account-setup/google-source.c:381
+#: ../plugins/google-account-setup/google-source.c:695
+#: ../plugins/google-account-setup/google-contacts-source.c:320
msgid "Re_fresh:"
msgstr "O_ppdater"
@@ -16440,15 +16485,15 @@ msgstr ""
"Gir grunnleggende funksjonalitet for markering av forvalgt kalender eller "
"adressebok."
-#: ../plugins/email-custom-header/email-custom-header.c:562
+#: ../plugins/email-custom-header/email-custom-header.c:558
msgid "_Custom Header"
msgstr "E_gendefinert meldingshode"
-#: ../plugins/email-custom-header/email-custom-header.c:883
+#: ../plugins/email-custom-header/email-custom-header.c:879
msgid "Key"
msgstr "Nøkkel"
-#: ../plugins/email-custom-header/email-custom-header.c:894
+#: ../plugins/email-custom-header/email-custom-header.c:890
#: ../plugins/templates/templates.c:400
msgid "Values"
msgstr "Verdier"
@@ -16459,6 +16504,8 @@ msgid ""
"The format for specifying a Custom Header key value is:\n"
"Name of the Custom Header key values separated by \";\"."
msgstr ""
+"Format for spesifisering av nøkkelvedi for egendefinert meldingshode er:\n"
+"Navn på nøkkelverdi for egendefinert meldingshode delt med «;»."
#: ../plugins/email-custom-header/org-gnome-email-custom-header.glade.h:1
msgid "Email Custom Header"
@@ -16474,7 +16521,7 @@ msgid "Custom Header"
msgstr "Egendefinert meldingshode"
#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:1
-msgid "List of Custom Header"
+msgid "List of Custom Headers"
msgstr "Liste med egendefinerte meldingshoder"
#: ../plugins/email-custom-header/apps_evolution_email_custom_header.schemas.in.h:2
@@ -16590,33 +16637,33 @@ msgstr "Mappestørrelse"
msgid "Exchange Settings"
msgstr "Innstillinger for Exchange"
-#: ../plugins/exchange-operations/exchange-account-setup.c:674
+#: ../plugins/exchange-operations/exchange-account-setup.c:688
msgid "_OWA URL:"
msgstr "_OWA-URL:"
-#: ../plugins/exchange-operations/exchange-account-setup.c:700
+#: ../plugins/exchange-operations/exchange-account-setup.c:714
msgid "A_uthenticate"
msgstr "A_utentiser"
-#: ../plugins/exchange-operations/exchange-account-setup.c:721
+#: ../plugins/exchange-operations/exchange-account-setup.c:735
msgid "_Mailbox:"
msgstr "_Postboks:"
-#: ../plugins/exchange-operations/exchange-account-setup.c:922
+#: ../plugins/exchange-operations/exchange-account-setup.c:936
msgid "_Authentication Type"
msgstr "_Autentiseringstype"
-#: ../plugins/exchange-operations/exchange-account-setup.c:936
+#: ../plugins/exchange-operations/exchange-account-setup.c:950
msgid "Ch_eck for Supported Types"
msgstr "Sj_ekk støttede typer"
-#: ../plugins/exchange-operations/exchange-account-setup.c:1048
+#: ../plugins/exchange-operations/exchange-account-setup.c:1062
#: ../plugins/exchange-operations/exchange-contacts.c:212
#, c-format
msgid "%s KB"
msgstr "%s KB"
-#: ../plugins/exchange-operations/exchange-account-setup.c:1050
+#: ../plugins/exchange-operations/exchange-account-setup.c:1064
#: ../plugins/exchange-operations/exchange-contacts.c:214
#, c-format
msgid "0 KB"
@@ -16932,7 +16979,7 @@ msgid "Add User:"
msgstr "Legg til bruker:"
#: ../plugins/exchange-operations/exchange-permissions-dialog.c:401
-#: ../plugins/exchange-operations/exchange-send-options.c:413
+#: ../plugins/exchange-operations/exchange-send-options.c:408
#: ../plugins/groupwise-features/proxy.c:934
#: ../plugins/groupwise-features/share-folder.c:715
msgid "Add User"
@@ -17168,7 +17215,7 @@ msgstr "Kunne ikke oppdatere «ute fra kontoret»-tilstand"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:21
msgid "Evolution requires a restart to load the subscribed user's mailbox"
-msgstr ""
+msgstr "Evloution må startes på nytt for å laste abonnert brukers postboks"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:22
msgid "Exchange Account is offline."
@@ -17339,6 +17386,7 @@ msgid "Unknown error looking up {0}"
msgstr "Ukjent feil ved oppslag av {0}"
#: ../plugins/exchange-operations/org-gnome-exchange-operations.error.xml.h:70
+#: ../plugins/google-account-setup/google-source.c:597
msgid "Unknown error."
msgstr "Ukjent feil."
@@ -17467,8 +17515,8 @@ msgstr ""
"ikke startes. Prøv å bruke et annet redigeringsprogram."
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:1
-msgid "Compose in External Editor"
-msgstr "Skriv melding i eksternt redigeringsprogram"
+msgid "Compose in _External Editor"
+msgstr "Skriv i _eksternt redigeringsprogram"
#: ../plugins/external-editor/org-gnome-external-editor.xml.h:2
msgid "Compose messages using an external editor"
@@ -17530,25 +17578,44 @@ msgstr "Fjern abonnement på mapper"
msgid "_Unsubscribe"
msgstr "_Fjern abonnement"
-#: ../plugins/google-account-setup/google-source.c:73
-#: ../plugins/google-account-setup/google-source.c:80
+#: ../plugins/google-account-setup/google-source.c:83
+#: ../plugins/google-account-setup/google-source.c:90
#: ../plugins/google-account-setup/google-contacts-source.c:52
#: ../plugins/google-account-setup/google-contacts-source.c:57
#: ../plugins/google-account-setup/google-contacts-source.c:83
msgid "Google"
msgstr "Google"
-#: ../plugins/google-account-setup/google-contacts-source.c:198
-msgid "<b>Server</b>"
-msgstr "<b>Tjener</b> "
+#: ../plugins/google-account-setup/google-source.c:493
+msgid "Please enter user name first."
+msgstr "Vennligst oppgi brukernavn først."
-#: ../plugins/google-account-setup/google-contacts-source.c:208
-msgid "Username:"
-msgstr "Brukernavn:"
+#: ../plugins/google-account-setup/google-source.c:497
+#, c-format
+msgid "Enter password for user %s to access list of subscribed calendars."
+msgstr "Oppgi passord for %s for å aksessere liste med abonnerte kalendere."
+
+#: ../plugins/google-account-setup/google-source.c:597
+#, c-format
+msgid ""
+"Cannot read data from Google server.\n"
+"%s"
+msgstr ""
+"Kan ikke lese data fra Google-tjener.\n"
+"%s"
+
+#: ../plugins/google-account-setup/google-source.c:747
+msgid "Cal_endar:"
+msgstr "Kal_ender:"
-#: ../plugins/google-account-setup/google-contacts-source.c:230
-msgid "Update every"
-msgstr "Oppdaterer hver"
+#: ../plugins/google-account-setup/google-source.c:782
+msgid "Retrieve _list"
+msgstr "Hent _liste"
+
+#: ../plugins/google-account-setup/google-contacts-source.c:268
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:300
+msgid "<b>Server</b>"
+msgstr "<b>Tjener</b> "
#: ../plugins/google-account-setup/org-gnome-evolution-google.eplug.xml.h:1
msgid "A plugin to setup google calendar and contacts."
@@ -17712,11 +17779,9 @@ msgstr "Kontoen eksisterer allerede"
#: ../plugins/groupwise-features/org-gnome-proxy-login-errors.xml.h:4
msgid ""
-"Proxy login as &quot;{0}&quot; was unsuccessful. Please check Email Id and "
-"try again."
-msgstr ""
-"Proxy-pålogging som &quot;{0}&quot; lykkes ikke. Vennligst sjekk e-post-ID "
-"og prøv igjen."
+"Proxy login as &quot;{0}&quot; was unsuccessful. Please check your email "
+"address and try again."
+msgstr "Proxy-pålogging som &quot;{0}&quot; lykkes ikke. Vennligst sjekk e-postadresse og prøv igjen."
#: ../plugins/groupwise-features/org-gnome-shared-folder.errors.xml.h:3
msgid "This is a recurring meeting"
@@ -18009,28 +18074,28 @@ msgstr "Tillegg for funksjoner vedrørende IMAP-kontoer."
msgid "IMAP Features"
msgstr "IMAP-funksjoner"
-#: ../plugins/import-ics-attachments/icsimporter.c:78
+#: ../plugins/import-ics-attachments/icsimporter.c:77
msgid "_Import to Calendar"
msgstr "_Importer til kalenderen"
-#: ../plugins/import-ics-attachments/icsimporter.c:83
+#: ../plugins/import-ics-attachments/icsimporter.c:82
msgid "_Import to Tasks"
msgstr "_Importer til oppgaver"
-#: ../plugins/import-ics-attachments/icsimporter.c:201
+#: ../plugins/import-ics-attachments/icsimporter.c:200
msgid "Import ICS"
msgstr "Importer ICS"
-#: ../plugins/import-ics-attachments/icsimporter.c:224
+#: ../plugins/import-ics-attachments/icsimporter.c:223
msgid "Select Task List"
msgstr "Velg oppgaveliste"
-#: ../plugins/import-ics-attachments/icsimporter.c:228
+#: ../plugins/import-ics-attachments/icsimporter.c:227
msgid "Select Calendar"
msgstr "Velg kalender"
#: ../plugins/import-ics-attachments/icsimporter.c:259
-#: ../shell/e-shell-importer.c:700
+#: ../shell/e-shell-importer.c:698
msgid "_Import"
msgstr "_Importer"
@@ -18084,128 +18149,128 @@ msgstr "Synkroniser til iPod"
msgid "iPod Synchronization"
msgstr "iPod-synkronisering"
-#: ../plugins/itip-formatter/itip-formatter.c:444
-#: ../plugins/itip-formatter/itip-formatter.c:569
+#: ../plugins/itip-formatter/itip-formatter.c:443
+#: ../plugins/itip-formatter/itip-formatter.c:568
#, c-format
msgid "Failed to load the calendar '%s'"
msgstr "Kunne ikke åpne kalender «%s»"
-#: ../plugins/itip-formatter/itip-formatter.c:589
+#: ../plugins/itip-formatter/itip-formatter.c:588
#, c-format
msgid "An appointment in the calendar '%s' conflicts with this meeting"
msgstr "En avtale i kalender «%s» er i konflikt med dette møtet"
-#: ../plugins/itip-formatter/itip-formatter.c:615
+#: ../plugins/itip-formatter/itip-formatter.c:614
#, c-format
msgid "Found the appointment in the calendar '%s'"
msgstr "Fant avtalen i kalender «%s»"
-#: ../plugins/itip-formatter/itip-formatter.c:691
+#: ../plugins/itip-formatter/itip-formatter.c:690
msgid "Unable to find any calendars"
msgstr "Kan ikke finne noen kalendere"
-#: ../plugins/itip-formatter/itip-formatter.c:698
+#: ../plugins/itip-formatter/itip-formatter.c:697
msgid "Unable to find this meeting in any calendar"
msgstr "Kan ikke finne dette møtet i noen kalender"
-#: ../plugins/itip-formatter/itip-formatter.c:702
+#: ../plugins/itip-formatter/itip-formatter.c:701
msgid "Unable to find this task in any task list"
msgstr "Kan ikke finne denne oppgaven i noen oppgaveliste"
-#: ../plugins/itip-formatter/itip-formatter.c:706
+#: ../plugins/itip-formatter/itip-formatter.c:705
msgid "Unable to find this memo in any memo list"
msgstr "Kan ikke finne dette notatet i noen notatliste"
-#: ../plugins/itip-formatter/itip-formatter.c:777
+#: ../plugins/itip-formatter/itip-formatter.c:776
msgid "Searching for an existing version of this appointment"
msgstr "Søker etter en eksisterende versjon av denne avtalen"
-#: ../plugins/itip-formatter/itip-formatter.c:946
+#: ../plugins/itip-formatter/itip-formatter.c:945
msgid "Unable to parse item"
msgstr "Kunne ikke lese oppføring"
-#: ../plugins/itip-formatter/itip-formatter.c:1004
+#: ../plugins/itip-formatter/itip-formatter.c:1003
#, c-format
msgid "Unable to send item to calendar '%s'. %s"
msgstr "Kunne ikke sende oppføring til kalender «%s». %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1016
+#: ../plugins/itip-formatter/itip-formatter.c:1015
#, c-format
msgid "Sent to calendar '%s' as accepted"
msgstr "Sendt til kalender «%s» som godtatt"
-#: ../plugins/itip-formatter/itip-formatter.c:1020
+#: ../plugins/itip-formatter/itip-formatter.c:1019
#, c-format
msgid "Sent to calendar '%s' as tentative"
msgstr "Sendt til kalender «%s» som tentativ"
-#: ../plugins/itip-formatter/itip-formatter.c:1025
+#: ../plugins/itip-formatter/itip-formatter.c:1024
#, c-format
msgid "Sent to calendar '%s' as declined"
msgstr "Sendt til kalender «%s» som avslått"
-#: ../plugins/itip-formatter/itip-formatter.c:1030
+#: ../plugins/itip-formatter/itip-formatter.c:1029
#, c-format
msgid "Sent to calendar '%s' as canceled"
msgstr "Sendt til kalender «%s» som avlyst"
-#: ../plugins/itip-formatter/itip-formatter.c:1124
+#: ../plugins/itip-formatter/itip-formatter.c:1123
#, c-format
msgid "Organizer has removed the delegate %s "
msgstr "Organisator har fjernet delegat %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1131
+#: ../plugins/itip-formatter/itip-formatter.c:1130
msgid "Sent a cancelation notice to the delegate"
msgstr "Avlysningsvarsel sendt til delegat"
-#: ../plugins/itip-formatter/itip-formatter.c:1133
+#: ../plugins/itip-formatter/itip-formatter.c:1132
msgid "Could not send the cancelation notice to the delegate"
msgstr "Kunne ikke sende avlysningsmelding til delegaten"
-#: ../plugins/itip-formatter/itip-formatter.c:1219
+#: ../plugins/itip-formatter/itip-formatter.c:1218
msgid "Attendee status could not be updated because the status is invalid"
msgstr "Deltakerstatus kunne ikke oppdateres pga ugyldig status"
-#: ../plugins/itip-formatter/itip-formatter.c:1246
+#: ../plugins/itip-formatter/itip-formatter.c:1245
#, c-format
msgid "Unable to update attendee. %s"
msgstr "Kan ikke oppdatere deltaker. %s"
-#: ../plugins/itip-formatter/itip-formatter.c:1250
+#: ../plugins/itip-formatter/itip-formatter.c:1249
msgid "Attendee status updated"
msgstr "Deltakerstatus oppdatert"
-#: ../plugins/itip-formatter/itip-formatter.c:1276
+#: ../plugins/itip-formatter/itip-formatter.c:1275
msgid "Meeting information sent"
msgstr "Informasjon om møte sendt"
-#: ../plugins/itip-formatter/itip-formatter.c:1279
+#: ../plugins/itip-formatter/itip-formatter.c:1278
msgid "Task information sent"
msgstr "Informasjon om oppgave sendt"
-#: ../plugins/itip-formatter/itip-formatter.c:1282
+#: ../plugins/itip-formatter/itip-formatter.c:1281
msgid "Memo information sent"
msgstr "Informasjon om notat sendt"
-#: ../plugins/itip-formatter/itip-formatter.c:1291
+#: ../plugins/itip-formatter/itip-formatter.c:1290
msgid "Unable to send meeting information, the meeting does not exist"
msgstr "Kan ikke sende møteinformasjon. Møtet eksisterer ikke"
-#: ../plugins/itip-formatter/itip-formatter.c:1294
+#: ../plugins/itip-formatter/itip-formatter.c:1293
msgid "Unable to send task information, the task does not exist"
msgstr "Kan ikke sende informasjon om oppgave. Oppgaven eksisterer ikke"
-#: ../plugins/itip-formatter/itip-formatter.c:1297
+#: ../plugins/itip-formatter/itip-formatter.c:1296
msgid "Unable to send memo information, the memo does not exist"
msgstr "Kan ikke sende informasjon om notat. Notatet eksisterer ikke"
-#: ../plugins/itip-formatter/itip-formatter.c:1366
-#: ../plugins/itip-formatter/itip-formatter.c:1377
+#: ../plugins/itip-formatter/itip-formatter.c:1365
+#: ../plugins/itip-formatter/itip-formatter.c:1376
msgid "The calendar attached is not valid"
msgstr "Vedlagt kalender er ugyldig"
-#: ../plugins/itip-formatter/itip-formatter.c:1367
-#: ../plugins/itip-formatter/itip-formatter.c:1378
+#: ../plugins/itip-formatter/itip-formatter.c:1366
+#: ../plugins/itip-formatter/itip-formatter.c:1377
msgid ""
"The message claims to contain a calendar, but the calendar is not a valid "
"iCalendar."
@@ -18213,15 +18278,15 @@ msgstr ""
"Meldingen påstår at den inneholder en kalender, men kalenderen er ikke en "
"gyldig iCalendar."
-#: ../plugins/itip-formatter/itip-formatter.c:1418
-#: ../plugins/itip-formatter/itip-formatter.c:1436
-#: ../plugins/itip-formatter/itip-formatter.c:1518
+#: ../plugins/itip-formatter/itip-formatter.c:1417
+#: ../plugins/itip-formatter/itip-formatter.c:1435
+#: ../plugins/itip-formatter/itip-formatter.c:1517
msgid "The item in the calendar is not valid"
msgstr "Oppføringen i kalenderen er ikke gyldig"
-#: ../plugins/itip-formatter/itip-formatter.c:1419
-#: ../plugins/itip-formatter/itip-formatter.c:1437
-#: ../plugins/itip-formatter/itip-formatter.c:1519
+#: ../plugins/itip-formatter/itip-formatter.c:1418
+#: ../plugins/itip-formatter/itip-formatter.c:1436
+#: ../plugins/itip-formatter/itip-formatter.c:1518
msgid ""
"The message does contain a calendar, but the calendar contains no events, "
"tasks or free/busy information"
@@ -18229,11 +18294,11 @@ msgstr ""
"Meldingen inneholder en kalender, men kalenderen inneholder ingen hendelser, "
"oppgaver eller ledig/opptatt-informasjon"
-#: ../plugins/itip-formatter/itip-formatter.c:1448
+#: ../plugins/itip-formatter/itip-formatter.c:1447
msgid "The calendar attached contains multiple items"
msgstr "Vedlagt kalender inneholder flere oppføringer"
-#: ../plugins/itip-formatter/itip-formatter.c:1449
+#: ../plugins/itip-formatter/itip-formatter.c:1448
msgid ""
"To process all of these items, the file should be saved and the calendar "
"imported"
@@ -18241,228 +18306,228 @@ msgstr ""
"Du må lagre filen og importere kalenderen for å prosessere alle disse "
"oppføringene"
-#: ../plugins/itip-formatter/itip-formatter.c:2149
+#: ../plugins/itip-formatter/itip-formatter.c:2148
msgid "This meeting recurs"
msgstr "Dettee møtet gjeninntreffer"
-#: ../plugins/itip-formatter/itip-formatter.c:2152
+#: ../plugins/itip-formatter/itip-formatter.c:2151
msgid "This task recurs"
msgstr "Denne oppgaven gjeninntreffer"
-#: ../plugins/itip-formatter/itip-formatter.c:2155
+#: ../plugins/itip-formatter/itip-formatter.c:2154
msgid "This memo recurs"
msgstr "Dette notatet gjeninntreffer"
#. Delete message after acting
#. FIXME Need a schema for this
-#: ../plugins/itip-formatter/itip-formatter.c:2384
+#: ../plugins/itip-formatter/itip-formatter.c:2383
msgid "_Delete message after acting"
msgstr "_Slett melding etter utført handling"
-#: ../plugins/itip-formatter/itip-formatter.c:2394
-#: ../plugins/itip-formatter/itip-formatter.c:2426
+#: ../plugins/itip-formatter/itip-formatter.c:2393
+#: ../plugins/itip-formatter/itip-formatter.c:2425
msgid "Conflict Search"
msgstr "Søk etter konflikter"
#. Source selector
-#: ../plugins/itip-formatter/itip-formatter.c:2409
+#: ../plugins/itip-formatter/itip-formatter.c:2408
msgid "Select the calendars to search for meeting conflicts"
msgstr "Velg kalendere som skal gjennomsøkes for å finne møtekonflikter"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:190 ../ui/evolution-calendar.xml.h:34
+#: ../plugins/itip-formatter/itip-view.c:189 ../ui/evolution-calendar.xml.h:34
#: ../widgets/misc/e-cell-date-edit.c:299
msgid "Today"
msgstr "I dag"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:195
+#: ../plugins/itip-formatter/itip-view.c:194
msgid "Today %H:%M"
msgstr "I dag %H:%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:199
+#: ../plugins/itip-formatter/itip-view.c:198
msgid "Today %H:%M:%S"
msgstr "I dag %H:%M:%S"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:208
+#: ../plugins/itip-formatter/itip-view.c:207
msgid "Today %l:%M:%S %p"
msgstr "I dag %l:%M:%S %p"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:218
+#: ../plugins/itip-formatter/itip-view.c:217
msgid "Tomorrow"
msgstr "I morgen"
#. strftime format of a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:223
+#: ../plugins/itip-formatter/itip-view.c:222
msgid "Tomorrow %H:%M"
msgstr "I morgen %H.%M"
#. strftime format of a time,
#. in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:227
+#: ../plugins/itip-formatter/itip-view.c:226
msgid "Tomorrow %H:%M:%S"
msgstr "I morgen %H.%M.%S"
#. strftime format of a time,
#. in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:232
+#: ../plugins/itip-formatter/itip-view.c:231
msgid "Tomorrow %l:%M %p"
msgstr "I morgen %l.%M %p"
#. strftime format of a time,
#. in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:236
+#: ../plugins/itip-formatter/itip-view.c:235
msgid "Tomorrow %l:%M:%S %p"
msgstr "I morgen %l.%M.%S %p"
#. strftime format of a weekday.
-#: ../plugins/itip-formatter/itip-view.c:255
+#: ../plugins/itip-formatter/itip-view.c:254
#, c-format
msgid "%A"
msgstr "%A"
#. strftime format of a weekday and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:260
+#: ../plugins/itip-formatter/itip-view.c:259
msgid "%A %H:%M"
msgstr "%A %H.%M"
#. strftime format of a weekday and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:264
+#: ../plugins/itip-formatter/itip-view.c:263
msgid "%A %H:%M:%S"
msgstr "%A %H.%M.%S"
#. strftime format of a weekday and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:269
+#: ../plugins/itip-formatter/itip-view.c:268
msgid "%A %l:%M %p"
msgstr "%A %l.%M %p"
#. strftime format of a weekday and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:273
+#: ../plugins/itip-formatter/itip-view.c:272
msgid "%A %l:%M:%S %p"
msgstr "%A %l.%M.%S %p"
#. strftime format of a weekday and a date
#. without a year.
-#: ../plugins/itip-formatter/itip-view.c:282
+#: ../plugins/itip-formatter/itip-view.c:281
msgid "%A, %B %e"
msgstr "%A, %e %B"
#. strftime format of a weekday, a date
#. without a year and a time,
#. in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:288
+#: ../plugins/itip-formatter/itip-view.c:287
msgid "%A, %B %e %H:%M"
msgstr "%A, %e %B %H:%M"
#. strftime format of a weekday, a date without a year
#. and a time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:292
+#: ../plugins/itip-formatter/itip-view.c:291
msgid "%A, %B %e %H:%M:%S"
msgstr "%A, %e %B %H.%M.%S"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:297
+#: ../plugins/itip-formatter/itip-view.c:296
msgid "%A, %B %e %l:%M %p"
msgstr "%A, %e %B %l.%M %p"
#. strftime format of a weekday, a date without a year
#. and a time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:301
+#: ../plugins/itip-formatter/itip-view.c:300
msgid "%A, %B %e %l:%M:%S %p"
msgstr "%A, %e %B %l.%M.%S %p"
#. strftime format of a weekday and a date.
-#: ../plugins/itip-formatter/itip-view.c:307
+#: ../plugins/itip-formatter/itip-view.c:306
msgid "%A, %B %e, %Y"
msgstr "%A, %e %B, %Y"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:312
+#: ../plugins/itip-formatter/itip-view.c:311
msgid "%A, %B %e, %Y %H:%M"
msgstr "%A, %e %B, %Y %H.%M"
#. strftime format of a weekday, a date and a
#. time, in 24-hour format.
-#: ../plugins/itip-formatter/itip-view.c:316
+#: ../plugins/itip-formatter/itip-view.c:315
msgid "%A, %B %e, %Y %H:%M:%S"
msgstr "%A, %e %B %Y %H.%M.%S"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format, without seconds.
-#: ../plugins/itip-formatter/itip-view.c:321
+#: ../plugins/itip-formatter/itip-view.c:320
msgid "%A, %B %e, %Y %l:%M %p"
msgstr "%A, %e %B, %Y %l.%M %p"
#. strftime format of a weekday, a date and a
#. time, in 12-hour format.
-#: ../plugins/itip-formatter/itip-view.c:325
+#: ../plugins/itip-formatter/itip-view.c:324
msgid "%A, %B %e, %Y %l:%M:%S %p"
msgstr "%A, %e %B, %Y %l.%M.%S %p"
-#: ../plugins/itip-formatter/itip-view.c:350
-#: ../plugins/itip-formatter/itip-view.c:438
-#: ../plugins/itip-formatter/itip-view.c:526
+#: ../plugins/itip-formatter/itip-view.c:349
+#: ../plugins/itip-formatter/itip-view.c:437
+#: ../plugins/itip-formatter/itip-view.c:525
#, c-format
msgid "Please respond on behalf of <b>%s</b>"
msgstr "Vennligst svar på vegne av <b>%s</b>"
-#: ../plugins/itip-formatter/itip-view.c:352
-#: ../plugins/itip-formatter/itip-view.c:440
-#: ../plugins/itip-formatter/itip-view.c:528
+#: ../plugins/itip-formatter/itip-view.c:351
+#: ../plugins/itip-formatter/itip-view.c:439
+#: ../plugins/itip-formatter/itip-view.c:527
#, c-format
msgid "Received on behalf of <b>%s</b>"
msgstr "Mottatt på vegne av <b>%s</b>"
-#: ../plugins/itip-formatter/itip-view.c:357
+#: ../plugins/itip-formatter/itip-view.c:356
#, c-format
msgid "<b>%s</b> through %s has published the following meeting information:"
msgstr "<b>%s</b> har via %s publisert følgende møteinformasjon:"
-#: ../plugins/itip-formatter/itip-view.c:359
+#: ../plugins/itip-formatter/itip-view.c:358
#, c-format
msgid "<b>%s</b> has published the following meeting information:"
msgstr "<b>%s</b> har publisert følgende møteinformasjon:"
-#: ../plugins/itip-formatter/itip-view.c:364
+#: ../plugins/itip-formatter/itip-view.c:363
#, c-format
msgid "<b>%s</b> has delegated the following meeting to you:"
msgstr "<b>%s</b> har delegert følgende møte til deg:"
-#: ../plugins/itip-formatter/itip-view.c:367
+#: ../plugins/itip-formatter/itip-view.c:366
#, c-format
msgid "<b>%s</b> through %s requests your presence at the following meeting:"
msgstr "<b>%s</b> forespør via %s din tilstedeværelse i et møte."
-#: ../plugins/itip-formatter/itip-view.c:369
+#: ../plugins/itip-formatter/itip-view.c:368
#, c-format
msgid "<b>%s</b> requests your presence at the following meeting:"
msgstr "<b>%s</b> forespør din tilstedeværelse i følgende møte:"
-#: ../plugins/itip-formatter/itip-view.c:375
+#: ../plugins/itip-formatter/itip-view.c:374
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing meeting:"
msgstr ""
"<b>%s</b> ønsker via %s å legge til informasjon i et eksisterende møte:"
-#: ../plugins/itip-formatter/itip-view.c:377
+#: ../plugins/itip-formatter/itip-view.c:376
#, c-format
msgid "<b>%s</b> wishes to add to an existing meeting:"
msgstr "<b>%s</b> ønsker å legge til informasjon i et eksisterende møte:"
-#: ../plugins/itip-formatter/itip-view.c:381
+#: ../plugins/itip-formatter/itip-view.c:380
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
@@ -18470,89 +18535,89 @@ msgid ""
msgstr ""
"<b>%s</b> ønsker å motta den seneste informasjon for følgende møte via %s:"
-#: ../plugins/itip-formatter/itip-view.c:383
+#: ../plugins/itip-formatter/itip-view.c:382
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following meeting:"
msgstr "<b>%s</b> ønsker å motta den seneste informasjon for følgende møte:"
-#: ../plugins/itip-formatter/itip-view.c:387
+#: ../plugins/itip-formatter/itip-view.c:386
#, c-format
msgid "<b>%s</b> through %s has sent back the following meeting response:"
msgstr "<b>%s</b> har sendt tilbake følgende svar på møteinnkalling via %s:"
-#: ../plugins/itip-formatter/itip-view.c:389
+#: ../plugins/itip-formatter/itip-view.c:388
#, c-format
msgid "<b>%s</b> has sent back the following meeting response:"
msgstr "<b>%s</b> har sendt tilbake følgende svar på møteinnkalling:"
-#: ../plugins/itip-formatter/itip-view.c:393
+#: ../plugins/itip-formatter/itip-view.c:392
#, c-format
msgid "<b>%s</b> through %s has canceled the following meeting:"
msgstr "<b>%s</b> har via %s avlyst følgende møte:"
-#: ../plugins/itip-formatter/itip-view.c:395
+#: ../plugins/itip-formatter/itip-view.c:394
#, c-format
msgid "<b>%s</b> has canceled the following meeting."
msgstr "<b>%s</b> har avlyst følgende møte:"
-#: ../plugins/itip-formatter/itip-view.c:399
+#: ../plugins/itip-formatter/itip-view.c:398
#, c-format
msgid "<b>%s</b> through %s has proposed the following meeting changes."
msgstr "<b>%s</b> har foreslått følgende endringer i møte via %s:"
-#: ../plugins/itip-formatter/itip-view.c:401
+#: ../plugins/itip-formatter/itip-view.c:400
#, c-format
msgid "<b>%s</b> has proposed the following meeting changes."
msgstr "<b>%s</b> har foreslått følgende endringer i møte:"
-#: ../plugins/itip-formatter/itip-view.c:405
+#: ../plugins/itip-formatter/itip-view.c:404
#, c-format
msgid "<b>%s</b> through %s has declined the following meeting changes:"
msgstr "<b>%s</b> har via %s avslått følgende endringer for møte:"
-#: ../plugins/itip-formatter/itip-view.c:407
+#: ../plugins/itip-formatter/itip-view.c:406
#, c-format
msgid "<b>%s</b> has declined the following meeting changes."
msgstr "<b>%s</b> har avslått følgende endringer for møte:"
-#: ../plugins/itip-formatter/itip-view.c:445
+#: ../plugins/itip-formatter/itip-view.c:444
#, c-format
msgid "<b>%s</b> through %s has published the following task:"
msgstr "<b>%s</b> har via %s publisert følgende oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:447
+#: ../plugins/itip-formatter/itip-view.c:446
#, c-format
msgid "<b>%s</b> has published the following task:"
msgstr "<b>%s</b> har publisert følgende oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:452
+#: ../plugins/itip-formatter/itip-view.c:451
#, c-format
msgid "<b>%s</b> requests the assignment of %s to the following task:"
msgstr "<b>%s</b> forespør at %s tildeles følgende oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:455
+#: ../plugins/itip-formatter/itip-view.c:454
#, c-format
msgid "<b>%s</b> through %s has assigned you a task:"
msgstr "<b>%s</b> har via %s tildelt deg en oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:457
+#: ../plugins/itip-formatter/itip-view.c:456
#, c-format
msgid "<b>%s</b> has assigned you a task:"
msgstr "<b>%s</b> har tildelt deg en oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:463
+#: ../plugins/itip-formatter/itip-view.c:462
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing task:"
msgstr ""
"<b>%s</b> forespør via %s å legge til informasjon i eksisterende oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:465
+#: ../plugins/itip-formatter/itip-view.c:464
#, c-format
msgid "<b>%s</b> wishes to add to an existing task:"
msgstr "<b>%s</b> ønsker å legge til informasjon i en eksisterende oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:469
+#: ../plugins/itip-formatter/itip-view.c:468
#, c-format
msgid ""
"<b>%s</b> through %s wishes to receive the latest information for the "
@@ -18561,7 +18626,7 @@ msgstr ""
"<b>%s</b> ønsker å motta den seneste informasjon for følgende tildelt "
"oppgave via %s:"
-#: ../plugins/itip-formatter/itip-view.c:471
+#: ../plugins/itip-formatter/itip-view.c:470
#, c-format
msgid ""
"<b>%s</b> wishes to receive the latest information for the following "
@@ -18570,130 +18635,130 @@ msgstr ""
"<b>%s</b> ønsker å motta den seneste informasjon for følgende tildelt "
"oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:475
+#: ../plugins/itip-formatter/itip-view.c:474
#, c-format
msgid ""
"<b>%s</b> through %s has sent back the following assigned task response:"
msgstr "<b>%s</b> har sendt tilbake følgende svar på tildelt oppgave via %s:"
-#: ../plugins/itip-formatter/itip-view.c:477
+#: ../plugins/itip-formatter/itip-view.c:476
#, c-format
msgid "<b>%s</b> has sent back the following assigned task response:"
msgstr "<b>%s</b> har sendt tilbake følgende svar på tildelt oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:481
+#: ../plugins/itip-formatter/itip-view.c:480
#, c-format
msgid "<b>%s</b> through %s has canceled the following assigned task:"
msgstr "<b>%s</b> har via %s avlyst følgende tildelt oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:483
+#: ../plugins/itip-formatter/itip-view.c:482
#, c-format
msgid "<b>%s</b> has canceled the following assigned task:"
msgstr "<b>%s</b> har avlyst følgende tildelt oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:487
+#: ../plugins/itip-formatter/itip-view.c:486
#, c-format
msgid ""
"<b>%s</b> through %s has proposed the following task assignment changes:"
msgstr "<b>%s</b> har foreslått følgende endringer i oppgavetildeling via %s:"
-#: ../plugins/itip-formatter/itip-view.c:489
+#: ../plugins/itip-formatter/itip-view.c:488
#, c-format
msgid "<b>%s</b> has proposed the following task assignment changes:"
msgstr "<b>%s</b> har foreslått følgende endringer i oppgavetildeling:"
-#: ../plugins/itip-formatter/itip-view.c:493
+#: ../plugins/itip-formatter/itip-view.c:492
#, c-format
msgid "<b>%s</b> through %s has declined the following assigned task:"
msgstr "<b>%s</b> har via %s avslått følgende tildelt oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:495
+#: ../plugins/itip-formatter/itip-view.c:494
#, c-format
msgid "<b>%s</b> has declined the following assigned task:"
msgstr "<b>%s</b> har avslått følgende tildelt oppgave:"
-#: ../plugins/itip-formatter/itip-view.c:533
+#: ../plugins/itip-formatter/itip-view.c:532
#, c-format
msgid "<b>%s</b> through %s has published the following memo:"
msgstr "<b>%s</b> har via %s publisert følgende notat:"
-#: ../plugins/itip-formatter/itip-view.c:535
+#: ../plugins/itip-formatter/itip-view.c:534
#, c-format
msgid "<b>%s</b> has published the following memo:"
msgstr "<b>%s</b> har publisert følgende notat:"
-#: ../plugins/itip-formatter/itip-view.c:540
+#: ../plugins/itip-formatter/itip-view.c:539
#, c-format
msgid "<b>%s</b> through %s wishes to add to an existing memo:"
msgstr ""
"<b>%s</b> ønsker via %s å legge til informasjon i et eksisterende notat:"
-#: ../plugins/itip-formatter/itip-view.c:542
+#: ../plugins/itip-formatter/itip-view.c:541
#, c-format
msgid "<b>%s</b> wishes to add to an existing memo:"
msgstr "<b>%s</b> ønsker å legge til informasjon i et eksisterende notat:"
-#: ../plugins/itip-formatter/itip-view.c:546
+#: ../plugins/itip-formatter/itip-view.c:545
#, c-format
msgid "<b>%s</b> through %s has canceled the following shared memo:"
msgstr "<b>%s</b> har via %s avlyst følgende delt notat:"
-#: ../plugins/itip-formatter/itip-view.c:548
+#: ../plugins/itip-formatter/itip-view.c:547
#, c-format
msgid "<b>%s</b> has canceled the following shared memo:"
msgstr "<b>%s</b> har avlyst følgende delt notat:"
#. Everything gets the open button
-#: ../plugins/itip-formatter/itip-view.c:819
+#: ../plugins/itip-formatter/itip-view.c:818
msgid "_Open Calendar"
msgstr "_Åpne kalender"
-#: ../plugins/itip-formatter/itip-view.c:825
-#: ../plugins/itip-formatter/itip-view.c:829
-#: ../plugins/itip-formatter/itip-view.c:835
-#: ../plugins/itip-formatter/itip-view.c:852
-#: ../plugins/itip-formatter/itip-view.c:857
+#: ../plugins/itip-formatter/itip-view.c:824
+#: ../plugins/itip-formatter/itip-view.c:828
+#: ../plugins/itip-formatter/itip-view.c:834
+#: ../plugins/itip-formatter/itip-view.c:851
+#: ../plugins/itip-formatter/itip-view.c:856
msgid "_Decline"
msgstr "Av_slå"
-#: ../plugins/itip-formatter/itip-view.c:826
-#: ../plugins/itip-formatter/itip-view.c:831
-#: ../plugins/itip-formatter/itip-view.c:838
-#: ../plugins/itip-formatter/itip-view.c:854
-#: ../plugins/itip-formatter/itip-view.c:859
+#: ../plugins/itip-formatter/itip-view.c:825
+#: ../plugins/itip-formatter/itip-view.c:830
+#: ../plugins/itip-formatter/itip-view.c:837
+#: ../plugins/itip-formatter/itip-view.c:853
+#: ../plugins/itip-formatter/itip-view.c:858
msgid "_Accept"
msgstr "Godt_a"
-#: ../plugins/itip-formatter/itip-view.c:829
+#: ../plugins/itip-formatter/itip-view.c:828
msgid "_Decline all"
msgstr "A_vslå alle"
-#: ../plugins/itip-formatter/itip-view.c:830
+#: ../plugins/itip-formatter/itip-view.c:829
msgid "_Tentative all"
msgstr "Gjør alle _tentative"
-#: ../plugins/itip-formatter/itip-view.c:830
-#: ../plugins/itip-formatter/itip-view.c:836
-#: ../plugins/itip-formatter/itip-view.c:853
-#: ../plugins/itip-formatter/itip-view.c:858
+#: ../plugins/itip-formatter/itip-view.c:829
+#: ../plugins/itip-formatter/itip-view.c:835
+#: ../plugins/itip-formatter/itip-view.c:852
+#: ../plugins/itip-formatter/itip-view.c:857
msgid "_Tentative"
msgstr "_Tentativ"
-#: ../plugins/itip-formatter/itip-view.c:831
+#: ../plugins/itip-formatter/itip-view.c:830
msgid "_Accept all"
msgstr "Godta _alle"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:842
+#: ../plugins/itip-formatter/itip-view.c:841
msgid "_Send Information"
msgstr "_Send informasjon"
#. FIXME Is this really the right button?
-#: ../plugins/itip-formatter/itip-view.c:846
+#: ../plugins/itip-formatter/itip-view.c:845
msgid "_Update Attendee Status"
msgstr "_Oppdater status for deltaker"
-#: ../plugins/itip-formatter/itip-view.c:849
+#: ../plugins/itip-formatter/itip-view.c:848
msgid "_Update"
msgstr "_Oppdater"
@@ -18796,7 +18861,8 @@ msgstr "Genererer en D-BUS-melding når nye meldinger ankommer."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:6
msgid ""
-"If true, then beep, otherwise will play sound file when new messages arrive."
+"If \"true\", then beep, otherwise will play sound file when new messages "
+"arrive."
msgstr "Pip hvis «true», eller spill en lydfil når nye meldinger ankommer."
#: ../plugins/mail-notification/apps-evolution-mail-notification.schemas.in.h:7
@@ -18841,20 +18907,20 @@ msgstr "Om ikonet skal blinke eller ikke."
msgid "Whether to notify new messages in Inbox folder only."
msgstr "Im nye meldinger kun skal varsles i innboksen."
-#: ../plugins/mail-notification/mail-notification.c:255
+#: ../plugins/mail-notification/mail-notification.c:254
msgid "Generate a _D-Bus message"
msgstr "Genererer en _D-Bus-melding"
-#: ../plugins/mail-notification/mail-notification.c:361
+#: ../plugins/mail-notification/mail-notification.c:377
msgid "Evolution's Mail Notification"
msgstr "Varsling om ny e-post for Evolution"
-#: ../plugins/mail-notification/mail-notification.c:382
+#: ../plugins/mail-notification/mail-notification.c:398
msgid "Mail Notification Properties"
msgstr "Egenskaper for varsling om ny e-post"
#. To translators: '%d' is the number of mails recieved and '%s' is the name of the folder
-#: ../plugins/mail-notification/mail-notification.c:440
+#: ../plugins/mail-notification/mail-notification.c:457
#, c-format
msgid ""
"You have received %d new message\n"
@@ -18869,55 +18935,55 @@ msgstr[1] ""
"Du har mottatt %d nye meldinger\n"
"i %s."
-#: ../plugins/mail-notification/mail-notification.c:445
+#: ../plugins/mail-notification/mail-notification.c:462
#, c-format
msgid "You have received %d new message."
msgid_plural "You have received %d new messages."
msgstr[0] "Du har mottatt %d ny melding."
msgstr[1] "Du har mottatt %d nye meldinger."
-#: ../plugins/mail-notification/mail-notification.c:457
-#: ../plugins/mail-notification/mail-notification.c:462
+#: ../plugins/mail-notification/mail-notification.c:479
+#: ../plugins/mail-notification/mail-notification.c:484
msgid "New email"
msgstr "Ny e-post"
-#: ../plugins/mail-notification/mail-notification.c:519
+#: ../plugins/mail-notification/mail-notification.c:541
msgid "Show icon in _notification area"
msgstr "Vis ikon i varslingsområdet"
-#: ../plugins/mail-notification/mail-notification.c:522
+#: ../plugins/mail-notification/mail-notification.c:544
msgid "B_link icon in notification area"
msgstr "B_linkende ikon i varslingsområdet"
-#: ../plugins/mail-notification/mail-notification.c:524
+#: ../plugins/mail-notification/mail-notification.c:546
msgid "Popup _message together with the icon"
msgstr "Vis _melding sammen med ikonet"
-#: ../plugins/mail-notification/mail-notification.c:705
+#: ../plugins/mail-notification/mail-notification.c:727
msgid "_Play sound when new messages arrive"
msgstr "S_pill en lydfil når nye meldinger ankommer"
-#: ../plugins/mail-notification/mail-notification.c:711
+#: ../plugins/mail-notification/mail-notification.c:733
msgid "_Beep"
msgstr "_Pip"
-#: ../plugins/mail-notification/mail-notification.c:712
+#: ../plugins/mail-notification/mail-notification.c:734
msgid "Play _sound file"
msgstr "_Spill en lydfil"
-#: ../plugins/mail-notification/mail-notification.c:723
+#: ../plugins/mail-notification/mail-notification.c:745
msgid "Specify _filename:"
msgstr "Spesifiser _filnavn:"
-#: ../plugins/mail-notification/mail-notification.c:724
+#: ../plugins/mail-notification/mail-notification.c:746
msgid "Select sound file"
msgstr "Velg en lydfil"
-#: ../plugins/mail-notification/mail-notification.c:725
+#: ../plugins/mail-notification/mail-notification.c:747
msgid "Pl_ay"
msgstr "Sp_ill"
-#: ../plugins/mail-notification/mail-notification.c:782
+#: ../plugins/mail-notification/mail-notification.c:804
msgid "Notify new messages for _Inbox only"
msgstr "Varslingsmelding kun for _innboks"
@@ -19149,16 +19215,14 @@ msgid "_Unsubscribe from List"
msgstr "_Fjern abonnement på listen"
#: ../plugins/mark-all-read/mark-all-read.c:37
-msgid "Mark all messages in this folder and subfolders as read?"
-msgstr "Merk alle meldinger i denne mappen og undermapper som lest?"
+msgid "Also mark messages in subfolders?"
+msgstr "Merk meldinger i undermapper også?"
#: ../plugins/mark-all-read/mark-all-read.c:39
-msgid "Do you want the operation to be performed also in the subfolders?"
-msgstr "Vil du at operasjonen skal utføres i undermapper også?"
-
-#: ../plugins/mark-all-read/mark-all-read.c:85
-msgid "Mark All Messages as Read"
-msgstr "Merk alle meldinger som lest"
+msgid ""
+"Do you want to mark messages as read in the current folder only, or in the "
+"current folder as well as all subfolders?"
+msgstr "Vil du merke meldinger som lest kun i denne mappen, eller i valgt mappe og undermapper i tillegg?"
#: ../plugins/mark-all-read/mark-all-read.c:162
msgid "Current Folder and _Subfolders"
@@ -19644,22 +19708,22 @@ msgid "Show _only this Task List"
msgstr "Vis k_un denne oppgavelisten"
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:1
-msgid "A plugin that manages the Startup wizard."
-msgstr "Et tillegg som håndterer oppstartsveiviseren."
+msgid "Guides you through your initial account setup."
+msgstr "Leder deg gjennom første oppsett av kontoen."
#: ../plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml.h:2
-msgid "Startup wizard"
-msgstr "Oppstartsveiviser"
+msgid "Setup Assistant"
+msgstr "Veiviser for oppsett"
-#: ../plugins/startup-wizard/startup-wizard.c:84
+#: ../plugins/startup-wizard/startup-wizard.c:83
msgid "Evolution Setup Assistant"
msgstr "Konfigurasjonsassistent for Evolution"
-#: ../plugins/startup-wizard/startup-wizard.c:87
+#: ../plugins/startup-wizard/startup-wizard.c:86
msgid "Welcome"
msgstr "Velkommen"
-#: ../plugins/startup-wizard/startup-wizard.c:88
+#: ../plugins/startup-wizard/startup-wizard.c:87
msgid ""
"Welcome to Evolution. The next few screens will allow Evolution to connect "
"to your email accounts, and to import files from other applications. \n"
@@ -19672,29 +19736,29 @@ msgstr ""
"\n"
"Vennligst klikk «Fremover» for å fortsette. "
-#: ../plugins/startup-wizard/startup-wizard.c:134
+#: ../plugins/startup-wizard/startup-wizard.c:133
msgid "Importing files"
msgstr "Importerer filer"
-#: ../plugins/startup-wizard/startup-wizard.c:136
-#: ../shell/e-shell-importer.c:144
+#: ../plugins/startup-wizard/startup-wizard.c:135
+#: ../shell/e-shell-importer.c:143
msgid "Please select the information that you would like to import:"
msgstr "Vennligst velg informasjon du ønsker å importere:"
-#: ../plugins/startup-wizard/startup-wizard.c:151
-#: ../shell/e-shell-importer.c:397
+#: ../plugins/startup-wizard/startup-wizard.c:150
+#: ../shell/e-shell-importer.c:396
#, c-format
msgid "From %s:"
msgstr "Fra %s:"
-#: ../plugins/startup-wizard/startup-wizard.c:231
-#: ../shell/e-shell-importer.c:508
+#: ../plugins/startup-wizard/startup-wizard.c:230
+#: ../shell/e-shell-importer.c:507
#, c-format
msgid "Importing data."
msgstr "Importerer data."
-#: ../plugins/startup-wizard/startup-wizard.c:233
-#: ../shell/e-shell-importer.c:522
+#: ../plugins/startup-wizard/startup-wizard.c:232
+#: ../shell/e-shell-importer.c:521
msgid "Please wait"
msgstr "Vennligst vent"
@@ -19719,7 +19783,9 @@ msgstr "F_all tilbake til tråding av meldinger etter emne"
msgid ""
"List of keyword/value pairs for the Templates plugin to substitute in a "
"message body."
-msgstr "Liste med nøkkelord-/verdi-par for mal-tillegg for å sette inn i en meldingskropp."
+msgstr ""
+"Liste med nøkkelord-/verdi-par for mal-tillegg for å sette inn i en "
+"meldingskropp."
#: ../plugins/templates/templates.c:614
msgid "No title"
@@ -19745,6 +19811,28 @@ msgstr "Et enkelt tillegg som buker ytnef til å dekode tnef-vedlegg."
msgid "TNEF Attachment decoder"
msgstr "Dekoding av TNEF-vedlegg"
+#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:1
+msgid "A plugin to setup WebDAV contacts."
+msgstr "Et tillegg for å sette opp WebDAV-kontakter."
+
+#: ../plugins/webdav-account-setup/org-gnome-evolution-webdav.eplug.xml.h:2
+msgid "WebDAV contacts"
+msgstr "WebDAV-kontakter"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:69
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:74
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:100
+msgid "WebDAV"
+msgstr "WebDAV"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:311
+msgid "URL:"
+msgstr "URL:"
+
+#: ../plugins/webdav-account-setup/webdav-contacts-source.c:338
+msgid "_Avoid IfMatch (needed on apache < 2.2.8)"
+msgstr "_Unngå IfMatch (kreves på apache < 2.2.8)"
+
#: ../shell/GNOME_Evolution_Shell.server.in.in.h:1
msgid "Evolution Shell"
msgstr "Evolution skall"
@@ -19823,8 +19911,9 @@ msgstr "ID eller alias for komponenten som skal være forvalgt ved oppstart."
#: ../shell/apps_evolution_shell.schemas.in.h:15
msgid ""
"If true, then connections to the proxy server require authentication. The "
-"username/password combo is defined by \"/apps/evolution/shell/network_config/"
-"authentication_user\" and locally stored password in .gnome2_private/."
+"username is retrieved from the \"/apps/evolution/shell/network_config/"
+"authentication_user\" GConf key, and the password is retrieved from either "
+"gnome-keyring or the ~/.gnome2_private/Evolution password file."
msgstr ""
#: ../shell/apps_evolution_shell.schemas.in.h:16
@@ -20045,11 +20134,11 @@ msgstr "Aktive tilkoblinger"
msgid "Click OK to close these connections and go offline"
msgstr "Klikk OK for å lukke disse forbindelsene og arbeide frakoblet"
-#: ../shell/e-shell-importer.c:132
+#: ../shell/e-shell-importer.c:131
msgid "Choose the type of importer to run:"
msgstr "Velg type importerer som skal kjøres:"
-#: ../shell/e-shell-importer.c:135
+#: ../shell/e-shell-importer.c:134
msgid ""
"Choose the file that you want to import into Evolution, and select what type "
"of file it is from the list.\n"
@@ -20063,11 +20152,11 @@ msgstr ""
"Du kan velge «Automatisk» hvis du ikke vet, så vil Evolution prøve å finne ut "
"hvilken type det er for deg."
-#: ../shell/e-shell-importer.c:141
+#: ../shell/e-shell-importer.c:140
msgid "Choose the destination for this import"
msgstr "Velg mål det skal importeres til"
-#: ../shell/e-shell-importer.c:147
+#: ../shell/e-shell-importer.c:146
msgid ""
"Evolution checked for settings to import from the following\n"
"applications: Pine, Netscape, Elm, iCalendar. No importable\n"
@@ -20079,23 +20168,23 @@ msgstr ""
"som kunne importeres ble funnet. Hvis du vil prøve igjen\n"
"kan du klikke på «Tilbake»-knappen.\n"
-#: ../shell/e-shell-importer.c:285
+#: ../shell/e-shell-importer.c:284
msgid "F_ilename:"
msgstr "F_ilnavn:"
-#: ../shell/e-shell-importer.c:290
+#: ../shell/e-shell-importer.c:289
msgid "Select a file"
msgstr "Velg en fil"
-#: ../shell/e-shell-importer.c:299
+#: ../shell/e-shell-importer.c:298
msgid "File _type:"
msgstr "Fil_type:"
-#: ../shell/e-shell-importer.c:335
+#: ../shell/e-shell-importer.c:334
msgid "Import data and settings from _older programs"
msgstr "Importer data og innstillinger fra _eldre programmer"
-#: ../shell/e-shell-importer.c:338
+#: ../shell/e-shell-importer.c:337
msgid "Import a _single file"
msgstr "Importer en en_kelt fil"
@@ -20105,7 +20194,7 @@ msgstr "Evolution brukervalg"
#. To translators: This is the window title and %s is the
#. component name. Most translators will want to keep it as is.
-#: ../shell/e-shell-view.c:48 ../shell/e-shell-window.c:328
+#: ../shell/e-shell-view.c:47 ../shell/e-shell-window.c:328
#, c-format
msgid "%s - Evolution"
msgstr "%s - Evolution"
@@ -20147,7 +20236,7 @@ msgstr "Feil under åpning av nettside med ofte stilte spørsmål"
msgid "_Work Online"
msgstr "Ar_beid tilkoblet"
-#: ../shell/e-shell-window-commands.c:968 ../ui/evolution.xml.h:56
+#: ../shell/e-shell-window-commands.c:968 ../ui/evolution.xml.h:57
msgid "_Work Offline"
msgstr "Ar_beid frakoblet"
@@ -20175,7 +20264,7 @@ msgstr ""
"Evolution er frakoblet.\n"
"Klikk på denne knappen for å arbeide tilkoblet."
-#: ../shell/e-shell-window.c:780
+#: ../shell/e-shell-window.c:782
#, c-format
msgid "Switch to %s"
msgstr "Bytt til %s"
@@ -20216,6 +20305,7 @@ msgid "New Test"
msgstr "Ny test"
#: ../shell/test/evolution-test-component.c:108
+msgctxt "New"
msgid "_Test"
msgstr "_Test"
@@ -21196,7 +21286,7 @@ msgstr "_Flytt kontakt til..."
msgid "_Move Folder Contacts To"
msgstr "_Flytt mappe med kontakter til"
-#: ../ui/evolution-addressbook.xml.h:55 ../ui/evolution.xml.h:48
+#: ../ui/evolution-addressbook.xml.h:55 ../ui/evolution.xml.h:49
msgid "_New"
msgstr "_Ny"
@@ -21580,7 +21670,7 @@ msgstr "Meldingsliste med tråder"
msgid "_Group By Threads"
msgstr "_Grupper etter tråder"
-#: ../ui/evolution-mail-list.xml.h:37 ../ui/evolution-mail-message.xml.h:116
+#: ../ui/evolution-mail-list.xml.h:37 ../ui/evolution-mail-message.xml.h:115
#: ../ui/evolution-mail-messagedisplay.xml.h:7
msgid "_Message"
msgstr "_Melding"
@@ -21915,123 +22005,119 @@ msgid "Show a blinking cursor in the body of displayed messages"
msgstr "Vis en blinkende markør i kroppen av meldinger som vises"
#: ../ui/evolution-mail-message.xml.h:95
-msgid "Show messages in the normal style"
-msgstr "Vis meldinger med vanlig stil"
-
-#: ../ui/evolution-mail-message.xml.h:96
msgid "Show messages with all email headers"
msgstr "Vis meldinger med alle meldingshoder"
-#: ../ui/evolution-mail-message.xml.h:97
+#: ../ui/evolution-mail-message.xml.h:96
msgid "Show the raw email source of the message"
msgstr "Vis e-post meldingen i sin råe form"
-#: ../ui/evolution-mail-message.xml.h:98
+#: ../ui/evolution-mail-message.xml.h:97
msgid "Undelete the selected messages"
msgstr "Angre sletting av valgte meldinger"
-#: ../ui/evolution-mail-message.xml.h:99
+#: ../ui/evolution-mail-message.xml.h:98
msgid "Uni_mportant"
msgstr "_Ikke viktig"
-#: ../ui/evolution-mail-message.xml.h:100
+#: ../ui/evolution-mail-message.xml.h:99
msgid "Zoom _Out"
msgstr "Zoom _ut"
-#: ../ui/evolution-mail-message.xml.h:101
+#: ../ui/evolution-mail-message.xml.h:100
msgid "_Attached"
msgstr "L_agt ved"
-#: ../ui/evolution-mail-message.xml.h:102
+#: ../ui/evolution-mail-message.xml.h:101
msgid "_Caret Mode"
msgstr "Markør_modus"
-#: ../ui/evolution-mail-message.xml.h:103
+#: ../ui/evolution-mail-message.xml.h:102
msgid "_Clear Flag"
msgstr "F_jern flagg"
-#: ../ui/evolution-mail-message.xml.h:106
+#: ../ui/evolution-mail-message.xml.h:105
msgid "_Delete Message"
msgstr "_Slett melding"
-#: ../ui/evolution-mail-message.xml.h:108
+#: ../ui/evolution-mail-message.xml.h:107
msgid "_Find in Message..."
msgstr "_Finn i melding..."
-#: ../ui/evolution-mail-message.xml.h:109
+#: ../ui/evolution-mail-message.xml.h:108
msgid "_Flag Completed"
msgstr "Merk som _fullført"
-#: ../ui/evolution-mail-message.xml.h:111
+#: ../ui/evolution-mail-message.xml.h:110
msgid "_Go To"
msgstr "_Gå til"
-#: ../ui/evolution-mail-message.xml.h:112
+#: ../ui/evolution-mail-message.xml.h:111
msgid "_Important"
msgstr "V_iktig"
-#: ../ui/evolution-mail-message.xml.h:113
+#: ../ui/evolution-mail-message.xml.h:112
msgid "_Inline"
msgstr "_I meldingen"
-#: ../ui/evolution-mail-message.xml.h:114
+#: ../ui/evolution-mail-message.xml.h:113
msgid "_Junk"
msgstr "_Uønsket e-post"
-#: ../ui/evolution-mail-message.xml.h:115
+#: ../ui/evolution-mail-message.xml.h:114
msgid "_Load Images"
msgstr "_Last bilder"
-#: ../ui/evolution-mail-message.xml.h:117
+#: ../ui/evolution-mail-message.xml.h:116
msgid "_Message Source"
msgstr "_Meldingskilde"
-#: ../ui/evolution-mail-message.xml.h:119
+#: ../ui/evolution-mail-message.xml.h:118
msgid "_Next Message"
msgstr "_Neste melding"
-#: ../ui/evolution-mail-message.xml.h:120
+#: ../ui/evolution-mail-message.xml.h:119
msgid "_Normal Size"
msgstr "_Normal størrelse"
-#: ../ui/evolution-mail-message.xml.h:121
+#: ../ui/evolution-mail-message.xml.h:120
msgid "_Not Junk"
msgstr "_Ikke uønsket e-post"
-#: ../ui/evolution-mail-message.xml.h:122
+#: ../ui/evolution-mail-message.xml.h:121
msgid "_Open in New Window"
msgstr "_Åpne i _nytt vindu"
-#: ../ui/evolution-mail-message.xml.h:123
+#: ../ui/evolution-mail-message.xml.h:122
msgid "_Previous Message"
msgstr "_Forrige melding"
-#: ../ui/evolution-mail-message.xml.h:125
+#: ../ui/evolution-mail-message.xml.h:124
msgid "_Quoted"
msgstr "_Sitert"
#. Translators: "Read" as in "has been read" (evolution-mail-message.xml)
-#: ../ui/evolution-mail-message.xml.h:127
+#: ../ui/evolution-mail-message.xml.h:126
msgid "_Read"
msgstr "_Les"
-#: ../ui/evolution-mail-message.xml.h:129
+#: ../ui/evolution-mail-message.xml.h:128
msgid "_Save Message..."
msgstr "_Lagre melding..."
-#: ../ui/evolution-mail-message.xml.h:130
+#: ../ui/evolution-mail-message.xml.h:129
msgid "_Undelete Message"
msgstr "_Angre sletting av melding"
-#: ../ui/evolution-mail-message.xml.h:131
+#: ../ui/evolution-mail-message.xml.h:130
msgid "_Unread"
msgstr "_Ulest"
-#: ../ui/evolution-mail-message.xml.h:132
+#: ../ui/evolution-mail-message.xml.h:131
msgid "_Zoom"
msgstr "_Zoom"
-#: ../ui/evolution-mail-message.xml.h:133
+#: ../ui/evolution-mail-message.xml.h:132
msgid "_Zoom In"
msgstr "_Zoom inn"
@@ -22269,50 +22355,54 @@ msgid "View/Hide the Status Bar"
msgstr "Vis/skjul statuslinjen"
#: ../ui/evolution.xml.h:39
+msgid "Work _Offline"
+msgstr "Arbeid frak_oblet"
+
+#: ../ui/evolution.xml.h:40
msgid "_About"
msgstr "_Om"
-#: ../ui/evolution.xml.h:40
+#: ../ui/evolution.xml.h:41
msgid "_Close Window"
msgstr "_Lukk vindu"
-#: ../ui/evolution.xml.h:43
+#: ../ui/evolution.xml.h:44
msgid "_Forget Passwords"
msgstr "_Glem passord"
-#: ../ui/evolution.xml.h:44
+#: ../ui/evolution.xml.h:45
msgid "_Frequently Asked Questions"
msgstr "O_fte stilte spørsmål"
-#: ../ui/evolution.xml.h:46
+#: ../ui/evolution.xml.h:47
msgid "_Hide Buttons"
msgstr "_Skjul knapper"
-#: ../ui/evolution.xml.h:47
+#: ../ui/evolution.xml.h:48
msgid "_Icons Only"
msgstr "Kun _ikoner"
-#: ../ui/evolution.xml.h:49
+#: ../ui/evolution.xml.h:50
msgid "_Quick Reference"
msgstr "_Hurtigreferanse"
-#: ../ui/evolution.xml.h:50
+#: ../ui/evolution.xml.h:51
msgid "_Quit"
msgstr "A_vslutt"
-#: ../ui/evolution.xml.h:51
+#: ../ui/evolution.xml.h:52
msgid "_Switcher Appearance"
msgstr "Ut_seende for bytter"
-#: ../ui/evolution.xml.h:52
+#: ../ui/evolution.xml.h:53
msgid "_Synchronization Options..."
msgstr "Alternativer for _synkronisering..."
-#: ../ui/evolution.xml.h:53
+#: ../ui/evolution.xml.h:54
msgid "_Text Only"
msgstr "Kun _tekst"
-#: ../ui/evolution.xml.h:55
+#: ../ui/evolution.xml.h:56
msgid "_Window"
msgstr "_Vindu"
@@ -22803,11 +22893,11 @@ msgstr "Etikettkomponent"
msgid "A widget to display in place of the usual expander label"
msgstr "En komponent som vises i stedet for den vanlige utvideretiketten"
-#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3369
+#: ../widgets/misc/e-expander.c:221 ../widgets/table/e-tree.c:3391
msgid "Expander Size"
msgstr "Størrelse på utvider"
-#: ../widgets/misc/e-expander.c:222 ../widgets/table/e-tree.c:3370
+#: ../widgets/misc/e-expander.c:222 ../widgets/table/e-tree.c:3392
msgid "Size of the expander arrow"
msgstr "Størrelse på utviderpilen"
@@ -22882,11 +22972,11 @@ msgstr ""
"Mus-basert interaktivt kartfelt for å velge tidssone. Tastaturbrukere må "
"velge tiddsone fra kombinasjonsboksen nedenfor."
-#: ../widgets/misc/e-online-button.c:112
+#: ../widgets/misc/e-online-button.c:109
msgid "Online"
msgstr "Tilkoblet"
-#: ../widgets/misc/e-online-button.c:113
+#: ../widgets/misc/e-online-button.c:110
msgid "The button state is online"
msgstr "Knappetilstanden er tilkoblet"
@@ -22914,52 +23004,52 @@ msgstr "Oppdater modell"
msgid "Column width"
msgstr "Kolonnebredde"
-#: ../widgets/misc/e-search-bar.c:341 ../widgets/misc/e-search-bar.c:474
-#: ../widgets/misc/e-search-bar.c:476
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Search"
msgstr "Søk"
-#: ../widgets/misc/e-search-bar.c:341 ../widgets/misc/e-search-bar.c:474
-#: ../widgets/misc/e-search-bar.c:476
+#: ../widgets/misc/e-search-bar.c:340 ../widgets/misc/e-search-bar.c:473
+#: ../widgets/misc/e-search-bar.c:475
msgid "Click here to change the search type"
msgstr "Klikk her for å endre søketype"
-#: ../widgets/misc/e-search-bar.c:607
+#: ../widgets/misc/e-search-bar.c:606
msgid "_Search"
msgstr "_Søk"
-#: ../widgets/misc/e-search-bar.c:613
+#: ../widgets/misc/e-search-bar.c:612
msgid "_Find Now"
msgstr "_Finn nå "
-#: ../widgets/misc/e-search-bar.c:614
+#: ../widgets/misc/e-search-bar.c:613
msgid "_Clear"
msgstr "_Tøm"
-#: ../widgets/misc/e-search-bar.c:869
+#: ../widgets/misc/e-search-bar.c:868
msgid "Item ID"
msgstr "ID for oppføring"
-#: ../widgets/misc/e-search-bar.c:876 ../widgets/text/e-text.c:3565
+#: ../widgets/misc/e-search-bar.c:875 ../widgets/text/e-text.c:3565
#: ../widgets/text/e-text.c:3566
msgid "Text"
msgstr "Tekst"
#. To Translators: The "Show: " label is followed by the Quick Search Dropdown Menu where you can choose
#. to display "All Messages", "Unread Messages", "Message with 'Important' Label" and so on...
-#: ../widgets/misc/e-search-bar.c:1007
+#: ../widgets/misc/e-search-bar.c:1006
msgid "Sho_w: "
msgstr "_Vis: "
#. To Translators: The "Show: " label is followed by the Quick Search Text input field where one enters
#. the term to search for
-#: ../widgets/misc/e-search-bar.c:1024
+#: ../widgets/misc/e-search-bar.c:1023
msgid "Sear_ch: "
msgstr "Sø_k: "
#. To Translators: The " in " label is part of the Quick Search Bar, example:
#. Search: | <user's_search_term> | in | Current Folder/All Accounts/Current Account
-#: ../widgets/misc/e-search-bar.c:1036
+#: ../widgets/misc/e-search-bar.c:1035
msgid " i_n "
msgstr " _i "
@@ -23115,19 +23205,19 @@ msgid "_When opened:"
msgstr "_Ved åpning:"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects")
-#: ../widgets/misc/e-task-widget.c:278
+#: ../widgets/misc/e-task-widget.c:255
#, c-format
msgid "%s (...)"
msgstr "%s (...)"
#. For Translator only: %s is status message that is displayed (eg "moving items", "updating objects");
#. %d is a number between 0 and 100, describing the percentage of operation complete
-#: ../widgets/misc/e-task-widget.c:284
+#: ../widgets/misc/e-task-widget.c:261
#, c-format
msgid "%s (%d%% complete)"
msgstr "%s (%d%% fullført)"
-#: ../widgets/misc/e-url-entry.c:107
+#: ../widgets/misc/e-url-entry.c:106
msgid "Click here to go to URL"
msgstr "Klikk her for å vise URL"
@@ -23351,7 +23441,7 @@ msgstr "Skiftende farger på rader"
#: ../widgets/table/e-table-group-leaf.c:588
#: ../widgets/table/e-table-group-leaf.c:589
#: ../widgets/table/e-table-item.c:3039 ../widgets/table/e-table-item.c:3040
-#: ../widgets/table/e-tree.c:3322 ../widgets/table/e-tree.c:3323
+#: ../widgets/table/e-tree.c:3344 ../widgets/table/e-tree.c:3345
msgid "Horizontal Draw Grid"
msgstr "Horisontalt rutenett for tegning"
@@ -23360,7 +23450,7 @@ msgstr "Horisontalt rutenett for tegning"
#: ../widgets/table/e-table-group-leaf.c:595
#: ../widgets/table/e-table-group-leaf.c:596
#: ../widgets/table/e-table-item.c:3046 ../widgets/table/e-table-item.c:3047
-#: ../widgets/table/e-tree.c:3328 ../widgets/table/e-tree.c:3329
+#: ../widgets/table/e-tree.c:3350 ../widgets/table/e-tree.c:3351
msgid "Vertical Draw Grid"
msgstr "Vertikalt rutenett for tegning"
@@ -23369,7 +23459,7 @@ msgstr "Vertikalt rutenett for tegning"
#: ../widgets/table/e-table-group-leaf.c:602
#: ../widgets/table/e-table-group-leaf.c:603
#: ../widgets/table/e-table-item.c:3053 ../widgets/table/e-table-item.c:3054
-#: ../widgets/table/e-tree.c:3334 ../widgets/table/e-tree.c:3335
+#: ../widgets/table/e-tree.c:3356 ../widgets/table/e-tree.c:3357
msgid "Draw focus"
msgstr "Tegn fokus"
@@ -23394,8 +23484,8 @@ msgstr "Utvalgsmodell"
#: ../widgets/table/e-table-group-leaf.c:616
#: ../widgets/table/e-table-group-leaf.c:617
#: ../widgets/table/e-table-item.c:3067 ../widgets/table/e-table-item.c:3068
-#: ../widgets/table/e-table.c:3325 ../widgets/table/e-tree.c:3316
-#: ../widgets/table/e-tree.c:3317
+#: ../widgets/table/e-table.c:3325 ../widgets/table/e-tree.c:3338
+#: ../widgets/table/e-tree.c:3339
msgid "Length Threshold"
msgstr "Lengdeterskel"
@@ -23404,8 +23494,8 @@ msgstr "Lengdeterskel"
#: ../widgets/table/e-table-group-leaf.c:658
#: ../widgets/table/e-table-group-leaf.c:659
#: ../widgets/table/e-table-item.c:3101 ../widgets/table/e-table-item.c:3102
-#: ../widgets/table/e-table.c:3332 ../widgets/table/e-tree.c:3348
-#: ../widgets/table/e-tree.c:3349
+#: ../widgets/table/e-table.c:3332 ../widgets/table/e-tree.c:3370
+#: ../widgets/table/e-tree.c:3371
msgid "Uniform row height"
msgstr "Enhetlig høyde på rad"
@@ -23500,8 +23590,8 @@ msgstr "Modell for tabell"
msgid "Cursor row"
msgstr "Pekerrad"
-#: ../widgets/table/e-table.c:3339 ../widgets/table/e-tree.c:3355
-#: ../widgets/table/e-tree.c:3356
+#: ../widgets/table/e-table.c:3339 ../widgets/table/e-tree.c:3377
+#: ../widgets/table/e-tree.c:3378
msgid "Always search"
msgstr "Alltid søk"
@@ -23509,15 +23599,15 @@ msgstr "Alltid søk"
msgid "Use click to add"
msgstr "Bruk klikk for å legge til"
-#: ../widgets/table/e-tree.c:3341 ../widgets/table/e-tree.c:3342
+#: ../widgets/table/e-tree.c:3363 ../widgets/table/e-tree.c:3364
msgid "ETree table adapter"
msgstr "ETree tabelladapter"
-#: ../widgets/table/e-tree.c:3362
+#: ../widgets/table/e-tree.c:3384
msgid "Retro Look"
msgstr "Gammeldags utseende"
-#: ../widgets/table/e-tree.c:3363
+#: ../widgets/table/e-tree.c:3385
msgid "Draw lines and +/- expanders."
msgstr "Tegn linjer og +/- utvidere."
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 1296ec35c8..0aa3bb8359 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,38 @@
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ * test/evolution-test-component.c (impl_upgradeFromVersion):
+ Fix the function signature to conform to the component interface.
+
+2008-08-18 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #508732
+
+ * e-shell.c:
+ Add a "crash_recovery" flag, with accessor functions for it.
+
+ * e-shell-window (init_view):
+ Check and reset the "crash_recovery" flag before creating a
+ new shell view. The components can use this flag to take
+ steps to recover from the previous crash.
+
+ * apps_evolution_shell.schemas.in:
+ Remove the "skip_recovery_dialog" and "recovery" keys.
+
+ * Evolution-Component.idl (createView):
+ Add a "select_item" boolean parameter.
+
+ * main.c:
+ Kill the crash recovery dialog. Instead just set the crash
+ recovery flag in e-shell appropriately.
+
+2008-08-18 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #416258
+
+ * e-user-creatable-items-handler.c (ensure_menu_items),
+ (free_menu_items), (new_button_change), (setup_toolbar_button):
+ Added icon_toolbar for default items which is used instead of menu icon.
+
2008-08-08 Matthew Barnes <mbarnes@redhat.com>
* e-shell-importer.c:
diff --git a/shell/apps_evolution_shell.schemas.in b/shell/apps_evolution_shell.schemas.in
index 76ac78e8dd..1c79c6f132 100644
--- a/shell/apps_evolution_shell.schemas.in
+++ b/shell/apps_evolution_shell.schemas.in
@@ -41,31 +41,6 @@
</locale>
</schema>
- <!-- Recovery -->
- <schema>
- <key>/schemas/apps/evolution/shell/skip_recovery_dialog</key>
- <applyto>/apps/evolution/shell/skip_recovery_dialog</applyto>
- <owner>evolution</owner>
- <type>bool</type>
- <default>false</default>
- <locale name="C">
- <short>Skip recovery warning dialog</short>
- <long>Whether the warning dialog in recovery of Evolution is skipped.</long>
- </locale>
- </schema>
-
- <schema>
- <key>/schemas/apps/evolution/shell/recovery</key>
- <applyto>/apps/evolution/shell/recovery</applyto>
- <owner>evolution</owner>
- <type>bool</type>
- <default>true</default>
- <locale name="C">
- <short>Whether crash detection should be done or not</short>
- <long>Decides whether the crash detection should be run or not.</long>
- </locale>
- </schema>
-
<!-- Offline Mode -->
<schema>
diff --git a/shell/e-shell-window-private.h b/shell/e-shell-window-private.h
index aae09b4467..e8287fc23d 100644
--- a/shell/e-shell-window-private.h
+++ b/shell/e-shell-window-private.h
@@ -79,6 +79,7 @@ struct _EShellWindowPrivate {
/* Miscellaneous */
gboolean destroyed; /* XXX Do we still need this? */
+ gboolean safe_mode;
};
void e_shell_window_private_init (EShellWindow *window);
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c
index cc87555c47..45c1fa2637 100644
--- a/shell/e-shell-window.c
+++ b/shell/e-shell-window.c
@@ -39,9 +39,48 @@
#include <string.h>
+enum {
+ PROP_0,
+ PROP_SAFE_MODE
+};
+
static gpointer parent_class;
static void
+shell_window_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ switch (property_id) {
+ case PROP_SAFE_MODE:
+ e_shell_window_set_safe_mode (
+ E_SHELL_WINDOW (object),
+ g_value_get_boolean (value));
+ break;
+ }
+
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+}
+
+static void
+shell_window_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ switch (property_id) {
+ case PROP_SAFE_MODE:
+ g_value_set_boolean (
+ value, e_shell_window_get_safe_mode (
+ E_SHELL_WINDOW (object)));
+ break;
+ }
+
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+}
+
+static void
shell_window_dispose (GObject *object)
{
e_shell_window_private_dispose (E_SHELL_WINDOW (object));
@@ -68,8 +107,21 @@ shell_window_class_init (EShellWindowClass *class)
g_type_class_add_private (class, sizeof (EShellWindowPrivate));
object_class = G_OBJECT_CLASS (class);
+ object_class->set_property = shell_window_set_property;
+ object_class->get_property = shell_window_get_property;
object_class->dispose = shell_window_dispose;
object_class->finalize = shell_window_finalize;
+
+ g_object_class_install_property (
+ object_class,
+ PROP_SAFE_MODE,
+ g_param_spec_boolean (
+ "safe-mode",
+ NULL,
+ NULL,
+ FALSE,
+ G_PARAM_READWRITE |
+ G_PARAM_CONSTRUCT));
}
static void
@@ -114,9 +166,10 @@ e_shell_window_get_type (void)
}
GtkWidget *
-e_shell_window_new (void)
+e_shell_window_new (gboolean safe_mode)
{
- return g_object_new (E_TYPE_SHELL_WINDOW, NULL);
+ return g_object_new (
+ E_TYPE_SHELL_WINDOW, "safe-mode", safe_mode, NULL);
}
GtkUIManager *
@@ -199,203 +252,21 @@ e_shell_window_get_managed_widget (EShellWindow *window,
return widget;
}
-#if 0
-static void
-init_view (EShellWindow *window,
- ComponentView *view)
+gboolean
+e_shell_window_get_safe_mode (EShellWindow *window)
{
- EShellWindowPrivate *priv = window->priv;
- EComponentRegistry *registry = e_shell_peek_component_registry (window->priv->shell);
- GNOME_Evolution_Component component_iface;
- GNOME_Evolution_ComponentView component_view;
- Bonobo_UIContainer container;
- Bonobo_Control sidebar_control;
- Bonobo_Control view_control;
- Bonobo_Control statusbar_control;
- CORBA_Environment ev;
- int sidebar_notebook_page_num;
- int content_notebook_page_num;
-
- g_return_if_fail (view->view_widget == NULL);
- g_return_if_fail (view->sidebar_widget == NULL);
- g_return_if_fail (view->notebook_page_num == -1);
-
- CORBA_exception_init (&ev);
-
- /* 1. Activate component. (FIXME: Shouldn't do this here.) */
-
- component_iface = e_component_registry_activate (registry, view->component_id, &ev);
- if (BONOBO_EX (&ev) || component_iface == CORBA_OBJECT_NIL) {
- char *ex_text = bonobo_exception_get_text (&ev);
- g_warning ("Cannot activate component %s: %s", view->component_id, ex_text);
- g_free (ex_text);
- CORBA_exception_free (&ev);
- return;
- }
-
- /* 2. Set up view. */
-
- /* The rest of the code assumes that the component is valid and can create
- controls; if this fails something is really wrong in the component
- (e.g. methods not implemented)... So handle it as if there was no
- component at all. */
-
- component_view = GNOME_Evolution_Component_createView(component_iface, BONOBO_OBJREF(priv->shell_view), &ev);
- if (component_view == NULL || BONOBO_EX (&ev)) {
- g_warning ("Cannot create view for %s", view->component_id);
- bonobo_object_release_unref (component_iface, NULL);
- CORBA_exception_free (&ev);
- return;
- }
-
- GNOME_Evolution_ComponentView_getControls(component_view, &sidebar_control, &view_control, &statusbar_control, &ev);
- if (BONOBO_EX (&ev)) {
- g_warning ("Cannot create view for %s", view->component_id);
- bonobo_object_release_unref (component_iface, NULL);
- CORBA_exception_free (&ev);
- return;
- }
-
- view->component_view = component_view;
-
- CORBA_exception_free (&ev);
+ g_return_val_if_fail (E_IS_SHELL_WINDOW (window), FALSE);
- container = bonobo_ui_component_get_container (priv->ui_component);
-
- view->sidebar_widget = bonobo_widget_new_control_from_objref (sidebar_control, container);
- gtk_widget_show (view->sidebar_widget);
- bonobo_object_release_unref (sidebar_control, NULL);
-
- view->view_widget = bonobo_widget_new_control_from_objref (view_control, container);
- gtk_widget_show (view->view_widget);
- bonobo_object_release_unref (view_control, NULL);
-
- view->statusbar_widget = bonobo_widget_new_control_from_objref (statusbar_control, container);
- gtk_widget_show (view->statusbar_widget);
- bonobo_object_release_unref (statusbar_control, NULL);
-
- gtk_notebook_append_page (GTK_NOTEBOOK (priv->sidebar_notebook), view->sidebar_widget, NULL);
- gtk_notebook_append_page (GTK_NOTEBOOK (priv->content_notebook), view->view_widget, NULL);
- gtk_notebook_append_page (GTK_NOTEBOOK (priv->statusbar_notebook), view->statusbar_widget, NULL);
-
- sidebar_notebook_page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->sidebar_notebook), view->sidebar_widget);
- content_notebook_page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->content_notebook), view->view_widget);
-
- /* Since we always add a view page and a sidebar page at the same time... */
- g_return_if_fail (sidebar_notebook_page_num == content_notebook_page_num);
-
- view->notebook_page_num = content_notebook_page_num;
-
- /* 3. Switch to the new page. */
-
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->content_notebook), content_notebook_page_num);
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->sidebar_notebook), content_notebook_page_num);
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->statusbar_notebook), content_notebook_page_num);
-
- priv->current_view = view;
-
- bonobo_object_release_unref (component_iface, NULL);
+ return window->priv->safe_mode;
}
-static void
-switch_view (EShellWindow *window, ComponentView *component_view)
+void
+e_shell_window_set_safe_mode (EShellWindow *window,
+ gboolean safe_mode)
{
- EShellWindowPrivate *priv = window->priv;
- GConfClient *gconf_client = gconf_client_get_default ();
- EComponentRegistry *registry = e_shell_peek_component_registry (window->priv->shell);
- EComponentInfo *info = e_component_registry_peek_info (registry,
- ECR_FIELD_ID,
- component_view->component_id);
- char *title;
-
- if (component_view->sidebar_widget == NULL) {
- init_view (window, component_view);
- } else {
- priv->current_view = component_view;
-
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->content_notebook), component_view->notebook_page_num);
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->sidebar_notebook), component_view->notebook_page_num);
- gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->statusbar_notebook), component_view->notebook_page_num);
- }
-
- if (component_view->title == NULL) {
- /* To translators: This is the window title and %s is the
- component name. Most translators will want to keep it as is. */
- title = g_strdup_printf (_("%s - Evolution"), info->button_label);
- gtk_window_set_title (GTK_WINDOW (window), title);
- g_free (title);
- } else
- gtk_window_set_title (GTK_WINDOW (window), component_view->title);
-
- if (info->icon_name)
- gtk_window_set_icon_name (GTK_WINDOW (window), info->icon_name);
-
- gconf_client_set_string (gconf_client, "/apps/evolution/shell/view_defaults/component_id",
- (component_view->component_alias != NULL
- ? component_view->component_alias
- : component_view->component_id),
- NULL);
-
- g_object_unref (gconf_client);
-
- /** @Event: Shell component activated or switched to.
- * @Id: component.activated
- * @Target: ESEventTargetComponent
- *
- * This event is emitted whenever the shell successfully activates component
- * view.
- */
- e_event_emit ((EEvent *) es_event_peek (), "component.activated", (EEventTarget *) es_event_target_new_component (es_event_peek (), component_view->component_id));
-
- g_object_notify (G_OBJECT (window), "current-view");
-}
-#endif
-
+ g_return_if_fail (E_IS_SHELL_WINDOW (window));
-/* Functions to update the sensitivity of buttons and menu items depending on the status. */
+ window->priv->safe_mode = safe_mode;
-#if 0
-static void
-update_offline_toggle_status (EShellWindow *window)
-{
- EShellWindowPrivate *priv;
- GtkWidget *widget;
- const gchar *tooltip;
- gboolean online;
- gboolean sensitive;
- guint32 flags = 0;
-
- priv = window->priv;
-
- switch (e_shell_get_line_status ()) {
- case E_SHELL_LINE_STATUS_ONLINE:
- online = TRUE;
- sensitive = TRUE;
- tooltip = _("Evolution is currently online.\n"
- "Click on this button to work offline.");
- flags = ES_MENU_SHELL_ONLINE;
- break;
- case E_SHELL_LINE_STATUS_GOING_OFFLINE:
- online = TRUE;
- sensitive = FALSE;
- tooltip = _("Evolution is in the process of going offline.");
- flags = ES_MENU_SHELL_OFFLINE;
- break;
- case E_SHELL_LINE_STATUS_OFFLINE:
- case E_SHELL_LINE_STATUS_FORCED_OFFLINE:
- online = FALSE;
- sensitive = TRUE;
- tooltip = _("Evolution is currently offline.\n"
- "Click on this button to work online.");
- flags = ES_MENU_SHELL_OFFLINE;
- break;
- default:
- g_return_if_reached ();
- }
-
- widget = window->priv->online_button;
- gtk_widget_set_sensitive (widget, sensitive);
- gtk_widget_set_tooltip_text (widget, tooltip);
- e_online_button_set_online (E_ONLINE_BUTTON (widget), online);
+ g_object_notify (G_OBJECT (window), "safe-mode");
}
-#endif
diff --git a/shell/e-shell-window.h b/shell/e-shell-window.h
index c423a43c92..e7b0d9da8d 100644
--- a/shell/e-shell-window.h
+++ b/shell/e-shell-window.h
@@ -59,7 +59,7 @@ struct _EShellWindowClass {
};
GType e_shell_window_get_type (void);
-GtkWidget * e_shell_window_new (void);
+GtkWidget * e_shell_window_new (gboolean safe_mode);
GtkUIManager * e_shell_window_get_ui_manager (EShellWindow *window);
GtkAction * e_shell_window_get_action (EShellWindow *window,
const gchar *action_name);
@@ -68,6 +68,9 @@ GtkActionGroup *e_shell_window_get_action_group (EShellWindow *window,
GtkWidget * e_shell_window_get_managed_widget
(EShellWindow *window,
const gchar *widget_path);
+gboolean e_shell_window_get_safe_mode (EShellWindow *window);
+void e_shell_window_set_safe_mode (EShellWindow *window,
+ gboolean safe_mode);
G_END_DECLS
diff --git a/shell/e-shell.c b/shell/e-shell.c
index f617fe27ad..1d2d68b57e 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -104,8 +104,13 @@ EShellWindow *
e_shell_create_window (void)
{
GtkWidget *shell_window;
+ gboolean safe_mode;
- shell_window = e_shell_window_new ();
+ /* Put the first window into safe mode if we detect the previous
+ * session did not shut down cleanly, perhaps due to a crash. */
+ safe_mode = (active_windows == NULL) && e_file_lock_exists ();
+
+ shell_window = e_shell_window_new (safe_mode);
active_windows = g_list_prepend (active_windows, shell_window);
diff --git a/shell/e-user-creatable-items-handler.c b/shell/e-user-creatable-items-handler.c
index f18deeb527..24ba4acd39 100644
--- a/shell/e-user-creatable-items-handler.c
+++ b/shell/e-user-creatable-items-handler.c
@@ -60,6 +60,7 @@ struct _MenuItem {
char *tooltip;
char *component;
GdkPixbuf *icon;
+ GdkPixbuf *icon_toolbar;
};
typedef struct _MenuItem MenuItem;
@@ -258,8 +259,13 @@ ensure_menu_items (EUserCreatableItemsHandler *handler)
if (corba_item->iconName == NULL || *corba_item->iconName == '\0') {
item->icon = NULL;
+ item->icon_toolbar = NULL;
} else {
item->icon = e_icon_factory_get_icon (corba_item->iconName, E_ICON_SIZE_MENU);
+ if (item_is_default (item, component->alias))
+ item->icon_toolbar = e_icon_factory_get_icon (corba_item->iconName, E_ICON_SIZE_LARGE_TOOLBAR);
+ else
+ item->icon_toolbar = NULL;
}
if (corba_item->type == GNOME_Evolution_CREATABLE_OBJECT)
@@ -304,6 +310,9 @@ free_menu_items (GSList *menu_items)
if (item->icon != NULL)
g_object_unref (item->icon);
+ if (item->icon_toolbar != NULL)
+ g_object_unref (item->icon_toolbar);
+
g_free (item->component);
g_free (item);
}
@@ -698,7 +707,7 @@ new_button_change (GConfClient *gconf,
val = gconf_client_get_string (gconf, "/desktop/gnome/interface/toolbar_style", NULL);
set_combo_button_style (E_COMBO_BUTTON (priv->new_button),
- val, priv->default_menu_item->icon);
+ val, priv->default_menu_item->icon_toolbar ? priv->default_menu_item->icon_toolbar : priv->default_menu_item->icon);
g_free (val);
gtk_widget_show (priv->new_button);
@@ -738,7 +747,7 @@ setup_toolbar_button (EUserCreatableItemsHandler *handler)
gtk_widget_set_sensitive (priv->new_button, TRUE);
set_combo_button_style (E_COMBO_BUTTON (priv->new_button),
- val, priv->default_menu_item->icon);
+ val, priv->default_menu_item->icon_toolbar ? priv->default_menu_item->icon_toolbar : priv->default_menu_item->icon);
gconf_client_notify_add(gconf,"/desktop/gnome/interface/toolbar_style",
(GConfClientNotifyFunc)new_button_change, handler, NULL, NULL);
diff --git a/shell/main.c b/shell/main.c
index ab15fdc3db..2af41079c4 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -86,10 +86,6 @@
#define SKIP_WARNING_DIALOG_KEY \
"/apps/evolution/shell/skip_warning_dialog"
-#define SKIP_RECOVERY_DIALOG_KEY \
- "/apps/evolution/shell/skip_recovery_dialog"
-#define RECOVERY_KEY \
- "/apps/evolution/shell/recovery"
/* Command-line options. */
static gboolean start_online = FALSE;
@@ -268,70 +264,6 @@ destroy_config (GConfClient *client)
#endif /* DEVELOPMENT */
-static int
-show_recovery_warning(void)
-{
- GtkWidget *vbox;
- GtkWidget *label;
- GtkWidget *warning_dialog;
- GtkWidget *checkbox;
- GtkWidget *alignment;
- gboolean skip;
- char *text;
- int flags = 0, response;
-
- warning_dialog = gtk_dialog_new ();
- gtk_window_set_title (GTK_WINDOW (warning_dialog), _("Evolution Crash Detection"));
- gtk_window_set_modal (GTK_WINDOW (warning_dialog), TRUE);
- gtk_dialog_add_button (GTK_DIALOG (warning_dialog), _("Ig_nore"), GTK_RESPONSE_CANCEL);
- gtk_dialog_add_button (GTK_DIALOG (warning_dialog), _("_Recover"), GTK_RESPONSE_OK);
-
- gtk_dialog_set_has_separator (GTK_DIALOG (warning_dialog), FALSE);
-
- gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (warning_dialog)->vbox), 0);
- gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (warning_dialog)->action_area), 12);
-
- vbox = gtk_vbox_new (FALSE, 12);
- gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
- gtk_box_pack_start (GTK_BOX (GTK_DIALOG (warning_dialog)->vbox), vbox,
- TRUE, TRUE, 0);
-
- text = g_strdup(
- /* xgettext:no-c-format */
- _("Evolution appears to have exited unexpectedly the last time it was\n"
- "run. As a precautionary measure, all preview panes will be hidden.\n"
- "You can restore the preview panes from the View menu.\n"));
- label = gtk_label_new (text);
- g_free(text);
-
- gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0);
-
- gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0);
-
- checkbox = gtk_check_button_new_with_mnemonic (_("_Do not show this message again"));
-
- alignment = gtk_alignment_new (0.0, 0.0, 0.0, 0.0);
-
- gtk_container_add (GTK_CONTAINER (alignment), checkbox);
- gtk_box_pack_start (GTK_BOX (vbox), alignment, TRUE, TRUE, 0);
-
- gtk_widget_show_all (warning_dialog);
-
- response = gtk_dialog_run (GTK_DIALOG (warning_dialog));
-
- if (response != GTK_RESPONSE_CANCEL)
- flags = flags|(1<<1);
-
- skip = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox));
- if (skip)
- flags = flags|(1<<2);
-
- gtk_widget_destroy (warning_dialog);
-
- return flags;
-}
-
static void
open_uris (gchar **uris)
{
@@ -370,32 +302,6 @@ idle_cb (gchar **uris)
open_uris (uris);
else {
EShellWindow *shell_window;
- GConfClient *client = gconf_client_get_default ();
-
- if (gconf_client_get_bool (client, RECOVERY_KEY, NULL) && e_file_lock_exists ()) {
- /* It should have crashed last time or a force-shutdown */
- gboolean skip = gconf_client_get_bool (client, SKIP_RECOVERY_DIALOG_KEY, NULL);
- gboolean recover = TRUE;
- if (!skip){
- int flags = show_recovery_warning ();
-
- gconf_client_set_bool (client, SKIP_RECOVERY_DIALOG_KEY, (flags & (1<<2)) ? TRUE : FALSE, NULL);
- recover = (flags & (1<<1)) ? TRUE: FALSE;
- }
-
- if (recover) {
- /* Disable the previews */
- gconf_client_set_bool (client, "/apps/evolution/mail/display/show_preview", FALSE, NULL);
- gconf_client_set_bool (client, "/apps/evolution/mail/display/safe_list", TRUE, NULL);
- gconf_client_set_bool (client, "/apps/evolution/addressbook/display/show_preview", FALSE, NULL);
- gconf_client_set_bool (client, "/apps/evolution/calendar/display/show_task_preview", FALSE, NULL);
- }
- /* Let us not delete and recreate a lock, instead reuse it. We don't use timestamps anyways */
- } else {
- /* What great can we do, if lock creation fails ?*/
- e_file_lock_create ();
- }
- g_object_unref (client);
shell_window = e_shell_create_window ();
/* XXX Switch to default_component_id. */
@@ -710,5 +616,9 @@ main (int argc, char **argv)
#ifdef G_OS_WIN32
link_shutdown ();
#endif
+
+ /* Indicates a clean shut down to the next session. */
+ e_file_lock_destroy ();
+
return 0;
}
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 15f82821c4..7f8567f96b 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,5 +1,13 @@
2008-08-14 Matthew Barnes <mbarnes@redhat.com>
+ ** Fixes part of bug #547411
+
+ * e-online-button.c (e_online_button_set_online):
+ The button icons are themed now but still oblong.
+ Load the icons by filename so GTK+ doesn't scale them.
+
+2008-08-14 Matthew Barnes <mbarnes@redhat.com>
+
* e-multi-config-dialog.c:
* e-send-options.c:
Use e_display_help() for displaying help.
diff --git a/widgets/misc/e-online-button.c b/widgets/misc/e-online-button.c
index 7391384950..346aec2857 100644
--- a/widgets/misc/e-online-button.c
+++ b/widgets/misc/e-online-button.c
@@ -22,9 +22,6 @@
#include <glib/gi18n.h>
-#define ONLINE_IMAGE "online.png"
-#define OFFLINE_IMAGE "offline.png"
-
#define E_ONLINE_BUTTON_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
((obj), E_TYPE_ONLINE_BUTTON, EOnlineButtonPrivate))
@@ -177,18 +174,25 @@ e_online_button_set_online (EOnlineButton *button,
gboolean online)
{
GtkImage *image;
- gchar *filename;
- const gchar *image_name;
+ GtkIconInfo *icon_info;
+ GtkIconTheme *icon_theme;
+ const gchar *filename;
+ const gchar *icon_name;
g_return_if_fail (E_IS_ONLINE_BUTTON (button));
button->priv->online = online;
- image_name = online ? ONLINE_IMAGE : OFFLINE_IMAGE;
image = GTK_IMAGE (button->priv->image);
- filename = g_build_filename (EVOLUTION_IMAGES, image_name, NULL);
+ icon_name = online ? "online" : "offline";
+ icon_theme = gtk_icon_theme_get_default ();
+
+ /* Prevent GTK+ from scaling these rectangular icons. */
+ icon_info = gtk_icon_theme_lookup_icon (
+ icon_theme, icon_name, GTK_ICON_SIZE_BUTTON, 0);
+ filename = gtk_icon_info_get_filename (icon_info);
gtk_image_set_from_file (image, filename);
- g_free (filename);
+ gtk_icon_info_free (icon_info);
g_object_notify (G_OBJECT (button), "online");
}