[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 02/03: Updates for release

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository panel-plugins/xfce4-weather-plugin.

commit d1b4a8d4de115207e8cecfedcc31fcf707c77e0f
Author: Harald Judt 
Date:   Thu Apr 21 18:02:25 2016 +0200

Updates for release
---
 NEWS| 6 ++
 configure.ac.in | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index fed9a7f..bd55030 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+0.8.7
+=
+- Use met.no sunrise-1.1 API (bug #12333)
+- Translation updates: Catalan, Finnish, Greek, Hebrew, Hungarian,
+  Icelandic, Italian, Korean, Lithuanian, Slovak, Spanish, Swedish
+
 0.8.6
 =
 - Add ACLOCAL_AMFLAGS to Makefile.am
diff --git a/configure.ac.in b/configure.ac.in
index c5a40a1..03e371e 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -10,9 +10,9 @@ dnl *** Version information ***
 dnl ***
 m4_define([weather_version_major], [0])
 m4_define([weather_version_minor], [8])
-m4_define([weather_version_micro], [6])
+m4_define([weather_version_micro], [7])
 m4_define([weather_version_build], [@REVISION@])
-m4_define([weather_version_tag], [git])
+m4_define([weather_version_tag], [])
 m4_define([weather_version], 
[weather_version_major().weather_version_minor().weather_version_micro()ifelse(weather_version_tag(),
 [git], [weather_version_tag()-weather_version_build()], 
[weather_version_tag()])])
 
 dnl ***

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] annotated tag xfce4-weather-plugin-0.8.7 created (now 8884c8f)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

hjudt pushed a change to annotated tag xfce4-weather-plugin-0.8.7
in repository panel-plugins/xfce4-weather-plugin.

at  8884c8f   (tag)
   tagging  d1b4a8d4de115207e8cecfedcc31fcf707c77e0f (commit)
  replaces  xfce4-weather-plugin-0.8.6
 tagged by  Harald Judt
on  Thu Apr 21 18:02:56 2016 +0200

- Log -
0.8.7
=
- Use met.no sunrise-1.1 API (bug #12333)
- Translation updates: Catalan, Finnish, Greek, Hebrew, Hungarian,
  Icelandic, Italian, Korean, Lithuanian, Slovak, Spanish, Swedish
---

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 03/03: Post release tag bump

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository panel-plugins/xfce4-weather-plugin.

commit da02155c7f729aff80ea0b9874d75613ee1947b9
Author: Harald Judt 
Date:   Thu Apr 21 18:14:15 2016 +0200

Post release tag bump
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 03e371e..cf86cc9 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -12,7 +12,7 @@ m4_define([weather_version_major], [0])
 m4_define([weather_version_minor], [8])
 m4_define([weather_version_micro], [7])
 m4_define([weather_version_build], [@REVISION@])
-m4_define([weather_version_tag], [])
+m4_define([weather_version_tag], [git])
 m4_define([weather_version], 
[weather_version_major().weather_version_minor().weather_version_micro()ifelse(weather_version_tag(),
 [git], [weather_version_tag()-weather_version_build()], 
[weather_version_tag()])])
 
 dnl ***

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 01/03: Update URL for sunrise API to point to version 1.1 (bug #12333)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository panel-plugins/xfce4-weather-plugin.

commit cda7c86ebe8bae99351abb7ff331f79b2e104fcf
Author: Harald Judt 
Date:   Wed Apr 20 09:29:01 2016 +0200

Update URL for sunrise API to point to version 1.1 (bug #12333)

This is only a small part of the patch uploaded by ToZ. It restores
functionality of the current version while not introducing any new
translation strings. Additionally, this commits updates the link
in the README.
---
 README | 2 +-
 panel-plugin/weather-parsers.c | 2 +-
 panel-plugin/weather.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README b/README
index fa42f00..a71566e 100644
--- a/README
+++ b/README
@@ -93,7 +93,7 @@ left open by the former:
 
 * Service-specific documentation
   http://api.met.no/weatherapi/locationforecastlts/1.2/documentation
-  http://api.yr.no/weatherapi/sunrise/1.0/documentation
+  http://api.yr.no/weatherapi/sunrise/1.1/documentation
 
 For more technical details you might need to study the XML schema
 corresponding to the document in question.
diff --git a/panel-plugin/weather-parsers.c b/panel-plugin/weather-parsers.c
index acd7cf9..b5775db 100644
--- a/panel-plugin/weather-parsers.c
+++ b/panel-plugin/weather-parsers.c
@@ -458,7 +458,7 @@ parse_astro_time(xmlNode *cur_node)
 
 
 /*
- * Look at http://api.yr.no/weatherapi/sunrise/1.0/schema for information
+ * Look at http://api.yr.no/weatherapi/sunrise/1.1/schema for information
  * of elements and attributes to expect.
  */
 gboolean
diff --git a/panel-plugin/weather.c b/panel-plugin/weather.c
index 4de36e3..dc41cbf 100644
--- a/panel-plugin/weather.c
+++ b/panel-plugin/weather.c
@@ -619,7 +619,7 @@ update_handler(plugin_data *data)
 end_tm = *localtime(_t);
 
 /* build url */
-url = g_strdup_printf("http://api.yr.no/weatherapi/sunrise/1.0/?;
+url = g_strdup_printf("http://api.yr.no/weatherapi/sunrise/1.1/?;
   "lat=%s;lon=%s;"
   "from=%04d-%02d-%02d;"
   "to=%04d-%02d-%02d",

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (78b792f -> da02155)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

hjudt pushed a change to branch master
in repository panel-plugins/xfce4-weather-plugin.

  from  78b792f   I18n: Update translation ko (100%).
   new  cda7c86   Update URL for sunrise API to point to version 1.1 (bug 
#12333)
   new  d1b4a8d   Updates for release
   new  da02155   Post release tag bump

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NEWS   | 6 ++
 README | 2 +-
 configure.ac.in| 2 +-
 panel-plugin/weather-parsers.c | 2 +-
 panel-plugin/weather.c | 2 +-
 5 files changed, 10 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-datetime-plugin] branch master updated (40ecfd4 -> 3334058)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-datetime-plugin.

  from  40ecfd4   I18n: Update translation hu (100%).
   new  3334058   I18n: Update translation sv (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-datetime-plugin] 01/01: I18n: Update translation sv (100%).

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-datetime-plugin.

commit 3334058bbebe37b5cb31a4465a82eb9c0af21ea6
Author: Påvel Nicklasson 
Date:   Mon Apr 25 00:31:14 2016 +0200

I18n: Update translation sv (100%).

19 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 2fe4cb9..e36df5c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:55+0200\n"
-"PO-Revision-Date: 2016-01-06 11:59+\n"
+"PO-Revision-Date: 2016-04-24 20:22+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -50,7 +50,7 @@ msgstr "Anpassat..."
 
 #: ../panel-plugin/datetime-dialog.c:131
 msgid "Select font"
-msgstr "Välj teckensitt"
+msgstr "Välj typsnitt"
 
 #: ../panel-plugin/datetime-dialog.c:313
 #, c-format
@@ -85,7 +85,7 @@ msgstr "Datumet kommer att visas i ett verktygstips."
 #. font label
 #: ../panel-plugin/datetime-dialog.c:429 ../panel-plugin/datetime-dialog.c:530
 msgid "Font:"
-msgstr "Teckensnitt:"
+msgstr "Typsnitt:"
 
 #. * time frame
 #: ../panel-plugin/datetime-dialog.c:507

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (1f87df9 -> 8299bba)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-terminal.

  from  1f87df9   I18n: Update translation eo (54%).
   new  8299bba   I18n: Update translation sv (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-terminal] 01/01: I18n: Update translation sv (100%).

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-terminal.

commit 8299bba8f3427aadc4984156cb66c0823d56087f
Author: Påvel Nicklasson 
Date:   Mon Apr 25 00:31:02 2016 +0200

I18n: Update translation sv (100%).

283 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index f6b5d37..083c23d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-12-27 00:31+0100\n"
-"PO-Revision-Date: 2016-01-20 12:21+\n"
+"PO-Revision-Date: 2016-04-24 20:17+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce-apps/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -913,7 +913,7 @@ msgstr "Drop-do_wn"
 
 #: ../terminal/terminal-preferences.glade.h:57
 msgid "Choose Terminal Font"
-msgstr "Välj teckensnitt för terminal"
+msgstr "Välj typsnitt för terminal"
 
 #: ../terminal/terminal-preferences.glade.h:58
 msgid "Allow bold te_xt"
@@ -927,7 +927,7 @@ msgstr "Aktivera detta för att tillåta program som körs i 
terminalfönster at
 
 #: ../terminal/terminal-preferences.glade.h:60
 msgid "Font"
-msgstr "Teckensnitt"
+msgstr "Typsnitt"
 
 #: ../terminal/terminal-preferences.glade.h:61
 msgid "_File:"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/parole] branch master updated (a05015e -> 4ac3a2c)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/parole.

  from  a05015e   I18n: Update translation is (97%).
   new  4ac3a2c   I18n: Update translation sv (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/sv.po | 76 ++--
 1 file changed, 36 insertions(+), 40 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/parole] 01/01: I18n: Update translation sv (100%).

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/parole.

commit 4ac3a2c00ce33772c78a8bfa05e3f3f3f9f9c7b6
Author: Påvel Nicklasson 
Date:   Mon Apr 25 00:30:48 2016 +0200

I18n: Update translation sv (100%).

272 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sv.po | 76 ++--
 1 file changed, 36 insertions(+), 40 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index ee6c39f..a622543 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-09-07 18:30+0200\n"
-"PO-Revision-Date: 2015-10-05 21:06+\n"
+"POT-Creation-Date: 2016-01-11 06:30+0100\n"
+"PO-Revision-Date: 2016-04-24 20:32+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce-apps/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -69,7 +69,7 @@ msgid "_Shuffle"
 msgstr "_Blanda"
 
 #. Create dialog
-#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:2848
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:2860
 msgid "Go to position"
 msgstr "Gå till position"
 
@@ -129,8 +129,8 @@ msgstr "T_yst"
 msgid "_Video"
 msgstr "_Video"
 
-#: ../data/interfaces/parole.ui.h:27 ../src/parole-player.c:2038
-#: ../src/parole-player.c:2152
+#: ../data/interfaces/parole.ui.h:27 ../src/parole-player.c:2050
+#: ../src/parole-player.c:2164
 msgid "_Fullscreen"
 msgstr "_Fullskärmsläge"
 
@@ -233,7 +233,7 @@ msgstr "Öppna mediafiler"
 
 #: ../data/interfaces/playlist.ui.h:1
 #: ../data/interfaces/parole-settings.ui.h:27 ../src/parole-medialist.c:806
-#: ../src/parole-medialist.c:849 ../src/parole-player.c:3262
+#: ../src/parole-medialist.c:849 ../src/parole-player.c:3274
 msgid "Playlist"
 msgstr "Spellista"
 
@@ -424,7 +424,7 @@ msgstr "Visa automatiskt undertexter då filmer spelas"
 
 #: ../data/interfaces/parole-settings.ui.h:29
 msgid "Font:"
-msgstr "Teckensnitt:"
+msgstr "Typsnitt:"
 
 #: ../data/interfaces/parole-settings.ui.h:30
 msgid "Encoding:"
@@ -478,12 +478,12 @@ msgstr "Spela dina media"
 msgid "Play/Pause"
 msgstr "Spela/paus"
 
-#: ../data/desktop/parole.desktop.in.in.h:4 ../src/parole-player.c:3412
+#: ../data/desktop/parole.desktop.in.in.h:4 ../src/parole-player.c:3424
 #: ../src/plugins/notify/notify-provider.c:204
 msgid "Previous Track"
 msgstr "Föregående spår"
 
-#: ../data/desktop/parole.desktop.in.in.h:5 ../src/parole-player.c:3430
+#: ../data/desktop/parole.desktop.in.in.h:5 ../src/parole-player.c:3442
 #: ../src/plugins/notify/notify-provider.c:217
 msgid "Next Track"
 msgstr "Nästa spår"
@@ -791,7 +791,7 @@ msgstr "Öppna innehållsmapp"
 msgid "Hide Playlist"
 msgstr "Dölj spellista"
 
-#: ../src/parole-player.c:535 ../src/parole-player.c:3472
+#: ../src/parole-player.c:535 ../src/parole-player.c:3484
 msgid "Show Playlist"
 msgstr "Visa spellista"
 
@@ -801,7 +801,7 @@ msgid "Select Subtitle File"
 msgstr "Välj undertextfil"
 
 #: ../src/parole-player.c:1022 ../src/parole-player.c:1226
-#: ../src/parole-player.c:2851 ../src/plugins/tray/tray-provider.c:338
+#: ../src/parole-player.c:2863 ../src/plugins/tray/tray-provider.c:338
 msgid "Cancel"
 msgstr "Avbryt"
 
@@ -839,112 +839,108 @@ msgstr "Pausa"
 msgid "GStreamer backend error"
 msgstr "GStreamer bakändefel"
 
-#: ../src/parole-player.c:1864
-msgid "Unknown Song"
-msgstr "Okänd låt"
-
-#: ../src/parole-player.c:1869 ../src/parole-player.c:1871
-#: ../src/parole-player.c:1877
+#: ../src/parole-player.c:1881 ../src/parole-player.c:1883
+#: ../src/parole-player.c:1889
 msgid "on"
 msgstr "på"
 
-#: ../src/parole-player.c:1877 ../src/plugins/notify/notify-provider.c:145
+#: ../src/parole-player.c:1889 ../src/plugins/notify/notify-provider.c:145
 msgid "Unknown Album"
 msgstr "Okänt album"
 
-#: ../src/parole-player.c:1884 ../src/parole-player.c:1888
+#: ../src/parole-player.c:1896 ../src/parole-player.c:1900
 msgid "by"
 msgstr "av"
 
-#: ../src/parole-player.c:1888 ../src/plugins/notify/notify-provider.c:147
+#: ../src/parole-player.c:1900 ../src/plugins/notify/notify-provider.c:147
 msgid "Unknown Artist"
 msgstr "Okänd artist"
 
-#: ../src/parole-player.c:1922
+#: ../src/parole-player.c:1934
 msgid "Buffering"
 msgstr "Buffrar"
 
-#: ../src/parole-player.c:2039 ../src/parole-player.c:3447
+#: ../src/parole-player.c:2051 ../src/parole-player.c:3459
 msgid "Fullscreen"
 msgstr "Fullskärmsläge"
 
-#: ../src/parole-player.c:2052
+#: ../src/parole-player.c:2064
 msgid "Leave _Fullscreen"
 msgstr "Lämna _fullskärmsläge"
 
-#: ../src/parole-player.c:2053
+#: ../src/parole-player.c:2065
 msgid "Leave Fullscreen"
 msgstr "Lämna fullskärmsläge"
 
 #. Play menu item
 #. * Play pause
-#: ../src/parole-player.c:2120 ../src/plugins/tray/tray-provider.c:130
+#: 

[Xfce4-commits] [xfce/tumbler] branch master updated (e7b570e -> 782782b)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/tumbler.

  from  e7b570e   I18n: Update translation lt (100%).
   new  782782b   I18n: Update translation sv (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/tumbler] 01/01: I18n: Update translation sv (100%).

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/tumbler.

commit 782782bfae35eff6228562aea010d1b95b37819f
Author: Påvel Nicklasson 
Date:   Mon Apr 25 00:30:25 2016 +0200

I18n: Update translation sv (100%).

44 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sv.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index b3be979..8aaac2f 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,9 +10,9 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:38+0200\n"
-"PO-Revision-Date: 2015-07-19 17:01+\n"
+"PO-Revision-Date: 2016-04-24 20:20+\n"
 "Last-Translator: Påvel Nicklasson \n"
-"Language-Team: Swedish (http://www.transifex.com/p/tumbler/language/sv/)\n"
+"Language-Team: Swedish (http://www.transifex.com/xfce/tumbler/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -211,7 +211,7 @@ msgstr "Det gick inte att läsa in filinnehåll: %s"
 #: ../plugins/font-thumbnailer/font-thumbnailer.c:494
 #, c-format
 msgid "Could not open font file: %s"
-msgstr "Det gick inte att öppna teckensnittsfil: %s"
+msgstr "Det gick inte att öppna typsnittsfil: %s"
 
 #. emit an error signal
 #: ../plugins/font-thumbnailer/font-thumbnailer.c:518

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/mousepad] branch master updated (017eed3 -> 297f772)

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/mousepad.

  from  017eed3   I18n: Update translation sv (100%).
   new  297f772   I18n: Update translation sv (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/sv.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/mousepad] 01/01: I18n: Update translation sv (100%).

2016-04-24 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/mousepad.

commit 297f77211c38a0313ee94dcfb8a3fa721e74d6b6
Author: Påvel Nicklasson 
Date:   Sun Apr 24 18:30:41 2016 +0200

I18n: Update translation sv (100%).

306 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sv.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 0db1520..5ab6deb 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2016-04-13 09:24+\n"
+"PO-Revision-Date: 2016-04-24 12:04+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce-apps/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -428,11 +428,11 @@ msgstr "Visa"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:27
 msgid "Use system monospace font"
-msgstr "Använd systemets monospace-teckensnitt"
+msgstr "Använd systemets monospace-typsnitt"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:28
 msgid "Font"
-msgstr "Teckensnitt"
+msgstr "Typsnitt"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:29
 msgid "Colour scheme"
@@ -572,7 +572,7 @@ msgstr "Aktivera _syntaxmarkering"
 
 #: ../mousepad/mousepad-print.c:691
 msgid "Fonts"
-msgstr "Teckensnitt"
+msgstr "Typsnitt"
 
 #: ../mousepad/mousepad-print.c:707
 msgid "Header:"
@@ -1058,11 +1058,11 @@ msgstr "_Visa"
 
 #: ../mousepad/mousepad-window.c:454
 msgid "Select F_ont..."
-msgstr "Välj te_ckensnitt..."
+msgstr "Välj t_ypsnitt..."
 
 #: ../mousepad/mousepad-window.c:454
 msgid "Change the editor font"
-msgstr "Ändra redigerarens teckensnitt"
+msgstr "Ändra redigerarens typsnitt"
 
 #: ../mousepad/mousepad-window.c:455
 msgid "_Color Scheme"
@@ -1319,7 +1319,7 @@ msgstr "Misslyckades med att skriva ut dokumentet"
 
 #: ../mousepad/mousepad-window.c:4777
 msgid "Choose Mousepad Font"
-msgstr "Välj Mousepad-teckensnitt"
+msgstr "Välj Mousepad-typsnitt"
 
 #: ../mousepad/mousepad-window.c:4943
 msgid "Leave fullscreen mode"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits