aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorGediminas Paulauskas <menesis@src.gnome.org>2001-04-03 04:29:42 +0800
committerGediminas Paulauskas <menesis@src.gnome.org>2001-04-03 04:29:42 +0800
commit6b674781defaf52cf8a902357864b3ea793c2352 (patch)
treefea8827b6e67b7c97dac66c79186f7e8c8d622d0 /camel
parent9a38f851213392e4e4fefe017029306cba3d6ffe (diff)
downloadgsoc2013-evolution-6b674781defaf52cf8a902357864b3ea793c2352.tar.gz
gsoc2013-evolution-6b674781defaf52cf8a902357864b3ea793c2352.tar.zst
gsoc2013-evolution-6b674781defaf52cf8a902357864b3ea793c2352.zip
marked report status strings for tanslation, fixes #1973
svn path=/trunk/; revision=9099
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/camel-filter-driver.c14
2 files changed, 11 insertions, 7 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 8c6b76e3ab..637669dc26 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,7 @@
+2001-04-02 Gediminas Paulauskas <menesis@delfi.lt>
+
+ * camel-filter-driver.c: marked missing report status' for translation.
+
2001-04-02 Jeffrey Stedfast <fejj@ximian.com>
* camel-pgp-context.c (camel_pgp_sign): mutex lock & unlock the context.
diff --git a/camel/camel-filter-driver.c b/camel/camel-filter-driver.c
index 6c650d3c2c..84faf9ae20 100644
--- a/camel/camel-filter-driver.c
+++ b/camel/camel-filter-driver.c
@@ -531,7 +531,7 @@ close_folder (void *key, void *value, void *data)
camel_folder_thaw (folder);
camel_object_unref (CAMEL_OBJECT (folder));
- report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, g_hash_table_size(p->folders)* 100 / p->closed, "Syncing folders");
+ report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, g_hash_table_size(p->folders)* 100 / p->closed, _("Syncing folders"));
}
/* flush/close all folders */
@@ -540,7 +540,7 @@ close_folders (CamelFilterDriver *driver)
{
struct _CamelFilterDriverPrivate *p = _PRIVATE (driver);
- report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, 0, "Syncing folders");
+ report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, 0, _("Syncing folders"));
p->closed = 0;
g_hash_table_foreach (p->folders, close_folder, driver);
@@ -745,12 +745,12 @@ camel_filter_driver_filter_folder (CamelFilterDriver *driver, CamelFolder *folde
for (i = 0; i < uids->len; i++) {
int pc = (100 * i)/uids->len;
- report_status (driver, CAMEL_FILTER_STATUS_START, pc, "Getting message %d of %d", i+1,
+ report_status (driver, CAMEL_FILTER_STATUS_START, pc, _("Getting message %d of %d"), i+1,
uids->len);
message = camel_folder_get_message (folder, uids->pdata[i], ex);
if (!message || camel_exception_is_set (ex)) {
- report_status (driver, CAMEL_FILTER_STATUS_END, 100, "Failed at message %d of %d",
+ report_status (driver, CAMEL_FILTER_STATUS_END, 100, _("Failed at message %d of %d"),
i+1, uids->len);
status = -1;
break;
@@ -768,7 +768,7 @@ camel_filter_driver_filter_folder (CamelFilterDriver *driver, CamelFolder *folde
camel_folder_free_message_info (folder, info);
if (camel_exception_is_set (ex) || status == -1) {
- report_status (driver, CAMEL_FILTER_STATUS_END, 100, "Failed at message %d of %d",
+ report_status (driver, CAMEL_FILTER_STATUS_END, 100, _("Failed at message %d of %d"),
i+1, uids->len);
status = -1;
break;
@@ -785,12 +785,12 @@ camel_filter_driver_filter_folder (CamelFilterDriver *driver, CamelFolder *folde
camel_folder_free_uids (folder, uids);
if (p->defaultfolder) {
- report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, 100, "Syncing folder");
+ report_status(driver, CAMEL_FILTER_STATUS_PROGRESS, 100, _("Syncing folder"));
camel_folder_sync (p->defaultfolder, FALSE, ex);
}
if (i == uids->len)
- report_status (driver, CAMEL_FILTER_STATUS_END, 100, "Complete");
+ report_status (driver, CAMEL_FILTER_STATUS_END, 100, _("Complete"));
g_free (source_url);
/td> * - Add LICENSE_FILEamdmi32016-01-101-2/+2 * Update to the lastest GNOME 3.16 releases.kwm2015-12-123-7/+4 * Let gnome3 stack be built with python 3.5rm2015-11-196-249/+276 * Typos, whitespace and capitalization fixes (A-F).olgeni2015-09-211-1/+1 * Remove conditions around the EXTRA_PATCHES: always apply the patchbapt2015-08-241-6/+1 * Re-commit ofnetchild2015-08-103-0/+101 * * Add PORTSCOUT macros to only show stable gnome versions.kwm2015-08-081-1/+2 * The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD.kwm2015-08-0618-58/+122 * By default libtool replaces -export-symbols <file> with -retain-symbols-filetijl2015-08-021-1/+1 * Switch default python_CMD used by shebangfix to ${PYTHON_CMD} for portsantoine2015-07-301-1/+0 * Unbreak INDEX, reverting r392921antoine2015-07-263-101/+0 * 64 bit linuxulator support (not activated by default):netchild2015-07-263-0/+101 * accessibility/speech-dispatcher: remove NLS optionavilla2015-07-012-20/+5 * accessibility/speech-dispatcher: update to 0.8.3avilla2015-06-2910-170/+39 * - Add empty directory to plistamdmi32015-05-181-0/+1 * MASTER_SITES cleanup.mat2015-05-142-4/+2 * - Update to 2.2.5sunpoet2015-05-042-3/+6 * - Add CPE infoamdmi32015-04-171-1/+2 * Convert kde@ ports to USES=metaport.rakuco2015-04-041-4/+1 * Add build dependency required for VIDMODE and older Nvidia graphics driversfeld2015-03-301-0/+1 * Update the Gnome stack to the latest in the 3.14 series.kwm2015-03-276-7/+12 * accessibility/gnome-speech: add LICENSErobak2015-03-152-0/+4 * Update KDE SC to 4.14.3alonso2015-03-125-10/+10 * Fix packagingantoine2015-02-081-2/+2 * Use options helpersbapt2015-02-081-18/+8 * Switch default python3 version from 3.3 to 3.4.demon2015-01-113-1/+3 * Don't hardcode python version.kwm2015-01-096-474/+480 * Move MASTER_SITES from CRITICAL to LOCAL/ehauptehaupt2015-01-061-1/+1 * - Convert <OPTION>_USE= PYTHON... to <OPTION>_USES= python...mva2015-01-031-1/+1 * Update cinnamon to 2.4, this should fix [1] and [2].kwm2014-12-312-3/+4 * Remove now useless dependency on gnomehierbapt2014-12-213-7/+7 * Cleanup plistbapt2014-12-0910-301/+0 * Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla intijl2014-12-097-76/+13 * Update GNOME to 3.14.2.kwm2014-12-039-17/+25 * The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.kwm2014-11-1935-1202/+1856 * Cleanup plistantoine2014-11-141-2/+0 * x11/rubygem-gnome2: update to 2.2.3swills2014-11-122-3/+3 * Upgrade CentOS to 6.6xmj2014-11-111-4/+4 * Remove @dirrm and @dirrmtry entries from the Qt ports.rakuco2014-10-241-2/+0 * Add USES=alias to several portsmarino2014-10-201-1/+1 * KDE/FreeBSD team presents KDE SC 4.14.2 and KDE Workspace 4.11.13!makc2014-10-1922-59/+24 * - Convert ports from accessibility/, archivers/ and astro/ to newmva2014-10-184-8/+4 * - Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.htijl2014-09-251-1/+1 * Update CentOS base to 6.5, add userland portsxmj2014-09-226-3/+141 * Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.tijl2014-09-171-1/+1 * Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-118-8/+8 * Convert to @samplebapt2014-09-031-17/+15 * Convert to @samplebapt2014-09-031-3/+1 * Add USES=libtool and INSTALL_TARGET=install-striptijl2014-09-022-6/+6 * Convert to USES=libtool and add INSTALL_TARGET=install-striptijl2014-09-022-6/+6 * Add USES=libtool and INSTALL_TARGET=install-striptijl2014-09-022-4/+5 * Add USES=libtool to accessibility/atkmm and bump dependent portstijl2014-09-022-4/+5 * - Fix missing library problems when the linker enforces explicit linkingtijl2014-08-261-0/+2 * x11/rubygem-gnome2: update to 2.2.0swills2014-08-262-3/+3 * Upgrade OpenEXR and ilmbase to 2.2.0.mandree2014-08-166-2/+6 * - Rename PYTHON_FEATURES to USE_PYTHON to comply to USE_PERL5 and to avoid amva2014-08-151-1/+1 * - Convert my ports to USES=pythonmva2014-08-101-4/+2 * Remove expired ports:rene2014-07-216-124/+0 * Add DOCS to OPTIONS_DEFINE where PORTDOCS= is set.adamw2014-07-161-0/+2 * Reduce unnecessary bsd.port.options.mk inclusion by usingadamw2014-07-042-46/+15 * Schedule for removal on 2014-07-21, depends on expired libgailgnomerene2014-06-231-0/+3 * - Switch accessibility/speech-dispatcher to USES=libtool, drop .la filesamdmi32014-06-044-8/+6 * accessibility/atk: now unbreak atk-referencemarino2014-05-301-1/+3 * accessibility/atk: Unbreakmarino2014-05-301-3/+1 * - Convert use_xz,bzip to USESmiwi2014-05-308-15/+8 * KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!makc2014-05-115-10/+10 * Convert from USE_GNOME=gnomehack -> USES=pathfixbapt2014-04-2811-51/+44 * The FreeBSD x11@ and graphics team proudly presentszeising2014-04-171-1/+1 * KDE/FreeBSD team presents KDE SC 4.12.4 and KDE Workspace 4.11.8!makc2014-04-0310-20/+15 * Stage all gnome@ ports in accessibility, which finishes this category!kwm2014-03-2913-15/+5 * 2014-03-23 accessibility/ruby-atk: Use rubygem-atk insteadswills2014-03-254-66/+0 * KDE/FreeBSD team presents KDE SC 4.12.3 and KDE Workspace 4.11.7!makc2014-03-055-10/+10 * - Mark as broken with Ruby 2.0 and 2.1swills2014-02-231-1/+10 * - Update rubygem-gnome2 and associated ports to 2.1.0swills2014-02-222-3/+3 * KDE/FreeBSD team presents KDE SC 4.12.2 and KDE Workspace 4.11.6!makc2014-02-1815-81/+34 * - Stage supportmiwi2014-02-171-1/+0 * - Stage supportmiwi2014-02-171-1/+0 * Finish stage supportantoine2014-01-311-1/+2 * - Add LICENSEmva2014-01-191-0/+2 * Python cleanup:rene2014-01-145-5/+5 * accessibility/yasr: Unbreak everywhere after stage attemptmarino2014-01-141-4/+5 * accessibility/eflite: Unbreak by completing stage supportmarino2014-01-141-3/+13 * In preparation for Qt 5 ports:makc2014-01-072-18/+3 * Part 1 at removing now useless FETCH_ARGS redifitionbapt2014-01-031-1/+0 * support stagebapt2013-12-261-17/+5 * In preparation for making libtool generate libraries with a sane name, fix al...bapt2013-12-118-30/+14 * - Stage support for all -reference portsantoine2013-12-102-2/+0 * Fix building with the GUI optionfeld2013-11-262-19/+31 * Explicitly disable espeak or festival support if we haven't asked for it [1]kwm2013-11-242-4/+13 * - Chase speech-dispatcher soversion bump.avilla2013-11-212-2/+4 * - Replace QT_.*_REL with QT_.* in PLIST_SUB.avilla2013-11-171-6/+6 * - Update to 0.8.avilla2013-11-1717-217/+215 * Fix build error on 9.x+eadler2013-11-132-1/+15 * - Add stage supportswills2013-10-301-1/+0 * Restrict python to -2.7kwm2013-10-306-7/+6 * Support STAGEfeld2013-10-262-3/+1 * - Remove manual creation and removal of share/applications, as it's now in th...amdmi32013-10-225-5/+0 * Update Qt to 4.8.5 and Qt Creator to 2.8.0.rakuco2013-10-141-2/+1 * Stage-ready out-of-the-box.rene2013-10-051-1/+0 * Rename orca to orca-plot to avoid name collision with accessibility/orcabapt2013-10-021-2/+0 * - Convert to PYDISTUTILS_AUTOPLISTmva2013-09-292-20/+9 * - Enable stage supportmva2013-09-292-3/+2 * Fix header conversionbapt2013-09-212-2/+2 * Add no stage all over the place in accessibility in preparation for the stagi...bapt2013-09-2033-15/+36 * Add an explicit dependency on pkgconfbapt2013-09-061-1/+1 * Add an explicit dependency on pkgconfbapt2013-09-061-1/+1 * Add an explicit dependency on pkgconfantoine2013-09-061-1/+1 * Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.bsam2013-09-051-2/+2 * Add an explicit dependency on pkgconfbapt2013-09-031-1/+1 * Add an explicit dependency on pkgconfbapt2013-09-031-1/+1 * Add an explicit dependency on pkgconfbapt2013-09-033-3/+3 * Add an explicit dependency on pkgconfbapt2013-09-031-1/+1 * Add an explicit dependency on pkgconfbapt2013-09-031-1/+1 * Add an explicit dependency on pkgconfbapt2013-09-031-1/+1 * Finish converting accessibility from USE_GMAKE to USES=gmakebapt2013-08-3015-65/+24 * - Remove MAKE_JOBS_SAFE variableak2013-08-158-8/+0 * The FreeBSD GNOME team presents a Glib and Gtk+ 3 update.kwm2013-07-3113-164/+105 * Fix my email address again, using proper @FreeBSD.org stylingfeld2013-07-291-2/+2 * KDE3 and QT3 expired on 2013-07-01, remove these ports.rene2013-07-275-3021/+0 * Update my email address throughout the treefeld2013-07-251-2/+2 * Use USES=display:configure instead of custom implementationbapt2013-07-091-24/+2 * Update the KDE Software Compilation to 4.10.5.rakuco2013-07-055-10/+10 * Update to KDE SC 4.10.4, proudly presented by the KDE on FreeBSD team.rakuco2013-07-035-10/+10 * - Fix buildmiwi2013-06-111-1/+1 * Ruby/ATK is a Ruby binding for ATK.swills2013-06-104-0/+24 * - Finish removal of support for Linux 2.4 in bsd.linux-apps.mk andrene2013-05-305-119/+0 * Fix build with clang: this unbreak gnome2 with clangbapt2013-05-24