Browse Source

Handle the Upload state in Snap

Update the dependencies
Update French translation
pull/853/head
Timothée Jaussoin 6 years ago
parent
commit
59f3b7b82c
  1. 16
      app/widgets/Snap/snap.css
  2. 8
      app/widgets/Snap/snap.js
  3. 3
      app/widgets/Snap/snap.tpl
  4. 14
      app/widgets/Upload/upload.js
  5. 58
      composer.lock
  6. 10
      locales/ach.po
  7. 10
      locales/ady.po
  8. 10
      locales/af.po
  9. 10
      locales/am.po
  10. 10
      locales/ar.po
  11. 10
      locales/be.po
  12. 10
      locales/bg.po
  13. 10
      locales/bn.po
  14. 10
      locales/br.po
  15. 10
      locales/ca.po
  16. 10
      locales/cs.po
  17. 10
      locales/da.po
  18. 15
      locales/de.po
  19. 10
      locales/el.po
  20. 15
      locales/en.po
  21. 10
      locales/eo.po
  22. 10
      locales/es.po
  23. 10
      locales/eu.po
  24. 10
      locales/fa.po
  25. 10
      locales/fi.po
  26. 12
      locales/fr.po
  27. 10
      locales/ga.po
  28. 10
      locales/gl.po
  29. 10
      locales/he.po
  30. 10
      locales/hr.po
  31. 14
      locales/hu.po
  32. 10
      locales/id.po
  33. 10
      locales/io.po
  34. 10
      locales/is.po
  35. 11
      locales/it.po
  36. 10
      locales/ja.po
  37. 10
      locales/jbo.po
  38. 10
      locales/kk.po
  39. 10
      locales/ko.po
  40. 10
      locales/lb.po
  41. 10
      locales/lt.po
  42. 10
      locales/lv.po
  43. 10
      locales/messages.pot
  44. 11
      locales/nb.po
  45. 10
      locales/ne.po
  46. 10
      locales/nl.po
  47. 10
      locales/oc.po
  48. 10
      locales/pl.po
  49. 10
      locales/pt.po
  50. 15
      locales/pt_br.po
  51. 10
      locales/ro.po
  52. 11
      locales/ru.po
  53. 10
      locales/sk.po
  54. 10
      locales/sl.po
  55. 15
      locales/sq.po
  56. 10
      locales/sv.po
  57. 10
      locales/sw.po
  58. 10
      locales/tr.po
  59. 10
      locales/uk.po
  60. 11
      locales/zh.po
  61. 10
      locales/zh_tw.po

16
app/widgets/Snap/snap.css

@ -38,7 +38,8 @@
}
#snap button#snapshoot,
#snap button#snapupload {
#snap button#snapupload,
#snap button#snapwait {
right: calc(50% - 3.5rem);
position: absolute;
bottom: 2rem;
@ -74,18 +75,27 @@
/* States */
#snap.shoot,
#snap.upload {
#snap.upload,
#snap.wait {
display: block;
}
#snap.shoot ul.controls.list > li#snapback,
#snap.shoot #snapupload,
#snap.shoot #snapclose,
#snap.shoot #snapwait,
#snap.shoot canvas,
#snap.upload ul.controls.list > li#snapclose,
#snap.upload #snapshoot,
#snap.upload #snapback,
#snap.upload #snapwait,
#snap.upload #snapswitch,
#snap.upload #snapswitch.enabled {
#snap.upload #snapswitch.enabled,
#snap.wait ul.controls.list > li#snapclose,
#snap.wait #snapshoot,
#snap.wait #snapupload,
#snap.wait #snapback,
#snap.wait #snapswitch,
#snap.wait #snapswitch.enabled {
display: none;
}

8
app/widgets/Snap/snap.js

@ -87,7 +87,6 @@ var Snap = {
Snap.close();
},
init : function() {
Snap.snap = document.querySelector('#snap');
Snap.video = document.querySelector('#snap video');
Snap.videoSelect = document.querySelector('#snap select#snapsource');
@ -95,6 +94,8 @@ var Snap = {
Snap.close(); // Just in case
Snap.snap.classList = 'wait';
navigator.mediaDevices.enumerateDevices().then(devices => Snap.gotDevices(devices));
Snap.video.play();
@ -104,6 +105,7 @@ var Snap = {
});
document.querySelector("#snap #snapupload").addEventListener('click', function() {
Snap.snap.classList = 'wait';
Upload.init();
});
@ -129,7 +131,7 @@ var Snap = {
Snap.gotStream();
});
Upload.attach(function(file) {
Upload.attach((file) => {
const page = MovimUtils.urlParts().page;
if (page != 'chat') {
@ -139,5 +141,7 @@ var Snap = {
Snap.end();
});
Upload.fail(() => Snap.snap.classList = 'upload');
}
}

3
app/widgets/Snap/snap.tpl

@ -8,6 +8,9 @@
<button id="snapupload" class="button action color blue">
<i class="material-icons">publish</i>
</button>
<button id="snapwait" class="button action color gray">
<i class="material-icons">more_horiz</i>
</button>
<button id="snapswitch" class="button action color">
<i class="material-icons">switch_camera</i>
</button>

14
app/widgets/Upload/upload.js

@ -1,6 +1,7 @@
var Upload = {
xhr : null,
attached : [],
failed : [],
get : null,
name : null,
file : null,
@ -21,6 +22,12 @@ var Upload = {
}
},
fail : function(func) {
if (typeof(func) === "function") {
this.failed.push(func);
}
},
launchAttached : function() {
for(var i = 0; i < Upload.attached.length; i++) {
Upload.attached[i]({
@ -32,6 +39,12 @@ var Upload = {
}
},
launchFailed : function(evt) {
for(var i = 0; i < Upload.failed.length; i++) {
Upload.failed[i](evt);
}
},
preview : function() {
var file = document.getElementById('file').files[0];
Upload.name = file.name;
@ -155,6 +168,7 @@ var Upload = {
if (Upload.xhr.readyState == 4
&& (Upload.xhr.status >= 400 || Upload.xhr.status == 0)
&& Upload.file != null) {
Upload.launchFailed();
Upload_ajaxFailed();
}
}

58
composer.lock

@ -1318,33 +1318,37 @@
},
{
"name": "guzzlehttp/psr7",
"version": "1.5.2",
"version": "1.6.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
"reference": "9f83dded91781a01c63574e387eaa769be769115"
"reference": "239400de7a173fe9901b9ac7c06497751f00727a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
"reference": "9f83dded91781a01c63574e387eaa769be769115",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
"reference": "239400de7a173fe9901b9ac7c06497751f00727a",
"shasum": ""
},
"require": {
"php": ">=5.4.0",
"psr/http-message": "~1.0",
"ralouphie/getallheaders": "^2.0.5"
"ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
},
"provide": {
"psr/http-message-implementation": "1.0"
},
"require-dev": {
"ext-zlib": "*",
"phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
},
"suggest": {
"zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
"dev-master": "1.6-dev"
}
},
"autoload": {
@ -1381,7 +1385,7 @@
"uri",
"url"
],
"time": "2018-12-04T20:46:45+00:00"
"time": "2019-07-01T23:21:34+00:00"
},
{
"name": "illuminate/container",
@ -2101,24 +2105,24 @@
},
{
"name": "ralouphie/getallheaders",
"version": "2.0.5",
"version": "3.0.3",
"source": {
"type": "git",
"url": "https://github.com/ralouphie/getallheaders.git",
"reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
"reference": "120b605dfeb996808c31b6477290a714d356e822"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
"reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
"url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
"reference": "120b605dfeb996808c31b6477290a714d356e822",
"shasum": ""
},
"require": {
"php": ">=5.3"
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0",
"satooshi/php-coveralls": ">=1.0"
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^5 || ^6.5"
},
"type": "library",
"autoload": {
@ -2137,7 +2141,7 @@
}
],
"description": "A polyfill for getallheaders.",
"time": "2016-02-11T07:05:27+00:00"
"time": "2019-03-08T08:55:37+00:00"
},
{
"name": "ratchet/pawl",
@ -2239,16 +2243,16 @@
},
{
"name": "react/cache",
"version": "v0.5.0",
"version": "v0.6.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/cache.git",
"reference": "7d7da7fb7574d471904ba357b39bbf110ccdbf66"
"reference": "a42d149e15b8312918327d5be2ba757cd2f23ff9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/reactphp/cache/zipball/7d7da7fb7574d471904ba357b39bbf110ccdbf66",
"reference": "7d7da7fb7574d471904ba357b39bbf110ccdbf66",
"url": "https://api.github.com/repos/reactphp/cache/zipball/a42d149e15b8312918327d5be2ba757cd2f23ff9",
"reference": "a42d149e15b8312918327d5be2ba757cd2f23ff9",
"shasum": ""
},
"require": {
@ -2275,7 +2279,7 @@
"promise",
"reactphp"
],
"time": "2018-06-25T12:52:40+00:00"
"time": "2019-07-04T14:45:59+00:00"
},
{
"name": "react/child-process",
@ -2503,26 +2507,26 @@
},
{
"name": "react/promise-stream",
"version": "v1.1.1",
"version": "v1.2.0",
"source": {
"type": "git",
"url": "https://github.com/reactphp/promise-stream.git",
"reference": "00e269d611e9c9a29356aef64c07f7e513e73dc9"
"reference": "6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/reactphp/promise-stream/zipball/00e269d611e9c9a29356aef64c07f7e513e73dc9",
"reference": "00e269d611e9c9a29356aef64c07f7e513e73dc9",
"url": "https://api.github.com/repos/reactphp/promise-stream/zipball/6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe",
"reference": "6384d8b76cf7dcc44b0bf3343fb2b2928412d1fe",
"shasum": ""
},
"require": {
"php": ">=5.3",
"react/promise": "^2.1 || ^1.2",
"react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4 || ^0.3"
"react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4.6"
},
"require-dev": {
"clue/block-react": "^1.0",
"phpunit/phpunit": "^6.4 || ^5.7 || ^4.8.35",
"phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35",
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3",
"react/promise-timer": "^1.0"
},
@ -2555,7 +2559,7 @@
"stream",
"unwrap"
],
"time": "2017-12-22T12:02:05+00:00"
"time": "2019-07-03T12:29:10+00:00"
},
{
"name": "react/promise-timer",

10
locales/ach.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Acoli (http://www.transifex.com/movim/movim/language/ach/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/ady.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Adyghe (http://www.transifex.com/movim/movim/language/ady/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/af.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Afrikaans (http://www.transifex.com/movim/movim/language/af/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/am.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/movim/movim/language/am_ET/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/ar.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Arabic (http://www.transifex.com/movim/movim/language/ar/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/be.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Belarusian (http://www.transifex.com/movim/movim/language/be/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/bg.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Bulgarian (http://www.transifex.com/movim/movim/language/bg/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/bn.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Bengali (http://www.transifex.com/movim/movim/language/bn/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/br.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Breton (http://www.transifex.com/movim/movim/language/br/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/ca.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Catalan (http://www.transifex.com/movim/movim/language/ca/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/cs.po

@ -97,7 +97,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/movim/movim/language/cs_CZ/)\n"
@ -1452,6 +1452,10 @@ msgstr "Stav aktualizován"
msgid "Presence"
msgstr "Přítomnost"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1464,6 +1468,10 @@ msgstr "Napsat příspěvek"
msgid "Add a link"
msgstr "Přidat odkaz"
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Zadejte prosím nadpis"

10
locales/da.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Danish (http://www.transifex.com/movim/movim/language/da/)\n"
@ -1449,6 +1449,10 @@ msgstr "Status opdateret"
msgid "Presence"
msgstr "Tilstedeværelse"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Angiv venligst en titel"

15
locales/de.po

@ -110,7 +110,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Thomas Thomas <fix@kippenbergs.de>\n"
"Language-Team: German (http://www.transifex.com/movim/movim/language/de/)\n"
@ -1467,6 +1467,11 @@ msgstr "Status aktualisiert"
msgid "Presence"
msgstr "Anwesenend"
#: [status]logout_confirm
#, fuzzy
msgid "Do you really want to log out?"
msgstr "Sind Sie sicher, dass sie löschen wollen?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr "Was gibt es neues?"
@ -1479,6 +1484,11 @@ msgstr "Einen Post schreiben"
msgid "Add a link"
msgstr "Link hinzufügen"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Datei oder Bild hinzufügen"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Bitte einen Titel angeben"
@ -2691,9 +2701,6 @@ msgstr "Die API ist nicht erreichbar, bitte später erneut versuchen"
msgid "Type here"
msgstr "Hier schreiben"
#~ msgid "Are you sure that you want to delete it?"
#~ msgstr "Sind Sie sicher, dass sie löschen wollen?"
#~ msgid "Privacy Level"
#~ msgstr "Privatsphärenstufe"

10
locales/el.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Greek (http://www.transifex.com/movim/movim/language/el/)\n"
@ -1446,6 +1446,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1458,6 +1462,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

15
locales/en.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: English (http://www.transifex.com/movim/movim/language/en/)\n"
@ -1451,6 +1451,11 @@ msgstr "Status updated"
msgid "Presence"
msgstr "Presence"
#: [status]logout_confirm
#, fuzzy
msgid "Do you really want to log out?"
msgstr "Are you sure that you want to delete it?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr "What’s new?"
@ -1463,6 +1468,11 @@ msgstr "Write a post"
msgid "Add a link"
msgstr "Add a link"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Add a file or a picture"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Please provide a title"
@ -2675,9 +2685,6 @@ msgstr "The API is not reachable, try again later"
msgid "Type here"
msgstr "Type here"
#~ msgid "Are you sure that you want to delete it?"
#~ msgstr "Are you sure that you want to delete it?"
#~ msgid "Privacy Level"
#~ msgstr "Privacy Level"

10
locales/eo.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Esperanto (http://www.transifex.com/movim/movim/language/eo/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/es.po

@ -101,7 +101,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Spanish (http://www.transifex.com/movim/movim/language/es/)\n"
@ -1457,6 +1457,10 @@ msgstr "Estado actualizado"
msgid "Presence"
msgstr "Presencia"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1469,6 +1473,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Por favor, agrega un título"

10
locales/eu.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Basque (http://www.transifex.com/movim/movim/language/eu/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/fa.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Persian (http://www.transifex.com/movim/movim/language/fa/)\n"
@ -1449,6 +1449,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/fi.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Finnish (http://www.transifex.com/movim/movim/language/fi/)\n"
@ -1449,6 +1449,10 @@ msgstr "Tila päivitetty"
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Anna otsikko"

12
locales/fr.po

@ -102,8 +102,8 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"PO-Revision-Date: 2019-06-13 14:02+0000\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2019-07-05 09:31+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: French (France) (http://www.transifex.com/movim/movim/language/fr_FR/)\n"
"Language: fr_FR\n"
@ -1452,6 +1452,10 @@ msgstr "Statut mis à jour"
msgid "Presence"
msgstr "Présence"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr "Souhaitez-vous réellement vous déconnecter ?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr "Quoi de neuf ?"
@ -1464,6 +1468,10 @@ msgstr "Écrire un billet"
msgid "Add a link"
msgstr "Ajouter un lien"
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr "Prendre une photo"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Veuillez mettre un titre à votre publication"

10
locales/ga.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Irish (http://www.transifex.com/movim/movim/language/ga/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/gl.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Galician (http://www.transifex.com/movim/movim/language/gl/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/he.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Hebrew (http://www.transifex.com/movim/movim/language/he/)\n"
@ -1449,6 +1449,10 @@ msgstr "מצב עודכן"
msgid "Presence"
msgstr "נוכחות"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "אנא ספק כותרת"

10
locales/hr.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Croatian (http://www.transifex.com/movim/movim/language/hr/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

14
locales/hu.po

@ -99,7 +99,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Zsolt <maxigaz@protonmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/movim/movim/language/hu/)\n"
@ -1453,6 +1453,11 @@ msgstr "Állapot frissítve"
msgid "Presence"
msgstr "Jelenlét"
#: [status]logout_confirm
#, fuzzy
msgid "Do you really want to log out?"
msgstr "Biztosan törölni akarod?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1465,6 +1470,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Kérlek adj címet neki"
@ -2675,9 +2684,6 @@ msgstr "Az API nem elérhető, próbáld újra később"
msgid "Type here"
msgstr "Ide írj"
#~ msgid "Are you sure that you want to delete it?"
#~ msgstr "Biztosan törölni akarod?"
#~ msgid "Privacy Level"
#~ msgstr "Magánszféra szintje"

10
locales/id.po

@ -97,7 +97,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Indonesian (http://www.transifex.com/movim/movim/language/id/)\n"
@ -1451,6 +1451,10 @@ msgstr "Status diperbarui"
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1463,6 +1467,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/io.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Ido (http://www.transifex.com/movim/movim/language/io/)\n"
@ -1448,6 +1448,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1460,6 +1464,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/is.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Icelandic (http://www.transifex.com/movim/movim/language/is/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

11
locales/it.po

@ -102,7 +102,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Italian (http://www.transifex.com/movim/movim/language/it/)\n"
@ -1459,6 +1459,10 @@ msgstr "Stato aggiornato"
msgid "Presence"
msgstr "Presenza"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1471,6 +1475,11 @@ msgstr "Scrivi un post"
msgid "Add a link"
msgstr "Aggiungi un link"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Aggiungi un file o immagine"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Per favore inserisci un titolo"

10
locales/ja.po

@ -98,7 +98,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Japanese (http://www.transifex.com/movim/movim/language/ja/)\n"
@ -1451,6 +1451,10 @@ msgstr "ステータスを更新しました"
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1463,6 +1467,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/jbo.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Lojban (http://www.transifex.com/movim/movim/language/jbo/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/kk.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Kazakh (http://www.transifex.com/movim/movim/language/kk/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/ko.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Korean (http://www.transifex.com/movim/movim/language/ko/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/lb.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Luxembourgish (http://www.transifex.com/movim/movim/language/lb/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/lt.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Lithuanian (http://www.transifex.com/movim/movim/language/lt/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/lv.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Latvian (http://www.transifex.com/movim/movim/language/lv/)\n"
@ -1448,6 +1448,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1460,6 +1464,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/messages.pot

@ -93,7 +93,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -1490,6 +1490,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1502,6 +1506,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

11
locales/nb.po

@ -99,7 +99,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/movim/movim/language/nb_NO/)\n"
@ -1456,6 +1456,10 @@ msgstr "Statusen er oppdatert"
msgid "Presence"
msgstr "Tilstedeværelse"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1468,6 +1472,11 @@ msgstr "Skriv en melding"
msgid "Add a link"
msgstr "Legg til lenke"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Legge til en fil eller et bilde"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Lag en overskrift"

10
locales/ne.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Nepali (http://www.transifex.com/movim/movim/language/ne/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/nl.po

@ -102,7 +102,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Dutch (http://www.transifex.com/movim/movim/language/nl/)\n"
@ -1457,6 +1457,10 @@ msgstr "status bijgewerkt"
msgid "Presence"
msgstr "aanwezigheid"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1469,6 +1473,10 @@ msgstr "Schrijf een bericht"
msgid "Add a link"
msgstr "Voeg een link toe"
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Geef een titel in"

10
locales/oc.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/movim/movim/language/oc/)\n"
@ -1444,6 +1444,10 @@ msgstr "Estatut mes a jorn"
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/pl.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Polish (http://www.transifex.com/movim/movim/language/pl/)\n"
@ -1453,6 +1453,10 @@ msgstr "Zaktualizowano status"
msgid "Presence"
msgstr "Obecność"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1465,6 +1469,10 @@ msgstr "Napisz posta"
msgid "Add a link"
msgstr "Załącz link"
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Proszę podać tytuł"

10
locales/pt.po

@ -97,7 +97,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Portuguese (http://www.transifex.com/movim/movim/language/pt/)\n"
@ -1449,6 +1449,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

15
locales/pt_br.po

@ -102,7 +102,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Christopher Ribeiro <christo_campiglia@hotmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/movim/movim/language/pt_BR/)\n"
@ -1461,6 +1461,11 @@ msgstr "Estado atualizado"
msgid "Presence"
msgstr "Presente"
#: [status]logout_confirm
#, fuzzy
msgid "Do you really want to log out?"
msgstr "Certeza que deseja excluir isto?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr "O que há de novo?"
@ -1473,6 +1478,11 @@ msgstr "Escrever uma postagem"
msgid "Add a link"
msgstr "Adicionar um novo endereço"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Adicione um arquivo ou imagem"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Por favor forneça um título"
@ -2685,9 +2695,6 @@ msgstr "A API está inalcançável, tente mais tarde"
msgid "Type here"
msgstr "Digite aqui"
#~ msgid "Are you sure that you want to delete it?"
#~ msgstr "Certeza que deseja excluir isto?"
#~ msgid "Privacy Level"
#~ msgstr "Nível de privacidade"

10
locales/ro.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Romanian (http://www.transifex.com/movim/movim/language/ro/)\n"
@ -1446,6 +1446,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1458,6 +1462,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

11
locales/ru.po

@ -106,7 +106,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Russian (http://www.transifex.com/movim/movim/language/ru/)\n"
@ -1463,6 +1463,10 @@ msgstr "Статус обновлен"
msgid "Presence"
msgstr "Присутствие"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1475,6 +1479,11 @@ msgstr "Напишите пост"
msgid "Add a link"
msgstr "Добавьте ссылку"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Добавить файл или картинку"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Заголовок"

10
locales/sk.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/movim/movim/language/sk_SK/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/sl.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Slovenian (http://www.transifex.com/movim/movim/language/sl/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

15
locales/sq.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Besnik <besnik@programeshqip.org>\n"
"Language-Team: Albanian (http://www.transifex.com/movim/movim/language/sq/)\n"
@ -1451,6 +1451,11 @@ msgstr "Gjendja u përditësua"
msgid "Presence"
msgstr "Prani"
#: [status]logout_confirm
#, fuzzy
msgid "Do you really want to log out?"
msgstr "Jeni i sigurt se doni të fshihet?"
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr "Ç’ka të re?"
@ -1463,6 +1468,11 @@ msgstr "Shkruani një postim"
msgid "Add a link"
msgstr "Shtoni një lidhje"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "Shtoni një kartelë ose një foto"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "Ju lutemi, jepni një titull"
@ -2673,9 +2683,6 @@ msgstr "API nuk kapet dot, riprovoni më vonë"
msgid "Type here"
msgstr "Shtypni këtu"
#~ msgid "Are you sure that you want to delete it?"
#~ msgstr "Jeni i sigurt se doni të fshihet?"
#~ msgid "Privacy Level"
#~ msgstr "Shkallë Privatësie"

10
locales/sv.po

@ -96,7 +96,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Swedish (http://www.transifex.com/movim/movim/language/sv/)\n"
@ -1446,6 +1446,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1458,6 +1462,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/sw.po

@ -94,7 +94,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Swahili (http://www.transifex.com/movim/movim/language/sw/)\n"
@ -1444,6 +1444,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1456,6 +1460,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/tr.po

@ -97,7 +97,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Turkish (http://www.transifex.com/movim/movim/language/tr/)\n"
@ -1447,6 +1447,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1459,6 +1463,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

10
locales/uk.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Ukrainian (http://www.transifex.com/movim/movim/language/uk/)\n"
@ -1445,6 +1445,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1457,6 +1461,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

11
locales/zh.po

@ -102,7 +102,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/movim/movim/language/zh_CN/)\n"
@ -1459,6 +1459,10 @@ msgstr "状态已更新"
msgid "Presence"
msgstr "在线"
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1471,6 +1475,11 @@ msgstr "发一篇帖子…"
msgid "Add a link"
msgstr "添加链接"
#: [publishbrief]add_snap
#, fuzzy
msgid "Take a picture"
msgstr "附加文件或图片"
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr "请提供一个标题"

10
locales/zh_tw.po

@ -95,7 +95,7 @@ msgid ""
msgstr ""
"Project-Id-Version: movim\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-13 15:58+0200\n"
"POT-Creation-Date: 2019-07-05 11:28+0200\n"
"PO-Revision-Date: 2018-09-18 06:12+0000\n"
"Last-Translator: Jaussoin Timothée <edhelas@movim.eu>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/movim/movim/language/zh_TW/)\n"
@ -1449,6 +1449,10 @@ msgstr ""
msgid "Presence"
msgstr ""
#: [status]logout_confirm
msgid "Do you really want to log out?"
msgstr ""
#: [publishbrief]placeholder
msgid "What’s new?"
msgstr ""
@ -1461,6 +1465,10 @@ msgstr ""
msgid "Add a link"
msgstr ""
#: [publishbrief]add_snap
msgid "Take a picture"
msgstr ""
#: [publishbrief]no_title
msgid "Please provide a title"
msgstr ""

Loading…
Cancel
Save