summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--admin_site_change.php6
-rw-r--r--admin_site_logs.php6
-rw-r--r--app/Module/ClippingsCartModule.php6
-rw-r--r--app/Module/GoogleMapsModule.php2
-rw-r--r--app/Module/SlideShowModule.php5
-rw-r--r--find.php30
-rw-r--r--inverselink.php2
-rw-r--r--language/af.po10
-rw-r--r--language/ar.po10
-rw-r--r--language/bg.po10
-rw-r--r--language/bs.po10
-rw-r--r--language/ca.po10
-rw-r--r--language/cs.po10
-rw-r--r--language/da.po10
-rw-r--r--language/de.po10
-rw-r--r--language/dv.po10
-rw-r--r--language/el.po10
-rw-r--r--language/en-AU.po10
-rw-r--r--language/en-GB.po10
-rw-r--r--language/en-US.po10
-rw-r--r--language/es.po10
-rw-r--r--language/et.po10
-rw-r--r--language/fa.po10
-rw-r--r--language/fi.po10
-rw-r--r--language/fo.po10
-rw-r--r--language/fr-CA.po10
-rw-r--r--language/fr.po10
-rw-r--r--language/gl.po10
-rw-r--r--language/he.po10
-rw-r--r--language/hr.po10
-rw-r--r--language/hu.po10
-rw-r--r--language/id.po10
-rw-r--r--language/is.po10
-rw-r--r--language/it.po10
-rw-r--r--language/ja.po10
-rw-r--r--language/ka.po10
-rw-r--r--language/ko.po10
-rw-r--r--language/ln.po10
-rw-r--r--language/lt.po10
-rw-r--r--language/lv.po10
-rw-r--r--language/mi.po10
-rw-r--r--language/mr.po10
-rw-r--r--language/ms.po10
-rw-r--r--language/nb.po10
-rw-r--r--language/ne.po10
-rw-r--r--language/nl.po10
-rw-r--r--language/nn.po10
-rw-r--r--language/oc.po10
-rw-r--r--language/pl.po10
-rw-r--r--language/pt-BR.po10
-rw-r--r--language/pt.po10
-rw-r--r--language/ro.po10
-rw-r--r--language/ru.po10
-rw-r--r--language/sk.po10
-rw-r--r--language/sl.po10
-rw-r--r--language/sq.po10
-rw-r--r--language/sr-Latn.po10
-rw-r--r--language/sr.po10
-rw-r--r--language/sv.po10
-rw-r--r--language/sw.po10
-rw-r--r--language/ta.po10
-rw-r--r--language/tr.po10
-rw-r--r--language/tt.po10
-rw-r--r--language/uk.po10
-rw-r--r--language/vi.po10
-rw-r--r--language/yi.po10
-rw-r--r--language/zh-Hans.po10
-rw-r--r--language/zh-Hant.po10
68 files changed, 514 insertions, 153 deletions
diff --git a/admin_site_change.php b/admin_site_change.php
index 33ed623fdf..49ac754326 100644
--- a/admin_site_change.php
+++ b/admin_site_change.php
@@ -363,15 +363,15 @@ foreach (User::all() as $tmp_user) {
<div class="row text-center">
<button type="submit" class="btn btn-primary">
- <?php echo I18N::translate('Filter') ?>
+ <?php echo I18N::translate('search') ?>
</button>
<button type="submit" class="btn btn-primary" onclick="document.logs.action.value='export';return true;" <?php echo $action === 'show' ? '' : 'disabled' ?>>
- <?php echo I18N::translate('Export') ?>
+ <?php echo /* I18N: A button label. */ I18N::translate('download') ?>
</button>
<button type="submit" class="btn btn-primary" onclick="if (confirm('<?php echo I18N::translate('Permanently delete these records?') ?>')) {document.logs.action.value='delete'; return true;} else {return false;}" <?php echo $action === 'show' ? '' : 'disabled' ?>>
- <?php echo I18N::translate('Delete') ?>
+ <?php echo I18N::translate('delete') ?>
</button>
</div>
</form>
diff --git a/admin_site_logs.php b/admin_site_logs.php
index d138e7eb03..a6c99d353d 100644
--- a/admin_site_logs.php
+++ b/admin_site_logs.php
@@ -303,15 +303,15 @@ foreach (User::all() as $tmp_user) {
<div class="row text-center">
<button type="submit" class="btn btn-primary">
- <?php echo I18N::translate('Filter') ?>
+ <?php echo I18N::translate('search') ?>
</button>
<button type="submit" class="btn btn-primary" onclick="document.logs.action.value='export';return true;" <?php echo $action === 'show' ? '' : 'disabled' ?>>
- <?php echo I18N::translate('Export') ?>
+ <?php /* I18N: A button label. */ I18N::translate('download') ?>
</button>
<button type="submit" class="btn btn-primary" onclick="if (confirm('<?php echo I18N::translate('Permanently delete these records?') ?>')) {document.logs.action.value='delete'; return true;} else {return false;}" <?php echo $action === 'show' ? '' : 'disabled' ?>>
- <?php echo I18N::translate('Delete') ?>
+ <?php echo I18N::translate('delete') ?>
</button>
</div>
</form>
diff --git a/app/Module/ClippingsCartModule.php b/app/Module/ClippingsCartModule.php
index 6a870724b9..6ebc4bd25c 100644
--- a/app/Module/ClippingsCartModule.php
+++ b/app/Module/ClippingsCartModule.php
@@ -429,7 +429,7 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface,
<tr>
<td class="topbottombar" colspan="2">
- <input type="submit" value="<?php echo I18N::translate('Download'); ?>">
+ <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('download'); ?>">
</td>
</tr>
</table>
@@ -793,8 +793,8 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface,
</td></tr>
<tr><td class="topbottombar" colspan="2">
- <input type="button" value="' . I18N::translate('Cancel') . '" onclick="cancelDownload();">
- <input type="submit" value="' . I18N::translate('Download') . '">
+ <input type="button" value="' . /* I18N: A button label. */ I18N::translate('cancel') . '" onclick="cancelDownload();">
+ <input type="submit" value="' . /* I18N: A button label. */ I18N::translate('download') . '">
</form>';
return $out;
diff --git a/app/Module/GoogleMapsModule.php b/app/Module/GoogleMapsModule.php
index 91c31d57fb..0df318ab2a 100644
--- a/app/Module/GoogleMapsModule.php
+++ b/app/Module/GoogleMapsModule.php
@@ -4211,7 +4211,7 @@ class GoogleMapsModule extends AbstractModule implements ModuleConfigInterface,
</div>
<button type="submit" class="btn btn-default">
<i class="fa fa-download"></i>
- <?php echo I18N::translate('Download') ?>
+ <?php echo /* I18N: A button label. */ I18N::translate('download') ?>
</button>
</div>
</div>
diff --git a/app/Module/SlideShowModule.php b/app/Module/SlideShowModule.php
index befb2c35ac..9fa39f2373 100644
--- a/app/Module/SlideShowModule.php
+++ b/app/Module/SlideShowModule.php
@@ -296,9 +296,10 @@ class SlideShowModule extends AbstractModule implements ModuleBlockInterface {
'video' => $this->getBlockSetting($block_id, 'filter_video', '0'),
);
- echo '<tr><td class="descriptionbox wrap width33">';
- echo I18N::translate('Filter');
?>
+ <tr>
+ <td class="descriptionbox wrap width33">
+ <?php echo I18N::translate('Filter'); ?>
</td>
<td class="optionbox">
<center><b><?php echo GedcomTag::getLabel('FORM'); ?></b></center>
diff --git a/find.php b/find.php
index 2df21abd13..2d3f2e08f3 100644
--- a/find.php
+++ b/find.php
@@ -151,7 +151,7 @@ if ($type == "indi") {
echo $filter;
}
echo '" autofocus>
- <input type="submit" value="', I18N::translate('Filter'), '">
+ <input type="submit" value="', I18N::translate('search'), '">
</form></div>';
}
@@ -168,14 +168,14 @@ if ($type == "fam") {
echo $filter;
}
echo '" autofocus>
- <input type="submit" value="', I18N::translate('Filter'), '">
+ <input type="submit" value="', I18N::translate('search'), '">
</form></div>';
}
// Show media and hide the rest
if ($type == 'media') {
echo '<div id="find-header">
- <form name="filtermedia" method="get" onsubmit="return checknames(this);" action="find.php">
+ <form name="filtermedia" method="get" action="find.php">
<input type="hidden" name="choose" value="', $choose, '">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="media">
@@ -187,16 +187,14 @@ if ($type == 'media') {
echo $filter;
}
echo '" autofocus>',
- '<p class="small text-muted">', I18N::translate('Simple search filter based on the characters entered, no wildcards are accepted.'), '</p>',
- '<p><input type="submit" name="search" value="', I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
- <input type="submit" name="all" value="', I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
+ '<p><input type="submit" name="search" value="', I18N::translate('search'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show place and hide the rest
if ($type == "place") {
echo '<div id="find-header">
- <form name="filterplace" method="get" onsubmit="return checknames(this);" action="find.php">
+ <form name="filterplace" method="get" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="place">
<input type="hidden" name="callback" value="', $callback, '">
@@ -207,15 +205,14 @@ if ($type == "place") {
echo $filter;
}
echo '" autofocus>
- <p><input type="submit" name="search" value="', I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
- <input type="submit" name="all" value="', I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
+ <p><input type="submit" name="search" value="', I18N::translate('search'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show repo and hide the rest
if ($type == "repo") {
echo '<div id="find-header">
- <form name="filterrepo" method="get" onsubmit="return checknames(this);" action="find.php">
+ <form name="filterrepo" method="get" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="repo">
<input type="hidden" name="callback" value="', $callback, '">
@@ -226,8 +223,7 @@ if ($type == "repo") {
echo $filter;
}
echo '" autofocus>
- <p><input type="submit" name="search" value="', I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
- <input type="submit" name="all" value="', I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
+ <p><input type="submit" name="search" value="', I18N::translate('search'), '" onclick="this.form.subclick.value=this.name">
</td></tr></table>
</p></form></div>';
}
@@ -235,7 +231,7 @@ if ($type == "repo") {
// Show Shared Notes and hide the rest
if ($type == "note") {
echo '<div id="find-header">
- <form name="filternote" method="get" onsubmit="return checknames(this);" action="find.php">
+ <form name="filternote" method="get" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="note">
<input type="hidden" name="callback" value="', $callback, '">
@@ -246,15 +242,14 @@ if ($type == "note") {
echo $filter;
}
echo '" autofocus>
- <p><input type="submit" name="search" value="', I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
- <input type="submit" name="all" value="', I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
+ <p><input type="submit" name="search" value="', I18N::translate('search'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show source and hide the rest
if ($type == "source") {
echo '<div id="find-header">
- <form name="filtersource" method="get" onsubmit="return checknames(this);" action="find.php">
+ <form name="filtersource" method="get" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="source">
<input type="hidden" name="callback" value="', $callback, '">
@@ -265,8 +260,7 @@ if ($type == "source") {
echo $filter;
}
echo '" autofocus>
- <p><input type="submit" name="search" value="', I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
- <input type="submit" name="all" value="', I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
+ <p><input type="submit" name="search" value="', I18N::translate('search'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
diff --git a/inverselink.php b/inverselink.php
index 08ecc45528..d4a6074b6e 100644
--- a/inverselink.php
+++ b/inverselink.php
@@ -149,7 +149,7 @@ if ($linkto == 'manage' && Module::getModuleByName('GEDFact_assistant')) {
}
echo '</td></tr>';
- echo '<tr><td class="topbottombar" colspan="2"><input type="submit" value="', I18N::translate('Set link'), '"></td></tr>';
+ echo '<tr><td class="topbottombar" colspan="2"><input type="submit" value="', /* I18N: A button label (a verb). */ I18N::translate('link'), '"></td></tr>';
echo '</table>';
echo '</form>';
} elseif ($action == "update" && $paramok) {
diff --git a/language/af.po b/language/af.po
index 1a653353b3..fd835eeabf 100644
--- a/language/af.po
+++ b/language/af.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Skrap"
#. I18N: Name of a country or state
@@ -12204,7 +12205,8 @@ msgid "Set as default"
msgstr "Maak dit die verstekwaarde"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Maak koppeling"
#. I18N: You need to:
@@ -20404,3 +20406,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoem="
+
+#, fuzzy
+msgid "download"
+msgstr "aflaai"
diff --git a/language/ar.po b/language/ar.po
index 4035d2758c..bae74fd2c9 100644
--- a/language/ar.po
+++ b/language/ar.po
@@ -3455,7 +3455,8 @@ msgid "Canada"
msgstr "كندا"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "إلغاء"
#. I18N: Name of a country or state
@@ -12327,7 +12328,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "ربط"
#. I18N: You need to:
@@ -20583,3 +20585,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "تكبير"
+
+#, fuzzy
+msgid "download"
+msgstr "تنزيل"
diff --git a/language/bg.po b/language/bg.po
index 85b5f11218..40a4f40fe8 100644
--- a/language/bg.po
+++ b/language/bg.po
@@ -3331,7 +3331,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Откажи"
#. I18N: Name of a country or state
@@ -12188,7 +12189,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Настрой препратка"
#. I18N: You need to:
@@ -20352,3 +20354,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Мащабен фактор (Zoom)="
+
+#, fuzzy
+msgid "download"
+msgstr "свали"
diff --git a/language/bs.po b/language/bs.po
index 1d76c1662a..ef3adef34e 100644
--- a/language/bs.po
+++ b/language/bs.po
@@ -3360,7 +3360,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Odustani"
#. I18N: Name of a country or state
@@ -12219,7 +12220,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Postavi vezu"
#. I18N: You need to:
@@ -20383,3 +20385,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "preuzimanje"
diff --git a/language/ca.po b/language/ca.po
index 4c1086132f..60e934a8ce 100644
--- a/language/ca.po
+++ b/language/ca.po
@@ -3338,7 +3338,8 @@ msgid "Canada"
msgstr "Canadà"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancel·la"
#. I18N: Name of a country or state
@@ -12208,7 +12209,8 @@ msgid "Set as default"
msgstr "Predeterminat"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Enllaça’l"
#. I18N: You need to:
@@ -20405,3 +20407,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "descarrega"
diff --git a/language/cs.po b/language/cs.po
index c8b80b5360..6e42dc7d5a 100644
--- a/language/cs.po
+++ b/language/cs.po
@@ -3370,7 +3370,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Zrušit"
#. I18N: Name of a country or state
@@ -12243,7 +12244,8 @@ msgid "Set as default"
msgstr "Nastavit jako výchozí"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Nastavit odkaz"
#. I18N: You need to:
@@ -20454,3 +20456,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "stáhnout"
diff --git a/language/da.po b/language/da.po
index 77e0cd4a9c..68ce0b8626 100644
--- a/language/da.po
+++ b/language/da.po
@@ -3339,7 +3339,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Afbryd"
#. I18N: Name of a country or state
@@ -12202,7 +12203,8 @@ msgid "Set as default"
msgstr "Sæt som standard"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Sæt reference"
#. I18N: You need to:
@@ -20419,3 +20421,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "download"
diff --git a/language/de.po b/language/de.po
index 8ed472643d..ae39be36b9 100644
--- a/language/de.po
+++ b/language/de.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Abbrechen"
#. I18N: Name of a country or state
@@ -12204,7 +12205,8 @@ msgid "Set as default"
msgstr "Als Standard setzen"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Verbindung setzen"
#. I18N: You need to:
@@ -20401,3 +20403,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "herunterladen"
diff --git a/language/dv.po b/language/dv.po
index 8c98e1d03b..0e9a360831 100644
--- a/language/dv.po
+++ b/language/dv.po
@@ -3298,7 +3298,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12145,7 +12146,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20161,3 +20163,7 @@ msgstr ""
msgctxt "Unknown surname"
msgid "…"
msgstr ""
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/el.po b/language/el.po
index 1cb36d570a..e0052b1a4e 100644
--- a/language/el.po
+++ b/language/el.po
@@ -3336,7 +3336,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Άκυρο"
#. I18N: Name of a country or state
@@ -12193,7 +12194,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Ορισμός συνδέσμου"
#. I18N: You need to:
@@ -20351,3 +20353,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "λήψη"
diff --git a/language/en-AU.po b/language/en-AU.po
index 8299fd1615..15a24f9b49 100644
--- a/language/en-AU.po
+++ b/language/en-AU.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancel"
#. I18N: Name of a country or state
@@ -12204,7 +12205,8 @@ msgid "Set as default"
msgstr "Set as default"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Set link"
#. I18N: You need to:
@@ -20398,3 +20400,7 @@ msgstr "…"
#~ msgid "jours complementaires"
#~ msgstr "jours complémentaires"
+
+#, fuzzy
+msgid "download"
+msgstr "download"
diff --git a/language/en-GB.po b/language/en-GB.po
index a655388b49..bfa295e666 100644
--- a/language/en-GB.po
+++ b/language/en-GB.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancel"
#. I18N: Name of a country or state
@@ -12204,7 +12205,8 @@ msgid "Set as default"
msgstr "Set as default"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Set link"
#. I18N: You need to:
@@ -20398,3 +20400,7 @@ msgstr "…"
#~ msgid "jours complementaires"
#~ msgstr "jours complémentaires"
+
+#, fuzzy
+msgid "download"
+msgstr "download"
diff --git a/language/en-US.po b/language/en-US.po
index 828ab8f264..8c274ac7c4 100644
--- a/language/en-US.po
+++ b/language/en-US.po
@@ -3329,7 +3329,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12179,7 +12180,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20206,3 +20208,7 @@ msgstr ""
msgctxt "Unknown surname"
msgid "…"
msgstr ""
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/es.po b/language/es.po
index 32870731ff..2e77d5f9aa 100644
--- a/language/es.po
+++ b/language/es.po
@@ -3340,7 +3340,8 @@ msgid "Canada"
msgstr "Canadá"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancelar"
#. I18N: Name of a country or state
@@ -12203,7 +12204,8 @@ msgid "Set as default"
msgstr "Establecer por defecto"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Fijar vínculo"
#. I18N: You need to:
@@ -20420,3 +20422,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Ampliación="
+
+#, fuzzy
+msgid "download"
+msgstr "descargar"
diff --git a/language/et.po b/language/et.po
index 14266c1285..2268f42647 100644
--- a/language/et.po
+++ b/language/et.po
@@ -3339,7 +3339,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Tühista"
#. I18N: Name of a country or state
@@ -12209,7 +12210,8 @@ msgid "Set as default"
msgstr "Seadke vaikimisi"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Seosta"
#. I18N: You need to:
@@ -20406,3 +20408,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Suurenda="
+
+#, fuzzy
+msgid "download"
+msgstr "lae alla"
diff --git a/language/fa.po b/language/fa.po
index 4bc11958c7..f49984778f 100644
--- a/language/fa.po
+++ b/language/fa.po
@@ -3311,7 +3311,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "لغو"
#. I18N: Name of a country or state
@@ -12164,7 +12165,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "ثبت لینک"
#. I18N: You need to:
@@ -20247,3 +20249,7 @@ msgstr ""
#~ msgid "Website and META tag settings"
#~ msgstr "تنظیمات متا و تگ های سیستم"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/fi.po b/language/fi.po
index 8c44f931f7..6331a51991 100644
--- a/language/fi.po
+++ b/language/fi.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Peruuta"
#. I18N: Name of a country or state
@@ -12193,7 +12194,8 @@ msgid "Set as default"
msgstr "Aseta oletukseksi"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Liitä"
#. I18N: You need to:
@@ -20402,3 +20404,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoomaus="
+
+#, fuzzy
+msgid "download"
+msgstr "lataa"
diff --git a/language/fo.po b/language/fo.po
index f5ffbf284e..b02b519d86 100644
--- a/language/fo.po
+++ b/language/fo.po
@@ -3329,7 +3329,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Ógilda"
#. I18N: Name of a country or state
@@ -12179,7 +12180,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20210,3 +20212,7 @@ msgstr ""
msgctxt "Unknown surname"
msgid "…"
msgstr ""
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/fr-CA.po b/language/fr-CA.po
index 36e8e345ae..1fbace6b69 100644
--- a/language/fr-CA.po
+++ b/language/fr-CA.po
@@ -3336,7 +3336,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Annuler"
#. I18N: Name of a country or state
@@ -12195,7 +12196,8 @@ msgid "Set as default"
msgstr "Définir par défaut"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Mettre un lien"
#. I18N: You need to:
@@ -20403,3 +20405,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "télécharger"
diff --git a/language/fr.po b/language/fr.po
index 30932e5083..cd4c3ebc19 100644
--- a/language/fr.po
+++ b/language/fr.po
@@ -3338,7 +3338,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Annuler"
#. I18N: Name of a country or state
@@ -12208,7 +12209,8 @@ msgid "Set as default"
msgstr "Définir par défaut"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Spécifier un lien"
#. I18N: You need to:
@@ -20405,3 +20407,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "télécharger (download)"
diff --git a/language/gl.po b/language/gl.po
index b8257683b9..a0014dc0f2 100644
--- a/language/gl.po
+++ b/language/gl.po
@@ -3330,7 +3330,8 @@ msgid "Canada"
msgstr "Canadá"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Anular"
#. I18N: Name of a country or state
@@ -12186,7 +12187,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Poñer vínculo"
#. I18N: You need to:
@@ -20317,3 +20319,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "descargar"
diff --git a/language/he.po b/language/he.po
index 9123c2c82f..32c728092c 100644
--- a/language/he.po
+++ b/language/he.po
@@ -3338,7 +3338,8 @@ msgid "Canada"
msgstr "קנדה"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "בטל"
#. I18N: Name of a country or state
@@ -12197,7 +12198,8 @@ msgid "Set as default"
msgstr "הוגדר כברירת מחדל"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "הצב קישור"
#. I18N: You need to:
@@ -20406,3 +20408,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "זום="
+
+#, fuzzy
+msgid "download"
+msgstr "הורד"
diff --git a/language/hr.po b/language/hr.po
index a095b566dc..1b6eeb2136 100644
--- a/language/hr.po
+++ b/language/hr.po
@@ -3368,7 +3368,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Odustani"
#. I18N: Name of a country or state
@@ -12234,7 +12235,8 @@ msgid "Set as default"
msgstr "Postavi kao zadano"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Poveži"
#. I18N: You need to:
@@ -20467,3 +20469,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zum="
+
+#, fuzzy
+msgid "download"
+msgstr "preuzimanje"
diff --git a/language/hu.po b/language/hu.po
index b46347ebf6..005b4a5939 100644
--- a/language/hu.po
+++ b/language/hu.po
@@ -3339,7 +3339,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Mégse"
#. I18N: Name of a country or state
@@ -12209,7 +12210,8 @@ msgid "Set as default"
msgstr "Legyen alapértelmezett"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Hivatkozás beállítása"
#. I18N: You need to:
@@ -20418,3 +20420,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "letöltés"
diff --git a/language/id.po b/language/id.po
index e2e5b38900..da319974f7 100644
--- a/language/id.po
+++ b/language/id.po
@@ -3305,7 +3305,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Batal"
#. I18N: Name of a country or state
@@ -12157,7 +12158,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Tetapkan kaitan"
#. I18N: You need to:
@@ -20226,3 +20228,7 @@ msgstr ""
#~ msgid "USA"
#~ msgstr "AS"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/is.po b/language/is.po
index 36869b4c88..826518678c 100644
--- a/language/is.po
+++ b/language/is.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Hætta við"
#. I18N: Name of a country or state
@@ -12194,7 +12195,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Festa krækju"
#. I18N: You need to:
@@ -20404,3 +20406,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Þysja="
+
+#, fuzzy
+msgid "download"
+msgstr "hlaða niður"
diff --git a/language/it.po b/language/it.po
index 1926f8a229..dc8820b661 100644
--- a/language/it.po
+++ b/language/it.po
@@ -3341,7 +3341,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Annulla"
#. I18N: Name of a country or state
@@ -12202,7 +12203,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Imposta collegamento"
#. I18N: You need to:
@@ -20412,3 +20414,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "scarica"
diff --git a/language/ja.po b/language/ja.po
index 0deb0272d0..5a00be8717 100644
--- a/language/ja.po
+++ b/language/ja.po
@@ -3300,7 +3300,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "取消"
#. I18N: Name of a country or state
@@ -12147,7 +12148,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20234,3 +20236,7 @@ msgstr ""
#~ msgid "Zoom out here"
#~ msgstr "ここを縮小"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/ka.po b/language/ka.po
index 796f7ff89a..f85855edd9 100644
--- a/language/ka.po
+++ b/language/ka.po
@@ -3304,7 +3304,8 @@ msgid "Canada"
msgstr "კანადა"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "გაუქმება"
#. I18N: Name of a country or state
@@ -12157,7 +12158,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "მიერთება"
#. I18N: You need to:
@@ -20309,3 +20311,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "გავადიდოთ ="
+
+#, fuzzy
+msgid "download"
+msgstr "გადმოტვირთვა"
diff --git a/language/ko.po b/language/ko.po
index 2a14fe86e1..1ed0853e4d 100644
--- a/language/ko.po
+++ b/language/ko.po
@@ -3300,7 +3300,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12147,7 +12148,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20172,3 +20174,7 @@ msgstr ""
#~ msgid "Signed-in as "
#~ msgstr "으로 로그인 "
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/ln.po b/language/ln.po
index e0d8c4c18d..452c1e09f4 100644
--- a/language/ln.po
+++ b/language/ln.po
@@ -3329,7 +3329,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12179,7 +12180,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20209,3 +20211,7 @@ msgstr ""
#~ msgid "Show lifespans"
#~ msgstr "Kolakisa ewúmeli ya bomɔi"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/lt.po b/language/lt.po
index 898ae528c6..053826138f 100644
--- a/language/lt.po
+++ b/language/lt.po
@@ -3368,7 +3368,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Atšaukti"
#. I18N: Name of a country or state
@@ -12232,7 +12233,8 @@ msgid "Set as default"
msgstr "Nustatyti kaip įprastą"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Nustatykite nuorodą"
#. I18N: You need to:
@@ -20435,3 +20437,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Priartinimas="
+
+#, fuzzy
+msgid "download"
+msgstr "parsisiųsti"
diff --git a/language/lv.po b/language/lv.po
index c1cdb5fec3..f3fcd0b0fe 100644
--- a/language/lv.po
+++ b/language/lv.po
@@ -3356,7 +3356,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Atcelt"
#. I18N: Name of a country or state
@@ -12210,7 +12211,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20293,3 +20295,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Palielinājums="
+
+#, fuzzy
+msgid "download"
+msgstr "lejupielādēt"
diff --git a/language/mi.po b/language/mi.po
index cc8bf8687f..8e06d4078b 100644
--- a/language/mi.po
+++ b/language/mi.po
@@ -3327,7 +3327,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12177,7 +12178,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20207,3 +20209,7 @@ msgstr ""
msgctxt "Unknown surname"
msgid "…"
msgstr ""
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/mr.po b/language/mr.po
index fdf39ea8f2..19ba324a15 100644
--- a/language/mr.po
+++ b/language/mr.po
@@ -3330,7 +3330,8 @@ msgid "Canada"
msgstr "कॅनडा"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "रद्द करा"
#. I18N: Name of a country or state
@@ -12183,7 +12184,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "दुवा निर्धारित करा"
#. I18N: You need to:
@@ -20274,3 +20276,7 @@ msgstr ""
#~ msgid "USA"
#~ msgstr "यु एस ए"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/ms.po b/language/ms.po
index a2668cbac1..75674b4012 100644
--- a/language/ms.po
+++ b/language/ms.po
@@ -3304,7 +3304,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12154,7 +12155,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20195,3 +20197,7 @@ msgstr ""
#~ msgid "Signed-in as "
#~ msgstr "Log Masuk sebagai "
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/nb.po b/language/nb.po
index 54a133e2c3..96f66298ea 100644
--- a/language/nb.po
+++ b/language/nb.po
@@ -3334,7 +3334,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Avbryt"
#. I18N: Name of a country or state
@@ -12193,7 +12194,8 @@ msgid "Set as default"
msgstr "Sett som standard"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Angi lenke"
#. I18N: You need to:
@@ -20402,3 +20404,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "last ned"
diff --git a/language/ne.po b/language/ne.po
index 3c96aade13..dc9c0b0a65 100644
--- a/language/ne.po
+++ b/language/ne.po
@@ -3329,7 +3329,8 @@ msgid "Canada"
msgstr "क्यानाडा"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "रद्द गर्नुहोस्"
#. I18N: Name of a country or state
@@ -12180,7 +12181,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "लिकं बनाऊ"
#. I18N: You need to:
@@ -20262,3 +20264,7 @@ msgstr ""
#~ msgid "Zoom out here"
#~ msgstr "यहाँ जुम घटाउनुहोस"
+
+#, fuzzy
+msgid "download"
+msgstr "डाऊनलोड"
diff --git a/language/nl.po b/language/nl.po
index b9db3916e8..f215d92d45 100644
--- a/language/nl.po
+++ b/language/nl.po
@@ -3338,7 +3338,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Annuleer"
#. I18N: Name of a country or state
@@ -12208,7 +12209,8 @@ msgid "Set as default"
msgstr "Instellen als standaard"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Maak koppeling"
#. I18N: You need to:
@@ -20408,3 +20410,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "download"
diff --git a/language/nn.po b/language/nn.po
index ec3e8e624d..383e100396 100644
--- a/language/nn.po
+++ b/language/nn.po
@@ -3333,7 +3333,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Avbryt"
#. I18N: Name of a country or state
@@ -12183,7 +12184,8 @@ msgid "Set as default"
msgstr "Set som standard"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Lag lenke"
#. I18N: You need to:
@@ -20380,3 +20382,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "last ned"
diff --git a/language/oc.po b/language/oc.po
index 90fdee2c72..5ec55d68de 100644
--- a/language/oc.po
+++ b/language/oc.po
@@ -3369,7 +3369,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Anullar"
#. I18N: Name of a country or state
@@ -12367,7 +12368,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20524,3 +20526,7 @@ msgstr "…"
#~ msgid "View the statistics as graphs"
#~ msgstr "Mòstrar las estatisticas en forma de grafic"
+
+#, fuzzy
+msgid "download"
+msgstr "descargar"
diff --git a/language/pl.po b/language/pl.po
index 34d22793fd..0efe0feabd 100644
--- a/language/pl.po
+++ b/language/pl.po
@@ -3368,7 +3368,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Anuluj"
#. I18N: Name of a country or state
@@ -12241,7 +12242,8 @@ msgid "Set as default"
msgstr "Ustaw jako domyślne"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Ustaw powiązanie"
#. I18N: You need to:
@@ -20452,3 +20454,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Powiększenie="
+
+#, fuzzy
+msgid "download"
+msgstr "pobierz"
diff --git a/language/pt-BR.po b/language/pt-BR.po
index e7dde11aab..2af0528e9e 100644
--- a/language/pt-BR.po
+++ b/language/pt-BR.po
@@ -3339,7 +3339,8 @@ msgid "Canada"
msgstr "Canadá"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancelar"
#. I18N: Name of a country or state
@@ -12202,7 +12203,8 @@ msgid "Set as default"
msgstr "Definir como padrão"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Preparar link"
#. I18N: You need to:
@@ -20419,3 +20421,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "baixar"
diff --git a/language/pt.po b/language/pt.po
index b07777d557..e8adf52802 100644
--- a/language/pt.po
+++ b/language/pt.po
@@ -3337,7 +3337,8 @@ msgid "Canada"
msgstr "Canadá"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Cancelar"
#. I18N: Name of a country or state
@@ -12196,7 +12197,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Preparar link"
#. I18N: You need to:
@@ -20391,3 +20393,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "baixar"
diff --git a/language/ro.po b/language/ro.po
index b22e76f65d..6674423ff3 100644
--- a/language/ro.po
+++ b/language/ro.po
@@ -3360,7 +3360,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Anulează"
#. I18N: Name of a country or state
@@ -12218,7 +12219,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Setează link"
#. I18N: You need to:
@@ -20371,3 +20373,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Mărire="
+
+#, fuzzy
+msgid "download"
+msgstr "descarcă"
diff --git a/language/ru.po b/language/ru.po
index 26681be120..95d010ff79 100644
--- a/language/ru.po
+++ b/language/ru.po
@@ -3373,7 +3373,8 @@ msgid "Canada"
msgstr "Канада"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Отмена"
#. I18N: Name of a country or state
@@ -12239,7 +12240,8 @@ msgid "Set as default"
msgstr "Установить по умолчанию"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Присоединить"
#. I18N: You need to:
@@ -20469,3 +20471,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Увеличить ="
+
+#, fuzzy
+msgid "download"
+msgstr "скачать"
diff --git a/language/sk.po b/language/sk.po
index 747044b9d8..33f2721571 100644
--- a/language/sk.po
+++ b/language/sk.po
@@ -3368,7 +3368,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Zrušiť"
#. I18N: Name of a country or state
@@ -12232,7 +12233,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Nastaviť odkaz"
#. I18N: You need to:
@@ -20456,3 +20458,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoom="
+
+#, fuzzy
+msgid "download"
+msgstr "stiahnúť"
diff --git a/language/sl.po b/language/sl.po
index b419c593bc..58d0a97139 100644
--- a/language/sl.po
+++ b/language/sl.po
@@ -3392,7 +3392,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Prekini"
#. I18N: Name of a country or state
@@ -12252,7 +12253,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Vzpostavi povezavo"
#. I18N: You need to:
@@ -20396,3 +20398,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Povečava="
+
+#, fuzzy
+msgid "download"
+msgstr "prenos"
diff --git a/language/sq.po b/language/sq.po
index 12a518f2d1..00ed754d0a 100644
--- a/language/sq.po
+++ b/language/sq.po
@@ -3335,7 +3335,8 @@ msgid "Canada"
msgstr "Kanadaja"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Anulo"
#. I18N: Name of a country or state
@@ -12198,7 +12199,8 @@ msgid "Set as default"
msgstr "Përcakto si të parazgjedhur"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Përcakto lidhjen"
#. I18N: You need to:
@@ -20355,3 +20357,7 @@ msgstr ""
#~ msgid "Zoom out here"
#~ msgstr "Zvogëlo këtu"
+
+#, fuzzy
+msgid "download"
+msgstr "shkarko"
diff --git a/language/sr-Latn.po b/language/sr-Latn.po
index e84dd835ee..96e5ee391e 100644
--- a/language/sr-Latn.po
+++ b/language/sr-Latn.po
@@ -3363,7 +3363,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Poništi"
#. I18N: Name of a country or state
@@ -12218,7 +12219,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20287,3 +20289,7 @@ msgstr ""
#~ msgid "USA"
#~ msgstr "ZDA"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/sr.po b/language/sr.po
index d78d1d674c..9b3c3ae52e 100644
--- a/language/sr.po
+++ b/language/sr.po
@@ -3363,7 +3363,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Poništi"
#. I18N: Name of a country or state
@@ -12218,7 +12219,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20280,3 +20282,7 @@ msgstr ""
#~ msgid "USA"
#~ msgstr "ZDA"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/sv.po b/language/sv.po
index 467a53bf78..6b8f6a5ccc 100644
--- a/language/sv.po
+++ b/language/sv.po
@@ -3338,7 +3338,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Avbryt"
#. I18N: Name of a country or state
@@ -12197,7 +12198,8 @@ msgid "Set as default"
msgstr "Ange som standard"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Sätt länk"
#. I18N: You need to:
@@ -20409,3 +20411,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Zoomning="
+
+#, fuzzy
+msgid "download"
+msgstr "ladda ner"
diff --git a/language/sw.po b/language/sw.po
index a8ccb03976..c5217814b0 100644
--- a/language/sw.po
+++ b/language/sw.po
@@ -3329,7 +3329,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12179,7 +12180,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20206,3 +20208,7 @@ msgstr ""
msgctxt "Unknown surname"
msgid "…"
msgstr ""
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/ta.po b/language/ta.po
index 08099d7ed7..574fabda04 100644
--- a/language/ta.po
+++ b/language/ta.po
@@ -3327,7 +3327,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12177,7 +12178,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr ""
#. I18N: You need to:
@@ -20207,3 +20209,7 @@ msgstr ""
#~ msgid "Configure"
#~ msgstr "கட்டமைப்பு"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/tr.po b/language/tr.po
index d0f91e1a24..e8c313c3ce 100644
--- a/language/tr.po
+++ b/language/tr.po
@@ -3309,7 +3309,8 @@ msgid "Canada"
msgstr "Kanada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Vazgeç"
#. I18N: Name of a country or state
@@ -12176,7 +12177,8 @@ msgid "Set as default"
msgstr "Varsayılan olarak ayarla"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Linki bağla"
#. I18N: You need to:
@@ -20379,3 +20381,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Yakınlık="
+
+#, fuzzy
+msgid "download"
+msgstr "indir"
diff --git a/language/tt.po b/language/tt.po
index 1129b1544c..f93f1005f4 100644
--- a/language/tt.po
+++ b/language/tt.po
@@ -3304,7 +3304,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Туктатырга"
#. I18N: Name of a country or state
@@ -12155,7 +12156,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Бәйләнеш өстәргә"
#. I18N: You need to:
@@ -20292,3 +20294,7 @@ msgstr ""
#~ msgid "Zoom="
#~ msgstr "Зурайту="
+
+#, fuzzy
+msgid "download"
+msgstr "бушату"
diff --git a/language/uk.po b/language/uk.po
index ba8272a330..60d780507b 100644
--- a/language/uk.po
+++ b/language/uk.po
@@ -3364,7 +3364,8 @@ msgid "Canada"
msgstr "Канада"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Скасування"
#. I18N: Name of a country or state
@@ -12230,7 +12231,8 @@ msgid "Set as default"
msgstr "Встановити за замовчуванням"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Приєднати"
#. I18N: You need to:
@@ -20460,3 +20462,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Збільшити ="
+
+#, fuzzy
+msgid "download"
+msgstr "скачати"
diff --git a/language/vi.po b/language/vi.po
index 3ba68ec2c0..4efbbb4662 100644
--- a/language/vi.po
+++ b/language/vi.po
@@ -3310,7 +3310,8 @@ msgid "Canada"
msgstr "Canada"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "Hủy bỏ"
#. I18N: Name of a country or state
@@ -12170,7 +12171,8 @@ msgid "Set as default"
msgstr "Đặt mặc định"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "Đặt mối liên kết"
#. I18N: You need to:
@@ -20376,3 +20378,7 @@ msgstr "…"
#~ msgid "Zoom="
#~ msgstr "Phóng to="
+
+#, fuzzy
+msgid "download"
+msgstr "tải về"
diff --git a/language/yi.po b/language/yi.po
index 7feeb23f33..c054fdce40 100644
--- a/language/yi.po
+++ b/language/yi.po
@@ -3330,7 +3330,8 @@ msgid "Canada"
msgstr "קאנאדע"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "רוף אָפּ"
#. I18N: Name of a country or state
@@ -12186,7 +12187,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "שטעלט רונג"
#. I18N: You need to:
@@ -20298,3 +20300,7 @@ msgstr "…"
#~ msgid "sign-in and registration"
#~ msgstr "ארײַנלאָגירן און רעגיסטראַציע"
+
+#, fuzzy
+msgid "download"
+msgstr ""
diff --git a/language/zh-Hans.po b/language/zh-Hans.po
index c1fe6010d4..26dbc8fc01 100644
--- a/language/zh-Hans.po
+++ b/language/zh-Hans.po
@@ -3311,7 +3311,8 @@ msgid "Canada"
msgstr "加拿大"
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr "取消"
#. I18N: Name of a country or state
@@ -12170,7 +12171,8 @@ msgid "Set as default"
msgstr "设为默认值"
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "设置链接"
#. I18N: You need to:
@@ -20371,3 +20373,7 @@ msgstr "缺少姓氏"
#~ msgid "Zoom="
#~ msgstr "变焦="
+
+#, fuzzy
+msgid "download"
+msgstr "下载"
diff --git a/language/zh-Hant.po b/language/zh-Hant.po
index 99ff291a1b..19552ee074 100644
--- a/language/zh-Hant.po
+++ b/language/zh-Hant.po
@@ -3300,7 +3300,8 @@ msgid "Canada"
msgstr ""
#: app/Module/ClippingsCartModule.php:796
-msgid "Cancel"
+#, fuzzy
+msgid "cancel"
msgstr ""
#. I18N: Name of a country or state
@@ -12147,7 +12148,8 @@ msgid "Set as default"
msgstr ""
#: inverselink.php:152
-msgid "Set link"
+#, fuzzy
+msgid "link"
msgstr "設定連結"
#. I18N: You need to:
@@ -20176,3 +20178,7 @@ msgstr ""
#~ msgid "System settings"
#~ msgstr "系統設定"
+
+#, fuzzy
+msgid "download"
+msgstr ""