[Commits] [SCM] claws branch, master, updated. 3.10.1-148-gf1fd770
mones at claws-mail.org
mones at claws-mail.org
Tue Aug 19 20:01:27 CEST 2014
The branch, master has been updated
via f1fd770f62d2239bfc0f4ad0e8369f30c370b789 (commit)
via 7a114d508a42a8d7282011a2c46cf8aa7aa4eaef (commit)
from 9166dc63e4d2f3f4d62293b48706cfa9b9a0afc1 (commit)
Summary of changes:
po/es.po | 6 +++---
src/common/utils.c | 18 +++++++++++++++---
2 files changed, 18 insertions(+), 6 deletions(-)
- Log -----------------------------------------------------------------
commit f1fd770f62d2239bfc0f4ad0e8369f30c370b789
Author: Ricardo Mones <ricardo at mones.org>
Date: Wed Aug 13 23:27:14 2014 +0200
Improve translation (Debian bug #757929)
diff --git a/po/es.po b/po/es.po
index a5b7392..cead756 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8164,12 +8164,12 @@ msgstr "etiqueta"
#: ../src/matcher.c:553 ../src/message_search.c:205 ../src/prefs_matcher.c:739
#: ../src/summary_search.c:466
msgid "Case sensitive"
-msgstr "Sensible a caja"
+msgstr "Sensible a mayús./minús."
#: ../src/matcher.c:523 ../src/matcher.c:528 ../src/matcher.c:548
#: ../src/matcher.c:553
msgid "Case insensitive"
-msgstr "Ignorar caja"
+msgstr "Ignorar mayús./minús."
#: ../src/matcher.c:1818
#, c-format
@@ -9436,7 +9436,7 @@ msgstr "Expresiones diferencian mayúsculas y minúsculas"
#: ../src/plugins/attachwarner/attachwarner_prefs.c:96
msgid "Case sensitive when matching for the regular expressions in the list"
msgstr ""
-"Sensible a la caja cuando se busca con las expresiones regulares de la lista"
+"Sensible a mayús./minús. cuando se busca con las expresiones regulares de la lista"
#: ../src/plugins/attachwarner/attachwarner_prefs.c:114
msgid "Lines starting with quotation marks"
commit 7a114d508a42a8d7282011a2c46cf8aa7aa4eaef
Author: Ricardo Mones <ricardo at mones.org>
Date: Tue Aug 19 17:17:30 2014 +0200
Fix bug #3246 ‘attachment open: "remember this" ignored if ~/.mailcap does not exist’
Add also a warning if intermediate file cannot be created.
diff --git a/src/common/utils.c b/src/common/utils.c
index 9b9b1f8..2e41793 100644
--- a/src/common/utils.c
+++ b/src/common/utils.c
@@ -4805,13 +4805,25 @@ void mailcap_update_default(const gchar *type, const gchar *command)
gboolean err = FALSE;
if (!fp) {
- g_free(path);
- g_free(outpath);
- return;
+ fp = g_fopen(path, "a");
+ if (!fp) {
+ g_warning("failed to create file %s\n", path);
+ g_free(path);
+ g_free(outpath);
+ return;
+ }
+ fp = g_freopen(path, "rb", fp);
+ if (!fp) {
+ g_warning("failed to reopen file %s\n", path);
+ g_free(path);
+ g_free(outpath);
+ return;
+ }
}
outfp = g_fopen(outpath, "wb");
if (!outfp) {
+ g_warning("failed to create file %s\n", outpath);
g_free(path);
g_free(outpath);
fclose(fp);
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list