From 1601af3cfb62340484b55c635ead39801aee8f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 27 Jul 2016 17:04:57 +0200 Subject: [PATCH 01/25] Fixes #5026 Fixed various problems (mainly PHP errors) in csv import --- ldapmanager/addons/ldapmanager/class_csvimport.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ldapmanager/addons/ldapmanager/class_csvimport.inc b/ldapmanager/addons/ldapmanager/class_csvimport.inc index 9968c81a91..bea50635cd 100644 --- a/ldapmanager/addons/ldapmanager/class_csvimport.inc +++ b/ldapmanager/addons/ldapmanager/class_csvimport.inc @@ -164,7 +164,7 @@ class csvimport extends simplePlugin $choices = array_merge($choices, array_values($attr_infos['choices'])); $this->cachedChoices[$ldapName] = array_keys($attr_infos['choices']); if (isset($attr_infos['value']) && !empty($attr_infos['value'])) { - $value = count($fields) + count($this->fixed_values) + array_search($attr_infos['value'], $this->cachedChoices[$ldapName]); + $value = count($fields) + array_search($attr_infos['value'], $this->cachedChoices[$ldapName]); } } if ($value === NULL) { @@ -178,9 +178,9 @@ class csvimport extends simplePlugin $subattribute = $this->build_attribute($fields, $class, $class_infos, $subattr, $subattr_infos); } else { $this->cachedChoices['template_'.$class.':'.$subattr] = array($attr_infos['value']); - $subattribute = new HiddenAttribute('template_'.$class.':'.$subattr, FALSE, count($fields) + count($this->fixed_values)); + $subattribute = new HiddenAttribute('template_'.$class.':'.$subattr, FALSE, count($fields)); } - $subattrs[$subattribute->getLdapName()] = $subattribute; + $subattrs[] = $subattribute; } return new CompositeAttribute( '', $ldapName, -- GitLab From ab821ea8970f135dc5d5fd2380fc0bed67ff0fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 28 Jul 2016 09:51:19 +0200 Subject: [PATCH 02/25] Fixes #5026 Blocking CSV import when there is no template --- ldapmanager/addons/ldapmanager/class_csvimport.inc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ldapmanager/addons/ldapmanager/class_csvimport.inc b/ldapmanager/addons/ldapmanager/class_csvimport.inc index bea50635cd..b5426bb9a4 100644 --- a/ldapmanager/addons/ldapmanager/class_csvimport.inc +++ b/ldapmanager/addons/ldapmanager/class_csvimport.inc @@ -128,10 +128,16 @@ class csvimport extends simplePlugin function handle_import_submit() { $this->csv_data = $this->parse_csv($this->import_file); - /* - * Add nonrequired field filling feature - * */ + + $messages = $this->check(); + if (!empty($messages)) { + msg_dialog::displayChecks($messages); + return; + } + $this->template_object = new template($this->type, $this->template_dn); + + /* Add nonrequired field filling feature */ $attributes = array(); $fields = array(); if (isset($this->csv_data[0])) { -- GitLab From 0883fe8f76a6764dd4cff9274775b2da7677879b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 28 Jul 2016 11:54:44 +0200 Subject: [PATCH 03/25] Fixes #5020 quickfix of PHP4 constructors in DHCP plugin --- dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpClass.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpHost.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpPool.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpService.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc | 2 +- dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc b/dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc index e234f6f03c..84b609de21 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpAdvanced.inc @@ -34,7 +34,7 @@ class dhcpAdvanced extends plugin var $objectclasses= array(); var $parent; - function dhcpAdvanced() + function __construct() { /* This is always an account */ $this->is_account= TRUE; diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc b/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc index ec0f03374e..2585c76d90 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc @@ -26,7 +26,7 @@ class dhcpClass extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpClass', 'dhcpOptions'); - function dhcpClass($parent,&$attrs) + function __construct($parent,&$attrs) { /* Load statements / options */ dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc b/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc index 028c907cdb..a2a5953d9d 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc @@ -37,7 +37,7 @@ class dhcpDnsZone extends dhcpPlugin var $objectclasses= array("top", "dhcpDnsZone"); - function dhcpDnsZone($parent,$attrs,$host_exists_in_gosa = FALSE) + function __construct($parent,$attrs,$host_exists_in_gosa = FALSE) { global $config; dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc b/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc index 5a202921f5..f8c18641fa 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc @@ -26,7 +26,7 @@ class dhcpGroup extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpGroup', 'dhcpOptions'); - function dhcpGroup($parent,&$attrs) + function __construct($parent,&$attrs) { /* Load statements / options */ dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc b/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc index 0292318633..230d12d6d0 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc @@ -30,7 +30,7 @@ class dhcpHost extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array("top", "dhcpHost"); - function dhcpHost($parent,$attrs,$host_exists_in_gosa = FALSE) + function __construct($parent,$attrs,$host_exists_in_gosa = FALSE) { dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc b/dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc index 984a362520..b876fb6f89 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpNetwork.inc @@ -31,7 +31,7 @@ class dhcpNetwork extends plugin var $attributes= array(); var $objectclasses= array(); - function dhcpNetwork() + function __construct() { /* This is always an account */ $this->is_account= TRUE; diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc b/dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc index 93529ecc5c..94b86cd755 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpPlugin.inc @@ -37,7 +37,7 @@ class dhcpPlugin extends plugin var $attributes= array(); var $objectclasses= array(); - function dhcpPlugin(&$parent,$attrs) + function __construct(&$parent,$attrs) { $this->parent = $parent; diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc b/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc index 30430328c2..1215d9c4a7 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc @@ -31,7 +31,7 @@ class dhcpPool extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpPool'); - function dhcpPool($parent,$attrs) + function __construct($parent,$attrs) { dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpService.inc b/dhcp/admin/systems/services/dhcp/class_dhcpService.inc index 06c71d72e4..87b845f90a 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpService.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpService.inc @@ -31,7 +31,7 @@ class dhcpService extends dhcpPlugin var $objectclasses = array('top', 'dhcpService'); - function dhcpService($parent, $attrs) + function __construct($parent, $attrs) { dhcpPlugin::dhcpPlugin($parent, $attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc index c2f4e88887..78faffda66 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc @@ -26,7 +26,7 @@ class dhcpSharedNetwork extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpSharedNetwork'); - function dhcpSharedNetwork($parent,$attrs) + function __construct($parent,$attrs) { dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc index 8e98b94a89..6976196a8c 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc @@ -25,7 +25,7 @@ class dhcpSubClass extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpSubClass', 'dhcpOptions'); - function dhcpSubClass($parent,&$attrs) + function __construct($parent,&$attrs) { /* Load statements / options */ dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc index 4ae6c9d2a8..af9123c521 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc @@ -33,7 +33,7 @@ class dhcpSubnet extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array('top', 'dhcpSubnet', 'dhcpOptions'); - function dhcpSubnet($parent,$attrs) + function __construct($parent,$attrs) { dhcpPlugin::dhcpPlugin($parent,$attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc b/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc index 667ff75aff..45d92e5b46 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc @@ -30,7 +30,7 @@ class dhcpTSigKey extends dhcpPlugin /* attribute list for save action */ var $objectclasses= array("top", "dhcpTSigKey"); - function dhcpTSigKey($parent,$attrs) + function __construct($parent,$attrs) { dhcpPlugin::dhcpPlugin($parent,$attrs); -- GitLab From 2210c9800d0884597415aa323bf04a11735b7a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 28 Jul 2016 14:12:55 +0200 Subject: [PATCH 04/25] Fixes #5031 Icon for LDAP was moved to core --- systems/html/themes/breezy/icons/16/apps/ldap.png | Bin 238 -> 0 bytes systems/html/themes/legacy/icons/16/apps/ldap.png | Bin 609 -> 0 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 systems/html/themes/breezy/icons/16/apps/ldap.png delete mode 100644 systems/html/themes/legacy/icons/16/apps/ldap.png diff --git a/systems/html/themes/breezy/icons/16/apps/ldap.png b/systems/html/themes/breezy/icons/16/apps/ldap.png deleted file mode 100644 index ce8075c3923632dd91dfb97629223323da8076f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQqs`T^vI! zdXp0t2pAX{7#RHc_3NLy`{!q8XG_l1C}lj#1{7OR)fn;qz?F>xK|j{EFy<+Q^Q)Yh zz!;_vR(nk~B6dUN=QN(#9!3n33B_ifY!~c#JU-foF<)R@Xt2OS^-!!sUfUuG28Nf- Wa=Z4FTCfAHW$<+Mb6Mw<&;$UpQBDy6 diff --git a/systems/html/themes/legacy/icons/16/apps/ldap.png b/systems/html/themes/legacy/icons/16/apps/ldap.png deleted file mode 100644 index d632c8506b649e04f78081276918e207b7940fc4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 609 zcmV-n0-pVeP)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV00006VoOIv0RI60 z0RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru)CU+3CNcY}liC0P0q#je zK~#9!rIJ5SR8bJcfA8^jmplZ8WrGDM2?;TlQu76j@r(EoEc^l%mev$jHkQ^j+E~y? z)|eP#M090gVfVfJXJ#xevbzK-r<r>uIg@kF+-&>xkFB}ZOxvOoYQfinuVU&>aHD{C z)AQ&A@fA{^{3-6-YP?-*m+Qe9Rb|wbQVosKNU27~C{yxGQ8j!}G&i(R%pADxw_>qu zuCFbY)HMv7P&HvV1H&TqMg~O&xd8$wNE47i?GD$AjRoWB26!(V{p_*aSwSL10TBq1 zgd_N1#Av7(5|y2IImO~EJY0sV@|<)(v-N0&>q^y7RYX#cQQ7^NQDDYR72ZEXe|!KS zfAR)h*g!Sqkro++>3BiE-)C=c4}eamL))EVqu)tE3=?EUL{Zi01+7+#rKKeR%Cfv- zK`(6Br5!V)un7xgS+csi3V@j*k9RQ9OTst<yHH@{c1;FmV~=C<<SgN&K<#Go?sKwV zpU4g3_A7Mm{?sMRZ2Ag=!GLb}3uear{B7E22XMSk23V-CSTM{OD`+$tY;Hc73d#(! zi4Z3({Nok<^T5}`Au5W^uB328=$$D?_g)}(9V$xfEug()Obxa46Hm_r#qR##W%pn} v^pWTy(TDW*5%H1W5|$`%CGYP&$A8yfA2QHGuJ35^00000NkvXXu0mjf1Jw-& -- GitLab From 5b65a356827b5f84541d9d25a27df83989b24945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Mon, 1 Aug 2016 15:35:05 +0200 Subject: [PATCH 05/25] Fixes #5025 Added support for pwdPolicyChecker/pwdCheckModule --- ppolicy/admin/ppolicy/class_ppolicy.inc | 28 ++++++++++++++++++------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/ppolicy/admin/ppolicy/class_ppolicy.inc b/ppolicy/admin/ppolicy/class_ppolicy.inc index c20ebc6576..1bbf6f6351 100644 --- a/ppolicy/admin/ppolicy/class_ppolicy.inc +++ b/ppolicy/admin/ppolicy/class_ppolicy.inc @@ -23,7 +23,7 @@ class ppolicy extends simplePlugin { var $mainTab = TRUE; - var $objectclasses = array('device', 'pwdPolicy'); + var $objectclasses = array('device', 'pwdPolicy', 'pwdPolicyChecker'); /* Return plugin informations for acl handling */ public static function plInfo() @@ -100,13 +100,16 @@ class ppolicy extends simplePlugin 'pwdSafeModify', FALSE, FALSE // default ), - //~ new SelectAttribute( - //~ _('Check quality'), _('Decides what to do if the function in "Check module" is not available'), - //~ 'pwdCheckQuality', FALSE, - //~ array(0, 1, 2), 0, - //~ array(_('Disabled'), _('Ignore errors'), _('Reject on errors')) - //~ ), - new HiddenAttribute('pwdCheckQuality', FALSE, 0), + new SelectAttribute( + _('Check quality'), _('Decides what to do if the function in "Check module" is not available'), + 'pwdCheckQuality', FALSE, + array(0, 1, 2), 0, + array(_('Disabled'), _('Ignore errors'), _('Reject on errors')) + ), + new StringAttribute ( + _('Check module'), _('Name of a user supplied password quality check module that will be called to perform password quality checks and is only relevant if pwdCheckQuality is either 1 or 2'), + 'pwdCheckModule', FALSE + ), ) ), 'lockout' => array( @@ -176,6 +179,15 @@ class ppolicy extends simplePlugin ) ) ); + $this->attributesAccess['pwdCheckQuality']->attributes[0]->setManagedAttributes( + array ( + 'disable' => array ( + 0 => array ( + 'pwdCheckModule' + ) + ) + ) + ); if (objects::count('ppolicy') == 0) { $this->attributesAccess['cn']->setDefaultValue($config->get_cfg_value('ppolicyDefaultCn', 'default')); -- GitLab From 6026ac58f80f4fbedd186f71f56f1868722322ea Mon Sep 17 00:00:00 2001 From: Mortier Benoit <benoit.mortier@opensides.be> Date: Tue, 2 Aug 2016 09:09:55 +0200 Subject: [PATCH 06/25] Updates locales for 1.0.15 Signed-off-by: Mortier Benoit <benoit.mortier@opensides.be> --- alias/locale/ar/fusiondirectory.po | 2 +- alias/locale/ca/fusiondirectory.po | 2 +- alias/locale/cs_CZ/fusiondirectory.po | 2 +- alias/locale/de/fusiondirectory.po | 2 +- alias/locale/el_GR/fusiondirectory.po | 2 +- alias/locale/en/fusiondirectory.po | 2 +- alias/locale/es/fusiondirectory.po | 2 +- alias/locale/es_CO/fusiondirectory.po | 2 +- alias/locale/es_VE/fusiondirectory.po | 2 +- alias/locale/fa_IR/fusiondirectory.po | 2 +- alias/locale/fi_FI/fusiondirectory.po | 2 +- alias/locale/fr/fusiondirectory.po | 2 +- alias/locale/hu_HU/fusiondirectory.po | 2 +- alias/locale/id/fusiondirectory.po | 2 +- alias/locale/it_IT/fusiondirectory.po | 2 +- alias/locale/lv/fusiondirectory.po | 2 +- alias/locale/nb/fusiondirectory.po | 2 +- alias/locale/nl/fusiondirectory.po | 2 +- alias/locale/pl/fusiondirectory.po | 2 +- alias/locale/pt/fusiondirectory.po | 2 +- alias/locale/pt_BR/fusiondirectory.po | 2 +- alias/locale/ru/fusiondirectory.po | 2 +- alias/locale/ru@petr1708/fusiondirectory.po | 2 +- alias/locale/sv/fusiondirectory.po | 2 +- alias/locale/ug/fusiondirectory.po | 2 +- alias/locale/vi_VN/fusiondirectory.po | 2 +- alias/locale/zh/fusiondirectory.po | 2 +- apache2/locale/ar/fusiondirectory.po | 2 +- apache2/locale/ca/fusiondirectory.po | 2 +- apache2/locale/cs_CZ/fusiondirectory.po | 2 +- apache2/locale/de/fusiondirectory.po | 2 +- apache2/locale/el_GR/fusiondirectory.po | 2 +- apache2/locale/en/fusiondirectory.po | 2 +- apache2/locale/es/fusiondirectory.po | 2 +- apache2/locale/es_CO/fusiondirectory.po | 2 +- apache2/locale/es_VE/fusiondirectory.po | 2 +- apache2/locale/fa_IR/fusiondirectory.po | 2 +- apache2/locale/fi_FI/fusiondirectory.po | 2 +- apache2/locale/fr/fusiondirectory.po | 2 +- apache2/locale/hu_HU/fusiondirectory.po | 2 +- apache2/locale/id/fusiondirectory.po | 2 +- apache2/locale/it_IT/fusiondirectory.po | 2 +- apache2/locale/lv/fusiondirectory.po | 2 +- apache2/locale/nb/fusiondirectory.po | 2 +- apache2/locale/nl/fusiondirectory.po | 2 +- apache2/locale/pl/fusiondirectory.po | 2 +- apache2/locale/pt/fusiondirectory.po | 2 +- apache2/locale/pt_BR/fusiondirectory.po | 2 +- apache2/locale/ru/fusiondirectory.po | 2 +- apache2/locale/ru@petr1708/fusiondirectory.po | 2 +- apache2/locale/sv/fusiondirectory.po | 2 +- apache2/locale/ug/fusiondirectory.po | 2 +- apache2/locale/vi_VN/fusiondirectory.po | 2 +- apache2/locale/zh/fusiondirectory.po | 2 +- applications/locale/ar/fusiondirectory.po | 2 +- applications/locale/ca/fusiondirectory.po | 2 +- applications/locale/cs_CZ/fusiondirectory.po | 2 +- applications/locale/de/fusiondirectory.po | 2 +- applications/locale/el_GR/fusiondirectory.po | 2 +- applications/locale/en/fusiondirectory.po | 2 +- applications/locale/es/fusiondirectory.po | 2 +- applications/locale/es_CO/fusiondirectory.po | 2 +- applications/locale/es_VE/fusiondirectory.po | 2 +- applications/locale/fa_IR/fusiondirectory.po | 2 +- applications/locale/fi_FI/fusiondirectory.po | 2 +- applications/locale/fr/fusiondirectory.po | 2 +- applications/locale/hu_HU/fusiondirectory.po | 2 +- applications/locale/id/fusiondirectory.po | 2 +- applications/locale/it_IT/fusiondirectory.po | 2 +- applications/locale/lv/fusiondirectory.po | 2 +- applications/locale/nb/fusiondirectory.po | 2 +- applications/locale/nl/fusiondirectory.po | 2 +- applications/locale/pl/fusiondirectory.po | 2 +- applications/locale/pt/fusiondirectory.po | 2 +- applications/locale/pt_BR/fusiondirectory.po | 2 +- applications/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- applications/locale/sv/fusiondirectory.po | 2 +- applications/locale/ug/fusiondirectory.po | 2 +- applications/locale/vi_VN/fusiondirectory.po | 2 +- applications/locale/zh/fusiondirectory.po | 2 +- argonaut/locale/ar/fusiondirectory.po | 2 +- argonaut/locale/ca/fusiondirectory.po | 2 +- argonaut/locale/cs_CZ/fusiondirectory.po | 2 +- argonaut/locale/de/fusiondirectory.po | 2 +- argonaut/locale/el_GR/fusiondirectory.po | 2 +- argonaut/locale/en/fusiondirectory.po | 2 +- argonaut/locale/es/fusiondirectory.po | 2 +- argonaut/locale/es_CO/fusiondirectory.po | 2 +- argonaut/locale/es_VE/fusiondirectory.po | 2 +- argonaut/locale/fa_IR/fusiondirectory.po | 2 +- argonaut/locale/fi_FI/fusiondirectory.po | 2 +- argonaut/locale/fr/fusiondirectory.po | 2 +- argonaut/locale/hu_HU/fusiondirectory.po | 2 +- argonaut/locale/id/fusiondirectory.po | 2 +- argonaut/locale/it_IT/fusiondirectory.po | 2 +- argonaut/locale/lv/fusiondirectory.po | 2 +- argonaut/locale/nb/fusiondirectory.po | 2 +- argonaut/locale/nl/fusiondirectory.po | 2 +- argonaut/locale/pl/fusiondirectory.po | 2 +- argonaut/locale/pt/fusiondirectory.po | 2 +- argonaut/locale/pt_BR/fusiondirectory.po | 2 +- argonaut/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- argonaut/locale/sv/fusiondirectory.po | 2 +- argonaut/locale/ug/fusiondirectory.po | 2 +- argonaut/locale/vi_VN/fusiondirectory.po | 2 +- argonaut/locale/zh/fusiondirectory.po | 2 +- audit/locale/ar/fusiondirectory.po | 2 +- audit/locale/ca/fusiondirectory.po | 2 +- audit/locale/cs_CZ/fusiondirectory.po | 2 +- audit/locale/de/fusiondirectory.po | 2 +- audit/locale/el_GR/fusiondirectory.po | 2 +- audit/locale/en/fusiondirectory.po | 2 +- audit/locale/es/fusiondirectory.po | 2 +- audit/locale/es_CO/fusiondirectory.po | 2 +- audit/locale/es_VE/fusiondirectory.po | 2 +- audit/locale/fa_IR/fusiondirectory.po | 2 +- audit/locale/fi_FI/fusiondirectory.po | 2 +- audit/locale/fr/fusiondirectory.po | 2 +- audit/locale/hu_HU/fusiondirectory.po | 2 +- audit/locale/id/fusiondirectory.po | 2 +- audit/locale/it_IT/fusiondirectory.po | 2 +- audit/locale/lv/fusiondirectory.po | 2 +- audit/locale/nb/fusiondirectory.po | 2 +- audit/locale/nl/fusiondirectory.po | 2 +- audit/locale/pl/fusiondirectory.po | 2 +- audit/locale/pt/fusiondirectory.po | 2 +- audit/locale/pt_BR/fusiondirectory.po | 2 +- audit/locale/ru/fusiondirectory.po | 2 +- audit/locale/ru@petr1708/fusiondirectory.po | 2 +- audit/locale/sv/fusiondirectory.po | 2 +- audit/locale/ug/fusiondirectory.po | 2 +- audit/locale/vi_VN/fusiondirectory.po | 2 +- audit/locale/zh/fusiondirectory.po | 2 +- autofs/locale/ar/fusiondirectory.po | 2 +- autofs/locale/ca/fusiondirectory.po | 2 +- autofs/locale/cs_CZ/fusiondirectory.po | 2 +- autofs/locale/de/fusiondirectory.po | 2 +- autofs/locale/el_GR/fusiondirectory.po | 2 +- autofs/locale/en/fusiondirectory.po | 2 +- autofs/locale/es/fusiondirectory.po | 2 +- autofs/locale/es_CO/fusiondirectory.po | 2 +- autofs/locale/es_VE/fusiondirectory.po | 2 +- autofs/locale/fa_IR/fusiondirectory.po | 2 +- autofs/locale/fi_FI/fusiondirectory.po | 2 +- autofs/locale/fr/fusiondirectory.po | 2 +- autofs/locale/hu_HU/fusiondirectory.po | 2 +- autofs/locale/id/fusiondirectory.po | 2 +- autofs/locale/it_IT/fusiondirectory.po | 2 +- autofs/locale/lv/fusiondirectory.po | 2 +- autofs/locale/nb/fusiondirectory.po | 2 +- autofs/locale/nl/fusiondirectory.po | 2 +- autofs/locale/pl/fusiondirectory.po | 2 +- autofs/locale/pt/fusiondirectory.po | 2 +- autofs/locale/pt_BR/fusiondirectory.po | 2 +- autofs/locale/ru/fusiondirectory.po | 2 +- autofs/locale/ru@petr1708/fusiondirectory.po | 2 +- autofs/locale/sv/fusiondirectory.po | 2 +- autofs/locale/ug/fusiondirectory.po | 2 +- autofs/locale/vi_VN/fusiondirectory.po | 2 +- autofs/locale/zh/fusiondirectory.po | 2 +- certificates/locale/ar/fusiondirectory.po | 2 +- certificates/locale/ca/fusiondirectory.po | 2 +- certificates/locale/cs_CZ/fusiondirectory.po | 2 +- certificates/locale/de/fusiondirectory.po | 2 +- certificates/locale/el_GR/fusiondirectory.po | 2 +- certificates/locale/en/fusiondirectory.po | 2 +- certificates/locale/es/fusiondirectory.po | 2 +- certificates/locale/es_CO/fusiondirectory.po | 2 +- certificates/locale/es_VE/fusiondirectory.po | 2 +- certificates/locale/fa_IR/fusiondirectory.po | 2 +- certificates/locale/fi_FI/fusiondirectory.po | 2 +- certificates/locale/fr/fusiondirectory.po | 2 +- certificates/locale/hu_HU/fusiondirectory.po | 2 +- certificates/locale/id/fusiondirectory.po | 2 +- certificates/locale/it_IT/fusiondirectory.po | 2 +- certificates/locale/lv/fusiondirectory.po | 2 +- certificates/locale/nb/fusiondirectory.po | 2 +- certificates/locale/nl/fusiondirectory.po | 2 +- certificates/locale/pl/fusiondirectory.po | 2 +- certificates/locale/pt/fusiondirectory.po | 2 +- certificates/locale/pt_BR/fusiondirectory.po | 2 +- certificates/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- certificates/locale/sv/fusiondirectory.po | 2 +- certificates/locale/ug/fusiondirectory.po | 2 +- certificates/locale/vi_VN/fusiondirectory.po | 2 +- certificates/locale/zh/fusiondirectory.po | 2 +- community/locale/ar/fusiondirectory.po | 2 +- community/locale/ca/fusiondirectory.po | 2 +- community/locale/cs_CZ/fusiondirectory.po | 2 +- community/locale/de/fusiondirectory.po | 2 +- community/locale/el_GR/fusiondirectory.po | 2 +- community/locale/en/fusiondirectory.po | 2 +- community/locale/es/fusiondirectory.po | 2 +- community/locale/es_CO/fusiondirectory.po | 2 +- community/locale/es_VE/fusiondirectory.po | 2 +- community/locale/fa_IR/fusiondirectory.po | 2 +- community/locale/fi_FI/fusiondirectory.po | 2 +- community/locale/fr/fusiondirectory.po | 2 +- community/locale/hu_HU/fusiondirectory.po | 2 +- community/locale/id/fusiondirectory.po | 2 +- community/locale/it_IT/fusiondirectory.po | 2 +- community/locale/lv/fusiondirectory.po | 2 +- community/locale/nb/fusiondirectory.po | 2 +- community/locale/nl/fusiondirectory.po | 2 +- community/locale/pl/fusiondirectory.po | 2 +- community/locale/pt/fusiondirectory.po | 2 +- community/locale/pt_BR/fusiondirectory.po | 2 +- community/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- community/locale/sv/fusiondirectory.po | 2 +- community/locale/ug/fusiondirectory.po | 2 +- community/locale/vi_VN/fusiondirectory.po | 2 +- community/locale/zh/fusiondirectory.po | 2 +- cyrus/locale/ar/fusiondirectory.po | 2 +- cyrus/locale/ca/fusiondirectory.po | 2 +- cyrus/locale/cs_CZ/fusiondirectory.po | 2 +- cyrus/locale/de/fusiondirectory.po | 2 +- cyrus/locale/el_GR/fusiondirectory.po | 2 +- cyrus/locale/en/fusiondirectory.po | 2 +- cyrus/locale/es/fusiondirectory.po | 2 +- cyrus/locale/es_CO/fusiondirectory.po | 2 +- cyrus/locale/es_VE/fusiondirectory.po | 2 +- cyrus/locale/fa_IR/fusiondirectory.po | 2 +- cyrus/locale/fi_FI/fusiondirectory.po | 2 +- cyrus/locale/fr/fusiondirectory.po | 2 +- cyrus/locale/hu_HU/fusiondirectory.po | 2 +- cyrus/locale/id/fusiondirectory.po | 2 +- cyrus/locale/it_IT/fusiondirectory.po | 2 +- cyrus/locale/lv/fusiondirectory.po | 2 +- cyrus/locale/nb/fusiondirectory.po | 2 +- cyrus/locale/nl/fusiondirectory.po | 2 +- cyrus/locale/pl/fusiondirectory.po | 2 +- cyrus/locale/pt/fusiondirectory.po | 2 +- cyrus/locale/pt_BR/fusiondirectory.po | 2 +- cyrus/locale/ru/fusiondirectory.po | 2 +- cyrus/locale/ru@petr1708/fusiondirectory.po | 2 +- cyrus/locale/sv/fusiondirectory.po | 2 +- cyrus/locale/ug/fusiondirectory.po | 2 +- cyrus/locale/vi_VN/fusiondirectory.po | 2 +- cyrus/locale/zh/fusiondirectory.po | 2 +- debconf/locale/ar/fusiondirectory.po | 2 +- debconf/locale/ca/fusiondirectory.po | 2 +- debconf/locale/cs_CZ/fusiondirectory.po | 2 +- debconf/locale/de/fusiondirectory.po | 2 +- debconf/locale/el_GR/fusiondirectory.po | 2 +- debconf/locale/en/fusiondirectory.po | 2 +- debconf/locale/es/fusiondirectory.po | 2 +- debconf/locale/es_CO/fusiondirectory.po | 2 +- debconf/locale/es_VE/fusiondirectory.po | 2 +- debconf/locale/fa_IR/fusiondirectory.po | 2 +- debconf/locale/fi_FI/fusiondirectory.po | 2 +- debconf/locale/fr/fusiondirectory.po | 2 +- debconf/locale/hu_HU/fusiondirectory.po | 2 +- debconf/locale/id/fusiondirectory.po | 2 +- debconf/locale/it_IT/fusiondirectory.po | 2 +- debconf/locale/lv/fusiondirectory.po | 2 +- debconf/locale/nb/fusiondirectory.po | 2 +- debconf/locale/nl/fusiondirectory.po | 2 +- debconf/locale/pl/fusiondirectory.po | 2 +- debconf/locale/pt/fusiondirectory.po | 2 +- debconf/locale/pt_BR/fusiondirectory.po | 2 +- debconf/locale/ru/fusiondirectory.po | 2 +- debconf/locale/ru@petr1708/fusiondirectory.po | 2 +- debconf/locale/sv/fusiondirectory.po | 2 +- debconf/locale/ug/fusiondirectory.po | 2 +- debconf/locale/vi_VN/fusiondirectory.po | 2 +- debconf/locale/zh/fusiondirectory.po | 2 +- developers/locale/ar/fusiondirectory.po | 2 +- developers/locale/ca/fusiondirectory.po | 2 +- developers/locale/cs_CZ/fusiondirectory.po | 2 +- developers/locale/de/fusiondirectory.po | 2 +- developers/locale/el_GR/fusiondirectory.po | 2 +- developers/locale/en/fusiondirectory.po | 2 +- developers/locale/es/fusiondirectory.po | 2 +- developers/locale/es_CO/fusiondirectory.po | 2 +- developers/locale/es_VE/fusiondirectory.po | 2 +- developers/locale/fa_IR/fusiondirectory.po | 2 +- developers/locale/fi_FI/fusiondirectory.po | 2 +- developers/locale/fr/fusiondirectory.po | 2 +- developers/locale/hu_HU/fusiondirectory.po | 2 +- developers/locale/id/fusiondirectory.po | 2 +- developers/locale/it_IT/fusiondirectory.po | 2 +- developers/locale/lv/fusiondirectory.po | 2 +- developers/locale/nb/fusiondirectory.po | 2 +- developers/locale/nl/fusiondirectory.po | 2 +- developers/locale/pl/fusiondirectory.po | 2 +- developers/locale/pt/fusiondirectory.po | 2 +- developers/locale/pt_BR/fusiondirectory.po | 2 +- developers/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- developers/locale/sv/fusiondirectory.po | 2 +- developers/locale/ug/fusiondirectory.po | 2 +- developers/locale/vi_VN/fusiondirectory.po | 2 +- developers/locale/zh/fusiondirectory.po | 2 +- dhcp/locale/ar/fusiondirectory.po | 2 +- dhcp/locale/ca/fusiondirectory.po | 2 +- dhcp/locale/cs_CZ/fusiondirectory.po | 2 +- dhcp/locale/de/fusiondirectory.po | 2 +- dhcp/locale/el_GR/fusiondirectory.po | 2 +- dhcp/locale/en/fusiondirectory.po | 2 +- dhcp/locale/es/fusiondirectory.po | 2 +- dhcp/locale/es_CO/fusiondirectory.po | 2 +- dhcp/locale/es_VE/fusiondirectory.po | 2 +- dhcp/locale/fa_IR/fusiondirectory.po | 2 +- dhcp/locale/fi_FI/fusiondirectory.po | 2 +- dhcp/locale/fr/fusiondirectory.po | 2 +- dhcp/locale/hu_HU/fusiondirectory.po | 2 +- dhcp/locale/id/fusiondirectory.po | 2 +- dhcp/locale/it_IT/fusiondirectory.po | 2 +- dhcp/locale/lv/fusiondirectory.po | 2 +- dhcp/locale/nb/fusiondirectory.po | 2 +- dhcp/locale/nl/fusiondirectory.po | 2 +- dhcp/locale/pl/fusiondirectory.po | 2 +- dhcp/locale/pt/fusiondirectory.po | 2 +- dhcp/locale/pt_BR/fusiondirectory.po | 2 +- dhcp/locale/ru/fusiondirectory.po | 2 +- dhcp/locale/ru@petr1708/fusiondirectory.po | 2 +- dhcp/locale/sv/fusiondirectory.po | 2 +- dhcp/locale/ug/fusiondirectory.po | 2 +- dhcp/locale/vi_VN/fusiondirectory.po | 2 +- dhcp/locale/zh/fusiondirectory.po | 2 +- dns/locale/ar/fusiondirectory.po | 2 +- dns/locale/ca/fusiondirectory.po | 2 +- dns/locale/cs_CZ/fusiondirectory.po | 2 +- dns/locale/de/fusiondirectory.po | 2 +- dns/locale/el_GR/fusiondirectory.po | 2 +- dns/locale/en/fusiondirectory.po | 2 +- dns/locale/es/fusiondirectory.po | 2 +- dns/locale/es_CO/fusiondirectory.po | 2 +- dns/locale/es_VE/fusiondirectory.po | 2 +- dns/locale/fa_IR/fusiondirectory.po | 2 +- dns/locale/fi_FI/fusiondirectory.po | 2 +- dns/locale/fr/fusiondirectory.po | 2 +- dns/locale/hu_HU/fusiondirectory.po | 2 +- dns/locale/id/fusiondirectory.po | 2 +- dns/locale/it_IT/fusiondirectory.po | 2 +- dns/locale/lv/fusiondirectory.po | 2 +- dns/locale/nb/fusiondirectory.po | 2 +- dns/locale/nl/fusiondirectory.po | 2 +- dns/locale/pl/fusiondirectory.po | 2 +- dns/locale/pt/fusiondirectory.po | 2 +- dns/locale/pt_BR/fusiondirectory.po | 2 +- dns/locale/ru/fusiondirectory.po | 2 +- dns/locale/ru@petr1708/fusiondirectory.po | 2 +- dns/locale/sv/fusiondirectory.po | 2 +- dns/locale/ug/fusiondirectory.po | 2 +- dns/locale/vi_VN/fusiondirectory.po | 2 +- dns/locale/zh/fusiondirectory.po | 2 +- dovecot/locale/ar/fusiondirectory.po | 2 +- dovecot/locale/ca/fusiondirectory.po | 2 +- dovecot/locale/cs_CZ/fusiondirectory.po | 2 +- dovecot/locale/de/fusiondirectory.po | 2 +- dovecot/locale/el_GR/fusiondirectory.po | 2 +- dovecot/locale/en/fusiondirectory.po | 2 +- dovecot/locale/es/fusiondirectory.po | 2 +- dovecot/locale/es_CO/fusiondirectory.po | 2 +- dovecot/locale/es_VE/fusiondirectory.po | 2 +- dovecot/locale/fa_IR/fusiondirectory.po | 2 +- dovecot/locale/fi_FI/fusiondirectory.po | 2 +- dovecot/locale/fr/fusiondirectory.po | 2 +- dovecot/locale/hu_HU/fusiondirectory.po | 2 +- dovecot/locale/id/fusiondirectory.po | 2 +- dovecot/locale/it_IT/fusiondirectory.po | 2 +- dovecot/locale/lv/fusiondirectory.po | 2 +- dovecot/locale/nb/fusiondirectory.po | 2 +- dovecot/locale/nl/fusiondirectory.po | 2 +- dovecot/locale/pl/fusiondirectory.po | 2 +- dovecot/locale/pt/fusiondirectory.po | 2 +- dovecot/locale/pt_BR/fusiondirectory.po | 2 +- dovecot/locale/ru/fusiondirectory.po | 2 +- dovecot/locale/ru@petr1708/fusiondirectory.po | 2 +- dovecot/locale/sv/fusiondirectory.po | 2 +- dovecot/locale/ug/fusiondirectory.po | 2 +- dovecot/locale/vi_VN/fusiondirectory.po | 2 +- dovecot/locale/zh/fusiondirectory.po | 2 +- dsa/locale/ar/fusiondirectory.po | 2 +- dsa/locale/ca/fusiondirectory.po | 2 +- dsa/locale/cs_CZ/fusiondirectory.po | 2 +- dsa/locale/de/fusiondirectory.po | 2 +- dsa/locale/el_GR/fusiondirectory.po | 2 +- dsa/locale/en/fusiondirectory.po | 2 +- dsa/locale/es/fusiondirectory.po | 2 +- dsa/locale/es_CO/fusiondirectory.po | 2 +- dsa/locale/es_VE/fusiondirectory.po | 2 +- dsa/locale/fa_IR/fusiondirectory.po | 2 +- dsa/locale/fi_FI/fusiondirectory.po | 2 +- dsa/locale/fr/fusiondirectory.po | 2 +- dsa/locale/hu_HU/fusiondirectory.po | 2 +- dsa/locale/id/fusiondirectory.po | 2 +- dsa/locale/it_IT/fusiondirectory.po | 2 +- dsa/locale/lv/fusiondirectory.po | 2 +- dsa/locale/nb/fusiondirectory.po | 2 +- dsa/locale/nl/fusiondirectory.po | 2 +- dsa/locale/pl/fusiondirectory.po | 2 +- dsa/locale/pt/fusiondirectory.po | 2 +- dsa/locale/pt_BR/fusiondirectory.po | 2 +- dsa/locale/ru/fusiondirectory.po | 2 +- dsa/locale/ru@petr1708/fusiondirectory.po | 2 +- dsa/locale/sv/fusiondirectory.po | 2 +- dsa/locale/ug/fusiondirectory.po | 2 +- dsa/locale/vi_VN/fusiondirectory.po | 2 +- dsa/locale/zh/fusiondirectory.po | 2 +- ejbca/locale/ar/fusiondirectory.po | 2 +- ejbca/locale/ca/fusiondirectory.po | 2 +- ejbca/locale/cs_CZ/fusiondirectory.po | 2 +- ejbca/locale/de/fusiondirectory.po | 2 +- ejbca/locale/el_GR/fusiondirectory.po | 2 +- ejbca/locale/en/fusiondirectory.po | 2 +- ejbca/locale/es/fusiondirectory.po | 2 +- ejbca/locale/es_CO/fusiondirectory.po | 2 +- ejbca/locale/es_VE/fusiondirectory.po | 2 +- ejbca/locale/fa_IR/fusiondirectory.po | 2 +- ejbca/locale/fi_FI/fusiondirectory.po | 2 +- ejbca/locale/fr/fusiondirectory.po | 2 +- ejbca/locale/hu_HU/fusiondirectory.po | 2 +- ejbca/locale/id/fusiondirectory.po | 2 +- ejbca/locale/it_IT/fusiondirectory.po | 2 +- ejbca/locale/lv/fusiondirectory.po | 2 +- ejbca/locale/nb/fusiondirectory.po | 2 +- ejbca/locale/nl/fusiondirectory.po | 2 +- ejbca/locale/pl/fusiondirectory.po | 2 +- ejbca/locale/pt/fusiondirectory.po | 2 +- ejbca/locale/pt_BR/fusiondirectory.po | 2 +- ejbca/locale/ru/fusiondirectory.po | 2 +- ejbca/locale/ru@petr1708/fusiondirectory.po | 2 +- ejbca/locale/sv/fusiondirectory.po | 2 +- ejbca/locale/ug/fusiondirectory.po | 2 +- ejbca/locale/vi_VN/fusiondirectory.po | 2 +- ejbca/locale/zh/fusiondirectory.po | 2 +- fai/locale/ar/fusiondirectory.po | 2 +- fai/locale/ca/fusiondirectory.po | 2 +- fai/locale/cs_CZ/fusiondirectory.po | 2 +- fai/locale/de/fusiondirectory.po | 2 +- fai/locale/el_GR/fusiondirectory.po | 2 +- fai/locale/en/fusiondirectory.po | 2 +- fai/locale/es/fusiondirectory.po | 2 +- fai/locale/es_CO/fusiondirectory.po | 2 +- fai/locale/es_VE/fusiondirectory.po | 2 +- fai/locale/fa_IR/fusiondirectory.po | 2 +- fai/locale/fi_FI/fusiondirectory.po | 2 +- fai/locale/fr/fusiondirectory.po | 2 +- fai/locale/hu_HU/fusiondirectory.po | 2 +- fai/locale/id/fusiondirectory.po | 2 +- fai/locale/it_IT/fusiondirectory.po | 2 +- fai/locale/lv/fusiondirectory.po | 2 +- fai/locale/nb/fusiondirectory.po | 2 +- fai/locale/nl/fusiondirectory.po | 2 +- fai/locale/pl/fusiondirectory.po | 2 +- fai/locale/pt/fusiondirectory.po | 2 +- fai/locale/pt_BR/fusiondirectory.po | 2 +- fai/locale/ru/fusiondirectory.po | 2 +- fai/locale/ru@petr1708/fusiondirectory.po | 2 +- fai/locale/sv/fusiondirectory.po | 2 +- fai/locale/ug/fusiondirectory.po | 2 +- fai/locale/vi_VN/fusiondirectory.po | 2 +- fai/locale/zh/fusiondirectory.po | 2 +- freeradius/locale/ar/fusiondirectory.po | 2 +- freeradius/locale/ca/fusiondirectory.po | 2 +- freeradius/locale/cs_CZ/fusiondirectory.po | 2 +- freeradius/locale/de/fusiondirectory.po | 2 +- freeradius/locale/el_GR/fusiondirectory.po | 2 +- freeradius/locale/en/fusiondirectory.po | 2 +- freeradius/locale/es/fusiondirectory.po | 2 +- freeradius/locale/es_CO/fusiondirectory.po | 2 +- freeradius/locale/es_VE/fusiondirectory.po | 2 +- freeradius/locale/fa_IR/fusiondirectory.po | 2 +- freeradius/locale/fi_FI/fusiondirectory.po | 2 +- freeradius/locale/fr/fusiondirectory.po | 2 +- freeradius/locale/hu_HU/fusiondirectory.po | 2 +- freeradius/locale/id/fusiondirectory.po | 2 +- freeradius/locale/it_IT/fusiondirectory.po | 2 +- freeradius/locale/lv/fusiondirectory.po | 2 +- freeradius/locale/nb/fusiondirectory.po | 2 +- freeradius/locale/nl/fusiondirectory.po | 2 +- freeradius/locale/pl/fusiondirectory.po | 2 +- freeradius/locale/pt/fusiondirectory.po | 2 +- freeradius/locale/pt_BR/fusiondirectory.po | 2 +- freeradius/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- freeradius/locale/sv/fusiondirectory.po | 2 +- freeradius/locale/ug/fusiondirectory.po | 2 +- freeradius/locale/vi_VN/fusiondirectory.po | 2 +- freeradius/locale/zh/fusiondirectory.po | 2 +- fusioninventory/locale/ar/fusiondirectory.po | 2 +- fusioninventory/locale/ca/fusiondirectory.po | 2 +- .../locale/cs_CZ/fusiondirectory.po | 2 +- fusioninventory/locale/de/fusiondirectory.po | 2 +- .../locale/el_GR/fusiondirectory.po | 2 +- fusioninventory/locale/en/fusiondirectory.po | 2 +- fusioninventory/locale/es/fusiondirectory.po | 2 +- .../locale/es_CO/fusiondirectory.po | 2 +- .../locale/es_VE/fusiondirectory.po | 2 +- .../locale/fa_IR/fusiondirectory.po | 2 +- .../locale/fi_FI/fusiondirectory.po | 2 +- fusioninventory/locale/fr/fusiondirectory.po | 2 +- .../locale/hu_HU/fusiondirectory.po | 2 +- fusioninventory/locale/id/fusiondirectory.po | 2 +- .../locale/it_IT/fusiondirectory.po | 2 +- fusioninventory/locale/lv/fusiondirectory.po | 2 +- fusioninventory/locale/nb/fusiondirectory.po | 2 +- fusioninventory/locale/nl/fusiondirectory.po | 2 +- fusioninventory/locale/pl/fusiondirectory.po | 2 +- fusioninventory/locale/pt/fusiondirectory.po | 2 +- .../locale/pt_BR/fusiondirectory.po | 2 +- fusioninventory/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- fusioninventory/locale/sv/fusiondirectory.po | 2 +- fusioninventory/locale/ug/fusiondirectory.po | 2 +- .../locale/vi_VN/fusiondirectory.po | 2 +- fusioninventory/locale/zh/fusiondirectory.po | 2 +- gpg/locale/ar/fusiondirectory.po | 2 +- gpg/locale/ca/fusiondirectory.po | 2 +- gpg/locale/cs_CZ/fusiondirectory.po | 2 +- gpg/locale/de/fusiondirectory.po | 2 +- gpg/locale/el_GR/fusiondirectory.po | 2 +- gpg/locale/en/fusiondirectory.po | 2 +- gpg/locale/es/fusiondirectory.po | 2 +- gpg/locale/es_CO/fusiondirectory.po | 2 +- gpg/locale/es_VE/fusiondirectory.po | 2 +- gpg/locale/fa_IR/fusiondirectory.po | 2 +- gpg/locale/fi_FI/fusiondirectory.po | 2 +- gpg/locale/fr/fusiondirectory.po | 2 +- gpg/locale/hu_HU/fusiondirectory.po | 2 +- gpg/locale/id/fusiondirectory.po | 2 +- gpg/locale/it_IT/fusiondirectory.po | 2 +- gpg/locale/lv/fusiondirectory.po | 2 +- gpg/locale/nb/fusiondirectory.po | 2 +- gpg/locale/nl/fusiondirectory.po | 2 +- gpg/locale/pl/fusiondirectory.po | 2 +- gpg/locale/pt/fusiondirectory.po | 2 +- gpg/locale/pt_BR/fusiondirectory.po | 2 +- gpg/locale/ru/fusiondirectory.po | 2 +- gpg/locale/ru@petr1708/fusiondirectory.po | 2 +- gpg/locale/sv/fusiondirectory.po | 2 +- gpg/locale/ug/fusiondirectory.po | 2 +- gpg/locale/vi_VN/fusiondirectory.po | 2 +- gpg/locale/zh/fusiondirectory.po | 2 +- ipmi/locale/ar/fusiondirectory.po | 2 +- ipmi/locale/ca/fusiondirectory.po | 2 +- ipmi/locale/cs_CZ/fusiondirectory.po | 2 +- ipmi/locale/de/fusiondirectory.po | 2 +- ipmi/locale/el_GR/fusiondirectory.po | 2 +- ipmi/locale/en/fusiondirectory.po | 2 +- ipmi/locale/es/fusiondirectory.po | 2 +- ipmi/locale/es_CO/fusiondirectory.po | 2 +- ipmi/locale/es_VE/fusiondirectory.po | 2 +- ipmi/locale/fa_IR/fusiondirectory.po | 2 +- ipmi/locale/fi_FI/fusiondirectory.po | 2 +- ipmi/locale/fr/fusiondirectory.po | 2 +- ipmi/locale/hu_HU/fusiondirectory.po | 2 +- ipmi/locale/id/fusiondirectory.po | 2 +- ipmi/locale/it_IT/fusiondirectory.po | 2 +- ipmi/locale/lv/fusiondirectory.po | 2 +- ipmi/locale/nb/fusiondirectory.po | 2 +- ipmi/locale/nl/fusiondirectory.po | 2 +- ipmi/locale/pl/fusiondirectory.po | 2 +- ipmi/locale/pt/fusiondirectory.po | 2 +- ipmi/locale/pt_BR/fusiondirectory.po | 2 +- ipmi/locale/ru/fusiondirectory.po | 2 +- ipmi/locale/ru@petr1708/fusiondirectory.po | 2 +- ipmi/locale/sv/fusiondirectory.po | 2 +- ipmi/locale/ug/fusiondirectory.po | 2 +- ipmi/locale/vi_VN/fusiondirectory.po | 2 +- ipmi/locale/zh/fusiondirectory.po | 2 +- kolab2/locale/ar/fusiondirectory.po | 2 +- kolab2/locale/ca/fusiondirectory.po | 2 +- kolab2/locale/cs_CZ/fusiondirectory.po | 2 +- kolab2/locale/de/fusiondirectory.po | 2 +- kolab2/locale/el_GR/fusiondirectory.po | 2 +- kolab2/locale/en/fusiondirectory.po | 2 +- kolab2/locale/es/fusiondirectory.po | 2 +- kolab2/locale/es_CO/fusiondirectory.po | 2 +- kolab2/locale/es_VE/fusiondirectory.po | 2 +- kolab2/locale/fa_IR/fusiondirectory.po | 2 +- kolab2/locale/fi_FI/fusiondirectory.po | 2 +- kolab2/locale/fr/fusiondirectory.po | 2 +- kolab2/locale/hu_HU/fusiondirectory.po | 2 +- kolab2/locale/id/fusiondirectory.po | 2 +- kolab2/locale/it_IT/fusiondirectory.po | 2 +- kolab2/locale/lv/fusiondirectory.po | 2 +- kolab2/locale/nb/fusiondirectory.po | 2 +- kolab2/locale/nl/fusiondirectory.po | 2 +- kolab2/locale/pl/fusiondirectory.po | 2 +- kolab2/locale/pt/fusiondirectory.po | 2 +- kolab2/locale/pt_BR/fusiondirectory.po | 2 +- kolab2/locale/ru/fusiondirectory.po | 2 +- kolab2/locale/ru@petr1708/fusiondirectory.po | 2 +- kolab2/locale/sv/fusiondirectory.po | 2 +- kolab2/locale/ug/fusiondirectory.po | 2 +- kolab2/locale/vi_VN/fusiondirectory.po | 2 +- kolab2/locale/zh/fusiondirectory.po | 2 +- ldapdump/locale/ar/fusiondirectory.po | 2 +- ldapdump/locale/ca/fusiondirectory.po | 2 +- ldapdump/locale/cs_CZ/fusiondirectory.po | 2 +- ldapdump/locale/de/fusiondirectory.po | 2 +- ldapdump/locale/el_GR/fusiondirectory.po | 2 +- ldapdump/locale/en/fusiondirectory.po | 2 +- ldapdump/locale/es/fusiondirectory.po | 2 +- ldapdump/locale/es_CO/fusiondirectory.po | 2 +- ldapdump/locale/es_VE/fusiondirectory.po | 2 +- ldapdump/locale/fa_IR/fusiondirectory.po | 2 +- ldapdump/locale/fi_FI/fusiondirectory.po | 2 +- ldapdump/locale/fr/fusiondirectory.po | 2 +- ldapdump/locale/hu_HU/fusiondirectory.po | 2 +- ldapdump/locale/id/fusiondirectory.po | 2 +- ldapdump/locale/it_IT/fusiondirectory.po | 2 +- ldapdump/locale/lv/fusiondirectory.po | 2 +- ldapdump/locale/nb/fusiondirectory.po | 2 +- ldapdump/locale/nl/fusiondirectory.po | 2 +- ldapdump/locale/pl/fusiondirectory.po | 2 +- ldapdump/locale/pt/fusiondirectory.po | 2 +- ldapdump/locale/pt_BR/fusiondirectory.po | 2 +- ldapdump/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- ldapdump/locale/sv/fusiondirectory.po | 2 +- ldapdump/locale/ug/fusiondirectory.po | 2 +- ldapdump/locale/vi_VN/fusiondirectory.po | 2 +- ldapdump/locale/zh/fusiondirectory.po | 2 +- ldapmanager/locale/ar/fusiondirectory.po | 8 +-- ldapmanager/locale/ca/fusiondirectory.po | 8 +-- ldapmanager/locale/cs_CZ/fusiondirectory.po | 8 +-- ldapmanager/locale/de/fusiondirectory.po | 8 +-- ldapmanager/locale/el_GR/fusiondirectory.po | 8 +-- ldapmanager/locale/en/fusiondirectory.po | 8 +-- ldapmanager/locale/es/fusiondirectory.po | 8 +-- ldapmanager/locale/es_CO/fusiondirectory.po | 8 +-- ldapmanager/locale/es_VE/fusiondirectory.po | 8 +-- ldapmanager/locale/fa_IR/fusiondirectory.po | 8 +-- ldapmanager/locale/fi_FI/fusiondirectory.po | 8 +-- ldapmanager/locale/fr/fusiondirectory.po | 8 +-- ldapmanager/locale/hu_HU/fusiondirectory.po | 8 +-- ldapmanager/locale/id/fusiondirectory.po | 8 +-- ldapmanager/locale/it_IT/fusiondirectory.po | 8 +-- ldapmanager/locale/lv/fusiondirectory.po | 8 +-- ldapmanager/locale/nb/fusiondirectory.po | 8 +-- ldapmanager/locale/nl/fusiondirectory.po | 8 +-- ldapmanager/locale/pl/fusiondirectory.po | 8 +-- ldapmanager/locale/pt/fusiondirectory.po | 8 +-- ldapmanager/locale/pt_BR/fusiondirectory.po | 8 +-- ldapmanager/locale/ru/fusiondirectory.po | 8 +-- .../locale/ru@petr1708/fusiondirectory.po | 8 +-- ldapmanager/locale/sv/fusiondirectory.po | 8 +-- ldapmanager/locale/ug/fusiondirectory.po | 8 +-- ldapmanager/locale/vi_VN/fusiondirectory.po | 8 +-- ldapmanager/locale/zh/fusiondirectory.po | 8 +-- mail/locale/ar/fusiondirectory.po | 2 +- mail/locale/ca/fusiondirectory.po | 2 +- mail/locale/cs_CZ/fusiondirectory.po | 2 +- mail/locale/de/fusiondirectory.po | 2 +- mail/locale/el_GR/fusiondirectory.po | 2 +- mail/locale/en/fusiondirectory.po | 2 +- mail/locale/es/fusiondirectory.po | 2 +- mail/locale/es_CO/fusiondirectory.po | 2 +- mail/locale/es_VE/fusiondirectory.po | 2 +- mail/locale/fa_IR/fusiondirectory.po | 2 +- mail/locale/fi_FI/fusiondirectory.po | 2 +- mail/locale/fr/fusiondirectory.po | 2 +- mail/locale/hu_HU/fusiondirectory.po | 2 +- mail/locale/id/fusiondirectory.po | 2 +- mail/locale/it_IT/fusiondirectory.po | 2 +- mail/locale/lv/fusiondirectory.po | 2 +- mail/locale/nb/fusiondirectory.po | 2 +- mail/locale/nl/fusiondirectory.po | 2 +- mail/locale/pl/fusiondirectory.po | 2 +- mail/locale/pt/fusiondirectory.po | 2 +- mail/locale/pt_BR/fusiondirectory.po | 2 +- mail/locale/ru/fusiondirectory.po | 2 +- mail/locale/ru@petr1708/fusiondirectory.po | 2 +- mail/locale/sv/fusiondirectory.po | 2 +- mail/locale/ug/fusiondirectory.po | 2 +- mail/locale/vi_VN/fusiondirectory.po | 2 +- mail/locale/zh/fusiondirectory.po | 2 +- mixedgroups/locale/ar/fusiondirectory.po | 2 +- mixedgroups/locale/ca/fusiondirectory.po | 2 +- mixedgroups/locale/cs_CZ/fusiondirectory.po | 2 +- mixedgroups/locale/de/fusiondirectory.po | 2 +- mixedgroups/locale/el_GR/fusiondirectory.po | 2 +- mixedgroups/locale/en/fusiondirectory.po | 2 +- mixedgroups/locale/es/fusiondirectory.po | 2 +- mixedgroups/locale/es_CO/fusiondirectory.po | 2 +- mixedgroups/locale/es_VE/fusiondirectory.po | 2 +- mixedgroups/locale/fa_IR/fusiondirectory.po | 2 +- mixedgroups/locale/fi_FI/fusiondirectory.po | 2 +- mixedgroups/locale/fr/fusiondirectory.po | 2 +- mixedgroups/locale/hu_HU/fusiondirectory.po | 2 +- mixedgroups/locale/id/fusiondirectory.po | 2 +- mixedgroups/locale/it_IT/fusiondirectory.po | 2 +- mixedgroups/locale/lv/fusiondirectory.po | 2 +- mixedgroups/locale/nb/fusiondirectory.po | 2 +- mixedgroups/locale/nl/fusiondirectory.po | 2 +- mixedgroups/locale/pl/fusiondirectory.po | 2 +- mixedgroups/locale/pt/fusiondirectory.po | 2 +- mixedgroups/locale/pt_BR/fusiondirectory.po | 2 +- mixedgroups/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- mixedgroups/locale/sv/fusiondirectory.po | 2 +- mixedgroups/locale/ug/fusiondirectory.po | 2 +- mixedgroups/locale/vi_VN/fusiondirectory.po | 2 +- mixedgroups/locale/zh/fusiondirectory.po | 2 +- nagios/locale/ar/fusiondirectory.po | 2 +- nagios/locale/ca/fusiondirectory.po | 2 +- nagios/locale/cs_CZ/fusiondirectory.po | 2 +- nagios/locale/de/fusiondirectory.po | 2 +- nagios/locale/el_GR/fusiondirectory.po | 2 +- nagios/locale/en/fusiondirectory.po | 2 +- nagios/locale/es/fusiondirectory.po | 2 +- nagios/locale/es_CO/fusiondirectory.po | 2 +- nagios/locale/es_VE/fusiondirectory.po | 2 +- nagios/locale/fa_IR/fusiondirectory.po | 2 +- nagios/locale/fi_FI/fusiondirectory.po | 2 +- nagios/locale/fr/fusiondirectory.po | 2 +- nagios/locale/hu_HU/fusiondirectory.po | 2 +- nagios/locale/id/fusiondirectory.po | 2 +- nagios/locale/it_IT/fusiondirectory.po | 2 +- nagios/locale/lv/fusiondirectory.po | 2 +- nagios/locale/nb/fusiondirectory.po | 2 +- nagios/locale/nl/fusiondirectory.po | 2 +- nagios/locale/pl/fusiondirectory.po | 2 +- nagios/locale/pt/fusiondirectory.po | 2 +- nagios/locale/pt_BR/fusiondirectory.po | 2 +- nagios/locale/ru/fusiondirectory.po | 2 +- nagios/locale/ru@petr1708/fusiondirectory.po | 2 +- nagios/locale/sv/fusiondirectory.po | 2 +- nagios/locale/ug/fusiondirectory.po | 2 +- nagios/locale/vi_VN/fusiondirectory.po | 2 +- nagios/locale/zh/fusiondirectory.po | 2 +- netgroups/locale/ar/fusiondirectory.po | 2 +- netgroups/locale/ca/fusiondirectory.po | 2 +- netgroups/locale/cs_CZ/fusiondirectory.po | 2 +- netgroups/locale/de/fusiondirectory.po | 2 +- netgroups/locale/el_GR/fusiondirectory.po | 2 +- netgroups/locale/en/fusiondirectory.po | 2 +- netgroups/locale/es/fusiondirectory.po | 2 +- netgroups/locale/es_CO/fusiondirectory.po | 2 +- netgroups/locale/es_VE/fusiondirectory.po | 2 +- netgroups/locale/fa_IR/fusiondirectory.po | 2 +- netgroups/locale/fi_FI/fusiondirectory.po | 2 +- netgroups/locale/fr/fusiondirectory.po | 2 +- netgroups/locale/hu_HU/fusiondirectory.po | 2 +- netgroups/locale/id/fusiondirectory.po | 2 +- netgroups/locale/it_IT/fusiondirectory.po | 2 +- netgroups/locale/lv/fusiondirectory.po | 2 +- netgroups/locale/nb/fusiondirectory.po | 2 +- netgroups/locale/nl/fusiondirectory.po | 2 +- netgroups/locale/pl/fusiondirectory.po | 2 +- netgroups/locale/pt/fusiondirectory.po | 2 +- netgroups/locale/pt_BR/fusiondirectory.po | 2 +- netgroups/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- netgroups/locale/sv/fusiondirectory.po | 2 +- netgroups/locale/ug/fusiondirectory.po | 2 +- netgroups/locale/vi_VN/fusiondirectory.po | 2 +- netgroups/locale/zh/fusiondirectory.po | 2 +- newsletter/locale/ar/fusiondirectory.po | 2 +- newsletter/locale/ca/fusiondirectory.po | 2 +- newsletter/locale/cs_CZ/fusiondirectory.po | 2 +- newsletter/locale/de/fusiondirectory.po | 2 +- newsletter/locale/el_GR/fusiondirectory.po | 2 +- newsletter/locale/en/fusiondirectory.po | 2 +- newsletter/locale/es/fusiondirectory.po | 2 +- newsletter/locale/es_CO/fusiondirectory.po | 2 +- newsletter/locale/es_VE/fusiondirectory.po | 2 +- newsletter/locale/fa_IR/fusiondirectory.po | 2 +- newsletter/locale/fi_FI/fusiondirectory.po | 2 +- newsletter/locale/fr/fusiondirectory.po | 2 +- newsletter/locale/hu_HU/fusiondirectory.po | 2 +- newsletter/locale/id/fusiondirectory.po | 2 +- newsletter/locale/it_IT/fusiondirectory.po | 2 +- newsletter/locale/lv/fusiondirectory.po | 2 +- newsletter/locale/nb/fusiondirectory.po | 2 +- newsletter/locale/nl/fusiondirectory.po | 2 +- newsletter/locale/pl/fusiondirectory.po | 2 +- newsletter/locale/pt/fusiondirectory.po | 2 +- newsletter/locale/pt_BR/fusiondirectory.po | 2 +- newsletter/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- newsletter/locale/sv/fusiondirectory.po | 2 +- newsletter/locale/ug/fusiondirectory.po | 2 +- newsletter/locale/vi_VN/fusiondirectory.po | 2 +- newsletter/locale/zh/fusiondirectory.po | 2 +- opsi/locale/ar/fusiondirectory.po | 2 +- opsi/locale/ca/fusiondirectory.po | 2 +- opsi/locale/cs_CZ/fusiondirectory.po | 2 +- opsi/locale/de/fusiondirectory.po | 2 +- opsi/locale/el_GR/fusiondirectory.po | 2 +- opsi/locale/en/fusiondirectory.po | 2 +- opsi/locale/es/fusiondirectory.po | 2 +- opsi/locale/es_CO/fusiondirectory.po | 2 +- opsi/locale/es_VE/fusiondirectory.po | 2 +- opsi/locale/fa_IR/fusiondirectory.po | 2 +- opsi/locale/fi_FI/fusiondirectory.po | 2 +- opsi/locale/fr/fusiondirectory.po | 2 +- opsi/locale/hu_HU/fusiondirectory.po | 2 +- opsi/locale/id/fusiondirectory.po | 2 +- opsi/locale/it_IT/fusiondirectory.po | 2 +- opsi/locale/lv/fusiondirectory.po | 2 +- opsi/locale/nb/fusiondirectory.po | 2 +- opsi/locale/nl/fusiondirectory.po | 2 +- opsi/locale/pl/fusiondirectory.po | 2 +- opsi/locale/pt/fusiondirectory.po | 2 +- opsi/locale/pt_BR/fusiondirectory.po | 2 +- opsi/locale/ru/fusiondirectory.po | 2 +- opsi/locale/ru@petr1708/fusiondirectory.po | 2 +- opsi/locale/sv/fusiondirectory.po | 2 +- opsi/locale/ug/fusiondirectory.po | 2 +- opsi/locale/vi_VN/fusiondirectory.po | 2 +- opsi/locale/zh/fusiondirectory.po | 2 +- personal/locale/ar/fusiondirectory.po | 2 +- personal/locale/ca/fusiondirectory.po | 2 +- personal/locale/cs_CZ/fusiondirectory.po | 2 +- personal/locale/de/fusiondirectory.po | 2 +- personal/locale/el_GR/fusiondirectory.po | 2 +- personal/locale/en/fusiondirectory.po | 2 +- personal/locale/es/fusiondirectory.po | 2 +- personal/locale/es_CO/fusiondirectory.po | 2 +- personal/locale/es_VE/fusiondirectory.po | 2 +- personal/locale/fa_IR/fusiondirectory.po | 2 +- personal/locale/fi_FI/fusiondirectory.po | 2 +- personal/locale/fr/fusiondirectory.po | 2 +- personal/locale/hu_HU/fusiondirectory.po | 2 +- personal/locale/id/fusiondirectory.po | 2 +- personal/locale/it_IT/fusiondirectory.po | 2 +- personal/locale/lv/fusiondirectory.po | 2 +- personal/locale/nb/fusiondirectory.po | 2 +- personal/locale/nl/fusiondirectory.po | 2 +- personal/locale/pl/fusiondirectory.po | 2 +- personal/locale/pt/fusiondirectory.po | 2 +- personal/locale/pt_BR/fusiondirectory.po | 2 +- personal/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- personal/locale/sv/fusiondirectory.po | 2 +- personal/locale/ug/fusiondirectory.po | 2 +- personal/locale/vi_VN/fusiondirectory.po | 2 +- personal/locale/zh/fusiondirectory.po | 2 +- postfix/locale/ar/fusiondirectory.po | 2 +- postfix/locale/ca/fusiondirectory.po | 2 +- postfix/locale/cs_CZ/fusiondirectory.po | 2 +- postfix/locale/de/fusiondirectory.po | 2 +- postfix/locale/el_GR/fusiondirectory.po | 2 +- postfix/locale/en/fusiondirectory.po | 2 +- postfix/locale/es/fusiondirectory.po | 2 +- postfix/locale/es_CO/fusiondirectory.po | 2 +- postfix/locale/es_VE/fusiondirectory.po | 2 +- postfix/locale/fa_IR/fusiondirectory.po | 2 +- postfix/locale/fi_FI/fusiondirectory.po | 2 +- postfix/locale/fr/fusiondirectory.po | 2 +- postfix/locale/hu_HU/fusiondirectory.po | 2 +- postfix/locale/id/fusiondirectory.po | 2 +- postfix/locale/it_IT/fusiondirectory.po | 2 +- postfix/locale/lv/fusiondirectory.po | 2 +- postfix/locale/nb/fusiondirectory.po | 2 +- postfix/locale/nl/fusiondirectory.po | 2 +- postfix/locale/pl/fusiondirectory.po | 2 +- postfix/locale/pt/fusiondirectory.po | 2 +- postfix/locale/pt_BR/fusiondirectory.po | 2 +- postfix/locale/ru/fusiondirectory.po | 2 +- postfix/locale/ru@petr1708/fusiondirectory.po | 2 +- postfix/locale/sv/fusiondirectory.po | 2 +- postfix/locale/ug/fusiondirectory.po | 2 +- postfix/locale/vi_VN/fusiondirectory.po | 2 +- postfix/locale/zh/fusiondirectory.po | 2 +- ppolicy/locale/ar/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/ca/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/cs_CZ/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/de/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/el_GR/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/en/fusiondirectory.po | 55 +++++++++++++---- ppolicy/locale/es/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/es_CO/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/es_VE/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/fa_IR/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/fi_FI/fusiondirectory.po | 59 ++++++++++++++----- ppolicy/locale/fr/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/hu_HU/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/id/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/it_IT/fusiondirectory.po | 59 ++++++++++++++----- ppolicy/locale/lv/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/nb/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/nl/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/pl/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/pt/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/pt_BR/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/ru/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/ru@petr1708/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/sv/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/ug/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/vi_VN/fusiondirectory.po | 57 ++++++++++++++---- ppolicy/locale/zh/fusiondirectory.po | 57 ++++++++++++++---- puppet/locale/ar/fusiondirectory.po | 2 +- puppet/locale/ca/fusiondirectory.po | 2 +- puppet/locale/cs_CZ/fusiondirectory.po | 2 +- puppet/locale/de/fusiondirectory.po | 2 +- puppet/locale/el_GR/fusiondirectory.po | 2 +- puppet/locale/en/fusiondirectory.po | 2 +- puppet/locale/es/fusiondirectory.po | 2 +- puppet/locale/es_CO/fusiondirectory.po | 2 +- puppet/locale/es_VE/fusiondirectory.po | 2 +- puppet/locale/fa_IR/fusiondirectory.po | 2 +- puppet/locale/fi_FI/fusiondirectory.po | 2 +- puppet/locale/fr/fusiondirectory.po | 2 +- puppet/locale/hu_HU/fusiondirectory.po | 2 +- puppet/locale/id/fusiondirectory.po | 2 +- puppet/locale/it_IT/fusiondirectory.po | 2 +- puppet/locale/lv/fusiondirectory.po | 2 +- puppet/locale/nb/fusiondirectory.po | 2 +- puppet/locale/nl/fusiondirectory.po | 2 +- puppet/locale/pl/fusiondirectory.po | 2 +- puppet/locale/pt/fusiondirectory.po | 2 +- puppet/locale/pt_BR/fusiondirectory.po | 2 +- puppet/locale/ru/fusiondirectory.po | 2 +- puppet/locale/ru@petr1708/fusiondirectory.po | 2 +- puppet/locale/sv/fusiondirectory.po | 2 +- puppet/locale/ug/fusiondirectory.po | 2 +- puppet/locale/vi_VN/fusiondirectory.po | 2 +- puppet/locale/zh/fusiondirectory.po | 2 +- pureftpd/locale/ar/fusiondirectory.po | 2 +- pureftpd/locale/ca/fusiondirectory.po | 2 +- pureftpd/locale/cs_CZ/fusiondirectory.po | 2 +- pureftpd/locale/de/fusiondirectory.po | 2 +- pureftpd/locale/el_GR/fusiondirectory.po | 2 +- pureftpd/locale/en/fusiondirectory.po | 2 +- pureftpd/locale/es/fusiondirectory.po | 2 +- pureftpd/locale/es_CO/fusiondirectory.po | 2 +- pureftpd/locale/es_VE/fusiondirectory.po | 2 +- pureftpd/locale/fa_IR/fusiondirectory.po | 2 +- pureftpd/locale/fi_FI/fusiondirectory.po | 2 +- pureftpd/locale/fr/fusiondirectory.po | 2 +- pureftpd/locale/hu_HU/fusiondirectory.po | 2 +- pureftpd/locale/id/fusiondirectory.po | 2 +- pureftpd/locale/it_IT/fusiondirectory.po | 2 +- pureftpd/locale/lv/fusiondirectory.po | 2 +- pureftpd/locale/nb/fusiondirectory.po | 2 +- pureftpd/locale/nl/fusiondirectory.po | 2 +- pureftpd/locale/pl/fusiondirectory.po | 2 +- pureftpd/locale/pt/fusiondirectory.po | 2 +- pureftpd/locale/pt_BR/fusiondirectory.po | 2 +- pureftpd/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- pureftpd/locale/sv/fusiondirectory.po | 2 +- pureftpd/locale/ug/fusiondirectory.po | 2 +- pureftpd/locale/vi_VN/fusiondirectory.po | 2 +- pureftpd/locale/zh/fusiondirectory.po | 2 +- quota/locale/ar/fusiondirectory.po | 2 +- quota/locale/ca/fusiondirectory.po | 2 +- quota/locale/cs_CZ/fusiondirectory.po | 2 +- quota/locale/de/fusiondirectory.po | 2 +- quota/locale/el_GR/fusiondirectory.po | 2 +- quota/locale/en/fusiondirectory.po | 2 +- quota/locale/es/fusiondirectory.po | 2 +- quota/locale/es_CO/fusiondirectory.po | 2 +- quota/locale/es_VE/fusiondirectory.po | 2 +- quota/locale/fa_IR/fusiondirectory.po | 2 +- quota/locale/fi_FI/fusiondirectory.po | 2 +- quota/locale/fr/fusiondirectory.po | 2 +- quota/locale/hu_HU/fusiondirectory.po | 2 +- quota/locale/id/fusiondirectory.po | 2 +- quota/locale/it_IT/fusiondirectory.po | 2 +- quota/locale/lv/fusiondirectory.po | 2 +- quota/locale/nb/fusiondirectory.po | 2 +- quota/locale/nl/fusiondirectory.po | 2 +- quota/locale/pl/fusiondirectory.po | 2 +- quota/locale/pt/fusiondirectory.po | 2 +- quota/locale/pt_BR/fusiondirectory.po | 2 +- quota/locale/ru/fusiondirectory.po | 2 +- quota/locale/ru@petr1708/fusiondirectory.po | 2 +- quota/locale/sv/fusiondirectory.po | 2 +- quota/locale/ug/fusiondirectory.po | 2 +- quota/locale/vi_VN/fusiondirectory.po | 2 +- quota/locale/zh/fusiondirectory.po | 2 +- repository/locale/ar/fusiondirectory.po | 2 +- repository/locale/ca/fusiondirectory.po | 2 +- repository/locale/cs_CZ/fusiondirectory.po | 2 +- repository/locale/de/fusiondirectory.po | 2 +- repository/locale/el_GR/fusiondirectory.po | 2 +- repository/locale/en/fusiondirectory.po | 2 +- repository/locale/es/fusiondirectory.po | 2 +- repository/locale/es_CO/fusiondirectory.po | 2 +- repository/locale/es_VE/fusiondirectory.po | 2 +- repository/locale/fa_IR/fusiondirectory.po | 2 +- repository/locale/fi_FI/fusiondirectory.po | 2 +- repository/locale/fr/fusiondirectory.po | 2 +- repository/locale/hu_HU/fusiondirectory.po | 2 +- repository/locale/id/fusiondirectory.po | 2 +- repository/locale/it_IT/fusiondirectory.po | 2 +- repository/locale/lv/fusiondirectory.po | 2 +- repository/locale/nb/fusiondirectory.po | 2 +- repository/locale/nl/fusiondirectory.po | 2 +- repository/locale/pl/fusiondirectory.po | 2 +- repository/locale/pt/fusiondirectory.po | 2 +- repository/locale/pt_BR/fusiondirectory.po | 2 +- repository/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- repository/locale/sv/fusiondirectory.po | 2 +- repository/locale/ug/fusiondirectory.po | 2 +- repository/locale/vi_VN/fusiondirectory.po | 2 +- repository/locale/zh/fusiondirectory.po | 2 +- samba/locale/ar/fusiondirectory.po | 2 +- samba/locale/ca/fusiondirectory.po | 2 +- samba/locale/cs_CZ/fusiondirectory.po | 2 +- samba/locale/de/fusiondirectory.po | 2 +- samba/locale/el_GR/fusiondirectory.po | 2 +- samba/locale/en/fusiondirectory.po | 2 +- samba/locale/es/fusiondirectory.po | 2 +- samba/locale/es_CO/fusiondirectory.po | 2 +- samba/locale/es_VE/fusiondirectory.po | 2 +- samba/locale/fa_IR/fusiondirectory.po | 2 +- samba/locale/fi_FI/fusiondirectory.po | 2 +- samba/locale/fr/fusiondirectory.po | 2 +- samba/locale/hu_HU/fusiondirectory.po | 2 +- samba/locale/id/fusiondirectory.po | 2 +- samba/locale/it_IT/fusiondirectory.po | 2 +- samba/locale/lv/fusiondirectory.po | 2 +- samba/locale/nb/fusiondirectory.po | 2 +- samba/locale/nl/fusiondirectory.po | 2 +- samba/locale/pl/fusiondirectory.po | 2 +- samba/locale/pt/fusiondirectory.po | 2 +- samba/locale/pt_BR/fusiondirectory.po | 2 +- samba/locale/ru/fusiondirectory.po | 2 +- samba/locale/ru@petr1708/fusiondirectory.po | 2 +- samba/locale/sv/fusiondirectory.po | 2 +- samba/locale/ug/fusiondirectory.po | 2 +- samba/locale/vi_VN/fusiondirectory.po | 2 +- samba/locale/zh/fusiondirectory.po | 2 +- sogo/locale/ar/fusiondirectory.po | 2 +- sogo/locale/ca/fusiondirectory.po | 2 +- sogo/locale/cs_CZ/fusiondirectory.po | 2 +- sogo/locale/de/fusiondirectory.po | 2 +- sogo/locale/el_GR/fusiondirectory.po | 2 +- sogo/locale/en/fusiondirectory.po | 2 +- sogo/locale/es/fusiondirectory.po | 2 +- sogo/locale/es_CO/fusiondirectory.po | 2 +- sogo/locale/es_VE/fusiondirectory.po | 2 +- sogo/locale/fa_IR/fusiondirectory.po | 2 +- sogo/locale/fi_FI/fusiondirectory.po | 2 +- sogo/locale/fr/fusiondirectory.po | 2 +- sogo/locale/hu_HU/fusiondirectory.po | 2 +- sogo/locale/id/fusiondirectory.po | 2 +- sogo/locale/it_IT/fusiondirectory.po | 2 +- sogo/locale/lv/fusiondirectory.po | 2 +- sogo/locale/nb/fusiondirectory.po | 2 +- sogo/locale/nl/fusiondirectory.po | 2 +- sogo/locale/pl/fusiondirectory.po | 2 +- sogo/locale/pt/fusiondirectory.po | 2 +- sogo/locale/pt_BR/fusiondirectory.po | 2 +- sogo/locale/ru/fusiondirectory.po | 2 +- sogo/locale/ru@petr1708/fusiondirectory.po | 2 +- sogo/locale/sv/fusiondirectory.po | 2 +- sogo/locale/ug/fusiondirectory.po | 2 +- sogo/locale/vi_VN/fusiondirectory.po | 2 +- sogo/locale/zh/fusiondirectory.po | 2 +- spamassassin/locale/ar/fusiondirectory.po | 2 +- spamassassin/locale/ca/fusiondirectory.po | 2 +- spamassassin/locale/cs_CZ/fusiondirectory.po | 2 +- spamassassin/locale/de/fusiondirectory.po | 2 +- spamassassin/locale/el_GR/fusiondirectory.po | 2 +- spamassassin/locale/en/fusiondirectory.po | 2 +- spamassassin/locale/es/fusiondirectory.po | 2 +- spamassassin/locale/es_CO/fusiondirectory.po | 2 +- spamassassin/locale/es_VE/fusiondirectory.po | 2 +- spamassassin/locale/fa_IR/fusiondirectory.po | 2 +- spamassassin/locale/fi_FI/fusiondirectory.po | 2 +- spamassassin/locale/fr/fusiondirectory.po | 2 +- spamassassin/locale/hu_HU/fusiondirectory.po | 2 +- spamassassin/locale/id/fusiondirectory.po | 2 +- spamassassin/locale/it_IT/fusiondirectory.po | 2 +- spamassassin/locale/lv/fusiondirectory.po | 2 +- spamassassin/locale/nb/fusiondirectory.po | 2 +- spamassassin/locale/nl/fusiondirectory.po | 2 +- spamassassin/locale/pl/fusiondirectory.po | 2 +- spamassassin/locale/pt/fusiondirectory.po | 2 +- spamassassin/locale/pt_BR/fusiondirectory.po | 2 +- spamassassin/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- spamassassin/locale/sv/fusiondirectory.po | 2 +- spamassassin/locale/ug/fusiondirectory.po | 2 +- spamassassin/locale/vi_VN/fusiondirectory.po | 2 +- spamassassin/locale/zh/fusiondirectory.po | 2 +- squid/locale/ar/fusiondirectory.po | 2 +- squid/locale/ca/fusiondirectory.po | 2 +- squid/locale/cs_CZ/fusiondirectory.po | 2 +- squid/locale/de/fusiondirectory.po | 2 +- squid/locale/el_GR/fusiondirectory.po | 2 +- squid/locale/en/fusiondirectory.po | 2 +- squid/locale/es/fusiondirectory.po | 2 +- squid/locale/es_CO/fusiondirectory.po | 2 +- squid/locale/es_VE/fusiondirectory.po | 2 +- squid/locale/fa_IR/fusiondirectory.po | 2 +- squid/locale/fi_FI/fusiondirectory.po | 2 +- squid/locale/fr/fusiondirectory.po | 2 +- squid/locale/hu_HU/fusiondirectory.po | 2 +- squid/locale/id/fusiondirectory.po | 2 +- squid/locale/it_IT/fusiondirectory.po | 2 +- squid/locale/lv/fusiondirectory.po | 2 +- squid/locale/nb/fusiondirectory.po | 2 +- squid/locale/nl/fusiondirectory.po | 2 +- squid/locale/pl/fusiondirectory.po | 2 +- squid/locale/pt/fusiondirectory.po | 2 +- squid/locale/pt_BR/fusiondirectory.po | 2 +- squid/locale/ru/fusiondirectory.po | 2 +- squid/locale/ru@petr1708/fusiondirectory.po | 2 +- squid/locale/sv/fusiondirectory.po | 2 +- squid/locale/ug/fusiondirectory.po | 2 +- squid/locale/vi_VN/fusiondirectory.po | 2 +- squid/locale/zh/fusiondirectory.po | 2 +- ssh/locale/ar/fusiondirectory.po | 2 +- ssh/locale/ca/fusiondirectory.po | 2 +- ssh/locale/cs_CZ/fusiondirectory.po | 2 +- ssh/locale/de/fusiondirectory.po | 2 +- ssh/locale/el_GR/fusiondirectory.po | 2 +- ssh/locale/en/fusiondirectory.po | 2 +- ssh/locale/es/fusiondirectory.po | 2 +- ssh/locale/es_CO/fusiondirectory.po | 2 +- ssh/locale/es_VE/fusiondirectory.po | 2 +- ssh/locale/fa_IR/fusiondirectory.po | 2 +- ssh/locale/fi_FI/fusiondirectory.po | 2 +- ssh/locale/fr/fusiondirectory.po | 2 +- ssh/locale/hu_HU/fusiondirectory.po | 2 +- ssh/locale/id/fusiondirectory.po | 2 +- ssh/locale/it_IT/fusiondirectory.po | 2 +- ssh/locale/lv/fusiondirectory.po | 2 +- ssh/locale/nb/fusiondirectory.po | 2 +- ssh/locale/nl/fusiondirectory.po | 2 +- ssh/locale/pl/fusiondirectory.po | 2 +- ssh/locale/pt/fusiondirectory.po | 2 +- ssh/locale/pt_BR/fusiondirectory.po | 2 +- ssh/locale/ru/fusiondirectory.po | 2 +- ssh/locale/ru@petr1708/fusiondirectory.po | 2 +- ssh/locale/sv/fusiondirectory.po | 2 +- ssh/locale/ug/fusiondirectory.po | 2 +- ssh/locale/vi_VN/fusiondirectory.po | 2 +- ssh/locale/zh/fusiondirectory.po | 2 +- subcontracting/locale/ar/fusiondirectory.po | 2 +- subcontracting/locale/ca/fusiondirectory.po | 2 +- .../locale/cs_CZ/fusiondirectory.po | 2 +- subcontracting/locale/de/fusiondirectory.po | 2 +- .../locale/el_GR/fusiondirectory.po | 2 +- subcontracting/locale/en/fusiondirectory.po | 2 +- subcontracting/locale/es/fusiondirectory.po | 2 +- .../locale/es_CO/fusiondirectory.po | 2 +- .../locale/es_VE/fusiondirectory.po | 2 +- .../locale/fa_IR/fusiondirectory.po | 2 +- .../locale/fi_FI/fusiondirectory.po | 2 +- subcontracting/locale/fr/fusiondirectory.po | 2 +- .../locale/hu_HU/fusiondirectory.po | 2 +- subcontracting/locale/id/fusiondirectory.po | 2 +- .../locale/it_IT/fusiondirectory.po | 2 +- subcontracting/locale/lv/fusiondirectory.po | 2 +- subcontracting/locale/nb/fusiondirectory.po | 2 +- subcontracting/locale/nl/fusiondirectory.po | 2 +- subcontracting/locale/pl/fusiondirectory.po | 2 +- subcontracting/locale/pt/fusiondirectory.po | 2 +- .../locale/pt_BR/fusiondirectory.po | 2 +- subcontracting/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- subcontracting/locale/sv/fusiondirectory.po | 2 +- subcontracting/locale/ug/fusiondirectory.po | 2 +- .../locale/vi_VN/fusiondirectory.po | 2 +- subcontracting/locale/zh/fusiondirectory.po | 2 +- sudo/locale/ar/fusiondirectory.po | 2 +- sudo/locale/ca/fusiondirectory.po | 2 +- sudo/locale/cs_CZ/fusiondirectory.po | 2 +- sudo/locale/de/fusiondirectory.po | 2 +- sudo/locale/el_GR/fusiondirectory.po | 2 +- sudo/locale/en/fusiondirectory.po | 2 +- sudo/locale/es/fusiondirectory.po | 2 +- sudo/locale/es_CO/fusiondirectory.po | 2 +- sudo/locale/es_VE/fusiondirectory.po | 2 +- sudo/locale/fa_IR/fusiondirectory.po | 2 +- sudo/locale/fi_FI/fusiondirectory.po | 2 +- sudo/locale/fr/fusiondirectory.po | 2 +- sudo/locale/hu_HU/fusiondirectory.po | 2 +- sudo/locale/id/fusiondirectory.po | 2 +- sudo/locale/it_IT/fusiondirectory.po | 2 +- sudo/locale/lv/fusiondirectory.po | 2 +- sudo/locale/nb/fusiondirectory.po | 2 +- sudo/locale/nl/fusiondirectory.po | 2 +- sudo/locale/pl/fusiondirectory.po | 2 +- sudo/locale/pt/fusiondirectory.po | 2 +- sudo/locale/pt_BR/fusiondirectory.po | 2 +- sudo/locale/ru/fusiondirectory.po | 2 +- sudo/locale/ru@petr1708/fusiondirectory.po | 2 +- sudo/locale/sv/fusiondirectory.po | 2 +- sudo/locale/ug/fusiondirectory.po | 2 +- sudo/locale/vi_VN/fusiondirectory.po | 2 +- sudo/locale/zh/fusiondirectory.po | 2 +- supann/locale/ar/fusiondirectory.po | 2 +- supann/locale/ca/fusiondirectory.po | 2 +- supann/locale/cs_CZ/fusiondirectory.po | 2 +- supann/locale/de/fusiondirectory.po | 2 +- supann/locale/el_GR/fusiondirectory.po | 2 +- supann/locale/en/fusiondirectory.po | 2 +- supann/locale/es/fusiondirectory.po | 2 +- supann/locale/es_CO/fusiondirectory.po | 2 +- supann/locale/es_VE/fusiondirectory.po | 2 +- supann/locale/fa_IR/fusiondirectory.po | 2 +- supann/locale/fi_FI/fusiondirectory.po | 2 +- supann/locale/fr/fusiondirectory.po | 2 +- supann/locale/hu_HU/fusiondirectory.po | 2 +- supann/locale/id/fusiondirectory.po | 2 +- supann/locale/it_IT/fusiondirectory.po | 2 +- supann/locale/lv/fusiondirectory.po | 2 +- supann/locale/nb/fusiondirectory.po | 2 +- supann/locale/nl/fusiondirectory.po | 2 +- supann/locale/pl/fusiondirectory.po | 2 +- supann/locale/pt/fusiondirectory.po | 2 +- supann/locale/pt_BR/fusiondirectory.po | 2 +- supann/locale/ru/fusiondirectory.po | 2 +- supann/locale/ru@petr1708/fusiondirectory.po | 2 +- supann/locale/sv/fusiondirectory.po | 2 +- supann/locale/ug/fusiondirectory.po | 2 +- supann/locale/vi_VN/fusiondirectory.po | 2 +- supann/locale/zh/fusiondirectory.po | 2 +- sympa/locale/ar/fusiondirectory.po | 2 +- sympa/locale/ca/fusiondirectory.po | 2 +- sympa/locale/cs_CZ/fusiondirectory.po | 2 +- sympa/locale/de/fusiondirectory.po | 2 +- sympa/locale/el_GR/fusiondirectory.po | 2 +- sympa/locale/en/fusiondirectory.po | 2 +- sympa/locale/es/fusiondirectory.po | 2 +- sympa/locale/es_CO/fusiondirectory.po | 2 +- sympa/locale/es_VE/fusiondirectory.po | 2 +- sympa/locale/fa_IR/fusiondirectory.po | 2 +- sympa/locale/fi_FI/fusiondirectory.po | 2 +- sympa/locale/fr/fusiondirectory.po | 2 +- sympa/locale/hu_HU/fusiondirectory.po | 2 +- sympa/locale/id/fusiondirectory.po | 2 +- sympa/locale/it_IT/fusiondirectory.po | 2 +- sympa/locale/lv/fusiondirectory.po | 2 +- sympa/locale/nb/fusiondirectory.po | 2 +- sympa/locale/nl/fusiondirectory.po | 2 +- sympa/locale/pl/fusiondirectory.po | 2 +- sympa/locale/pt/fusiondirectory.po | 2 +- sympa/locale/pt_BR/fusiondirectory.po | 2 +- sympa/locale/ru/fusiondirectory.po | 2 +- sympa/locale/ru@petr1708/fusiondirectory.po | 2 +- sympa/locale/sv/fusiondirectory.po | 2 +- sympa/locale/ug/fusiondirectory.po | 2 +- sympa/locale/vi_VN/fusiondirectory.po | 2 +- sympa/locale/zh/fusiondirectory.po | 2 +- systems/locale/ar/fusiondirectory.po | 2 +- systems/locale/ca/fusiondirectory.po | 2 +- systems/locale/cs_CZ/fusiondirectory.po | 2 +- systems/locale/de/fusiondirectory.po | 2 +- systems/locale/el_GR/fusiondirectory.po | 2 +- systems/locale/en/fusiondirectory.po | 2 +- systems/locale/es/fusiondirectory.po | 2 +- systems/locale/es_CO/fusiondirectory.po | 2 +- systems/locale/es_VE/fusiondirectory.po | 2 +- systems/locale/fa_IR/fusiondirectory.po | 2 +- systems/locale/fi_FI/fusiondirectory.po | 2 +- systems/locale/fr/fusiondirectory.po | 2 +- systems/locale/hu_HU/fusiondirectory.po | 2 +- systems/locale/id/fusiondirectory.po | 2 +- systems/locale/it_IT/fusiondirectory.po | 2 +- systems/locale/lv/fusiondirectory.po | 2 +- systems/locale/nb/fusiondirectory.po | 2 +- systems/locale/nl/fusiondirectory.po | 2 +- systems/locale/pl/fusiondirectory.po | 2 +- systems/locale/pt/fusiondirectory.po | 2 +- systems/locale/pt_BR/fusiondirectory.po | 2 +- systems/locale/ru/fusiondirectory.po | 2 +- systems/locale/ru@petr1708/fusiondirectory.po | 2 +- systems/locale/sv/fusiondirectory.po | 2 +- systems/locale/ug/fusiondirectory.po | 2 +- systems/locale/vi_VN/fusiondirectory.po | 2 +- systems/locale/zh/fusiondirectory.po | 2 +- user-reminder/locale/ar/fusiondirectory.po | 2 +- user-reminder/locale/ca/fusiondirectory.po | 2 +- user-reminder/locale/cs_CZ/fusiondirectory.po | 2 +- user-reminder/locale/de/fusiondirectory.po | 2 +- user-reminder/locale/el_GR/fusiondirectory.po | 2 +- user-reminder/locale/en/fusiondirectory.po | 2 +- user-reminder/locale/es/fusiondirectory.po | 2 +- user-reminder/locale/es_CO/fusiondirectory.po | 2 +- user-reminder/locale/es_VE/fusiondirectory.po | 2 +- user-reminder/locale/fa_IR/fusiondirectory.po | 2 +- user-reminder/locale/fi_FI/fusiondirectory.po | 2 +- user-reminder/locale/fr/fusiondirectory.po | 2 +- user-reminder/locale/hu_HU/fusiondirectory.po | 2 +- user-reminder/locale/id/fusiondirectory.po | 2 +- user-reminder/locale/it_IT/fusiondirectory.po | 2 +- user-reminder/locale/lv/fusiondirectory.po | 2 +- user-reminder/locale/nb/fusiondirectory.po | 2 +- user-reminder/locale/nl/fusiondirectory.po | 2 +- user-reminder/locale/pl/fusiondirectory.po | 2 +- user-reminder/locale/pt/fusiondirectory.po | 2 +- user-reminder/locale/pt_BR/fusiondirectory.po | 2 +- user-reminder/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- user-reminder/locale/sv/fusiondirectory.po | 2 +- user-reminder/locale/ug/fusiondirectory.po | 2 +- user-reminder/locale/vi_VN/fusiondirectory.po | 2 +- user-reminder/locale/zh/fusiondirectory.po | 2 +- weblink/locale/ar/fusiondirectory.po | 2 +- weblink/locale/ca/fusiondirectory.po | 2 +- weblink/locale/cs_CZ/fusiondirectory.po | 2 +- weblink/locale/de/fusiondirectory.po | 2 +- weblink/locale/el_GR/fusiondirectory.po | 2 +- weblink/locale/en/fusiondirectory.po | 2 +- weblink/locale/es/fusiondirectory.po | 2 +- weblink/locale/es_CO/fusiondirectory.po | 2 +- weblink/locale/es_VE/fusiondirectory.po | 2 +- weblink/locale/fa_IR/fusiondirectory.po | 2 +- weblink/locale/fi_FI/fusiondirectory.po | 2 +- weblink/locale/fr/fusiondirectory.po | 2 +- weblink/locale/hu_HU/fusiondirectory.po | 2 +- weblink/locale/id/fusiondirectory.po | 2 +- weblink/locale/it_IT/fusiondirectory.po | 2 +- weblink/locale/lv/fusiondirectory.po | 2 +- weblink/locale/nb/fusiondirectory.po | 2 +- weblink/locale/nl/fusiondirectory.po | 2 +- weblink/locale/pl/fusiondirectory.po | 2 +- weblink/locale/pt/fusiondirectory.po | 2 +- weblink/locale/pt_BR/fusiondirectory.po | 2 +- weblink/locale/ru/fusiondirectory.po | 2 +- weblink/locale/ru@petr1708/fusiondirectory.po | 2 +- weblink/locale/sv/fusiondirectory.po | 2 +- weblink/locale/ug/fusiondirectory.po | 2 +- weblink/locale/vi_VN/fusiondirectory.po | 2 +- weblink/locale/zh/fusiondirectory.po | 2 +- webservice/locale/ar/fusiondirectory.po | 12 ++-- webservice/locale/ca/fusiondirectory.po | 12 ++-- webservice/locale/cs_CZ/fusiondirectory.po | 12 ++-- webservice/locale/de/fusiondirectory.po | 12 ++-- webservice/locale/el_GR/fusiondirectory.po | 12 ++-- webservice/locale/en/fusiondirectory.po | 12 ++-- webservice/locale/es/fusiondirectory.po | 12 ++-- webservice/locale/es_CO/fusiondirectory.po | 12 ++-- webservice/locale/es_VE/fusiondirectory.po | 12 ++-- webservice/locale/fa_IR/fusiondirectory.po | 12 ++-- webservice/locale/fi_FI/fusiondirectory.po | 12 ++-- webservice/locale/fr/fusiondirectory.po | 12 ++-- webservice/locale/hu_HU/fusiondirectory.po | 12 ++-- webservice/locale/id/fusiondirectory.po | 12 ++-- webservice/locale/it_IT/fusiondirectory.po | 12 ++-- webservice/locale/lv/fusiondirectory.po | 12 ++-- webservice/locale/nb/fusiondirectory.po | 12 ++-- webservice/locale/nl/fusiondirectory.po | 12 ++-- webservice/locale/pl/fusiondirectory.po | 12 ++-- webservice/locale/pt/fusiondirectory.po | 12 ++-- webservice/locale/pt_BR/fusiondirectory.po | 12 ++-- webservice/locale/ru/fusiondirectory.po | 12 ++-- .../locale/ru@petr1708/fusiondirectory.po | 12 ++-- webservice/locale/sv/fusiondirectory.po | 12 ++-- webservice/locale/ug/fusiondirectory.po | 12 ++-- webservice/locale/vi_VN/fusiondirectory.po | 12 ++-- webservice/locale/zh/fusiondirectory.po | 12 ++-- 1350 files changed, 2728 insertions(+), 1891 deletions(-) diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po index 23d3021a4b..e1e8c47c5b 100644 --- a/alias/locale/ar/fusiondirectory.po +++ b/alias/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po index e0230266f7..14a510b2a6 100644 --- a/alias/locale/ca/fusiondirectory.po +++ b/alias/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po index c44ea544ab..3ff88c476b 100644 --- a/alias/locale/cs_CZ/fusiondirectory.po +++ b/alias/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po index 1ea8489b79..f5062067d2 100644 --- a/alias/locale/de/fusiondirectory.po +++ b/alias/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po index 66eaccd6cd..70dda00d86 100644 --- a/alias/locale/el_GR/fusiondirectory.po +++ b/alias/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/alias/locale/en/fusiondirectory.po b/alias/locale/en/fusiondirectory.po index dd1dfdd8a8..1238f427ff 100644 --- a/alias/locale/en/fusiondirectory.po +++ b/alias/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po index 1e01a4e72f..00b6837b38 100644 --- a/alias/locale/es/fusiondirectory.po +++ b/alias/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po index 6426c05fd0..c5e1b300be 100644 --- a/alias/locale/es_CO/fusiondirectory.po +++ b/alias/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po index f1502b8b80..3eefa6d2a9 100644 --- a/alias/locale/es_VE/fusiondirectory.po +++ b/alias/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po index 74e0ddfb34..8964bbc8e9 100644 --- a/alias/locale/fa_IR/fusiondirectory.po +++ b/alias/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po index b8d546e824..91a0e1e311 100644 --- a/alias/locale/fi_FI/fusiondirectory.po +++ b/alias/locale/fi_FI/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-08 12:22+0000\n" "Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po index fbb921fae7..e84be3d3b5 100644 --- a/alias/locale/fr/fusiondirectory.po +++ b/alias/locale/fr/fusiondirectory.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po index e55b1c1267..c37dcac13d 100644 --- a/alias/locale/hu_HU/fusiondirectory.po +++ b/alias/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po index 340101e89f..7df2e83437 100644 --- a/alias/locale/id/fusiondirectory.po +++ b/alias/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po index 1b8ac34603..d87acaa5be 100644 --- a/alias/locale/it_IT/fusiondirectory.po +++ b/alias/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po index 1d4e178991..920aa47768 100644 --- a/alias/locale/lv/fusiondirectory.po +++ b/alias/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po index 38889a0959..9e9f12a9fa 100644 --- a/alias/locale/nb/fusiondirectory.po +++ b/alias/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po index ba97caba87..75844ad6f9 100644 --- a/alias/locale/nl/fusiondirectory.po +++ b/alias/locale/nl/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po index 200ba9aa24..89c3cc7af3 100644 --- a/alias/locale/pl/fusiondirectory.po +++ b/alias/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po index c758eb8e56..a569810df7 100644 --- a/alias/locale/pt/fusiondirectory.po +++ b/alias/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po index ed9dd40632..4eb5c68d9d 100644 --- a/alias/locale/pt_BR/fusiondirectory.po +++ b/alias/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po index fdcbf55771..a11b1e55c9 100644 --- a/alias/locale/ru/fusiondirectory.po +++ b/alias/locale/ru/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po index 01880c6987..921ee3d59f 100644 --- a/alias/locale/ru@petr1708/fusiondirectory.po +++ b/alias/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po index f573db0c7c..034828cd3b 100644 --- a/alias/locale/sv/fusiondirectory.po +++ b/alias/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po index 1db1fd36c8..5c6376f11c 100644 --- a/alias/locale/ug/fusiondirectory.po +++ b/alias/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po index da4ca26b88..4e024e7904 100644 --- a/alias/locale/vi_VN/fusiondirectory.po +++ b/alias/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po index c65552b824..9461b6f21a 100644 --- a/alias/locale/zh/fusiondirectory.po +++ b/alias/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/apache2/locale/ar/fusiondirectory.po b/apache2/locale/ar/fusiondirectory.po index d6b35d4a9e..5f2f00edaf 100644 --- a/apache2/locale/ar/fusiondirectory.po +++ b/apache2/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/apache2/locale/ca/fusiondirectory.po b/apache2/locale/ca/fusiondirectory.po index eaf9617c84..9ba55be296 100644 --- a/apache2/locale/ca/fusiondirectory.po +++ b/apache2/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/apache2/locale/cs_CZ/fusiondirectory.po b/apache2/locale/cs_CZ/fusiondirectory.po index b399988643..b1a500df96 100644 --- a/apache2/locale/cs_CZ/fusiondirectory.po +++ b/apache2/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/apache2/locale/de/fusiondirectory.po b/apache2/locale/de/fusiondirectory.po index 06f4f32db2..f65a5c206f 100644 --- a/apache2/locale/de/fusiondirectory.po +++ b/apache2/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/apache2/locale/el_GR/fusiondirectory.po b/apache2/locale/el_GR/fusiondirectory.po index dcce474a66..5d03798d91 100644 --- a/apache2/locale/el_GR/fusiondirectory.po +++ b/apache2/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/apache2/locale/en/fusiondirectory.po b/apache2/locale/en/fusiondirectory.po index 9e642575a2..51a061cdf7 100644 --- a/apache2/locale/en/fusiondirectory.po +++ b/apache2/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/apache2/locale/es/fusiondirectory.po b/apache2/locale/es/fusiondirectory.po index 5e390848f4..c74c15ac00 100644 --- a/apache2/locale/es/fusiondirectory.po +++ b/apache2/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/apache2/locale/es_CO/fusiondirectory.po b/apache2/locale/es_CO/fusiondirectory.po index ce4152cfbc..2260e7fd04 100644 --- a/apache2/locale/es_CO/fusiondirectory.po +++ b/apache2/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/apache2/locale/es_VE/fusiondirectory.po b/apache2/locale/es_VE/fusiondirectory.po index 8a1f440281..21cb895030 100644 --- a/apache2/locale/es_VE/fusiondirectory.po +++ b/apache2/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/apache2/locale/fa_IR/fusiondirectory.po b/apache2/locale/fa_IR/fusiondirectory.po index 2c44621f3f..c51395f68a 100644 --- a/apache2/locale/fa_IR/fusiondirectory.po +++ b/apache2/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/apache2/locale/fi_FI/fusiondirectory.po b/apache2/locale/fi_FI/fusiondirectory.po index 9ac15aea3a..2fd62e6d56 100644 --- a/apache2/locale/fi_FI/fusiondirectory.po +++ b/apache2/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/apache2/locale/fr/fusiondirectory.po b/apache2/locale/fr/fusiondirectory.po index 57ed6423ab..8ce56d42f4 100644 --- a/apache2/locale/fr/fusiondirectory.po +++ b/apache2/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/apache2/locale/hu_HU/fusiondirectory.po b/apache2/locale/hu_HU/fusiondirectory.po index 37a63fc1cf..1ab62ac0f0 100644 --- a/apache2/locale/hu_HU/fusiondirectory.po +++ b/apache2/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/apache2/locale/id/fusiondirectory.po b/apache2/locale/id/fusiondirectory.po index ec13494fb0..36d6a2489b 100644 --- a/apache2/locale/id/fusiondirectory.po +++ b/apache2/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/apache2/locale/it_IT/fusiondirectory.po b/apache2/locale/it_IT/fusiondirectory.po index f8447526d7..9116ddf99d 100644 --- a/apache2/locale/it_IT/fusiondirectory.po +++ b/apache2/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/apache2/locale/lv/fusiondirectory.po b/apache2/locale/lv/fusiondirectory.po index a9c2d2c4eb..11aa1aab9d 100644 --- a/apache2/locale/lv/fusiondirectory.po +++ b/apache2/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/apache2/locale/nb/fusiondirectory.po b/apache2/locale/nb/fusiondirectory.po index c50ffb3832..c65e97ffba 100644 --- a/apache2/locale/nb/fusiondirectory.po +++ b/apache2/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/apache2/locale/nl/fusiondirectory.po b/apache2/locale/nl/fusiondirectory.po index f3c8de1598..31a3c2e002 100644 --- a/apache2/locale/nl/fusiondirectory.po +++ b/apache2/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/apache2/locale/pl/fusiondirectory.po b/apache2/locale/pl/fusiondirectory.po index b8639051d8..306a44b957 100644 --- a/apache2/locale/pl/fusiondirectory.po +++ b/apache2/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/apache2/locale/pt/fusiondirectory.po b/apache2/locale/pt/fusiondirectory.po index 61e2040237..511ff27d50 100644 --- a/apache2/locale/pt/fusiondirectory.po +++ b/apache2/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/apache2/locale/pt_BR/fusiondirectory.po b/apache2/locale/pt_BR/fusiondirectory.po index 441cbaf4f5..666fe18a2d 100644 --- a/apache2/locale/pt_BR/fusiondirectory.po +++ b/apache2/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/apache2/locale/ru/fusiondirectory.po b/apache2/locale/ru/fusiondirectory.po index cc79ac0d1a..14a53c495e 100644 --- a/apache2/locale/ru/fusiondirectory.po +++ b/apache2/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/apache2/locale/ru@petr1708/fusiondirectory.po b/apache2/locale/ru@petr1708/fusiondirectory.po index 1531f7d53b..6d6da42754 100644 --- a/apache2/locale/ru@petr1708/fusiondirectory.po +++ b/apache2/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/apache2/locale/sv/fusiondirectory.po b/apache2/locale/sv/fusiondirectory.po index 53a66c7aa9..8e0b8ea55b 100644 --- a/apache2/locale/sv/fusiondirectory.po +++ b/apache2/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/apache2/locale/ug/fusiondirectory.po b/apache2/locale/ug/fusiondirectory.po index 76dfe8ca7f..3bcafc66e7 100644 --- a/apache2/locale/ug/fusiondirectory.po +++ b/apache2/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/apache2/locale/vi_VN/fusiondirectory.po b/apache2/locale/vi_VN/fusiondirectory.po index 59304e9c54..54c9e138cc 100644 --- a/apache2/locale/vi_VN/fusiondirectory.po +++ b/apache2/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/apache2/locale/zh/fusiondirectory.po b/apache2/locale/zh/fusiondirectory.po index 48b2401d8e..04ed8de2e3 100644 --- a/apache2/locale/zh/fusiondirectory.po +++ b/apache2/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po index a111e3b557..9f0e5aa4be 100644 --- a/applications/locale/ar/fusiondirectory.po +++ b/applications/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po index f6e964c75c..6d03e0f66f 100644 --- a/applications/locale/ca/fusiondirectory.po +++ b/applications/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po index 9797dfa4ea..4dee16f873 100644 --- a/applications/locale/cs_CZ/fusiondirectory.po +++ b/applications/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po index 28d25b6641..fb4a33b909 100644 --- a/applications/locale/de/fusiondirectory.po +++ b/applications/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po index 9d26138808..ac7ea6e156 100644 --- a/applications/locale/el_GR/fusiondirectory.po +++ b/applications/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/applications/locale/en/fusiondirectory.po b/applications/locale/en/fusiondirectory.po index 74f4ea19d7..bb0d175f1b 100644 --- a/applications/locale/en/fusiondirectory.po +++ b/applications/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po index 00721fc88a..a4ac974d00 100644 --- a/applications/locale/es/fusiondirectory.po +++ b/applications/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po index 470b9584ba..bb00a2871d 100644 --- a/applications/locale/es_CO/fusiondirectory.po +++ b/applications/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po index 9edeafffec..bd9b36aca7 100644 --- a/applications/locale/es_VE/fusiondirectory.po +++ b/applications/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po index a33d3ac1e4..afa6148c0b 100644 --- a/applications/locale/fa_IR/fusiondirectory.po +++ b/applications/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po index d45c7f73a5..65e3f21317 100644 --- a/applications/locale/fi_FI/fusiondirectory.po +++ b/applications/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po index 4736ec9e0d..3b198718d0 100644 --- a/applications/locale/fr/fusiondirectory.po +++ b/applications/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po index 0a286b83c5..9fe4dc9d0a 100644 --- a/applications/locale/hu_HU/fusiondirectory.po +++ b/applications/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po index e338a0826a..a2d9d989b4 100644 --- a/applications/locale/id/fusiondirectory.po +++ b/applications/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po index 93d266201b..01503f37f2 100644 --- a/applications/locale/it_IT/fusiondirectory.po +++ b/applications/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po index d550cbf175..85b600b5e9 100644 --- a/applications/locale/lv/fusiondirectory.po +++ b/applications/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po index 3ff40ad40b..063ca3b3e6 100644 --- a/applications/locale/nb/fusiondirectory.po +++ b/applications/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po index d08798500c..e013ae7cf2 100644 --- a/applications/locale/nl/fusiondirectory.po +++ b/applications/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po index b87334d0f5..a15809b232 100644 --- a/applications/locale/pl/fusiondirectory.po +++ b/applications/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po index 58c79c2fb1..63834bea2b 100644 --- a/applications/locale/pt/fusiondirectory.po +++ b/applications/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po index a405e9e790..e3d000f96a 100644 --- a/applications/locale/pt_BR/fusiondirectory.po +++ b/applications/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po index f070535028..72a6747c51 100644 --- a/applications/locale/ru/fusiondirectory.po +++ b/applications/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po index ab19fd2998..f4cede0a1d 100644 --- a/applications/locale/ru@petr1708/fusiondirectory.po +++ b/applications/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po index 9627bdfd81..8a985689c2 100644 --- a/applications/locale/sv/fusiondirectory.po +++ b/applications/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po index 21a8edde2f..a29cacb7da 100644 --- a/applications/locale/ug/fusiondirectory.po +++ b/applications/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po index 5f6d2caa6b..c5bdf5b153 100644 --- a/applications/locale/vi_VN/fusiondirectory.po +++ b/applications/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po index af3cd4bc86..9316e5f588 100644 --- a/applications/locale/zh/fusiondirectory.po +++ b/applications/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po index 17bd11fba0..b17edcc9a2 100644 --- a/argonaut/locale/ar/fusiondirectory.po +++ b/argonaut/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po index c212a05594..9e080aa00c 100644 --- a/argonaut/locale/ca/fusiondirectory.po +++ b/argonaut/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po index 4b1944847d..e078f6e713 100644 --- a/argonaut/locale/cs_CZ/fusiondirectory.po +++ b/argonaut/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po index e4e7f31120..2a4c6d936c 100644 --- a/argonaut/locale/de/fusiondirectory.po +++ b/argonaut/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po index 801b28cd92..70999fa7e0 100644 --- a/argonaut/locale/el_GR/fusiondirectory.po +++ b/argonaut/locale/el_GR/fusiondirectory.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/argonaut/locale/en/fusiondirectory.po b/argonaut/locale/en/fusiondirectory.po index fae65c1824..f576729ebe 100644 --- a/argonaut/locale/en/fusiondirectory.po +++ b/argonaut/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po index 671ac4def4..550b1d48dc 100644 --- a/argonaut/locale/es/fusiondirectory.po +++ b/argonaut/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po index 9b5adf3317..d3a85b8002 100644 --- a/argonaut/locale/es_CO/fusiondirectory.po +++ b/argonaut/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po index b2494bb5af..c611cbdfc1 100644 --- a/argonaut/locale/es_VE/fusiondirectory.po +++ b/argonaut/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po index bb2ab86042..16e65f8dd6 100644 --- a/argonaut/locale/fa_IR/fusiondirectory.po +++ b/argonaut/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po index 6894c3c723..2f65e3c4a7 100644 --- a/argonaut/locale/fi_FI/fusiondirectory.po +++ b/argonaut/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po index 115920a2e8..d84be24621 100644 --- a/argonaut/locale/fr/fusiondirectory.po +++ b/argonaut/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po index b3aa6da2e6..47f18a7bc6 100644 --- a/argonaut/locale/hu_HU/fusiondirectory.po +++ b/argonaut/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po index f66d23e2bf..28642c1912 100644 --- a/argonaut/locale/id/fusiondirectory.po +++ b/argonaut/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po index 423221432f..56f6764613 100644 --- a/argonaut/locale/it_IT/fusiondirectory.po +++ b/argonaut/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po index 05aac66b85..6abeddb50b 100644 --- a/argonaut/locale/lv/fusiondirectory.po +++ b/argonaut/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po index 0c0a6eb03b..8f7f11b832 100644 --- a/argonaut/locale/nb/fusiondirectory.po +++ b/argonaut/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po index 1999d55ab4..f71e7bab09 100644 --- a/argonaut/locale/nl/fusiondirectory.po +++ b/argonaut/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po index 52f37f8850..be013210aa 100644 --- a/argonaut/locale/pl/fusiondirectory.po +++ b/argonaut/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po index 74c715e3b6..80de6fed6f 100644 --- a/argonaut/locale/pt/fusiondirectory.po +++ b/argonaut/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po index 09f86de23a..219415f7c6 100644 --- a/argonaut/locale/pt_BR/fusiondirectory.po +++ b/argonaut/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po index 1f64da0728..b61bf7de72 100644 --- a/argonaut/locale/ru/fusiondirectory.po +++ b/argonaut/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 20:45+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po index 4cb6d6d74a..d5119c2961 100644 --- a/argonaut/locale/ru@petr1708/fusiondirectory.po +++ b/argonaut/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po index d7c0dbe7d3..e850dc6bec 100644 --- a/argonaut/locale/sv/fusiondirectory.po +++ b/argonaut/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po index 768ff89b93..bf91a028e2 100644 --- a/argonaut/locale/ug/fusiondirectory.po +++ b/argonaut/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po index 596ac1878a..f538893801 100644 --- a/argonaut/locale/vi_VN/fusiondirectory.po +++ b/argonaut/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po index dde4bb1697..373858b280 100644 --- a/argonaut/locale/zh/fusiondirectory.po +++ b/argonaut/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po index 7a8237a05b..87c842a193 100644 --- a/audit/locale/ar/fusiondirectory.po +++ b/audit/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po index 77721acb0b..143b72356e 100644 --- a/audit/locale/ca/fusiondirectory.po +++ b/audit/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po index 3c7514f128..ddf4c892ee 100644 --- a/audit/locale/cs_CZ/fusiondirectory.po +++ b/audit/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po index d269a01c91..2ca0e317e9 100644 --- a/audit/locale/de/fusiondirectory.po +++ b/audit/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po index 1aaa2182b6..75c6e723d0 100644 --- a/audit/locale/el_GR/fusiondirectory.po +++ b/audit/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/audit/locale/en/fusiondirectory.po b/audit/locale/en/fusiondirectory.po index 307403b8c8..4ed10a13ee 100644 --- a/audit/locale/en/fusiondirectory.po +++ b/audit/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po index 992fda7fbb..c0e99a447c 100644 --- a/audit/locale/es/fusiondirectory.po +++ b/audit/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po index 8e6fdad2bf..aecc2806dd 100644 --- a/audit/locale/es_CO/fusiondirectory.po +++ b/audit/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po index a9c74da204..d12f84d63a 100644 --- a/audit/locale/es_VE/fusiondirectory.po +++ b/audit/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po index 4ac22cd316..203dea751b 100644 --- a/audit/locale/fa_IR/fusiondirectory.po +++ b/audit/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po index a6bfdac773..99a4feca1f 100644 --- a/audit/locale/fi_FI/fusiondirectory.po +++ b/audit/locale/fi_FI/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-05 12:22+0000\n" "Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po index 2b50f438ed..4a300e9f8d 100644 --- a/audit/locale/fr/fusiondirectory.po +++ b/audit/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po index 1b684d8c16..b3891a2df0 100644 --- a/audit/locale/hu_HU/fusiondirectory.po +++ b/audit/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po index 2bd82c759a..fe783effe9 100644 --- a/audit/locale/id/fusiondirectory.po +++ b/audit/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po index ec3f831913..4055c14539 100644 --- a/audit/locale/it_IT/fusiondirectory.po +++ b/audit/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po index 5089ee9453..ccfa41c069 100644 --- a/audit/locale/lv/fusiondirectory.po +++ b/audit/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po index 4fea8a578b..7b5ab5fb00 100644 --- a/audit/locale/nb/fusiondirectory.po +++ b/audit/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po index c35babc693..c0f2cf0351 100644 --- a/audit/locale/nl/fusiondirectory.po +++ b/audit/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po index 470c8a6940..4e1f52f7be 100644 --- a/audit/locale/pl/fusiondirectory.po +++ b/audit/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po index 1a80f8e6f0..4ffedb1efa 100644 --- a/audit/locale/pt/fusiondirectory.po +++ b/audit/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po index 1f0056fd4b..2392790248 100644 --- a/audit/locale/pt_BR/fusiondirectory.po +++ b/audit/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po index c613cfa20c..33bc64f7ea 100644 --- a/audit/locale/ru/fusiondirectory.po +++ b/audit/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po index b86c50eb00..4eb186ebb3 100644 --- a/audit/locale/ru@petr1708/fusiondirectory.po +++ b/audit/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po index 473891fe71..9d0e6d96b9 100644 --- a/audit/locale/sv/fusiondirectory.po +++ b/audit/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po index 26d2ccd314..71d4d26e2b 100644 --- a/audit/locale/ug/fusiondirectory.po +++ b/audit/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po index 04de520832..60bb4449d7 100644 --- a/audit/locale/vi_VN/fusiondirectory.po +++ b/audit/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po index a0b291e9a9..e9bdb83fd5 100644 --- a/audit/locale/zh/fusiondirectory.po +++ b/audit/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po index b93c506dc1..8a55cffda7 100644 --- a/autofs/locale/ar/fusiondirectory.po +++ b/autofs/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po index ef2e83702b..17a3145c7b 100644 --- a/autofs/locale/ca/fusiondirectory.po +++ b/autofs/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po index fc147e80d3..26584de25c 100644 --- a/autofs/locale/cs_CZ/fusiondirectory.po +++ b/autofs/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po index 250b7fdec3..43e5b0d1f0 100644 --- a/autofs/locale/de/fusiondirectory.po +++ b/autofs/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po index a865db3202..8667404f48 100644 --- a/autofs/locale/el_GR/fusiondirectory.po +++ b/autofs/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/autofs/locale/en/fusiondirectory.po b/autofs/locale/en/fusiondirectory.po index b32a6f0f77..b874007f2c 100644 --- a/autofs/locale/en/fusiondirectory.po +++ b/autofs/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po index 0687e65eac..00d3d65025 100644 --- a/autofs/locale/es/fusiondirectory.po +++ b/autofs/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po index c673569bb3..591dc01a43 100644 --- a/autofs/locale/es_CO/fusiondirectory.po +++ b/autofs/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po index 04bebb1b66..2518e1240d 100644 --- a/autofs/locale/es_VE/fusiondirectory.po +++ b/autofs/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po index 1bb3f17af1..9892ebed4f 100644 --- a/autofs/locale/fa_IR/fusiondirectory.po +++ b/autofs/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po index a16a71d385..e5d56e096e 100644 --- a/autofs/locale/fi_FI/fusiondirectory.po +++ b/autofs/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po index 5d92154d36..b09d55412e 100644 --- a/autofs/locale/fr/fusiondirectory.po +++ b/autofs/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po index 0aafc3a7f9..3d72b4107a 100644 --- a/autofs/locale/hu_HU/fusiondirectory.po +++ b/autofs/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po index 1d582bb39b..e5e0f41f1d 100644 --- a/autofs/locale/id/fusiondirectory.po +++ b/autofs/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po index b16ee0ad76..f01901dd7e 100644 --- a/autofs/locale/it_IT/fusiondirectory.po +++ b/autofs/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po index 7cbdb989ab..d4f000c9ec 100644 --- a/autofs/locale/lv/fusiondirectory.po +++ b/autofs/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po index d3f5cbd966..962c068cfa 100644 --- a/autofs/locale/nb/fusiondirectory.po +++ b/autofs/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po index 099dfcc3d0..5f058b3019 100644 --- a/autofs/locale/nl/fusiondirectory.po +++ b/autofs/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po index 825d9bd68d..d76ec4d824 100644 --- a/autofs/locale/pl/fusiondirectory.po +++ b/autofs/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po index bced86c789..2849f92172 100644 --- a/autofs/locale/pt/fusiondirectory.po +++ b/autofs/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po index 63f37da4bc..f329abe51a 100644 --- a/autofs/locale/pt_BR/fusiondirectory.po +++ b/autofs/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po index 11074133b9..b170317559 100644 --- a/autofs/locale/ru/fusiondirectory.po +++ b/autofs/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po index e91b6eec4f..acf974f38c 100644 --- a/autofs/locale/ru@petr1708/fusiondirectory.po +++ b/autofs/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po index bef70f29b1..a410c80fc9 100644 --- a/autofs/locale/sv/fusiondirectory.po +++ b/autofs/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po index caf94e4fc9..cdb25ed4fa 100644 --- a/autofs/locale/ug/fusiondirectory.po +++ b/autofs/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po index 7749973789..b6958e7747 100644 --- a/autofs/locale/vi_VN/fusiondirectory.po +++ b/autofs/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po index d3eb4d0268..e3b1dd0ce3 100644 --- a/autofs/locale/zh/fusiondirectory.po +++ b/autofs/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po index 7905fc001a..9b759b5e08 100644 --- a/certificates/locale/ar/fusiondirectory.po +++ b/certificates/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po index d9278b11fd..b5519f15df 100644 --- a/certificates/locale/ca/fusiondirectory.po +++ b/certificates/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po index 41722cd069..60fb7129da 100644 --- a/certificates/locale/cs_CZ/fusiondirectory.po +++ b/certificates/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po index 60a54fcd0f..6040d358f2 100644 --- a/certificates/locale/de/fusiondirectory.po +++ b/certificates/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po index 641f0ce907..9a20d797bd 100644 --- a/certificates/locale/el_GR/fusiondirectory.po +++ b/certificates/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/certificates/locale/en/fusiondirectory.po b/certificates/locale/en/fusiondirectory.po index d5473936fb..ba17f5d4fe 100644 --- a/certificates/locale/en/fusiondirectory.po +++ b/certificates/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po index 5374c14e27..a8e0737984 100644 --- a/certificates/locale/es/fusiondirectory.po +++ b/certificates/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po index 1669041e2f..f5571cd832 100644 --- a/certificates/locale/es_CO/fusiondirectory.po +++ b/certificates/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po index da5a94ef6f..72c71a4a89 100644 --- a/certificates/locale/es_VE/fusiondirectory.po +++ b/certificates/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po index 71a2e75855..de868905d7 100644 --- a/certificates/locale/fa_IR/fusiondirectory.po +++ b/certificates/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po index f561b8c43a..845ec75f7e 100644 --- a/certificates/locale/fi_FI/fusiondirectory.po +++ b/certificates/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po index 5906ff1fbd..891254a468 100644 --- a/certificates/locale/fr/fusiondirectory.po +++ b/certificates/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po index 5ef4a9ae66..0d34d13095 100644 --- a/certificates/locale/hu_HU/fusiondirectory.po +++ b/certificates/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po index d9c5bd4037..9f3c4eca36 100644 --- a/certificates/locale/id/fusiondirectory.po +++ b/certificates/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po index 70520b64df..197a4c5899 100644 --- a/certificates/locale/it_IT/fusiondirectory.po +++ b/certificates/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po index 377d3904d8..df97081c88 100644 --- a/certificates/locale/lv/fusiondirectory.po +++ b/certificates/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po index 2c3c18671b..270bad43a7 100644 --- a/certificates/locale/nb/fusiondirectory.po +++ b/certificates/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po index c406e5d35a..24531da3ad 100644 --- a/certificates/locale/nl/fusiondirectory.po +++ b/certificates/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po index 8b87f87cc6..0d4814037a 100644 --- a/certificates/locale/pl/fusiondirectory.po +++ b/certificates/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po index 9e286c778b..80e38ed27e 100644 --- a/certificates/locale/pt/fusiondirectory.po +++ b/certificates/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po index c905e44368..04f60f4c57 100644 --- a/certificates/locale/pt_BR/fusiondirectory.po +++ b/certificates/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po index 07a9be4e65..1b8f2c5480 100644 --- a/certificates/locale/ru/fusiondirectory.po +++ b/certificates/locale/ru/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 21:27+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po index 88884b3f5d..2cc2306812 100644 --- a/certificates/locale/ru@petr1708/fusiondirectory.po +++ b/certificates/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po index 5845c72963..71a07e2d41 100644 --- a/certificates/locale/sv/fusiondirectory.po +++ b/certificates/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po index 7b34ff271a..915baf0666 100644 --- a/certificates/locale/ug/fusiondirectory.po +++ b/certificates/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po index 8cc321698e..6ca719eb67 100644 --- a/certificates/locale/vi_VN/fusiondirectory.po +++ b/certificates/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po index e79ea204a6..abde5edabf 100644 --- a/certificates/locale/zh/fusiondirectory.po +++ b/certificates/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po index ea48699a0e..a750825a8e 100644 --- a/community/locale/ar/fusiondirectory.po +++ b/community/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po index 3c6111e792..c7e8008b69 100644 --- a/community/locale/ca/fusiondirectory.po +++ b/community/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po index e439640972..5f4a2ee5f1 100644 --- a/community/locale/cs_CZ/fusiondirectory.po +++ b/community/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po index e1b7314309..bb3f92e8b0 100644 --- a/community/locale/de/fusiondirectory.po +++ b/community/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po index bf11561762..531a41d18e 100644 --- a/community/locale/el_GR/fusiondirectory.po +++ b/community/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/community/locale/en/fusiondirectory.po b/community/locale/en/fusiondirectory.po index 0c61eac308..d600ed3428 100644 --- a/community/locale/en/fusiondirectory.po +++ b/community/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po index cde4bfc979..303abb928d 100644 --- a/community/locale/es/fusiondirectory.po +++ b/community/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po index f18fb0df6f..0fdae75eb3 100644 --- a/community/locale/es_CO/fusiondirectory.po +++ b/community/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po index e921a17750..9d5690b702 100644 --- a/community/locale/es_VE/fusiondirectory.po +++ b/community/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po index 50f0c3251b..9d255be90e 100644 --- a/community/locale/fa_IR/fusiondirectory.po +++ b/community/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po index f98544ac6c..ec54de3787 100644 --- a/community/locale/fi_FI/fusiondirectory.po +++ b/community/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po index 47a462d606..68006dc7a0 100644 --- a/community/locale/fr/fusiondirectory.po +++ b/community/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:16+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po index 31801a9a17..18d3446ebe 100644 --- a/community/locale/hu_HU/fusiondirectory.po +++ b/community/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po index fb7f867c88..cb6acef3b9 100644 --- a/community/locale/id/fusiondirectory.po +++ b/community/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po index 4db1fd9d17..24e56f3399 100644 --- a/community/locale/it_IT/fusiondirectory.po +++ b/community/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-03 15:37+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po index 70e0f94fe8..ef44f73aa4 100644 --- a/community/locale/lv/fusiondirectory.po +++ b/community/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po index d3b0047a9c..c8640c0fd2 100644 --- a/community/locale/nb/fusiondirectory.po +++ b/community/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po index 136b9e77d8..4122efb14f 100644 --- a/community/locale/nl/fusiondirectory.po +++ b/community/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po index dc811057a3..879b90d0bf 100644 --- a/community/locale/pl/fusiondirectory.po +++ b/community/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po index 92e9367a06..ac6e486d24 100644 --- a/community/locale/pt/fusiondirectory.po +++ b/community/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po index f3b812e393..43de12d07e 100644 --- a/community/locale/pt_BR/fusiondirectory.po +++ b/community/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po index 0547695777..2b18b92bd7 100644 --- a/community/locale/ru/fusiondirectory.po +++ b/community/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po index 00597fe337..0f780de863 100644 --- a/community/locale/ru@petr1708/fusiondirectory.po +++ b/community/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po index 0846b2af76..18d082e946 100644 --- a/community/locale/sv/fusiondirectory.po +++ b/community/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po index fec0e694c3..8f670570c2 100644 --- a/community/locale/ug/fusiondirectory.po +++ b/community/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po index 378caf0f5e..2bef633d73 100644 --- a/community/locale/vi_VN/fusiondirectory.po +++ b/community/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po index 94f346e0c1..7b4307119f 100644 --- a/community/locale/zh/fusiondirectory.po +++ b/community/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po index 3f60701d64..1e5753ca08 100644 --- a/cyrus/locale/ar/fusiondirectory.po +++ b/cyrus/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po index 822e25292f..96a2e143fb 100644 --- a/cyrus/locale/ca/fusiondirectory.po +++ b/cyrus/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po index b872f3b65a..1e4080f549 100644 --- a/cyrus/locale/cs_CZ/fusiondirectory.po +++ b/cyrus/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po index e970d312ad..8820054e47 100644 --- a/cyrus/locale/de/fusiondirectory.po +++ b/cyrus/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po index 9451f9010e..01158aa81a 100644 --- a/cyrus/locale/el_GR/fusiondirectory.po +++ b/cyrus/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/cyrus/locale/en/fusiondirectory.po b/cyrus/locale/en/fusiondirectory.po index 08f7d4d1a0..e9e3bdf383 100644 --- a/cyrus/locale/en/fusiondirectory.po +++ b/cyrus/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po index 016e0a286a..04275bdaa6 100644 --- a/cyrus/locale/es/fusiondirectory.po +++ b/cyrus/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po index f86631a3ac..d80d06ec9b 100644 --- a/cyrus/locale/es_CO/fusiondirectory.po +++ b/cyrus/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po index 8cd49ede1f..2eee726f7d 100644 --- a/cyrus/locale/es_VE/fusiondirectory.po +++ b/cyrus/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po index de3486f323..9dbf549d35 100644 --- a/cyrus/locale/fa_IR/fusiondirectory.po +++ b/cyrus/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po index 290d418365..07e69a950b 100644 --- a/cyrus/locale/fi_FI/fusiondirectory.po +++ b/cyrus/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po index 72d1d80d57..5ca16fa776 100644 --- a/cyrus/locale/fr/fusiondirectory.po +++ b/cyrus/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po index eb1847e918..58f10fb24f 100644 --- a/cyrus/locale/hu_HU/fusiondirectory.po +++ b/cyrus/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po index cfe5ccb7d8..9237aea4ba 100644 --- a/cyrus/locale/id/fusiondirectory.po +++ b/cyrus/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po index 1356e695f1..1f8e179b25 100644 --- a/cyrus/locale/it_IT/fusiondirectory.po +++ b/cyrus/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po index 0159048568..d90e878ed3 100644 --- a/cyrus/locale/lv/fusiondirectory.po +++ b/cyrus/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po index 0b1a75bc97..594c0e4158 100644 --- a/cyrus/locale/nb/fusiondirectory.po +++ b/cyrus/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po index eac93203c3..e3c1c47f91 100644 --- a/cyrus/locale/nl/fusiondirectory.po +++ b/cyrus/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po index a20358a160..e87b0b3ad8 100644 --- a/cyrus/locale/pl/fusiondirectory.po +++ b/cyrus/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po index ca7c1c9b4f..9cbf673811 100644 --- a/cyrus/locale/pt/fusiondirectory.po +++ b/cyrus/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po index 94f33b1e62..268d31e500 100644 --- a/cyrus/locale/pt_BR/fusiondirectory.po +++ b/cyrus/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po index 1bce3f6cad..de3dd91dd2 100644 --- a/cyrus/locale/ru/fusiondirectory.po +++ b/cyrus/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po index 3919597455..abd911aa09 100644 --- a/cyrus/locale/ru@petr1708/fusiondirectory.po +++ b/cyrus/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po index 741fa65861..e0fab8676e 100644 --- a/cyrus/locale/sv/fusiondirectory.po +++ b/cyrus/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po index b75466b9f9..2dc7a1a5f4 100644 --- a/cyrus/locale/ug/fusiondirectory.po +++ b/cyrus/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po index 24a4ea6daf..bf16e3e68d 100644 --- a/cyrus/locale/vi_VN/fusiondirectory.po +++ b/cyrus/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po index 6c5aea77b9..3200c38b79 100644 --- a/cyrus/locale/zh/fusiondirectory.po +++ b/cyrus/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po index 47be35a364..0cdb6180e5 100644 --- a/debconf/locale/ar/fusiondirectory.po +++ b/debconf/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po index 4f9fae7fda..d5d72a1a76 100644 --- a/debconf/locale/ca/fusiondirectory.po +++ b/debconf/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po index ea1df5384c..4f042fa97c 100644 --- a/debconf/locale/cs_CZ/fusiondirectory.po +++ b/debconf/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po index 74673c9d0d..8588a6c2b6 100644 --- a/debconf/locale/de/fusiondirectory.po +++ b/debconf/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po index 79076303a6..b2eebd9d83 100644 --- a/debconf/locale/el_GR/fusiondirectory.po +++ b/debconf/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/debconf/locale/en/fusiondirectory.po b/debconf/locale/en/fusiondirectory.po index bb23de3537..7df97b80f3 100644 --- a/debconf/locale/en/fusiondirectory.po +++ b/debconf/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po index b0b8776dd6..c1db5b7e0b 100644 --- a/debconf/locale/es/fusiondirectory.po +++ b/debconf/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po index ebd39a8d7d..103fc28bd9 100644 --- a/debconf/locale/es_CO/fusiondirectory.po +++ b/debconf/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po index afd21d8852..2bd14c4ae9 100644 --- a/debconf/locale/es_VE/fusiondirectory.po +++ b/debconf/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po index b1f19b5555..3818f9dc7d 100644 --- a/debconf/locale/fa_IR/fusiondirectory.po +++ b/debconf/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po index 9954bfd111..002d0cbc44 100644 --- a/debconf/locale/fi_FI/fusiondirectory.po +++ b/debconf/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po index e4fbd0dd1d..6e6ae79fc2 100644 --- a/debconf/locale/fr/fusiondirectory.po +++ b/debconf/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po index 071e616a89..99079d93a8 100644 --- a/debconf/locale/hu_HU/fusiondirectory.po +++ b/debconf/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po index 7df0337182..17f49ac9a7 100644 --- a/debconf/locale/id/fusiondirectory.po +++ b/debconf/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po index 08ea6295f8..5241594509 100644 --- a/debconf/locale/it_IT/fusiondirectory.po +++ b/debconf/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po index bdcf871bad..761895c629 100644 --- a/debconf/locale/lv/fusiondirectory.po +++ b/debconf/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po index c628fb710d..17a4fe7255 100644 --- a/debconf/locale/nb/fusiondirectory.po +++ b/debconf/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po index db63684494..4376050d74 100644 --- a/debconf/locale/nl/fusiondirectory.po +++ b/debconf/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po index 2d6750d79b..8bcda94a35 100644 --- a/debconf/locale/pl/fusiondirectory.po +++ b/debconf/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po index f7651ddd66..fc7ce05a8b 100644 --- a/debconf/locale/pt/fusiondirectory.po +++ b/debconf/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po index d7b76f99df..a367d270be 100644 --- a/debconf/locale/pt_BR/fusiondirectory.po +++ b/debconf/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po index e1e03eaeac..a9e24eb19e 100644 --- a/debconf/locale/ru/fusiondirectory.po +++ b/debconf/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po index 2d582974a5..226c5682a5 100644 --- a/debconf/locale/ru@petr1708/fusiondirectory.po +++ b/debconf/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po index 68b2d1bb76..5ff6722f22 100644 --- a/debconf/locale/sv/fusiondirectory.po +++ b/debconf/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po index 1b9a316d09..6a51066c14 100644 --- a/debconf/locale/ug/fusiondirectory.po +++ b/debconf/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po index 2c7ab8081b..189828a653 100644 --- a/debconf/locale/vi_VN/fusiondirectory.po +++ b/debconf/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po index 5fe0268c43..bd1f484334 100644 --- a/debconf/locale/zh/fusiondirectory.po +++ b/debconf/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po index 3e359e130f..0ed9404375 100644 --- a/developers/locale/ar/fusiondirectory.po +++ b/developers/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po index f3467f6e5b..77a72e15e7 100644 --- a/developers/locale/ca/fusiondirectory.po +++ b/developers/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po index 05b0d4c08b..c352b680e7 100644 --- a/developers/locale/cs_CZ/fusiondirectory.po +++ b/developers/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po index 78eca27944..adb1d46d50 100644 --- a/developers/locale/de/fusiondirectory.po +++ b/developers/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po index 3a0934ff19..a0f38a08f3 100644 --- a/developers/locale/el_GR/fusiondirectory.po +++ b/developers/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/developers/locale/en/fusiondirectory.po b/developers/locale/en/fusiondirectory.po index 295f53efee..78bc37f469 100644 --- a/developers/locale/en/fusiondirectory.po +++ b/developers/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po index 5c41f3ffb8..be5f4af7a1 100644 --- a/developers/locale/es/fusiondirectory.po +++ b/developers/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po index 3882d28d87..89fc6064d2 100644 --- a/developers/locale/es_CO/fusiondirectory.po +++ b/developers/locale/es_CO/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po index afa961a921..9b4d30e078 100644 --- a/developers/locale/es_VE/fusiondirectory.po +++ b/developers/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po index 8125abb83d..b770251c20 100644 --- a/developers/locale/fa_IR/fusiondirectory.po +++ b/developers/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po index f3a85af0d7..919f467b20 100644 --- a/developers/locale/fi_FI/fusiondirectory.po +++ b/developers/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po index 2beb2b9f15..d3bb4bda61 100644 --- a/developers/locale/fr/fusiondirectory.po +++ b/developers/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po index e1de58ebe1..66baf9d1b1 100644 --- a/developers/locale/hu_HU/fusiondirectory.po +++ b/developers/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po index e5b9d9dbee..a2f74c4c01 100644 --- a/developers/locale/id/fusiondirectory.po +++ b/developers/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po index bf7fda8ed2..5309cc80f8 100644 --- a/developers/locale/it_IT/fusiondirectory.po +++ b/developers/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po index 13152877f6..77eabf1fca 100644 --- a/developers/locale/lv/fusiondirectory.po +++ b/developers/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po index dc8c50cc13..4fd0a87c15 100644 --- a/developers/locale/nb/fusiondirectory.po +++ b/developers/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:38+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po index 18572ddab9..e4ff187103 100644 --- a/developers/locale/nl/fusiondirectory.po +++ b/developers/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po index bf7fc37752..1ceb3052bb 100644 --- a/developers/locale/pl/fusiondirectory.po +++ b/developers/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po index 67188196f5..1cb1f88e63 100644 --- a/developers/locale/pt/fusiondirectory.po +++ b/developers/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po index e36e7fbcca..f2ed847bcd 100644 --- a/developers/locale/pt_BR/fusiondirectory.po +++ b/developers/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po index 48f20f34b4..bd53c4662a 100644 --- a/developers/locale/ru/fusiondirectory.po +++ b/developers/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-11 18:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po index 96d192e94f..61a56e2475 100644 --- a/developers/locale/ru@petr1708/fusiondirectory.po +++ b/developers/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po index 3ba28544e2..9a3f413491 100644 --- a/developers/locale/sv/fusiondirectory.po +++ b/developers/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po index fb46851c58..d8f149ecee 100644 --- a/developers/locale/ug/fusiondirectory.po +++ b/developers/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po index 1df27b264c..b925aea143 100644 --- a/developers/locale/vi_VN/fusiondirectory.po +++ b/developers/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po index 18ba67c7ff..c1f442eebd 100644 --- a/developers/locale/zh/fusiondirectory.po +++ b/developers/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po index cdc1933efe..31caf6cd0f 100644 --- a/dhcp/locale/ar/fusiondirectory.po +++ b/dhcp/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po index fe3fe61c6b..9597e2ef5f 100644 --- a/dhcp/locale/ca/fusiondirectory.po +++ b/dhcp/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po index 1c33123766..9ed1fae3b5 100644 --- a/dhcp/locale/cs_CZ/fusiondirectory.po +++ b/dhcp/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po index 70dc2f8ec5..2264e44446 100644 --- a/dhcp/locale/de/fusiondirectory.po +++ b/dhcp/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po index 7e52f940b3..4071b8c75e 100644 --- a/dhcp/locale/el_GR/fusiondirectory.po +++ b/dhcp/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dhcp/locale/en/fusiondirectory.po b/dhcp/locale/en/fusiondirectory.po index 9ab530a429..31f2b3eb61 100644 --- a/dhcp/locale/en/fusiondirectory.po +++ b/dhcp/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po index 46717ae7e9..a296c2cfd3 100644 --- a/dhcp/locale/es/fusiondirectory.po +++ b/dhcp/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po index 9c96c39b17..d66315a629 100644 --- a/dhcp/locale/es_CO/fusiondirectory.po +++ b/dhcp/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po index bdaf7d0151..6783f5ff2c 100644 --- a/dhcp/locale/es_VE/fusiondirectory.po +++ b/dhcp/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po index c3b6f0dc5e..f5e1b153e9 100644 --- a/dhcp/locale/fa_IR/fusiondirectory.po +++ b/dhcp/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po index b7ad75d0ed..504ed44b55 100644 --- a/dhcp/locale/fi_FI/fusiondirectory.po +++ b/dhcp/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po index d2093d0309..a6326ecbc8 100644 --- a/dhcp/locale/fr/fusiondirectory.po +++ b/dhcp/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po index 551f3e6abf..a8d2ec53fb 100644 --- a/dhcp/locale/hu_HU/fusiondirectory.po +++ b/dhcp/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po index 57cde5b688..7045d37c8f 100644 --- a/dhcp/locale/id/fusiondirectory.po +++ b/dhcp/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po index fa1a0dbc85..a96e14465a 100644 --- a/dhcp/locale/it_IT/fusiondirectory.po +++ b/dhcp/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po index 36278cb6e7..278e6c2302 100644 --- a/dhcp/locale/lv/fusiondirectory.po +++ b/dhcp/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po index 8fbb13d6a6..0cfb4705c1 100644 --- a/dhcp/locale/nb/fusiondirectory.po +++ b/dhcp/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po index c9298d7365..2e7aa2131e 100644 --- a/dhcp/locale/nl/fusiondirectory.po +++ b/dhcp/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po index 45e342cf97..f834774344 100644 --- a/dhcp/locale/pl/fusiondirectory.po +++ b/dhcp/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po index 44a3c582f2..57bda612f4 100644 --- a/dhcp/locale/pt/fusiondirectory.po +++ b/dhcp/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po index 8ee0297fea..09cfa33539 100644 --- a/dhcp/locale/pt_BR/fusiondirectory.po +++ b/dhcp/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po index f5873212ab..0b9e6fed0e 100644 --- a/dhcp/locale/ru/fusiondirectory.po +++ b/dhcp/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po index 00c5319e98..8d09dd2865 100644 --- a/dhcp/locale/ru@petr1708/fusiondirectory.po +++ b/dhcp/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po index 6fff411262..9b34bcf661 100644 --- a/dhcp/locale/sv/fusiondirectory.po +++ b/dhcp/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po index 82d31b1b8e..af7dda9cee 100644 --- a/dhcp/locale/ug/fusiondirectory.po +++ b/dhcp/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po index d9ce5b2746..9329d3f2ec 100644 --- a/dhcp/locale/vi_VN/fusiondirectory.po +++ b/dhcp/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po index 4b63f3f6d1..ef187c9b22 100644 --- a/dhcp/locale/zh/fusiondirectory.po +++ b/dhcp/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po index cf33fa5d26..81648c0a62 100644 --- a/dns/locale/ar/fusiondirectory.po +++ b/dns/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po index 3f7312485e..05506c0758 100644 --- a/dns/locale/ca/fusiondirectory.po +++ b/dns/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po index 51671939e5..8da2ae9c25 100644 --- a/dns/locale/cs_CZ/fusiondirectory.po +++ b/dns/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po index 13a13eb676..b5797b09f0 100644 --- a/dns/locale/de/fusiondirectory.po +++ b/dns/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po index 22bb1e4b8d..1e47327d61 100644 --- a/dns/locale/el_GR/fusiondirectory.po +++ b/dns/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dns/locale/en/fusiondirectory.po b/dns/locale/en/fusiondirectory.po index f7a90b9eae..d1b86bdf10 100644 --- a/dns/locale/en/fusiondirectory.po +++ b/dns/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po index 783a248780..eb923ec68f 100644 --- a/dns/locale/es/fusiondirectory.po +++ b/dns/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po index eef0feb446..a444a65140 100644 --- a/dns/locale/es_CO/fusiondirectory.po +++ b/dns/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po index 83fba0d582..d232d3de25 100644 --- a/dns/locale/es_VE/fusiondirectory.po +++ b/dns/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po index bd1bba509e..af315c4e70 100644 --- a/dns/locale/fa_IR/fusiondirectory.po +++ b/dns/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po index d7c20f4179..6f6b741176 100644 --- a/dns/locale/fi_FI/fusiondirectory.po +++ b/dns/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-05 12:22+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po index 4eccc4c6b8..fd1b86551e 100644 --- a/dns/locale/fr/fusiondirectory.po +++ b/dns/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po index 1cc9c7bc4b..f8c4544112 100644 --- a/dns/locale/hu_HU/fusiondirectory.po +++ b/dns/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po index f05a623031..ae083f72df 100644 --- a/dns/locale/id/fusiondirectory.po +++ b/dns/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po index fa136358f9..8acb20b98c 100644 --- a/dns/locale/it_IT/fusiondirectory.po +++ b/dns/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po index 2ca06e36a4..39fc5525d3 100644 --- a/dns/locale/lv/fusiondirectory.po +++ b/dns/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po index e8f84d6818..5d766eb157 100644 --- a/dns/locale/nb/fusiondirectory.po +++ b/dns/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po index e8917f1bf6..6c91b71fee 100644 --- a/dns/locale/nl/fusiondirectory.po +++ b/dns/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po index 60d42b5ef5..6a2583de0c 100644 --- a/dns/locale/pl/fusiondirectory.po +++ b/dns/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po index b2b05523e4..608f2ae194 100644 --- a/dns/locale/pt/fusiondirectory.po +++ b/dns/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po index 56e60e0827..5279bc1209 100644 --- a/dns/locale/pt_BR/fusiondirectory.po +++ b/dns/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po index 79df2a6f32..1c9eebf35b 100644 --- a/dns/locale/ru/fusiondirectory.po +++ b/dns/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po index 7e26519237..9e96301f6a 100644 --- a/dns/locale/ru@petr1708/fusiondirectory.po +++ b/dns/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po index 012a6a8135..92c7966892 100644 --- a/dns/locale/sv/fusiondirectory.po +++ b/dns/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po index 4e33043ceb..e22f66e604 100644 --- a/dns/locale/ug/fusiondirectory.po +++ b/dns/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po index a81da7e9bf..36b5e68336 100644 --- a/dns/locale/vi_VN/fusiondirectory.po +++ b/dns/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po index d3a8172022..662217e5c3 100644 --- a/dns/locale/zh/fusiondirectory.po +++ b/dns/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po index 2ad46a6487..dca21c0641 100644 --- a/dovecot/locale/ar/fusiondirectory.po +++ b/dovecot/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po index 06e22251fc..df2382fdf5 100644 --- a/dovecot/locale/ca/fusiondirectory.po +++ b/dovecot/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po index b7011195f5..ec6df43eb3 100644 --- a/dovecot/locale/cs_CZ/fusiondirectory.po +++ b/dovecot/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po index 270768d21b..44d0d44d31 100644 --- a/dovecot/locale/de/fusiondirectory.po +++ b/dovecot/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po index 28cd0b8d31..9a8424eff8 100644 --- a/dovecot/locale/el_GR/fusiondirectory.po +++ b/dovecot/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dovecot/locale/en/fusiondirectory.po b/dovecot/locale/en/fusiondirectory.po index cd946f484e..b14708f0ab 100644 --- a/dovecot/locale/en/fusiondirectory.po +++ b/dovecot/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po index 306fc9f4c3..656a988c35 100644 --- a/dovecot/locale/es/fusiondirectory.po +++ b/dovecot/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po index afde0383d9..f91c3e3b0c 100644 --- a/dovecot/locale/es_CO/fusiondirectory.po +++ b/dovecot/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po index c3b4686bad..926eec5fbb 100644 --- a/dovecot/locale/es_VE/fusiondirectory.po +++ b/dovecot/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po index 006d19cf09..59620b2c6a 100644 --- a/dovecot/locale/fa_IR/fusiondirectory.po +++ b/dovecot/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po index 8b40fbf485..773d20e09e 100644 --- a/dovecot/locale/fi_FI/fusiondirectory.po +++ b/dovecot/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:39+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po index 687c9da8de..d7c78ff5f2 100644 --- a/dovecot/locale/fr/fusiondirectory.po +++ b/dovecot/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:17+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po index b5ab715715..5993a76dbd 100644 --- a/dovecot/locale/hu_HU/fusiondirectory.po +++ b/dovecot/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po index ed6f354beb..1188671539 100644 --- a/dovecot/locale/id/fusiondirectory.po +++ b/dovecot/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po index ea37c78362..040e60dc31 100644 --- a/dovecot/locale/it_IT/fusiondirectory.po +++ b/dovecot/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-18 07:04+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po index 625b1f1ed9..6a8a7b0a28 100644 --- a/dovecot/locale/lv/fusiondirectory.po +++ b/dovecot/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po index 6403cac07a..f734ac97c7 100644 --- a/dovecot/locale/nb/fusiondirectory.po +++ b/dovecot/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po index b2231a1356..fd0d455e10 100644 --- a/dovecot/locale/nl/fusiondirectory.po +++ b/dovecot/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po index 36e9ea3fd0..91806c62b3 100644 --- a/dovecot/locale/pl/fusiondirectory.po +++ b/dovecot/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po index ccceba45e6..0f43484193 100644 --- a/dovecot/locale/pt/fusiondirectory.po +++ b/dovecot/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po index a02fc9874f..493bc71a84 100644 --- a/dovecot/locale/pt_BR/fusiondirectory.po +++ b/dovecot/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po index fb50eca7a8..db9d624ab4 100644 --- a/dovecot/locale/ru/fusiondirectory.po +++ b/dovecot/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po index c439182dd0..2a891f7e0f 100644 --- a/dovecot/locale/ru@petr1708/fusiondirectory.po +++ b/dovecot/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po index fb4c7d20f7..0b1df6fe6e 100644 --- a/dovecot/locale/sv/fusiondirectory.po +++ b/dovecot/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po index 910312104b..da633a83b3 100644 --- a/dovecot/locale/ug/fusiondirectory.po +++ b/dovecot/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po index 9d1361d9ec..e91dc81082 100644 --- a/dovecot/locale/vi_VN/fusiondirectory.po +++ b/dovecot/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po index 0c9ca41c2e..b1b9db5d9b 100644 --- a/dovecot/locale/zh/fusiondirectory.po +++ b/dovecot/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po index c37b7fb330..7b89ad393f 100644 --- a/dsa/locale/ar/fusiondirectory.po +++ b/dsa/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po index 0e22840cca..8c0e450780 100644 --- a/dsa/locale/ca/fusiondirectory.po +++ b/dsa/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po index 73f8310305..344ce55cbd 100644 --- a/dsa/locale/cs_CZ/fusiondirectory.po +++ b/dsa/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po index e49480baf6..5d269250fc 100644 --- a/dsa/locale/de/fusiondirectory.po +++ b/dsa/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po index b05211657e..71edfe6ce2 100644 --- a/dsa/locale/el_GR/fusiondirectory.po +++ b/dsa/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dsa/locale/en/fusiondirectory.po b/dsa/locale/en/fusiondirectory.po index 4079f14589..77f7d9b7c2 100644 --- a/dsa/locale/en/fusiondirectory.po +++ b/dsa/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po index 72b589ac3d..750701d8ae 100644 --- a/dsa/locale/es/fusiondirectory.po +++ b/dsa/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po index b8fdb52760..1de31cae9d 100644 --- a/dsa/locale/es_CO/fusiondirectory.po +++ b/dsa/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po index 828b1a36ab..491bd7d303 100644 --- a/dsa/locale/es_VE/fusiondirectory.po +++ b/dsa/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po index 80ec2291b7..fff022bc90 100644 --- a/dsa/locale/fa_IR/fusiondirectory.po +++ b/dsa/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po index a48cf45b4d..c4244855aa 100644 --- a/dsa/locale/fi_FI/fusiondirectory.po +++ b/dsa/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po index 1dce25a4ba..2f174e9a4f 100644 --- a/dsa/locale/fr/fusiondirectory.po +++ b/dsa/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po index 3433e87d7e..a7b2ff9d1b 100644 --- a/dsa/locale/hu_HU/fusiondirectory.po +++ b/dsa/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po index 6a60c0ef50..d916112e0c 100644 --- a/dsa/locale/id/fusiondirectory.po +++ b/dsa/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po index 59ad1d3661..555949cbbf 100644 --- a/dsa/locale/it_IT/fusiondirectory.po +++ b/dsa/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po index 9956b826ef..b44b9d1ad3 100644 --- a/dsa/locale/lv/fusiondirectory.po +++ b/dsa/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po index 480c9fa0d4..3c62a1c215 100644 --- a/dsa/locale/nb/fusiondirectory.po +++ b/dsa/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po index ca0e6b7029..d7e335aa51 100644 --- a/dsa/locale/nl/fusiondirectory.po +++ b/dsa/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po index 558845962f..b3d5b36b30 100644 --- a/dsa/locale/pl/fusiondirectory.po +++ b/dsa/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po index d5e050bbe7..13c99a6711 100644 --- a/dsa/locale/pt/fusiondirectory.po +++ b/dsa/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po index 745f40064a..c6fe623f96 100644 --- a/dsa/locale/pt_BR/fusiondirectory.po +++ b/dsa/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po index 7aac940149..0058823dd4 100644 --- a/dsa/locale/ru/fusiondirectory.po +++ b/dsa/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po index 62aa9a20fe..32ee633c11 100644 --- a/dsa/locale/ru@petr1708/fusiondirectory.po +++ b/dsa/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po index ad5f1770d2..8ae697a80e 100644 --- a/dsa/locale/sv/fusiondirectory.po +++ b/dsa/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po index f1aa742dbd..87f44f78ba 100644 --- a/dsa/locale/ug/fusiondirectory.po +++ b/dsa/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po index 742856dcba..85a9f52f21 100644 --- a/dsa/locale/vi_VN/fusiondirectory.po +++ b/dsa/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po index b5d8d6c705..2038acccc0 100644 --- a/dsa/locale/zh/fusiondirectory.po +++ b/dsa/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po index a25056d161..95ed07642d 100644 --- a/ejbca/locale/ar/fusiondirectory.po +++ b/ejbca/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po index f85caf7854..360b7ed387 100644 --- a/ejbca/locale/ca/fusiondirectory.po +++ b/ejbca/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po index d6a0d03527..95bc2db941 100644 --- a/ejbca/locale/cs_CZ/fusiondirectory.po +++ b/ejbca/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po index df32b9cb77..4cfe400a21 100644 --- a/ejbca/locale/de/fusiondirectory.po +++ b/ejbca/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po index a8c86bcb9e..ba1c39e25d 100644 --- a/ejbca/locale/el_GR/fusiondirectory.po +++ b/ejbca/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ejbca/locale/en/fusiondirectory.po b/ejbca/locale/en/fusiondirectory.po index 960ab2a3cc..77b19bdb78 100644 --- a/ejbca/locale/en/fusiondirectory.po +++ b/ejbca/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po index a2d9012863..4d548d4d5b 100644 --- a/ejbca/locale/es/fusiondirectory.po +++ b/ejbca/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po index 063f06790f..7d96f48ce2 100644 --- a/ejbca/locale/es_CO/fusiondirectory.po +++ b/ejbca/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po index c06817a177..51d042bba4 100644 --- a/ejbca/locale/es_VE/fusiondirectory.po +++ b/ejbca/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po index 18e47d8b77..16c44a3f05 100644 --- a/ejbca/locale/fa_IR/fusiondirectory.po +++ b/ejbca/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po index 782f2018e8..86e9ffedf1 100644 --- a/ejbca/locale/fi_FI/fusiondirectory.po +++ b/ejbca/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po index dd1b19b9ea..fdb526e3b5 100644 --- a/ejbca/locale/fr/fusiondirectory.po +++ b/ejbca/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po index d129a265f5..da4f28c23e 100644 --- a/ejbca/locale/hu_HU/fusiondirectory.po +++ b/ejbca/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po index 50c91a1bd4..eab3dc4054 100644 --- a/ejbca/locale/id/fusiondirectory.po +++ b/ejbca/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po index 791904566a..d6de6a8553 100644 --- a/ejbca/locale/it_IT/fusiondirectory.po +++ b/ejbca/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po index 527f0d5dee..46293d322e 100644 --- a/ejbca/locale/lv/fusiondirectory.po +++ b/ejbca/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po index 0331866a72..d55aff2937 100644 --- a/ejbca/locale/nb/fusiondirectory.po +++ b/ejbca/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po index 1418fa1bf3..d0233d61ee 100644 --- a/ejbca/locale/nl/fusiondirectory.po +++ b/ejbca/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po index eb9239ec67..52a435a490 100644 --- a/ejbca/locale/pl/fusiondirectory.po +++ b/ejbca/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po index 22add0b6c9..4808175c42 100644 --- a/ejbca/locale/pt/fusiondirectory.po +++ b/ejbca/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po index 44a184739d..4ff9c63504 100644 --- a/ejbca/locale/pt_BR/fusiondirectory.po +++ b/ejbca/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po index 697edf5d39..39b2cc6f0a 100644 --- a/ejbca/locale/ru/fusiondirectory.po +++ b/ejbca/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 21:27+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po index fb7a39f081..3c0dacd3ac 100644 --- a/ejbca/locale/ru@petr1708/fusiondirectory.po +++ b/ejbca/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po index 8bbe2ca9e9..174d2f53ac 100644 --- a/ejbca/locale/sv/fusiondirectory.po +++ b/ejbca/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po index 0b07cb7291..646eae9df4 100644 --- a/ejbca/locale/ug/fusiondirectory.po +++ b/ejbca/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po index f217bb827e..5e6e8cc2c4 100644 --- a/ejbca/locale/vi_VN/fusiondirectory.po +++ b/ejbca/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po index ee13b84718..1cffd56e06 100644 --- a/ejbca/locale/zh/fusiondirectory.po +++ b/ejbca/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po index ef51486c3d..bd2268fc0c 100644 --- a/fai/locale/ar/fusiondirectory.po +++ b/fai/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po index 73fb8dbb4c..d864572ada 100644 --- a/fai/locale/ca/fusiondirectory.po +++ b/fai/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po index 32e166f8d4..39384bdcd6 100644 --- a/fai/locale/cs_CZ/fusiondirectory.po +++ b/fai/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po index 7c47f36e85..c6058f8d03 100644 --- a/fai/locale/de/fusiondirectory.po +++ b/fai/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po index e4c37f6d67..82dcb1d270 100644 --- a/fai/locale/el_GR/fusiondirectory.po +++ b/fai/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/fai/locale/en/fusiondirectory.po b/fai/locale/en/fusiondirectory.po index 90112bca7b..4ca5f5868c 100644 --- a/fai/locale/en/fusiondirectory.po +++ b/fai/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po index ba19cba43e..a015493bf9 100644 --- a/fai/locale/es/fusiondirectory.po +++ b/fai/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po index d266797da7..e67f9e90a9 100644 --- a/fai/locale/es_CO/fusiondirectory.po +++ b/fai/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po index 31e8165540..5b9d1d2065 100644 --- a/fai/locale/es_VE/fusiondirectory.po +++ b/fai/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po index a594ba12af..b0af72d98a 100644 --- a/fai/locale/fa_IR/fusiondirectory.po +++ b/fai/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po index 27325416d3..c2d6a483d3 100644 --- a/fai/locale/fi_FI/fusiondirectory.po +++ b/fai/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po index cd88ff5d31..9c915039e5 100644 --- a/fai/locale/fr/fusiondirectory.po +++ b/fai/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po index 27e4b844a8..24e4d5c629 100644 --- a/fai/locale/hu_HU/fusiondirectory.po +++ b/fai/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po index e9de4290a5..205f37f7ae 100644 --- a/fai/locale/id/fusiondirectory.po +++ b/fai/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po index 4f5de96044..a0f5bcfe50 100644 --- a/fai/locale/it_IT/fusiondirectory.po +++ b/fai/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po index c9a5b09536..6118f39426 100644 --- a/fai/locale/lv/fusiondirectory.po +++ b/fai/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po index 76cd035e7a..391e02208c 100644 --- a/fai/locale/nb/fusiondirectory.po +++ b/fai/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po index 4daf23892e..81ca25e704 100644 --- a/fai/locale/nl/fusiondirectory.po +++ b/fai/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po index 527161d167..8ef56250b4 100644 --- a/fai/locale/pl/fusiondirectory.po +++ b/fai/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po index d29d6590b9..b22cc98cc7 100644 --- a/fai/locale/pt/fusiondirectory.po +++ b/fai/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po index 8447820f5c..255245f96a 100644 --- a/fai/locale/pt_BR/fusiondirectory.po +++ b/fai/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po index 7628d88a08..4e43e20c6b 100644 --- a/fai/locale/ru/fusiondirectory.po +++ b/fai/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po index bdcc66a407..973ea172ba 100644 --- a/fai/locale/ru@petr1708/fusiondirectory.po +++ b/fai/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po index 88dfb01461..94dbd9e8a2 100644 --- a/fai/locale/sv/fusiondirectory.po +++ b/fai/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po index 84114cb7c5..91c61c0433 100644 --- a/fai/locale/ug/fusiondirectory.po +++ b/fai/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po index cbefe5d1f5..06c06cdba9 100644 --- a/fai/locale/vi_VN/fusiondirectory.po +++ b/fai/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po index 15a11177d0..170b0ae861 100644 --- a/fai/locale/zh/fusiondirectory.po +++ b/fai/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po index 79f9cbf731..b1edf0bfd9 100644 --- a/freeradius/locale/ar/fusiondirectory.po +++ b/freeradius/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po index eb78d98645..893e5f3362 100644 --- a/freeradius/locale/ca/fusiondirectory.po +++ b/freeradius/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po index f2323e6738..5ca2f84b92 100644 --- a/freeradius/locale/cs_CZ/fusiondirectory.po +++ b/freeradius/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po index 0924774c72..a4b850db69 100644 --- a/freeradius/locale/de/fusiondirectory.po +++ b/freeradius/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po index a108738f27..c0801cad31 100644 --- a/freeradius/locale/el_GR/fusiondirectory.po +++ b/freeradius/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/freeradius/locale/en/fusiondirectory.po b/freeradius/locale/en/fusiondirectory.po index bd4b88f041..5e0a543cfc 100644 --- a/freeradius/locale/en/fusiondirectory.po +++ b/freeradius/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po index af98c0ca65..54a845091c 100644 --- a/freeradius/locale/es/fusiondirectory.po +++ b/freeradius/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po index e22affb1da..7741f15cfb 100644 --- a/freeradius/locale/es_CO/fusiondirectory.po +++ b/freeradius/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po index 1ac0003153..a31e6df694 100644 --- a/freeradius/locale/es_VE/fusiondirectory.po +++ b/freeradius/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po index 5e972bc0a1..cdaad6916b 100644 --- a/freeradius/locale/fa_IR/fusiondirectory.po +++ b/freeradius/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po index ec1065cfbb..048f54e6ea 100644 --- a/freeradius/locale/fi_FI/fusiondirectory.po +++ b/freeradius/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po index 4474488631..21ac343ca0 100644 --- a/freeradius/locale/fr/fusiondirectory.po +++ b/freeradius/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po index cbf8b952a3..5b2f486a7e 100644 --- a/freeradius/locale/hu_HU/fusiondirectory.po +++ b/freeradius/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po index 06a29bde0e..e5bda8f07f 100644 --- a/freeradius/locale/id/fusiondirectory.po +++ b/freeradius/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po index bd2060ca3b..9d4247568c 100644 --- a/freeradius/locale/it_IT/fusiondirectory.po +++ b/freeradius/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po index 00123a3f11..baa28d9b19 100644 --- a/freeradius/locale/lv/fusiondirectory.po +++ b/freeradius/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po index c90fc2d13c..bcb9666a77 100644 --- a/freeradius/locale/nb/fusiondirectory.po +++ b/freeradius/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po index 113b075bf7..db5bf47c06 100644 --- a/freeradius/locale/nl/fusiondirectory.po +++ b/freeradius/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po index 6fb958a35f..e3a6f17080 100644 --- a/freeradius/locale/pl/fusiondirectory.po +++ b/freeradius/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po index dc83c92154..ff9a737bb7 100644 --- a/freeradius/locale/pt/fusiondirectory.po +++ b/freeradius/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po index f916ead522..12f27a73d1 100644 --- a/freeradius/locale/pt_BR/fusiondirectory.po +++ b/freeradius/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po index 7471c0f929..a5d665b9e1 100644 --- a/freeradius/locale/ru/fusiondirectory.po +++ b/freeradius/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po index c6b20f7e3e..2fdf8615de 100644 --- a/freeradius/locale/ru@petr1708/fusiondirectory.po +++ b/freeradius/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po index a20c7b9624..6913207b70 100644 --- a/freeradius/locale/sv/fusiondirectory.po +++ b/freeradius/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po index e3f5f61e2f..38c30f8f3e 100644 --- a/freeradius/locale/ug/fusiondirectory.po +++ b/freeradius/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po index f6edac796e..19fbcc66db 100644 --- a/freeradius/locale/vi_VN/fusiondirectory.po +++ b/freeradius/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po index 7ad4b946d7..8f11494a82 100644 --- a/freeradius/locale/zh/fusiondirectory.po +++ b/freeradius/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po index 9afb03f5d2..fdc0040efe 100644 --- a/fusioninventory/locale/ar/fusiondirectory.po +++ b/fusioninventory/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po index 1dfc2718fd..c87327930a 100644 --- a/fusioninventory/locale/ca/fusiondirectory.po +++ b/fusioninventory/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po index b7fcb282e5..0d44219937 100644 --- a/fusioninventory/locale/cs_CZ/fusiondirectory.po +++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po index ba77a0c7b9..610305ffbe 100644 --- a/fusioninventory/locale/de/fusiondirectory.po +++ b/fusioninventory/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po index c733c751d9..edb3e5671c 100644 --- a/fusioninventory/locale/el_GR/fusiondirectory.po +++ b/fusioninventory/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/fusioninventory/locale/en/fusiondirectory.po b/fusioninventory/locale/en/fusiondirectory.po index 315c5affdf..a63452ffc1 100644 --- a/fusioninventory/locale/en/fusiondirectory.po +++ b/fusioninventory/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po index 0c3b341645..f0e3f228ed 100644 --- a/fusioninventory/locale/es/fusiondirectory.po +++ b/fusioninventory/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po index b25a0313d2..4afc3a9e09 100644 --- a/fusioninventory/locale/es_CO/fusiondirectory.po +++ b/fusioninventory/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po index 13f2bfe83b..9832e1bc70 100644 --- a/fusioninventory/locale/es_VE/fusiondirectory.po +++ b/fusioninventory/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po index 0a16e92c04..a7b16cee73 100644 --- a/fusioninventory/locale/fa_IR/fusiondirectory.po +++ b/fusioninventory/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po index 2ef42f154c..b0fd6b31d0 100644 --- a/fusioninventory/locale/fi_FI/fusiondirectory.po +++ b/fusioninventory/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po index 2a956fd591..6d6b53419a 100644 --- a/fusioninventory/locale/fr/fusiondirectory.po +++ b/fusioninventory/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po index b16d024fb7..7b3c33553a 100644 --- a/fusioninventory/locale/hu_HU/fusiondirectory.po +++ b/fusioninventory/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po index 209a796975..7859165df3 100644 --- a/fusioninventory/locale/id/fusiondirectory.po +++ b/fusioninventory/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po index 931e118f5e..f4bf42f1b2 100644 --- a/fusioninventory/locale/it_IT/fusiondirectory.po +++ b/fusioninventory/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po index d2acd86645..06676c6e22 100644 --- a/fusioninventory/locale/lv/fusiondirectory.po +++ b/fusioninventory/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po index aeba42790a..1d0824bb25 100644 --- a/fusioninventory/locale/nb/fusiondirectory.po +++ b/fusioninventory/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po index dd41d56046..8597d42f6b 100644 --- a/fusioninventory/locale/nl/fusiondirectory.po +++ b/fusioninventory/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po index a9c4e48b6b..0012c74e9c 100644 --- a/fusioninventory/locale/pl/fusiondirectory.po +++ b/fusioninventory/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po index 0916778d76..97b04d2bf2 100644 --- a/fusioninventory/locale/pt/fusiondirectory.po +++ b/fusioninventory/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po index dcecee2b05..a7a03f8566 100644 --- a/fusioninventory/locale/pt_BR/fusiondirectory.po +++ b/fusioninventory/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po index ad95d602f1..47377d0390 100644 --- a/fusioninventory/locale/ru/fusiondirectory.po +++ b/fusioninventory/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po index 70e1ca212c..9897a5e2ac 100644 --- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po +++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po index 735df14ddb..1487767f88 100644 --- a/fusioninventory/locale/sv/fusiondirectory.po +++ b/fusioninventory/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po index f59b1037fc..582ec207ed 100644 --- a/fusioninventory/locale/ug/fusiondirectory.po +++ b/fusioninventory/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po index 652502b751..3ea7a0397b 100644 --- a/fusioninventory/locale/vi_VN/fusiondirectory.po +++ b/fusioninventory/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po index 6792fb9703..ea54755349 100644 --- a/fusioninventory/locale/zh/fusiondirectory.po +++ b/fusioninventory/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po index 807b61d51d..b150b1e0fc 100644 --- a/gpg/locale/ar/fusiondirectory.po +++ b/gpg/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po index da693c631f..547112dfac 100644 --- a/gpg/locale/ca/fusiondirectory.po +++ b/gpg/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po index 77e9e316f0..ded3b865bd 100644 --- a/gpg/locale/cs_CZ/fusiondirectory.po +++ b/gpg/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po index 84fe6e7538..f1496dc403 100644 --- a/gpg/locale/de/fusiondirectory.po +++ b/gpg/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po index 5b080ee9f0..24132552ef 100644 --- a/gpg/locale/el_GR/fusiondirectory.po +++ b/gpg/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/gpg/locale/en/fusiondirectory.po b/gpg/locale/en/fusiondirectory.po index 8df1a5c83b..d4103e6519 100644 --- a/gpg/locale/en/fusiondirectory.po +++ b/gpg/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po index 51ace81e66..a26f187b73 100644 --- a/gpg/locale/es/fusiondirectory.po +++ b/gpg/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po index 0ec7405956..656e064b70 100644 --- a/gpg/locale/es_CO/fusiondirectory.po +++ b/gpg/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po index b95823a955..c698e31d53 100644 --- a/gpg/locale/es_VE/fusiondirectory.po +++ b/gpg/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po index 78b2fa9604..193810cc9c 100644 --- a/gpg/locale/fa_IR/fusiondirectory.po +++ b/gpg/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po index b62ac4147a..dc24602b12 100644 --- a/gpg/locale/fi_FI/fusiondirectory.po +++ b/gpg/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po index 05802fe61a..773e8dae3a 100644 --- a/gpg/locale/fr/fusiondirectory.po +++ b/gpg/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po index f3373ff934..836973bf99 100644 --- a/gpg/locale/hu_HU/fusiondirectory.po +++ b/gpg/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po index 3e5e00fa9f..4b6489d474 100644 --- a/gpg/locale/id/fusiondirectory.po +++ b/gpg/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po index 8945137d74..295534ffe7 100644 --- a/gpg/locale/it_IT/fusiondirectory.po +++ b/gpg/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po index b294f1baf4..1f4fdb589f 100644 --- a/gpg/locale/lv/fusiondirectory.po +++ b/gpg/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po index 247fd0009c..1107946b14 100644 --- a/gpg/locale/nb/fusiondirectory.po +++ b/gpg/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po index 40a4a7234d..b6d1d75921 100644 --- a/gpg/locale/nl/fusiondirectory.po +++ b/gpg/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po index 12c8cd17d2..708045dd29 100644 --- a/gpg/locale/pl/fusiondirectory.po +++ b/gpg/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po index e317048114..5c050df1e5 100644 --- a/gpg/locale/pt/fusiondirectory.po +++ b/gpg/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po index b4c5f0be3a..7b8cd9b79b 100644 --- a/gpg/locale/pt_BR/fusiondirectory.po +++ b/gpg/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po index 7e71cab45c..8f84cae3ee 100644 --- a/gpg/locale/ru/fusiondirectory.po +++ b/gpg/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 18:52+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po index 429990d1d3..57277486ba 100644 --- a/gpg/locale/ru@petr1708/fusiondirectory.po +++ b/gpg/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po index 0db0f74e92..8b979ff00c 100644 --- a/gpg/locale/sv/fusiondirectory.po +++ b/gpg/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po index bff65d083e..6f55cf70a6 100644 --- a/gpg/locale/ug/fusiondirectory.po +++ b/gpg/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po index d2ef9f23b7..980172e21b 100644 --- a/gpg/locale/vi_VN/fusiondirectory.po +++ b/gpg/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po index 6d6337d6d5..deefa5490f 100644 --- a/gpg/locale/zh/fusiondirectory.po +++ b/gpg/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po index 9dd184321e..3ef4cdf163 100644 --- a/ipmi/locale/ar/fusiondirectory.po +++ b/ipmi/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po index 8cc67b52bf..da7e818432 100644 --- a/ipmi/locale/ca/fusiondirectory.po +++ b/ipmi/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po index cef5683293..a0b0ce3fd0 100644 --- a/ipmi/locale/cs_CZ/fusiondirectory.po +++ b/ipmi/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po index b51a13b1e4..a9938dd9cc 100644 --- a/ipmi/locale/de/fusiondirectory.po +++ b/ipmi/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po index b644d63bf8..72d31f7a12 100644 --- a/ipmi/locale/el_GR/fusiondirectory.po +++ b/ipmi/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ipmi/locale/en/fusiondirectory.po b/ipmi/locale/en/fusiondirectory.po index ebba756e2f..af3a28ebf7 100644 --- a/ipmi/locale/en/fusiondirectory.po +++ b/ipmi/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po index c2b1ccbab5..1d15b2dae6 100644 --- a/ipmi/locale/es/fusiondirectory.po +++ b/ipmi/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po index 96d0dab6ec..a27f17cf21 100644 --- a/ipmi/locale/es_CO/fusiondirectory.po +++ b/ipmi/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po index 342556e6dc..e740186fc0 100644 --- a/ipmi/locale/es_VE/fusiondirectory.po +++ b/ipmi/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po index 10ee84d8e3..adedd9a9ac 100644 --- a/ipmi/locale/fa_IR/fusiondirectory.po +++ b/ipmi/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po index 1b8bc59ed1..42c7696f5e 100644 --- a/ipmi/locale/fi_FI/fusiondirectory.po +++ b/ipmi/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po index 6a5c827fbf..c92a9febc4 100644 --- a/ipmi/locale/fr/fusiondirectory.po +++ b/ipmi/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po index 8b92278adf..916572000b 100644 --- a/ipmi/locale/hu_HU/fusiondirectory.po +++ b/ipmi/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po index 4042de8837..4308dba003 100644 --- a/ipmi/locale/id/fusiondirectory.po +++ b/ipmi/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po index 95481488ce..135f59e1d5 100644 --- a/ipmi/locale/it_IT/fusiondirectory.po +++ b/ipmi/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po index 5cab0e6a60..5e70eebd95 100644 --- a/ipmi/locale/lv/fusiondirectory.po +++ b/ipmi/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po index 03390f8c0a..f09ecacc33 100644 --- a/ipmi/locale/nb/fusiondirectory.po +++ b/ipmi/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po index 2a118f6871..9f7b1fc20d 100644 --- a/ipmi/locale/nl/fusiondirectory.po +++ b/ipmi/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po index 81fd99ca25..9c78eab5a1 100644 --- a/ipmi/locale/pl/fusiondirectory.po +++ b/ipmi/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:47+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po index a4a7e7eb6d..82320dd030 100644 --- a/ipmi/locale/pt/fusiondirectory.po +++ b/ipmi/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po index a9afa4c516..8b2cbbf019 100644 --- a/ipmi/locale/pt_BR/fusiondirectory.po +++ b/ipmi/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po index 575a695a52..641de2c72e 100644 --- a/ipmi/locale/ru/fusiondirectory.po +++ b/ipmi/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po index 2fea24fb8c..4dbb25bd3b 100644 --- a/ipmi/locale/ru@petr1708/fusiondirectory.po +++ b/ipmi/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po index 95a9b7c5ab..0380849ef8 100644 --- a/ipmi/locale/sv/fusiondirectory.po +++ b/ipmi/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po index 74b90b3991..09ccf3032e 100644 --- a/ipmi/locale/ug/fusiondirectory.po +++ b/ipmi/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po index 1355cc22c5..1abf8541f6 100644 --- a/ipmi/locale/vi_VN/fusiondirectory.po +++ b/ipmi/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po index 1ec7e3f3cc..c012e561b4 100644 --- a/ipmi/locale/zh/fusiondirectory.po +++ b/ipmi/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/kolab2/locale/ar/fusiondirectory.po b/kolab2/locale/ar/fusiondirectory.po index 88515b406b..1abca11f60 100644 --- a/kolab2/locale/ar/fusiondirectory.po +++ b/kolab2/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/kolab2/locale/ca/fusiondirectory.po b/kolab2/locale/ca/fusiondirectory.po index c6c62e5049..a13ba579cf 100644 --- a/kolab2/locale/ca/fusiondirectory.po +++ b/kolab2/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/kolab2/locale/cs_CZ/fusiondirectory.po b/kolab2/locale/cs_CZ/fusiondirectory.po index 2e3724cf5e..fcf728e3c2 100644 --- a/kolab2/locale/cs_CZ/fusiondirectory.po +++ b/kolab2/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/kolab2/locale/de/fusiondirectory.po b/kolab2/locale/de/fusiondirectory.po index 5da9f4c208..f3f15f7a7c 100644 --- a/kolab2/locale/de/fusiondirectory.po +++ b/kolab2/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/kolab2/locale/el_GR/fusiondirectory.po b/kolab2/locale/el_GR/fusiondirectory.po index 0077d5bf4b..4bca97104f 100644 --- a/kolab2/locale/el_GR/fusiondirectory.po +++ b/kolab2/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/kolab2/locale/en/fusiondirectory.po b/kolab2/locale/en/fusiondirectory.po index e1f4a88983..258a05b1dc 100644 --- a/kolab2/locale/en/fusiondirectory.po +++ b/kolab2/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/kolab2/locale/es/fusiondirectory.po b/kolab2/locale/es/fusiondirectory.po index 05264d249d..b1e4dcbdb1 100644 --- a/kolab2/locale/es/fusiondirectory.po +++ b/kolab2/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/kolab2/locale/es_CO/fusiondirectory.po b/kolab2/locale/es_CO/fusiondirectory.po index b97dd0b28e..5d057ae857 100644 --- a/kolab2/locale/es_CO/fusiondirectory.po +++ b/kolab2/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/kolab2/locale/es_VE/fusiondirectory.po b/kolab2/locale/es_VE/fusiondirectory.po index dc5005cea7..f1474d5e35 100644 --- a/kolab2/locale/es_VE/fusiondirectory.po +++ b/kolab2/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/kolab2/locale/fa_IR/fusiondirectory.po b/kolab2/locale/fa_IR/fusiondirectory.po index 2ed0cd9919..13604acaff 100644 --- a/kolab2/locale/fa_IR/fusiondirectory.po +++ b/kolab2/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/kolab2/locale/fi_FI/fusiondirectory.po b/kolab2/locale/fi_FI/fusiondirectory.po index 132506ae1a..d4218cda27 100644 --- a/kolab2/locale/fi_FI/fusiondirectory.po +++ b/kolab2/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:47+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/kolab2/locale/fr/fusiondirectory.po b/kolab2/locale/fr/fusiondirectory.po index 4525bdb41b..3b64c073a9 100644 --- a/kolab2/locale/fr/fusiondirectory.po +++ b/kolab2/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/kolab2/locale/hu_HU/fusiondirectory.po b/kolab2/locale/hu_HU/fusiondirectory.po index 9b9651c132..81d0a57aa0 100644 --- a/kolab2/locale/hu_HU/fusiondirectory.po +++ b/kolab2/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/kolab2/locale/id/fusiondirectory.po b/kolab2/locale/id/fusiondirectory.po index 17914eb7ec..e8a68bcb2e 100644 --- a/kolab2/locale/id/fusiondirectory.po +++ b/kolab2/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/kolab2/locale/it_IT/fusiondirectory.po b/kolab2/locale/it_IT/fusiondirectory.po index 6f1552f0d8..1e408accaf 100644 --- a/kolab2/locale/it_IT/fusiondirectory.po +++ b/kolab2/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/kolab2/locale/lv/fusiondirectory.po b/kolab2/locale/lv/fusiondirectory.po index 033fd94b6b..3caf189f29 100644 --- a/kolab2/locale/lv/fusiondirectory.po +++ b/kolab2/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/kolab2/locale/nb/fusiondirectory.po b/kolab2/locale/nb/fusiondirectory.po index 4e925948fa..ca6e042b9c 100644 --- a/kolab2/locale/nb/fusiondirectory.po +++ b/kolab2/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/kolab2/locale/nl/fusiondirectory.po b/kolab2/locale/nl/fusiondirectory.po index c497faad6a..32cd0cdf10 100644 --- a/kolab2/locale/nl/fusiondirectory.po +++ b/kolab2/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/kolab2/locale/pl/fusiondirectory.po b/kolab2/locale/pl/fusiondirectory.po index b3c11787b0..13adcaf969 100644 --- a/kolab2/locale/pl/fusiondirectory.po +++ b/kolab2/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/kolab2/locale/pt/fusiondirectory.po b/kolab2/locale/pt/fusiondirectory.po index 1f1725d2b1..888c56e0ec 100644 --- a/kolab2/locale/pt/fusiondirectory.po +++ b/kolab2/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/kolab2/locale/pt_BR/fusiondirectory.po b/kolab2/locale/pt_BR/fusiondirectory.po index 10323477ec..f415448712 100644 --- a/kolab2/locale/pt_BR/fusiondirectory.po +++ b/kolab2/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/kolab2/locale/ru/fusiondirectory.po b/kolab2/locale/ru/fusiondirectory.po index bfebe750d2..9fa32a04e0 100644 --- a/kolab2/locale/ru/fusiondirectory.po +++ b/kolab2/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/kolab2/locale/ru@petr1708/fusiondirectory.po b/kolab2/locale/ru@petr1708/fusiondirectory.po index 84de561632..722cb17125 100644 --- a/kolab2/locale/ru@petr1708/fusiondirectory.po +++ b/kolab2/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/kolab2/locale/sv/fusiondirectory.po b/kolab2/locale/sv/fusiondirectory.po index e5212a936c..f82435ceba 100644 --- a/kolab2/locale/sv/fusiondirectory.po +++ b/kolab2/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/kolab2/locale/ug/fusiondirectory.po b/kolab2/locale/ug/fusiondirectory.po index ed31f5cc59..7cd0c6fafb 100644 --- a/kolab2/locale/ug/fusiondirectory.po +++ b/kolab2/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/kolab2/locale/vi_VN/fusiondirectory.po b/kolab2/locale/vi_VN/fusiondirectory.po index 1eb31615c1..5c0c39e4fe 100644 --- a/kolab2/locale/vi_VN/fusiondirectory.po +++ b/kolab2/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/kolab2/locale/zh/fusiondirectory.po b/kolab2/locale/zh/fusiondirectory.po index a667772b8c..1d1d4fc539 100644 --- a/kolab2/locale/zh/fusiondirectory.po +++ b/kolab2/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po index 98182be51d..eb739a7489 100644 --- a/ldapdump/locale/ar/fusiondirectory.po +++ b/ldapdump/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po index e4ca9d1e3a..27dad5a0c0 100644 --- a/ldapdump/locale/ca/fusiondirectory.po +++ b/ldapdump/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po index 536b9bda97..1602c19b63 100644 --- a/ldapdump/locale/cs_CZ/fusiondirectory.po +++ b/ldapdump/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po index 4287a3afbd..2fda5b7ff2 100644 --- a/ldapdump/locale/de/fusiondirectory.po +++ b/ldapdump/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po index 5a62add724..3513d23b12 100644 --- a/ldapdump/locale/el_GR/fusiondirectory.po +++ b/ldapdump/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ldapdump/locale/en/fusiondirectory.po b/ldapdump/locale/en/fusiondirectory.po index 6144cbd7bb..b754c5aef6 100644 --- a/ldapdump/locale/en/fusiondirectory.po +++ b/ldapdump/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po index 5e1d012789..a4cb76d42a 100644 --- a/ldapdump/locale/es/fusiondirectory.po +++ b/ldapdump/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po index 387c37f675..1ced03e573 100644 --- a/ldapdump/locale/es_CO/fusiondirectory.po +++ b/ldapdump/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po index fa22fc1ca3..0d4feb9a6f 100644 --- a/ldapdump/locale/es_VE/fusiondirectory.po +++ b/ldapdump/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po index cfd17e34ff..3174927ef3 100644 --- a/ldapdump/locale/fa_IR/fusiondirectory.po +++ b/ldapdump/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po index 7e6608754a..5a704791da 100644 --- a/ldapdump/locale/fi_FI/fusiondirectory.po +++ b/ldapdump/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po index 4b9053aeb3..6b89745017 100644 --- a/ldapdump/locale/fr/fusiondirectory.po +++ b/ldapdump/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po index 6282b1d839..30bb0cda81 100644 --- a/ldapdump/locale/hu_HU/fusiondirectory.po +++ b/ldapdump/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po index 179c036f08..0df61debb2 100644 --- a/ldapdump/locale/id/fusiondirectory.po +++ b/ldapdump/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po index a0a3c1023c..5910f05d8d 100644 --- a/ldapdump/locale/it_IT/fusiondirectory.po +++ b/ldapdump/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po index eeb0cc28f7..c3ecc008ab 100644 --- a/ldapdump/locale/lv/fusiondirectory.po +++ b/ldapdump/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po index dc1897e5f1..7f5338cb01 100644 --- a/ldapdump/locale/nb/fusiondirectory.po +++ b/ldapdump/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po index e390b06f4a..dc8247cae2 100644 --- a/ldapdump/locale/nl/fusiondirectory.po +++ b/ldapdump/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po index 0a001a36f0..8ba68692e0 100644 --- a/ldapdump/locale/pl/fusiondirectory.po +++ b/ldapdump/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po index 566f98194a..06bc2ee8ce 100644 --- a/ldapdump/locale/pt/fusiondirectory.po +++ b/ldapdump/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po index 4c38bf4a1b..7008928c65 100644 --- a/ldapdump/locale/pt_BR/fusiondirectory.po +++ b/ldapdump/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po index 5b1d0063b6..8f278a8531 100644 --- a/ldapdump/locale/ru/fusiondirectory.po +++ b/ldapdump/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-11 18:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po index 803041253f..746b0f75cc 100644 --- a/ldapdump/locale/ru@petr1708/fusiondirectory.po +++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po index cf272d6d7f..c38eedcdcc 100644 --- a/ldapdump/locale/sv/fusiondirectory.po +++ b/ldapdump/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:49+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po index 7f188250e4..280c1f32e1 100644 --- a/ldapdump/locale/ug/fusiondirectory.po +++ b/ldapdump/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po index 1e9c7cdc03..4ecdcd6f5a 100644 --- a/ldapdump/locale/vi_VN/fusiondirectory.po +++ b/ldapdump/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po index e3aa0d897b..186bcc487a 100644 --- a/ldapdump/locale/zh/fusiondirectory.po +++ b/ldapdump/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po index 32413a3601..ff10ea10a9 100644 --- a/ldapmanager/locale/ar/fusiondirectory.po +++ b/ldapmanager/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po index 0d6be4ec85..99e2975ebf 100644 --- a/ldapmanager/locale/ca/fusiondirectory.po +++ b/ldapmanager/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Èxit" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po index f706950696..4b1b27247c 100644 --- a/ldapmanager/locale/cs_CZ/fusiondirectory.po +++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" @@ -194,16 +194,16 @@ msgstr "Vyplňovánà šablony" msgid "Select fields associations" msgstr "Vyberte pÅ™iÅ™azenà polÃÄek" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "ÚspÄ›ch" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "%d položek bylo úspěšnÄ› importováno" diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po index 99ba639a8a..56d09c7611 100644 --- a/ldapmanager/locale/de/fusiondirectory.po +++ b/ldapmanager/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" @@ -195,16 +195,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Erfolg" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "%d Einträge erfolgreich importiert" diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po index e1e2b54d9a..eea75ea084 100644 --- a/ldapmanager/locale/el_GR/fusiondirectory.po +++ b/ldapmanager/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" @@ -195,16 +195,16 @@ msgstr "ΓÎμισμα Ï€ÏοτÏπων" msgid "Select fields associations" msgstr "Επιλογή συσχετισμών πεδίων" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Επιτυχία" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "ΠετυχημÎνη εισαγωγή %d καταχωÏήσεων" diff --git a/ldapmanager/locale/en/fusiondirectory.po b/ldapmanager/locale/en/fusiondirectory.po index a7c89e0ef5..9fcf8a6a37 100644 --- a/ldapmanager/locale/en/fusiondirectory.po +++ b/ldapmanager/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po index f22d293fc9..f46cbfe9cd 100644 --- a/ldapmanager/locale/es/fusiondirectory.po +++ b/ldapmanager/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Correcto" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po index 1bee36629c..c910b6f0d5 100644 --- a/ldapmanager/locale/es_CO/fusiondirectory.po +++ b/ldapmanager/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Realizado con éxito" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po index 4f03ca8b87..1e0d4cada1 100644 --- a/ldapmanager/locale/es_VE/fusiondirectory.po +++ b/ldapmanager/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Correcto" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po index 6e05d32845..b94d15fc56 100644 --- a/ldapmanager/locale/fa_IR/fusiondirectory.po +++ b/ldapmanager/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po index 2b88c39d97..217b51adb7 100644 --- a/ldapmanager/locale/fi_FI/fusiondirectory.po +++ b/ldapmanager/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:49+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po index 1422723f9f..dfe2f0cdff 100644 --- a/ldapmanager/locale/fr/fusiondirectory.po +++ b/ldapmanager/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 14:07+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" @@ -197,16 +197,16 @@ msgstr "Remplissage du modèle" msgid "Select fields associations" msgstr "Sélectionnez l'association des champs" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "L'importation à échoué pour la ligne %d" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Succès" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "%d entrées importées avec succès" diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po index 7c42d47c95..49793776ff 100644 --- a/ldapmanager/locale/hu_HU/fusiondirectory.po +++ b/ldapmanager/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po index 99fe3475d1..2d3ffd4cf9 100644 --- a/ldapmanager/locale/id/fusiondirectory.po +++ b/ldapmanager/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po index d21bafb395..fd68844102 100644 --- a/ldapmanager/locale/it_IT/fusiondirectory.po +++ b/ldapmanager/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 14:26+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" @@ -195,16 +195,16 @@ msgstr "Riempimento dei modelli" msgid "Select fields associations" msgstr "Selezionare associazione di campi" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "Importazione non riuscita per la linea %d" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Completato" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "%d di dati importati con successo" diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po index 93aadd753a..fcb711675d 100644 --- a/ldapmanager/locale/lv/fusiondirectory.po +++ b/ldapmanager/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po index da49e9fa16..e969b70ea0 100644 --- a/ldapmanager/locale/nb/fusiondirectory.po +++ b/ldapmanager/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po index 3a70662e87..efab3869ca 100644 --- a/ldapmanager/locale/nl/fusiondirectory.po +++ b/ldapmanager/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Succes" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po index 39c4ffcf02..9c88d02089 100644 --- a/ldapmanager/locale/pl/fusiondirectory.po +++ b/ldapmanager/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Powodzenie" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po index 4c49f019b0..34d0201ee7 100644 --- a/ldapmanager/locale/pt/fusiondirectory.po +++ b/ldapmanager/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Sucesso" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po index 23fb1f8540..d133f1d863 100644 --- a/ldapmanager/locale/pt_BR/fusiondirectory.po +++ b/ldapmanager/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Sucesso" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po index 14affd2a37..c2b192b5e4 100644 --- a/ldapmanager/locale/ru/fusiondirectory.po +++ b/ldapmanager/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "УÑпешно" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po index a92e07e3b8..16d4424822 100644 --- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po +++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po index bde690fac1..6d7aec87aa 100644 --- a/ldapmanager/locale/sv/fusiondirectory.po +++ b/ldapmanager/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po index 649bc58e15..db6eef1b44 100644 --- a/ldapmanager/locale/ug/fusiondirectory.po +++ b/ldapmanager/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po index 7fb31381f8..04ac6eab79 100644 --- a/ldapmanager/locale/vi_VN/fusiondirectory.po +++ b/ldapmanager/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "Thà nh công" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po index 75728490fc..5ae6f3bf48 100644 --- a/ldapmanager/locale/zh/fusiondirectory.po +++ b/ldapmanager/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" @@ -194,16 +194,16 @@ msgstr "" msgid "Select fields associations" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:230 +#: addons/ldapmanager/class_csvimport.inc:236 #, php-format msgid "Import failed for line %d" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 msgid "Success" msgstr "" -#: addons/ldapmanager/class_csvimport.inc:238 +#: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" msgstr "" diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po index 7848ea7a4e..7e27f6c64c 100644 --- a/mail/locale/ar/fusiondirectory.po +++ b/mail/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po index 1682c10be6..f27c1d4052 100644 --- a/mail/locale/ca/fusiondirectory.po +++ b/mail/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po index ff7e90011d..92f9ed7fae 100644 --- a/mail/locale/cs_CZ/fusiondirectory.po +++ b/mail/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po index 532d637bd6..c006841b69 100644 --- a/mail/locale/de/fusiondirectory.po +++ b/mail/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po index 260b6ac45f..b6df589d7c 100644 --- a/mail/locale/el_GR/fusiondirectory.po +++ b/mail/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/mail/locale/en/fusiondirectory.po b/mail/locale/en/fusiondirectory.po index eafed76fa7..ef8274eff2 100644 --- a/mail/locale/en/fusiondirectory.po +++ b/mail/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po index 02efc317e8..23ebeafb43 100644 --- a/mail/locale/es/fusiondirectory.po +++ b/mail/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po index 916e386e61..f2c21d9cc3 100644 --- a/mail/locale/es_CO/fusiondirectory.po +++ b/mail/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po index a29cd3cd12..21aa4cfcc8 100644 --- a/mail/locale/es_VE/fusiondirectory.po +++ b/mail/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po index dd6226d9a0..70a124e8de 100644 --- a/mail/locale/fa_IR/fusiondirectory.po +++ b/mail/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po index 55f3bcd364..012f8af3df 100644 --- a/mail/locale/fi_FI/fusiondirectory.po +++ b/mail/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po index b9fdb3a9c2..09c8613e6a 100644 --- a/mail/locale/fr/fusiondirectory.po +++ b/mail/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po index b540ea5b85..9dfda44e0f 100644 --- a/mail/locale/hu_HU/fusiondirectory.po +++ b/mail/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po index e454393282..aa6da531ed 100644 --- a/mail/locale/id/fusiondirectory.po +++ b/mail/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po index d66b85f180..f64945de56 100644 --- a/mail/locale/it_IT/fusiondirectory.po +++ b/mail/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po index 3c6a7ea5cb..c8ab224e41 100644 --- a/mail/locale/lv/fusiondirectory.po +++ b/mail/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po index 5e7db0ddf1..a375fc73eb 100644 --- a/mail/locale/nb/fusiondirectory.po +++ b/mail/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po index 9907769f20..f082426eb3 100644 --- a/mail/locale/nl/fusiondirectory.po +++ b/mail/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po index 527d833a1e..b9834f5e28 100644 --- a/mail/locale/pl/fusiondirectory.po +++ b/mail/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po index caf37d5590..fed6aa5f72 100644 --- a/mail/locale/pt/fusiondirectory.po +++ b/mail/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po index 1d83f6ed45..e04f6cf65f 100644 --- a/mail/locale/pt_BR/fusiondirectory.po +++ b/mail/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po index 914fa88dcb..9450a38f2d 100644 --- a/mail/locale/ru/fusiondirectory.po +++ b/mail/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po index 5466306baf..6630992a54 100644 --- a/mail/locale/ru@petr1708/fusiondirectory.po +++ b/mail/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po index 34d26cac6d..af4543d23d 100644 --- a/mail/locale/sv/fusiondirectory.po +++ b/mail/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po index 9a13ed4941..50e2d06d3c 100644 --- a/mail/locale/ug/fusiondirectory.po +++ b/mail/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po index bdde1e58ed..580ac57ed5 100644 --- a/mail/locale/vi_VN/fusiondirectory.po +++ b/mail/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po index 896a0b1a7e..e64de19762 100644 --- a/mail/locale/zh/fusiondirectory.po +++ b/mail/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po index f219bbc7a5..2bb995e4f9 100644 --- a/mixedgroups/locale/ar/fusiondirectory.po +++ b/mixedgroups/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po index 0847c56ac3..7837012858 100644 --- a/mixedgroups/locale/ca/fusiondirectory.po +++ b/mixedgroups/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po index 34e68e0561..493d64d4bf 100644 --- a/mixedgroups/locale/cs_CZ/fusiondirectory.po +++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po index 0dbda7a65a..e0f147d5bd 100644 --- a/mixedgroups/locale/de/fusiondirectory.po +++ b/mixedgroups/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po index b69324f2b5..c097efe2a2 100644 --- a/mixedgroups/locale/el_GR/fusiondirectory.po +++ b/mixedgroups/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/mixedgroups/locale/en/fusiondirectory.po b/mixedgroups/locale/en/fusiondirectory.po index 61924e8f8c..9f27763fca 100644 --- a/mixedgroups/locale/en/fusiondirectory.po +++ b/mixedgroups/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po index 9d72713fd1..b83210bca7 100644 --- a/mixedgroups/locale/es/fusiondirectory.po +++ b/mixedgroups/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po index 9452c3502c..0b97249d86 100644 --- a/mixedgroups/locale/es_CO/fusiondirectory.po +++ b/mixedgroups/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po index ea27d94893..bd88d49873 100644 --- a/mixedgroups/locale/es_VE/fusiondirectory.po +++ b/mixedgroups/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po index 0e4628903f..9593045852 100644 --- a/mixedgroups/locale/fa_IR/fusiondirectory.po +++ b/mixedgroups/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po index 7f2f942856..c3dab3344e 100644 --- a/mixedgroups/locale/fi_FI/fusiondirectory.po +++ b/mixedgroups/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po index cfca993407..b58e1c959d 100644 --- a/mixedgroups/locale/fr/fusiondirectory.po +++ b/mixedgroups/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po index 974ad1d12f..0041c9cea7 100644 --- a/mixedgroups/locale/hu_HU/fusiondirectory.po +++ b/mixedgroups/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po index 2c36c662b6..0025d9e5f4 100644 --- a/mixedgroups/locale/id/fusiondirectory.po +++ b/mixedgroups/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po index 2f4ccab99f..a51fc4b9a2 100644 --- a/mixedgroups/locale/it_IT/fusiondirectory.po +++ b/mixedgroups/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po index 7230502c0b..7edac87db6 100644 --- a/mixedgroups/locale/lv/fusiondirectory.po +++ b/mixedgroups/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po index faed44529e..aa5d8a07bc 100644 --- a/mixedgroups/locale/nb/fusiondirectory.po +++ b/mixedgroups/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po index f5c911f53c..d3402b4fb2 100644 --- a/mixedgroups/locale/nl/fusiondirectory.po +++ b/mixedgroups/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po index f54d4d7a47..5c4e52515f 100644 --- a/mixedgroups/locale/pl/fusiondirectory.po +++ b/mixedgroups/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po index d87636bf1f..944c320c44 100644 --- a/mixedgroups/locale/pt/fusiondirectory.po +++ b/mixedgroups/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po index 09403278f7..71d678fbc9 100644 --- a/mixedgroups/locale/pt_BR/fusiondirectory.po +++ b/mixedgroups/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po index 2b81d6b25d..c8ce77d15a 100644 --- a/mixedgroups/locale/ru/fusiondirectory.po +++ b/mixedgroups/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po index 4363f0328f..f802366528 100644 --- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po +++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po index aba457d611..6abbba4784 100644 --- a/mixedgroups/locale/sv/fusiondirectory.po +++ b/mixedgroups/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po index 7654bc4e95..facae947d5 100644 --- a/mixedgroups/locale/ug/fusiondirectory.po +++ b/mixedgroups/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po index c522f177d7..5a580bf50b 100644 --- a/mixedgroups/locale/vi_VN/fusiondirectory.po +++ b/mixedgroups/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po index 00cd6a1e23..3cbb80edbc 100644 --- a/mixedgroups/locale/zh/fusiondirectory.po +++ b/mixedgroups/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po index 6d353a12d1..89ece8a959 100644 --- a/nagios/locale/ar/fusiondirectory.po +++ b/nagios/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po index 04cb079f49..b73232dbb2 100644 --- a/nagios/locale/ca/fusiondirectory.po +++ b/nagios/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po index a12022f553..c59ea1bed3 100644 --- a/nagios/locale/cs_CZ/fusiondirectory.po +++ b/nagios/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po index d175ea791a..c891d041da 100644 --- a/nagios/locale/de/fusiondirectory.po +++ b/nagios/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po index 37d9a3cc0b..e3d3dc1815 100644 --- a/nagios/locale/el_GR/fusiondirectory.po +++ b/nagios/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/nagios/locale/en/fusiondirectory.po b/nagios/locale/en/fusiondirectory.po index 5422291ef3..82deb80688 100644 --- a/nagios/locale/en/fusiondirectory.po +++ b/nagios/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po index 91d26f89c3..10b830f57f 100644 --- a/nagios/locale/es/fusiondirectory.po +++ b/nagios/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po index f5ce7cb073..a3305a8542 100644 --- a/nagios/locale/es_CO/fusiondirectory.po +++ b/nagios/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po index da7ef1a59a..0aefafc5c0 100644 --- a/nagios/locale/es_VE/fusiondirectory.po +++ b/nagios/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po index 809c91eff1..6783a3990f 100644 --- a/nagios/locale/fa_IR/fusiondirectory.po +++ b/nagios/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po index 6f00e39f3c..e7570d9e5c 100644 --- a/nagios/locale/fi_FI/fusiondirectory.po +++ b/nagios/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po index b528de4f50..63a14d7f0b 100644 --- a/nagios/locale/fr/fusiondirectory.po +++ b/nagios/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po index cc6427ca6b..411d252e50 100644 --- a/nagios/locale/hu_HU/fusiondirectory.po +++ b/nagios/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po index 2befba9cf9..200ecab7b3 100644 --- a/nagios/locale/id/fusiondirectory.po +++ b/nagios/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po index f140827182..957fa66e18 100644 --- a/nagios/locale/it_IT/fusiondirectory.po +++ b/nagios/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po index 6386eca33c..5efb0d3448 100644 --- a/nagios/locale/lv/fusiondirectory.po +++ b/nagios/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po index 7fc42ed1b9..2ff4c168a4 100644 --- a/nagios/locale/nb/fusiondirectory.po +++ b/nagios/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po index 0172a0143f..e421d49110 100644 --- a/nagios/locale/nl/fusiondirectory.po +++ b/nagios/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po index 5e9a65f1eb..2fe6233511 100644 --- a/nagios/locale/pl/fusiondirectory.po +++ b/nagios/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po index cd14704d39..a1e3beecbc 100644 --- a/nagios/locale/pt/fusiondirectory.po +++ b/nagios/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po index f513707506..a12dd989c2 100644 --- a/nagios/locale/pt_BR/fusiondirectory.po +++ b/nagios/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po index 1fc88cbb5a..42ff9bafd9 100644 --- a/nagios/locale/ru/fusiondirectory.po +++ b/nagios/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po index 10c7c1efa9..b41dcb9e5b 100644 --- a/nagios/locale/ru@petr1708/fusiondirectory.po +++ b/nagios/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po index f04d036c2f..eaf5f94197 100644 --- a/nagios/locale/sv/fusiondirectory.po +++ b/nagios/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po index 0251b85ca1..2ce5541023 100644 --- a/nagios/locale/ug/fusiondirectory.po +++ b/nagios/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po index 2e4b96d4d2..591447c25a 100644 --- a/nagios/locale/vi_VN/fusiondirectory.po +++ b/nagios/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po index c50169357f..4cfe44db7d 100644 --- a/nagios/locale/zh/fusiondirectory.po +++ b/nagios/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po index 69ecbe9769..5bd80f3248 100644 --- a/netgroups/locale/ar/fusiondirectory.po +++ b/netgroups/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po index f42d533856..77ef05c5fb 100644 --- a/netgroups/locale/ca/fusiondirectory.po +++ b/netgroups/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po index 445d341a3d..d03d7e903d 100644 --- a/netgroups/locale/cs_CZ/fusiondirectory.po +++ b/netgroups/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po index 1eb7cfcd63..5466877513 100644 --- a/netgroups/locale/de/fusiondirectory.po +++ b/netgroups/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po index 82767f4a4b..a7a7c68a1f 100644 --- a/netgroups/locale/el_GR/fusiondirectory.po +++ b/netgroups/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/netgroups/locale/en/fusiondirectory.po b/netgroups/locale/en/fusiondirectory.po index 87ad809ef7..63827cf1ce 100644 --- a/netgroups/locale/en/fusiondirectory.po +++ b/netgroups/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po index 78a4ce1ebb..064fa77b42 100644 --- a/netgroups/locale/es/fusiondirectory.po +++ b/netgroups/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po index 8cad1807ac..a659a01bc8 100644 --- a/netgroups/locale/es_CO/fusiondirectory.po +++ b/netgroups/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po index 4c71268949..e24093dfcc 100644 --- a/netgroups/locale/es_VE/fusiondirectory.po +++ b/netgroups/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po index d20b65ec12..cdb5458f81 100644 --- a/netgroups/locale/fa_IR/fusiondirectory.po +++ b/netgroups/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po index 4ef78146d3..b3b4c7e5ae 100644 --- a/netgroups/locale/fi_FI/fusiondirectory.po +++ b/netgroups/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po index fb302f76ed..9bac25b235 100644 --- a/netgroups/locale/fr/fusiondirectory.po +++ b/netgroups/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po index c9db8d865a..e42648e067 100644 --- a/netgroups/locale/hu_HU/fusiondirectory.po +++ b/netgroups/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po index 7d5c672ccb..56abde04b1 100644 --- a/netgroups/locale/id/fusiondirectory.po +++ b/netgroups/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po index 62bca3f7ed..b1f27084ba 100644 --- a/netgroups/locale/it_IT/fusiondirectory.po +++ b/netgroups/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po index e6364371f7..e3ebb558e5 100644 --- a/netgroups/locale/lv/fusiondirectory.po +++ b/netgroups/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po index a6049bc6d3..02b254e9f0 100644 --- a/netgroups/locale/nb/fusiondirectory.po +++ b/netgroups/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po index 6365e952a8..92e7f68e4a 100644 --- a/netgroups/locale/nl/fusiondirectory.po +++ b/netgroups/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po index 952431c492..9685f8a41e 100644 --- a/netgroups/locale/pl/fusiondirectory.po +++ b/netgroups/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po index e9474ab813..08483cdf5b 100644 --- a/netgroups/locale/pt/fusiondirectory.po +++ b/netgroups/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po index ff6693fa4e..90f2cada0f 100644 --- a/netgroups/locale/pt_BR/fusiondirectory.po +++ b/netgroups/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po index 18ce3800d6..579cf43086 100644 --- a/netgroups/locale/ru/fusiondirectory.po +++ b/netgroups/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po index ebf21cab36..f3cac13ac7 100644 --- a/netgroups/locale/ru@petr1708/fusiondirectory.po +++ b/netgroups/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po index 517b025184..0ac6766bed 100644 --- a/netgroups/locale/sv/fusiondirectory.po +++ b/netgroups/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po index 02c4a9deb0..83eaa396ae 100644 --- a/netgroups/locale/ug/fusiondirectory.po +++ b/netgroups/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po index 96e478c6ff..069519c5ea 100644 --- a/netgroups/locale/vi_VN/fusiondirectory.po +++ b/netgroups/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po index 055706d5ea..7086f0a2d3 100644 --- a/netgroups/locale/zh/fusiondirectory.po +++ b/netgroups/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po index 9fb601ecef..165a0f636d 100644 --- a/newsletter/locale/ar/fusiondirectory.po +++ b/newsletter/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po index 4c28c25a13..812e7eb26c 100644 --- a/newsletter/locale/ca/fusiondirectory.po +++ b/newsletter/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po index 266d4330c0..9c1a96bae5 100644 --- a/newsletter/locale/cs_CZ/fusiondirectory.po +++ b/newsletter/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po index d1a930fd81..b385e3c0db 100644 --- a/newsletter/locale/de/fusiondirectory.po +++ b/newsletter/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po index 920c4cfe27..788757d7c9 100644 --- a/newsletter/locale/el_GR/fusiondirectory.po +++ b/newsletter/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/newsletter/locale/en/fusiondirectory.po b/newsletter/locale/en/fusiondirectory.po index 84090d04cc..140eec8b25 100644 --- a/newsletter/locale/en/fusiondirectory.po +++ b/newsletter/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po index c4555c57ce..53d1d497bd 100644 --- a/newsletter/locale/es/fusiondirectory.po +++ b/newsletter/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po index 1112d2bae6..1f68d4cfc5 100644 --- a/newsletter/locale/es_CO/fusiondirectory.po +++ b/newsletter/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po index 7201a64193..e82f8eb496 100644 --- a/newsletter/locale/es_VE/fusiondirectory.po +++ b/newsletter/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po index 6148f0fa7a..3a2db9392d 100644 --- a/newsletter/locale/fa_IR/fusiondirectory.po +++ b/newsletter/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po index f9cfdd55a0..0bac43ad93 100644 --- a/newsletter/locale/fi_FI/fusiondirectory.po +++ b/newsletter/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po index 56e445fcc5..26d2a6c943 100644 --- a/newsletter/locale/fr/fusiondirectory.po +++ b/newsletter/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:27+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po index dc5d0693ed..3aabb6e687 100644 --- a/newsletter/locale/hu_HU/fusiondirectory.po +++ b/newsletter/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po index f71b8200fd..d5fde2fa0a 100644 --- a/newsletter/locale/id/fusiondirectory.po +++ b/newsletter/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po index e52fb1b04c..31990fbd6e 100644 --- a/newsletter/locale/it_IT/fusiondirectory.po +++ b/newsletter/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:58+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po index 386130010d..6f81ae0b33 100644 --- a/newsletter/locale/lv/fusiondirectory.po +++ b/newsletter/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po index 88dd9fa054..cd34cb3b77 100644 --- a/newsletter/locale/nb/fusiondirectory.po +++ b/newsletter/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po index def09cca8b..fdb92a938f 100644 --- a/newsletter/locale/nl/fusiondirectory.po +++ b/newsletter/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po index 8ea21ccf82..42536344ee 100644 --- a/newsletter/locale/pl/fusiondirectory.po +++ b/newsletter/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po index 931f94258b..2519ca8b9d 100644 --- a/newsletter/locale/pt/fusiondirectory.po +++ b/newsletter/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po index ce4dc1eb57..c520ca1f66 100644 --- a/newsletter/locale/pt_BR/fusiondirectory.po +++ b/newsletter/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po index 7b8075c19c..d086c4b282 100644 --- a/newsletter/locale/ru/fusiondirectory.po +++ b/newsletter/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po index 617b702c8d..6ebdf4f794 100644 --- a/newsletter/locale/ru@petr1708/fusiondirectory.po +++ b/newsletter/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po index 4014cfc04c..4f5707bf60 100644 --- a/newsletter/locale/sv/fusiondirectory.po +++ b/newsletter/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po index 5cac345fab..17b7a2afb8 100644 --- a/newsletter/locale/ug/fusiondirectory.po +++ b/newsletter/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po index 347aa71762..1df3aeaea8 100644 --- a/newsletter/locale/vi_VN/fusiondirectory.po +++ b/newsletter/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po index daae0c4da3..41b58f3c4c 100644 --- a/newsletter/locale/zh/fusiondirectory.po +++ b/newsletter/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po index 00a28ad436..8188e8d796 100644 --- a/opsi/locale/ar/fusiondirectory.po +++ b/opsi/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po index 3d0e6c5a89..1f9acd5dc4 100644 --- a/opsi/locale/ca/fusiondirectory.po +++ b/opsi/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po index 7f048b8601..1eaa526d15 100644 --- a/opsi/locale/cs_CZ/fusiondirectory.po +++ b/opsi/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po index f4ab9c3532..cd3da7f13d 100644 --- a/opsi/locale/de/fusiondirectory.po +++ b/opsi/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po index 999d6e9b9f..92ae024c97 100644 --- a/opsi/locale/el_GR/fusiondirectory.po +++ b/opsi/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/opsi/locale/en/fusiondirectory.po b/opsi/locale/en/fusiondirectory.po index 4bd1103ecd..b8286d1ab6 100644 --- a/opsi/locale/en/fusiondirectory.po +++ b/opsi/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po index 71434bd9d2..509a39652f 100644 --- a/opsi/locale/es/fusiondirectory.po +++ b/opsi/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po index 43e1a027d0..f4b9f8f5c2 100644 --- a/opsi/locale/es_CO/fusiondirectory.po +++ b/opsi/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po index ddcb0dd6cf..8ade9d32f8 100644 --- a/opsi/locale/es_VE/fusiondirectory.po +++ b/opsi/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po index 4547ee830d..7cc4c7e1ca 100644 --- a/opsi/locale/fa_IR/fusiondirectory.po +++ b/opsi/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po index 431d8c277c..ef4c2b097b 100644 --- a/opsi/locale/fi_FI/fusiondirectory.po +++ b/opsi/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po index 8a4ba53f3b..70595a6aad 100644 --- a/opsi/locale/fr/fusiondirectory.po +++ b/opsi/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po index 85d4fb684b..bd9a4a35c7 100644 --- a/opsi/locale/hu_HU/fusiondirectory.po +++ b/opsi/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po index 4d72bef7ed..2f14996467 100644 --- a/opsi/locale/id/fusiondirectory.po +++ b/opsi/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po index 7d60e6dacb..c974e06f29 100644 --- a/opsi/locale/it_IT/fusiondirectory.po +++ b/opsi/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po index 7a77685549..474037787d 100644 --- a/opsi/locale/lv/fusiondirectory.po +++ b/opsi/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po index 4e512199fe..cde443dfa4 100644 --- a/opsi/locale/nb/fusiondirectory.po +++ b/opsi/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po index 858415dd70..3bc2f8801d 100644 --- a/opsi/locale/nl/fusiondirectory.po +++ b/opsi/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po index 391ac72fe9..b5066e03c8 100644 --- a/opsi/locale/pl/fusiondirectory.po +++ b/opsi/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po index ef9140c513..758f7b34a7 100644 --- a/opsi/locale/pt/fusiondirectory.po +++ b/opsi/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po index ada226cffe..3dbe7b8dfd 100644 --- a/opsi/locale/pt_BR/fusiondirectory.po +++ b/opsi/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po index 8642ba5a7c..80a918eb07 100644 --- a/opsi/locale/ru/fusiondirectory.po +++ b/opsi/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po index 639dfba0cc..3e3d5bbf88 100644 --- a/opsi/locale/ru@petr1708/fusiondirectory.po +++ b/opsi/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po index b1ddbfb771..bec18c2f60 100644 --- a/opsi/locale/sv/fusiondirectory.po +++ b/opsi/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po index 76606b4b83..75ba72a9b8 100644 --- a/opsi/locale/ug/fusiondirectory.po +++ b/opsi/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po index a0f365aa75..7d9a24fb71 100644 --- a/opsi/locale/vi_VN/fusiondirectory.po +++ b/opsi/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po index ebf80a5b64..1b26ac12d5 100644 --- a/opsi/locale/zh/fusiondirectory.po +++ b/opsi/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po index 7bd4f414d6..3fb86a3eea 100644 --- a/personal/locale/ar/fusiondirectory.po +++ b/personal/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po index c5425221b0..671d45e939 100644 --- a/personal/locale/ca/fusiondirectory.po +++ b/personal/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po index 7b8dec18b5..10138531d4 100644 --- a/personal/locale/cs_CZ/fusiondirectory.po +++ b/personal/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po index 18a0a22dcf..c1daed32d6 100644 --- a/personal/locale/de/fusiondirectory.po +++ b/personal/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po index 8737d9c859..00cd39bec2 100644 --- a/personal/locale/el_GR/fusiondirectory.po +++ b/personal/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/personal/locale/en/fusiondirectory.po b/personal/locale/en/fusiondirectory.po index 73e5331ad0..a60d27302b 100644 --- a/personal/locale/en/fusiondirectory.po +++ b/personal/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po index 4a892ea156..9ceb22a8c6 100644 --- a/personal/locale/es/fusiondirectory.po +++ b/personal/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po index 60871f979a..eed9bd0483 100644 --- a/personal/locale/es_CO/fusiondirectory.po +++ b/personal/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po index 96f059d072..35517b5221 100644 --- a/personal/locale/es_VE/fusiondirectory.po +++ b/personal/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po index a0ee9b9f2c..574dc9bdcd 100644 --- a/personal/locale/fa_IR/fusiondirectory.po +++ b/personal/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po index b28f3c3fcf..fa9aeb8853 100644 --- a/personal/locale/fi_FI/fusiondirectory.po +++ b/personal/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:54+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po index 04a3281462..e6ca3ab0ff 100644 --- a/personal/locale/fr/fusiondirectory.po +++ b/personal/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:28+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po index 1627512590..932e3d09ce 100644 --- a/personal/locale/hu_HU/fusiondirectory.po +++ b/personal/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po index 029b86eb39..659b3b87c1 100644 --- a/personal/locale/id/fusiondirectory.po +++ b/personal/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po index 458317f83e..148190e9e2 100644 --- a/personal/locale/it_IT/fusiondirectory.po +++ b/personal/locale/it_IT/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-02 16:58+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po index 8d017cf353..3342b54cf9 100644 --- a/personal/locale/lv/fusiondirectory.po +++ b/personal/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po index efe28069fa..8d58ac4a84 100644 --- a/personal/locale/nb/fusiondirectory.po +++ b/personal/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po index 86ff79d95c..cd9c40cd98 100644 --- a/personal/locale/nl/fusiondirectory.po +++ b/personal/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po index 25de9a3aa5..b2c7325866 100644 --- a/personal/locale/pl/fusiondirectory.po +++ b/personal/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po index 31094b1215..d39dd76169 100644 --- a/personal/locale/pt/fusiondirectory.po +++ b/personal/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po index 360a62bbf2..edd76e4fc6 100644 --- a/personal/locale/pt_BR/fusiondirectory.po +++ b/personal/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po index 4d175a9a81..075158ffb3 100644 --- a/personal/locale/ru/fusiondirectory.po +++ b/personal/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-18 13:23+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po index 458bc148b4..1e502f5acb 100644 --- a/personal/locale/ru@petr1708/fusiondirectory.po +++ b/personal/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po index 369b8503ee..963f45073c 100644 --- a/personal/locale/sv/fusiondirectory.po +++ b/personal/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po index c7e2f0b6de..c77db20e21 100644 --- a/personal/locale/ug/fusiondirectory.po +++ b/personal/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po index 9fc105caf9..8affaa63ea 100644 --- a/personal/locale/vi_VN/fusiondirectory.po +++ b/personal/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po index f3ad98e514..17e5c2d9f1 100644 --- a/personal/locale/zh/fusiondirectory.po +++ b/personal/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po index 2ea91032f9..6be2330576 100644 --- a/postfix/locale/ar/fusiondirectory.po +++ b/postfix/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po index b7c149a49d..219ec69d3c 100644 --- a/postfix/locale/ca/fusiondirectory.po +++ b/postfix/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po index 5a60b560be..38890c5498 100644 --- a/postfix/locale/cs_CZ/fusiondirectory.po +++ b/postfix/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po index e1a71d0fd3..56fa87eefe 100644 --- a/postfix/locale/de/fusiondirectory.po +++ b/postfix/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po index 65981cb9a3..0d44eab110 100644 --- a/postfix/locale/el_GR/fusiondirectory.po +++ b/postfix/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/postfix/locale/en/fusiondirectory.po b/postfix/locale/en/fusiondirectory.po index 09199cff38..2fac97219f 100644 --- a/postfix/locale/en/fusiondirectory.po +++ b/postfix/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po index e197c14c01..081e4b95b0 100644 --- a/postfix/locale/es/fusiondirectory.po +++ b/postfix/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po index 5e0bfefd6b..aad26056ff 100644 --- a/postfix/locale/es_CO/fusiondirectory.po +++ b/postfix/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po index ad17503398..2b1dae4a72 100644 --- a/postfix/locale/es_VE/fusiondirectory.po +++ b/postfix/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po index f8a9dc5df1..be6eccb63f 100644 --- a/postfix/locale/fa_IR/fusiondirectory.po +++ b/postfix/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po index 1230959c07..397b2a0d40 100644 --- a/postfix/locale/fi_FI/fusiondirectory.po +++ b/postfix/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po index 6a25b9bd83..99812cb81b 100644 --- a/postfix/locale/fr/fusiondirectory.po +++ b/postfix/locale/fr/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po index c82deea623..f5b4b0c1e7 100644 --- a/postfix/locale/hu_HU/fusiondirectory.po +++ b/postfix/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po index 912bc6318d..c210c97e07 100644 --- a/postfix/locale/id/fusiondirectory.po +++ b/postfix/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po index 13de800142..e05c02de53 100644 --- a/postfix/locale/it_IT/fusiondirectory.po +++ b/postfix/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po index 47f2580eb0..f67fb74e1d 100644 --- a/postfix/locale/lv/fusiondirectory.po +++ b/postfix/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po index 541c8a7e80..682433f1d5 100644 --- a/postfix/locale/nb/fusiondirectory.po +++ b/postfix/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po index 914aa5214b..1c6a38537a 100644 --- a/postfix/locale/nl/fusiondirectory.po +++ b/postfix/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po index accac94c3e..294df0241e 100644 --- a/postfix/locale/pl/fusiondirectory.po +++ b/postfix/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po index a90027aefb..5054d155b4 100644 --- a/postfix/locale/pt/fusiondirectory.po +++ b/postfix/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po index 7849eabbe2..210f7f4df0 100644 --- a/postfix/locale/pt_BR/fusiondirectory.po +++ b/postfix/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po index c24cc1635a..9d534b1485 100644 --- a/postfix/locale/ru/fusiondirectory.po +++ b/postfix/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po index 11ef8977e7..ba98b08e6b 100644 --- a/postfix/locale/ru@petr1708/fusiondirectory.po +++ b/postfix/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po index 3f4a061668..12cbd6b86c 100644 --- a/postfix/locale/sv/fusiondirectory.po +++ b/postfix/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po index 40c101a4a8..5716514387 100644 --- a/postfix/locale/ug/fusiondirectory.po +++ b/postfix/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po index b40629b8b4..8af411a5e9 100644 --- a/postfix/locale/vi_VN/fusiondirectory.po +++ b/postfix/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po index c15befd28e..b7f40e57ac 100644 --- a/postfix/locale/zh/fusiondirectory.po +++ b/postfix/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po index 6ce919b1e9..929cfb57bd 100644 --- a/ppolicy/locale/ar/fusiondirectory.po +++ b/ppolicy/locale/ar/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po index 224c8c2042..694de97b02 100644 --- a/ppolicy/locale/ca/fusiondirectory.po +++ b/ppolicy/locale/ca/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po index ffa27f8a6b..213d11ea85 100644 --- a/ppolicy/locale/cs_CZ/fusiondirectory.po +++ b/ppolicy/locale/cs_CZ/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -131,54 +131,85 @@ msgid "" " operation" msgstr "Zda pÅ™i zmÄ›nÄ› hesla po uživateli vyžadovat to stávajÃcÃ" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Vypnuto" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "NevÅ¡Ãmat si chyb" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "Zamknout" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "Zapnout uzamykánÃ" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "Zda uzamknout úÄet, který se nÄ›kolikrát za sebou neúspěšnÄ› pokusil spojit s neplatným heslem. Limit urÄuje položka Nejvyššà umožnÄ›ný poÄet neúspěšných pokusů" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "Doba trvánà uzamÄenÃ" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "Doba, po kterou úÄet zůstane zamÄený pro samoÄinném zamÄenà (0 znamená napořád)" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "Nejvýše pÅ™ijatelných nezdarů" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "PoÄet po sobÄ› jdoucÃch chybných zadánà hesla než dojde k samoÄinnému zamÄenÃ" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "Rozmezà poÄtu nezdarů" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "Doba, po jejÃmž uplynutà budou chybná, po sobÄ› jdoucà zadánà hesla poÄÃtána od znovu. Reset tohoto poÄitadla je spuÅ¡tÄ›n buÄ takto Äasem, nebo správným zadánÃm hesla." -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "Vynutit zmÄ›nu" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po index fd95614e9f..09227d97b1 100644 --- a/ppolicy/locale/de/fusiondirectory.po +++ b/ppolicy/locale/de/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" "MIME-Version: 1.0\n" @@ -131,54 +131,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Deaktiviert" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "Fehler ignorieren" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po index 627a54da9d..50a0f2bb8c 100644 --- a/ppolicy/locale/el_GR/fusiondirectory.po +++ b/ppolicy/locale/el_GR/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" "MIME-Version: 1.0\n" @@ -131,54 +131,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "ΑπενεÏγοποιημÎνο" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "Λάθη που αγνοοÏνται" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "Κλείδωμα λογαÏιασμοÏ" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "ΕνεÏγοποίηση κλειδώματος" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "ΔιάÏκεια κλειδώματος" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "ΜÎγιστος αÏιθμός αποτυχιών" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "ΑÏιθμός αποτυχημÎνων εισαγωγών ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïιν από το κλείδωμα του λογαÏιασμοÏ" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "Διάστημα μÎÏ„Ïησης αποτυχημÎνων Ï€Ïοσπαθειών" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "Î ÏÎπει να γίνει αλλαγή" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/en/fusiondirectory.po b/ppolicy/locale/en/fusiondirectory.po index 74e4b24092..33e36dc6b6 100644 --- a/ppolicy/locale/en/fusiondirectory.po +++ b/ppolicy/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -130,54 +130,85 @@ msgid "" "operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to " +"perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if " "no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po index c39e644360..03a9c675f7 100644 --- a/ppolicy/locale/es/fusiondirectory.po +++ b/ppolicy/locale/es/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Desactivado" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po index 230cd9e0b0..5c8a4532e2 100644 --- a/ppolicy/locale/es_CO/fusiondirectory.po +++ b/ppolicy/locale/es_CO/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po index e023ef2038..097aa90314 100644 --- a/ppolicy/locale/es_VE/fusiondirectory.po +++ b/ppolicy/locale/es_VE/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Desactivado" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po index 4e00c008b6..502bcdb86d 100644 --- a/ppolicy/locale/fa_IR/fusiondirectory.po +++ b/ppolicy/locale/fa_IR/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po index 6ac4323d6b..28ebb63d62 100644 --- a/ppolicy/locale/fi_FI/fusiondirectory.po +++ b/ppolicy/locale/fi_FI/fusiondirectory.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-01-22 15:55+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" +"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po index 657f112dd7..2102e2e815 100644 --- a/ppolicy/locale/fr/fusiondirectory.po +++ b/ppolicy/locale/fr/fusiondirectory.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:22+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:57+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" "MIME-Version: 1.0\n" @@ -133,54 +133,85 @@ msgid "" " operation" msgstr "Si un utilisateur doit envoyer le mot de passe actuel pendant une opération de modification de mot de passe ou non" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "Vérifier la qualité" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "Décide ce qu'il faut faire si la fonction \"Check module\" n'est sont pas disponible" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Désactivée" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "Ignorer les erreurs" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "Rejeter sur erreurs" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "Module de vérification de la qualité" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "Nom du module de controle de qualité du mot de passe qui sera appelé à effectuer des contrôles de qualité n'est pertinent que si pwdCheckQuality est 1 ou 2" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "Verrouillage" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "Activer le verrouillage" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "Faut-il verrouiller un compte qui avait plus d’échecs de connexion consécutifs avec des mots de passe incorrects que ce qui est défini par «Nombre d'échec maximal\"" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "Durée de verrouillage " -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "Temps que le compte reste bloqué après un verrouillage automatique sur (0 signifie pour toujours)" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "Nombre d'échec maximal" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "Nombre d'échecs de mot de passe consécutifs autorisés avant verrouillage automatique" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "Intervalle de comptage d’échecs" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "Temps au bout duquel le nombre d'échecs de mot de passe consécutifs est réinitialisé même si aucune authentification réussie a eu lieu" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "Doit changer" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po index d8bfc7026d..69459cfec2 100644 --- a/ppolicy/locale/hu_HU/fusiondirectory.po +++ b/ppolicy/locale/hu_HU/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po index b0100abdfb..f1d0fb281d 100644 --- a/ppolicy/locale/id/fusiondirectory.po +++ b/ppolicy/locale/id/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po index ea99a4acc8..5bc912a634 100644 --- a/ppolicy/locale/it_IT/fusiondirectory.po +++ b/ppolicy/locale/it_IT/fusiondirectory.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-05-02 07:48+0000\n" -"Last-Translator: Paola Penati <penati@avaya.com>\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" +"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -133,54 +133,85 @@ msgid "" " operation" msgstr "Se un utente deve inviare la password attuale durante l'operazione di modifica della password" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Disabilitato" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "Ignorare gli errori" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "Bloccato" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "Attiva blocco" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "Sia per bloccare un account che aveva più tentativi consecutivi falliti di bind con password non valide che è definito da \"fallimenti massimi\"" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "Durata del blocco" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "Tempo in cui l'account rimane bloccato dopo un blocco automatico (0 significa per sempre)" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "Fallimenti massimi" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "Numero di password sbagliate consecutivamente prima del blocco automatico" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "Intervallo di conteggio fallito" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "Tempo dopo il quale il numero di fallimenti di password consecutive viene azzerato anche se non ha subito alcuna autenticazione" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "Permesso di cambiare" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po index 7328a601c8..ee334dcdd1 100644 --- a/ppolicy/locale/lv/fusiondirectory.po +++ b/ppolicy/locale/lv/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po index 60e3b00231..21909585fc 100644 --- a/ppolicy/locale/nb/fusiondirectory.po +++ b/ppolicy/locale/nb/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po index a7156f5485..1fb7234136 100644 --- a/ppolicy/locale/nl/fusiondirectory.po +++ b/ppolicy/locale/nl/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Niet actief" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po index f32e20fcec..01cbd4f950 100644 --- a/ppolicy/locale/pl/fusiondirectory.po +++ b/ppolicy/locale/pl/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Wyłączone" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po index 2197de1247..15ff79640d 100644 --- a/ppolicy/locale/pt/fusiondirectory.po +++ b/ppolicy/locale/pt/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po index aab0825c88..74d1fe1338 100644 --- a/ppolicy/locale/pt_BR/fusiondirectory.po +++ b/ppolicy/locale/pt_BR/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po index e9dfaf24fc..275f6d2274 100644 --- a/ppolicy/locale/ru/fusiondirectory.po +++ b/ppolicy/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Отключен" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po index f365f81b92..69d78215a4 100644 --- a/ppolicy/locale/ru@petr1708/fusiondirectory.po +++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po index 97c74e9be5..0d748962d6 100644 --- a/ppolicy/locale/sv/fusiondirectory.po +++ b/ppolicy/locale/sv/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Avaktiverad" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po index b92ccc281b..7f716d191a 100644 --- a/ppolicy/locale/ug/fusiondirectory.po +++ b/ppolicy/locale/ug/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po index 7755de501d..b2bf1e579f 100644 --- a/ppolicy/locale/vi_VN/fusiondirectory.po +++ b/ppolicy/locale/vi_VN/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "Vô hiệu hóa/ Tắt chức năng" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po index c866413f35..d5cafd2f5b 100644 --- a/ppolicy/locale/zh/fusiondirectory.po +++ b/ppolicy/locale/zh/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" -"PO-Revision-Date: 2016-04-27 20:17+0000\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" "MIME-Version: 1.0\n" @@ -130,54 +130,85 @@ msgid "" " operation" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:113 +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Check quality" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:104 +msgid "Decides what to do if the function in \"Check module\" is not available" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Disabled" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Ignore errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:107 +msgid "Reject on errors" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "Check module" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:110 +msgid "" +"Name of a user supplied password quality check module that will be called to" +" perform password quality checks and is only relevant if pwdCheckQuality is " +"either 1 or 2" +msgstr "" + +#: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "Activate lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:117 +#: admin/ppolicy/class_ppolicy.inc:120 msgid "" "Whether to lock an account that had more consecutive failed bind attempts " "with invalid passwords than is defined by \"Maximum failures\"" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "Lock out duration" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:122 +#: admin/ppolicy/class_ppolicy.inc:125 msgid "" "Time the account remains locked after an automatic lock out (0 means for " "ever)" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "Maximum failures" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:127 +#: admin/ppolicy/class_ppolicy.inc:130 msgid "" "Number of consecutive password failures allowed before automatic lock out" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "Failure count interval" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:132 +#: admin/ppolicy/class_ppolicy.inc:135 msgid "" "Time after which the count of consecutive password failures is reset even if" " no successful authentication has occurred" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "Must change" msgstr "" -#: admin/ppolicy/class_ppolicy.inc:137 +#: admin/ppolicy/class_ppolicy.inc:140 msgid "" "Whether the user must change their password after an account is reset by an " "administrator following an automatic lockout" diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po index 95ca556b43..af5084fdc5 100644 --- a/puppet/locale/ar/fusiondirectory.po +++ b/puppet/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po index 690f0eb874..76fe00c078 100644 --- a/puppet/locale/ca/fusiondirectory.po +++ b/puppet/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po index 98751c789d..fde9661d22 100644 --- a/puppet/locale/cs_CZ/fusiondirectory.po +++ b/puppet/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po index ca0c86ccd8..e6dc640f80 100644 --- a/puppet/locale/de/fusiondirectory.po +++ b/puppet/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po index 0ec60c1cda..977c0e51db 100644 --- a/puppet/locale/el_GR/fusiondirectory.po +++ b/puppet/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/puppet/locale/en/fusiondirectory.po b/puppet/locale/en/fusiondirectory.po index 6bf822620f..fb021aba83 100644 --- a/puppet/locale/en/fusiondirectory.po +++ b/puppet/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po index 55123f0fe6..3b21b7f66f 100644 --- a/puppet/locale/es/fusiondirectory.po +++ b/puppet/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po index d0181130db..72022228e9 100644 --- a/puppet/locale/es_CO/fusiondirectory.po +++ b/puppet/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po index 1804c44d0b..98b2086f51 100644 --- a/puppet/locale/es_VE/fusiondirectory.po +++ b/puppet/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po index a0ccd1b833..c6da30bea6 100644 --- a/puppet/locale/fa_IR/fusiondirectory.po +++ b/puppet/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po index 820921ed9b..b0687fee74 100644 --- a/puppet/locale/fi_FI/fusiondirectory.po +++ b/puppet/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po index dc2a0dd237..aab9e0e01b 100644 --- a/puppet/locale/fr/fusiondirectory.po +++ b/puppet/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po index 6215c91b70..9d46492e91 100644 --- a/puppet/locale/hu_HU/fusiondirectory.po +++ b/puppet/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po index 3b9ef08863..bcfb3baae5 100644 --- a/puppet/locale/id/fusiondirectory.po +++ b/puppet/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po index ab0f521fe3..393e0c5511 100644 --- a/puppet/locale/it_IT/fusiondirectory.po +++ b/puppet/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po index 22e53a66b0..4336f6ce1b 100644 --- a/puppet/locale/lv/fusiondirectory.po +++ b/puppet/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po index 397c0b9fc3..adda811d74 100644 --- a/puppet/locale/nb/fusiondirectory.po +++ b/puppet/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po index 0d8a3182a3..038f0836ec 100644 --- a/puppet/locale/nl/fusiondirectory.po +++ b/puppet/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po index 1cafeb1e9d..5a6002ac91 100644 --- a/puppet/locale/pl/fusiondirectory.po +++ b/puppet/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po index 71050c90a5..ecd33c1abe 100644 --- a/puppet/locale/pt/fusiondirectory.po +++ b/puppet/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po index d82f970190..f4111ed81e 100644 --- a/puppet/locale/pt_BR/fusiondirectory.po +++ b/puppet/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po index c8b1807ed8..94baa5aef1 100644 --- a/puppet/locale/ru/fusiondirectory.po +++ b/puppet/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po index 4d6398f184..afbcd1a7f2 100644 --- a/puppet/locale/ru@petr1708/fusiondirectory.po +++ b/puppet/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po index 79ec7952e1..16a77fba2b 100644 --- a/puppet/locale/sv/fusiondirectory.po +++ b/puppet/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po index 32895baa25..a352eb365e 100644 --- a/puppet/locale/ug/fusiondirectory.po +++ b/puppet/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po index 78ee3b115a..4a5e7475cc 100644 --- a/puppet/locale/vi_VN/fusiondirectory.po +++ b/puppet/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po index c0724f6ff5..cc0a81050d 100644 --- a/puppet/locale/zh/fusiondirectory.po +++ b/puppet/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po index c7120bfb11..53b9ecfd6a 100644 --- a/pureftpd/locale/ar/fusiondirectory.po +++ b/pureftpd/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po index c13880e929..4db9662a4a 100644 --- a/pureftpd/locale/ca/fusiondirectory.po +++ b/pureftpd/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po index 82a6598611..7754fcae7a 100644 --- a/pureftpd/locale/cs_CZ/fusiondirectory.po +++ b/pureftpd/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po index 2b19257d2d..a33ad6d9e3 100644 --- a/pureftpd/locale/de/fusiondirectory.po +++ b/pureftpd/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po index fcf229bf32..7d371873f1 100644 --- a/pureftpd/locale/el_GR/fusiondirectory.po +++ b/pureftpd/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/pureftpd/locale/en/fusiondirectory.po b/pureftpd/locale/en/fusiondirectory.po index 98384bd496..210e6997c8 100644 --- a/pureftpd/locale/en/fusiondirectory.po +++ b/pureftpd/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po index 0c45c625c8..aeaea95f87 100644 --- a/pureftpd/locale/es/fusiondirectory.po +++ b/pureftpd/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po index b99f816691..93327b0f98 100644 --- a/pureftpd/locale/es_CO/fusiondirectory.po +++ b/pureftpd/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po index 1f209c4c82..4011d24db3 100644 --- a/pureftpd/locale/es_VE/fusiondirectory.po +++ b/pureftpd/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po index 876ab4c6b1..a4e20ab79d 100644 --- a/pureftpd/locale/fa_IR/fusiondirectory.po +++ b/pureftpd/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po index 1c7925c187..46691133f7 100644 --- a/pureftpd/locale/fi_FI/fusiondirectory.po +++ b/pureftpd/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po index 3cc261316b..56561da960 100644 --- a/pureftpd/locale/fr/fusiondirectory.po +++ b/pureftpd/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po index 1d38a78916..bb1b1f1d2a 100644 --- a/pureftpd/locale/hu_HU/fusiondirectory.po +++ b/pureftpd/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po index 14897e6422..f57aca1ff9 100644 --- a/pureftpd/locale/id/fusiondirectory.po +++ b/pureftpd/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po index fa66e19f46..35963b18c6 100644 --- a/pureftpd/locale/it_IT/fusiondirectory.po +++ b/pureftpd/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po index f91dcdc342..0d7ac9d781 100644 --- a/pureftpd/locale/lv/fusiondirectory.po +++ b/pureftpd/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po index a59be3832a..1a10d2a342 100644 --- a/pureftpd/locale/nb/fusiondirectory.po +++ b/pureftpd/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po index 66cc5dc497..b469b9123e 100644 --- a/pureftpd/locale/nl/fusiondirectory.po +++ b/pureftpd/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po index 1c3a16954d..132a88a371 100644 --- a/pureftpd/locale/pl/fusiondirectory.po +++ b/pureftpd/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po index 059d0b5e3e..f1427bf7b0 100644 --- a/pureftpd/locale/pt/fusiondirectory.po +++ b/pureftpd/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po index 29c6207402..ab4d18ce94 100644 --- a/pureftpd/locale/pt_BR/fusiondirectory.po +++ b/pureftpd/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po index 4d76e72e10..dc9320a892 100644 --- a/pureftpd/locale/ru/fusiondirectory.po +++ b/pureftpd/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po index 17979b3fc8..7683e74a3b 100644 --- a/pureftpd/locale/ru@petr1708/fusiondirectory.po +++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po index b56a1ff2b0..bb82edd32d 100644 --- a/pureftpd/locale/sv/fusiondirectory.po +++ b/pureftpd/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po index f1c2cf44a1..352e3330af 100644 --- a/pureftpd/locale/ug/fusiondirectory.po +++ b/pureftpd/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po index c1d7e7d721..6917eca685 100644 --- a/pureftpd/locale/vi_VN/fusiondirectory.po +++ b/pureftpd/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po index 5ba980eb79..b4a689d235 100644 --- a/pureftpd/locale/zh/fusiondirectory.po +++ b/pureftpd/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po index 3dc2b84372..f388c7112e 100644 --- a/quota/locale/ar/fusiondirectory.po +++ b/quota/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po index 6b838c3e3b..850121ee5a 100644 --- a/quota/locale/ca/fusiondirectory.po +++ b/quota/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po index ec95fb24a6..9f6aa69f5d 100644 --- a/quota/locale/cs_CZ/fusiondirectory.po +++ b/quota/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po index f35fa6a9eb..0504115ab7 100644 --- a/quota/locale/de/fusiondirectory.po +++ b/quota/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po index 49ac0013ff..f3954be6d0 100644 --- a/quota/locale/el_GR/fusiondirectory.po +++ b/quota/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/quota/locale/en/fusiondirectory.po b/quota/locale/en/fusiondirectory.po index 974b4e7478..49e936987c 100644 --- a/quota/locale/en/fusiondirectory.po +++ b/quota/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po index b7bde255d1..e83955a607 100644 --- a/quota/locale/es/fusiondirectory.po +++ b/quota/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po index 3a0f60ae22..5c1e05bf7c 100644 --- a/quota/locale/es_CO/fusiondirectory.po +++ b/quota/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po index 26aa89d190..6593b4e161 100644 --- a/quota/locale/es_VE/fusiondirectory.po +++ b/quota/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po index c088ea2e30..d590d7ed3e 100644 --- a/quota/locale/fa_IR/fusiondirectory.po +++ b/quota/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po index f95a4c38cd..ca8f51c8fe 100644 --- a/quota/locale/fi_FI/fusiondirectory.po +++ b/quota/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po index 36c97d815e..dee4c54bfc 100644 --- a/quota/locale/fr/fusiondirectory.po +++ b/quota/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po index 03a8adf5a1..8dac7f0b08 100644 --- a/quota/locale/hu_HU/fusiondirectory.po +++ b/quota/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po index d870131e1e..a3d89e4b39 100644 --- a/quota/locale/id/fusiondirectory.po +++ b/quota/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po index c5d71ee04c..6c792b6669 100644 --- a/quota/locale/it_IT/fusiondirectory.po +++ b/quota/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po index 3a65631225..069373415c 100644 --- a/quota/locale/lv/fusiondirectory.po +++ b/quota/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po index 7051813cb7..fcb309f55f 100644 --- a/quota/locale/nb/fusiondirectory.po +++ b/quota/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po index 0d1930ecf0..af3731cd52 100644 --- a/quota/locale/nl/fusiondirectory.po +++ b/quota/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po index 16cb5fe684..692fb279b8 100644 --- a/quota/locale/pl/fusiondirectory.po +++ b/quota/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po index 2a21a62d66..5d0cad0934 100644 --- a/quota/locale/pt/fusiondirectory.po +++ b/quota/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po index 54f33be855..66f9d09cd6 100644 --- a/quota/locale/pt_BR/fusiondirectory.po +++ b/quota/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po index 6f301a431d..09433a9dc3 100644 --- a/quota/locale/ru/fusiondirectory.po +++ b/quota/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-19 11:16+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po index 654c2e5f6d..6c0950d7c4 100644 --- a/quota/locale/ru@petr1708/fusiondirectory.po +++ b/quota/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po index bdb66291af..9ddef8e0e2 100644 --- a/quota/locale/sv/fusiondirectory.po +++ b/quota/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po index 53770dd180..a3d0476291 100644 --- a/quota/locale/ug/fusiondirectory.po +++ b/quota/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po index a399d601f1..d9c6907e0b 100644 --- a/quota/locale/vi_VN/fusiondirectory.po +++ b/quota/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po index 095879527b..a17f7cda5c 100644 --- a/quota/locale/zh/fusiondirectory.po +++ b/quota/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po index 92549d17f3..702301812d 100644 --- a/repository/locale/ar/fusiondirectory.po +++ b/repository/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po index 4b1971f431..3e0ab79a4c 100644 --- a/repository/locale/ca/fusiondirectory.po +++ b/repository/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po index 2da3d81a12..f6285f7f0c 100644 --- a/repository/locale/cs_CZ/fusiondirectory.po +++ b/repository/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po index aac7c635bd..1d75d7ed25 100644 --- a/repository/locale/de/fusiondirectory.po +++ b/repository/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po index f0f6533293..1bf3044dd2 100644 --- a/repository/locale/el_GR/fusiondirectory.po +++ b/repository/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/repository/locale/en/fusiondirectory.po b/repository/locale/en/fusiondirectory.po index 6aba15b7db..f9c89ac5c3 100644 --- a/repository/locale/en/fusiondirectory.po +++ b/repository/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po index 15044f5805..3391946afd 100644 --- a/repository/locale/es/fusiondirectory.po +++ b/repository/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po index 7e70448d4b..a093d49f3e 100644 --- a/repository/locale/es_CO/fusiondirectory.po +++ b/repository/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po index 2448bf2905..18257b7ceb 100644 --- a/repository/locale/es_VE/fusiondirectory.po +++ b/repository/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po index dee8169c4b..138097a2df 100644 --- a/repository/locale/fa_IR/fusiondirectory.po +++ b/repository/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:59+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po index 6ed65c5a3c..812f15f025 100644 --- a/repository/locale/fi_FI/fusiondirectory.po +++ b/repository/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po index 93f92fac93..e748c68a20 100644 --- a/repository/locale/fr/fusiondirectory.po +++ b/repository/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po index ceec0a0210..c4c397a3a3 100644 --- a/repository/locale/hu_HU/fusiondirectory.po +++ b/repository/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po index 3581cbfe32..cf5451af07 100644 --- a/repository/locale/id/fusiondirectory.po +++ b/repository/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po index 772c5f061e..1b29cedbed 100644 --- a/repository/locale/it_IT/fusiondirectory.po +++ b/repository/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po index c3bb7152bf..0e9234055a 100644 --- a/repository/locale/lv/fusiondirectory.po +++ b/repository/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po index 556d7fb735..de11c3d037 100644 --- a/repository/locale/nb/fusiondirectory.po +++ b/repository/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po index 3a42bcace3..8418011020 100644 --- a/repository/locale/nl/fusiondirectory.po +++ b/repository/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po index 6b432f6d78..32e9c1c31c 100644 --- a/repository/locale/pl/fusiondirectory.po +++ b/repository/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po index eea898e596..331448463a 100644 --- a/repository/locale/pt/fusiondirectory.po +++ b/repository/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po index 1f65567da9..4bb67c890e 100644 --- a/repository/locale/pt_BR/fusiondirectory.po +++ b/repository/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po index 114ab4c654..f6987ba256 100644 --- a/repository/locale/ru/fusiondirectory.po +++ b/repository/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po index ab08e527be..cc42b5f0b4 100644 --- a/repository/locale/ru@petr1708/fusiondirectory.po +++ b/repository/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po index 194514d1ef..a8ce914500 100644 --- a/repository/locale/sv/fusiondirectory.po +++ b/repository/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po index 8a176a0dd5..1f1e9e4404 100644 --- a/repository/locale/ug/fusiondirectory.po +++ b/repository/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po index a72f86a772..c6eb59de50 100644 --- a/repository/locale/vi_VN/fusiondirectory.po +++ b/repository/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po index db56f5cc26..721866b1f8 100644 --- a/repository/locale/zh/fusiondirectory.po +++ b/repository/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po index fdb1d50765..cd814986fb 100644 --- a/samba/locale/ar/fusiondirectory.po +++ b/samba/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po index f1cfba1d30..7bf65cf5af 100644 --- a/samba/locale/ca/fusiondirectory.po +++ b/samba/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po index a0ed121bd2..6fcf919086 100644 --- a/samba/locale/cs_CZ/fusiondirectory.po +++ b/samba/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po index 9d3433cb00..312da58206 100644 --- a/samba/locale/de/fusiondirectory.po +++ b/samba/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po index b245f822f7..5f1c6f4338 100644 --- a/samba/locale/el_GR/fusiondirectory.po +++ b/samba/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/samba/locale/en/fusiondirectory.po b/samba/locale/en/fusiondirectory.po index b3f3d59d5a..a5bedd72d0 100644 --- a/samba/locale/en/fusiondirectory.po +++ b/samba/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po index 21879c8f8b..c6a88970d0 100644 --- a/samba/locale/es/fusiondirectory.po +++ b/samba/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po index 050ab860c8..d79af8d755 100644 --- a/samba/locale/es_CO/fusiondirectory.po +++ b/samba/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po index 56e918be19..f483e107f3 100644 --- a/samba/locale/es_VE/fusiondirectory.po +++ b/samba/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po index 60b0fdaf4a..97eb8c025d 100644 --- a/samba/locale/fa_IR/fusiondirectory.po +++ b/samba/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po index c14b9bfb6a..3810afc478 100644 --- a/samba/locale/fi_FI/fusiondirectory.po +++ b/samba/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 15:59+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po index 271dc1555e..5c534bff13 100644 --- a/samba/locale/fr/fusiondirectory.po +++ b/samba/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po index fe7177c6c2..51fd918fd6 100644 --- a/samba/locale/hu_HU/fusiondirectory.po +++ b/samba/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po index ede3599cea..aec7798cd1 100644 --- a/samba/locale/id/fusiondirectory.po +++ b/samba/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po index 2173f6d67b..e14bcc6825 100644 --- a/samba/locale/it_IT/fusiondirectory.po +++ b/samba/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po index 66c67b0243..f45d47ee5f 100644 --- a/samba/locale/lv/fusiondirectory.po +++ b/samba/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po index bdd46e237e..43ebd16f1a 100644 --- a/samba/locale/nb/fusiondirectory.po +++ b/samba/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po index e2b5605dfd..985759cd37 100644 --- a/samba/locale/nl/fusiondirectory.po +++ b/samba/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po index 14f66fba6c..997c2d629d 100644 --- a/samba/locale/pl/fusiondirectory.po +++ b/samba/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po index 8aba41fc8e..2c6101df45 100644 --- a/samba/locale/pt/fusiondirectory.po +++ b/samba/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po index fe2354be89..bc9987bc29 100644 --- a/samba/locale/pt_BR/fusiondirectory.po +++ b/samba/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po index d9920a332b..56ea32d19b 100644 --- a/samba/locale/ru/fusiondirectory.po +++ b/samba/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po index 83260b434a..63d14643e1 100644 --- a/samba/locale/ru@petr1708/fusiondirectory.po +++ b/samba/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po index d98f8e870b..82c8854079 100644 --- a/samba/locale/sv/fusiondirectory.po +++ b/samba/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po index 6b9467f730..6dd7fe4fc8 100644 --- a/samba/locale/ug/fusiondirectory.po +++ b/samba/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po index 01b28c4659..af5922bb37 100644 --- a/samba/locale/vi_VN/fusiondirectory.po +++ b/samba/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po index b14fe894d6..eae3ef3843 100644 --- a/samba/locale/zh/fusiondirectory.po +++ b/samba/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po index 44f3bcdd85..a3ea106783 100644 --- a/sogo/locale/ar/fusiondirectory.po +++ b/sogo/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po index e2091a7979..78458eceda 100644 --- a/sogo/locale/ca/fusiondirectory.po +++ b/sogo/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po index ce0bde80e0..71edd12650 100644 --- a/sogo/locale/cs_CZ/fusiondirectory.po +++ b/sogo/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po index 1af80103fb..8a24dfdd1a 100644 --- a/sogo/locale/de/fusiondirectory.po +++ b/sogo/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po index 3bacdd0048..7469ea016b 100644 --- a/sogo/locale/el_GR/fusiondirectory.po +++ b/sogo/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sogo/locale/en/fusiondirectory.po b/sogo/locale/en/fusiondirectory.po index 1ba32d3843..8d73c20a6e 100644 --- a/sogo/locale/en/fusiondirectory.po +++ b/sogo/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po index 62852168a5..d3d3dcdc01 100644 --- a/sogo/locale/es/fusiondirectory.po +++ b/sogo/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po index 848aeae55a..e5938e4f17 100644 --- a/sogo/locale/es_CO/fusiondirectory.po +++ b/sogo/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po index 5cd1309ef1..36376eb164 100644 --- a/sogo/locale/es_VE/fusiondirectory.po +++ b/sogo/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po index 2c97c2abc7..892a7ccac9 100644 --- a/sogo/locale/fa_IR/fusiondirectory.po +++ b/sogo/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po index 33a0610dbc..304c71f8ee 100644 --- a/sogo/locale/fi_FI/fusiondirectory.po +++ b/sogo/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po index f111991e55..af6b511cc5 100644 --- a/sogo/locale/fr/fusiondirectory.po +++ b/sogo/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po index 9280472f06..c1acca28e4 100644 --- a/sogo/locale/hu_HU/fusiondirectory.po +++ b/sogo/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po index 23208cce36..4670ef4834 100644 --- a/sogo/locale/id/fusiondirectory.po +++ b/sogo/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po index 95b79add91..414a382340 100644 --- a/sogo/locale/it_IT/fusiondirectory.po +++ b/sogo/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po index a6517733a2..a05f0b8716 100644 --- a/sogo/locale/lv/fusiondirectory.po +++ b/sogo/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po index f6546bb86a..6e8a621852 100644 --- a/sogo/locale/nb/fusiondirectory.po +++ b/sogo/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po index 97d83c7456..c1b021b538 100644 --- a/sogo/locale/nl/fusiondirectory.po +++ b/sogo/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po index 3a8fab32cb..4aa80ee687 100644 --- a/sogo/locale/pl/fusiondirectory.po +++ b/sogo/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po index 29fa3f2a04..b63188a5d0 100644 --- a/sogo/locale/pt/fusiondirectory.po +++ b/sogo/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po index 914f4e4615..6f7a2eeb7e 100644 --- a/sogo/locale/pt_BR/fusiondirectory.po +++ b/sogo/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po index f6a244c8ab..43b52d15a3 100644 --- a/sogo/locale/ru/fusiondirectory.po +++ b/sogo/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po index 55035e875e..bbcbb9817b 100644 --- a/sogo/locale/ru@petr1708/fusiondirectory.po +++ b/sogo/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po index a0f990e981..7891e2fa3f 100644 --- a/sogo/locale/sv/fusiondirectory.po +++ b/sogo/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po index 04f66fe7f0..1173908872 100644 --- a/sogo/locale/ug/fusiondirectory.po +++ b/sogo/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po index 23f8446517..dafa250eab 100644 --- a/sogo/locale/vi_VN/fusiondirectory.po +++ b/sogo/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po index 679a0ecf44..44cf966658 100644 --- a/sogo/locale/zh/fusiondirectory.po +++ b/sogo/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po index a5e33a468b..e01f849a60 100644 --- a/spamassassin/locale/ar/fusiondirectory.po +++ b/spamassassin/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po index 5c30f6533f..6ed19a9e23 100644 --- a/spamassassin/locale/ca/fusiondirectory.po +++ b/spamassassin/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po index f9bdb2ab42..aec5e3fbf2 100644 --- a/spamassassin/locale/cs_CZ/fusiondirectory.po +++ b/spamassassin/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po index 88c8b7a22b..bf5a08c427 100644 --- a/spamassassin/locale/de/fusiondirectory.po +++ b/spamassassin/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po index 47efc11295..d861836295 100644 --- a/spamassassin/locale/el_GR/fusiondirectory.po +++ b/spamassassin/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/spamassassin/locale/en/fusiondirectory.po b/spamassassin/locale/en/fusiondirectory.po index 50c8e1a2bf..d0339d0625 100644 --- a/spamassassin/locale/en/fusiondirectory.po +++ b/spamassassin/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po index 6f400eed3e..0082d7f6a9 100644 --- a/spamassassin/locale/es/fusiondirectory.po +++ b/spamassassin/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po index 4137e86bbe..1c1855076c 100644 --- a/spamassassin/locale/es_CO/fusiondirectory.po +++ b/spamassassin/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po index 79f5dab348..906a875f7e 100644 --- a/spamassassin/locale/es_VE/fusiondirectory.po +++ b/spamassassin/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po index 516788874a..739bd97510 100644 --- a/spamassassin/locale/fa_IR/fusiondirectory.po +++ b/spamassassin/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po index 71a74cea82..0b16af8e5c 100644 --- a/spamassassin/locale/fi_FI/fusiondirectory.po +++ b/spamassassin/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-13 13:29+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po index 79fecd3333..561c75292b 100644 --- a/spamassassin/locale/fr/fusiondirectory.po +++ b/spamassassin/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:26+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po index 064bacf9f5..3fd81e21a5 100644 --- a/spamassassin/locale/hu_HU/fusiondirectory.po +++ b/spamassassin/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po index 9fda1335c6..af249f211d 100644 --- a/spamassassin/locale/id/fusiondirectory.po +++ b/spamassassin/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po index 5684615bf2..17b7c0012b 100644 --- a/spamassassin/locale/it_IT/fusiondirectory.po +++ b/spamassassin/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-05-02 07:45+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po index 1452c6310f..97b90a4295 100644 --- a/spamassassin/locale/lv/fusiondirectory.po +++ b/spamassassin/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po index ee42332742..1f1448092a 100644 --- a/spamassassin/locale/nb/fusiondirectory.po +++ b/spamassassin/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po index 03bfbc0fba..3ab7afc06f 100644 --- a/spamassassin/locale/nl/fusiondirectory.po +++ b/spamassassin/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po index 1b9355885e..03b7f74c80 100644 --- a/spamassassin/locale/pl/fusiondirectory.po +++ b/spamassassin/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po index 35c07f484c..8bbadaf568 100644 --- a/spamassassin/locale/pt/fusiondirectory.po +++ b/spamassassin/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po index 5375029a42..20d4fb9598 100644 --- a/spamassassin/locale/pt_BR/fusiondirectory.po +++ b/spamassassin/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po index 786e922a5c..123d527432 100644 --- a/spamassassin/locale/ru/fusiondirectory.po +++ b/spamassassin/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po index f2d255e67f..15e4fca83f 100644 --- a/spamassassin/locale/ru@petr1708/fusiondirectory.po +++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po index ba928561e5..8e4c71e8b3 100644 --- a/spamassassin/locale/sv/fusiondirectory.po +++ b/spamassassin/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po index 23d4fa1676..7a79b6e5bf 100644 --- a/spamassassin/locale/ug/fusiondirectory.po +++ b/spamassassin/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po index 20009a5860..493a864c0d 100644 --- a/spamassassin/locale/vi_VN/fusiondirectory.po +++ b/spamassassin/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po index c24e28fbb0..ada5519285 100644 --- a/spamassassin/locale/zh/fusiondirectory.po +++ b/spamassassin/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po index cdbff8cf32..7d2d37d3d4 100644 --- a/squid/locale/ar/fusiondirectory.po +++ b/squid/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po index d5d706f162..058b2f1f58 100644 --- a/squid/locale/ca/fusiondirectory.po +++ b/squid/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po index 3db8950a8c..a9e5924abc 100644 --- a/squid/locale/cs_CZ/fusiondirectory.po +++ b/squid/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po index 62b7190d98..ea5a5bc50b 100644 --- a/squid/locale/de/fusiondirectory.po +++ b/squid/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po index 15aa17f918..934b323428 100644 --- a/squid/locale/el_GR/fusiondirectory.po +++ b/squid/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/squid/locale/en/fusiondirectory.po b/squid/locale/en/fusiondirectory.po index 14076d3f27..77103d3708 100644 --- a/squid/locale/en/fusiondirectory.po +++ b/squid/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po index 6d50f31601..29d78740a1 100644 --- a/squid/locale/es/fusiondirectory.po +++ b/squid/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po index 81e82196c6..d9adb05453 100644 --- a/squid/locale/es_CO/fusiondirectory.po +++ b/squid/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po index 63b905839b..b8cfd925a9 100644 --- a/squid/locale/es_VE/fusiondirectory.po +++ b/squid/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po index 25cadf7e7f..4676004876 100644 --- a/squid/locale/fa_IR/fusiondirectory.po +++ b/squid/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po index 2bff3f7657..67aaed7300 100644 --- a/squid/locale/fi_FI/fusiondirectory.po +++ b/squid/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po index 42097f825e..08885b5b78 100644 --- a/squid/locale/fr/fusiondirectory.po +++ b/squid/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po index 55a99d7eba..60dbe9e057 100644 --- a/squid/locale/hu_HU/fusiondirectory.po +++ b/squid/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po index 3b257400f6..d496f6dd2a 100644 --- a/squid/locale/id/fusiondirectory.po +++ b/squid/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po index 55b80bcff6..0112a67e61 100644 --- a/squid/locale/it_IT/fusiondirectory.po +++ b/squid/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po index f85984e110..6544891f59 100644 --- a/squid/locale/lv/fusiondirectory.po +++ b/squid/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po index e1190010bb..82a4e67918 100644 --- a/squid/locale/nb/fusiondirectory.po +++ b/squid/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po index cba7c5485c..1b38a50b7f 100644 --- a/squid/locale/nl/fusiondirectory.po +++ b/squid/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po index bfadf3b6e1..a6e3407aea 100644 --- a/squid/locale/pl/fusiondirectory.po +++ b/squid/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po index 59d3780360..8e4f6e750c 100644 --- a/squid/locale/pt/fusiondirectory.po +++ b/squid/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po index e01cfc67ac..a918641ad3 100644 --- a/squid/locale/pt_BR/fusiondirectory.po +++ b/squid/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po index 6747560261..af4f6c5f9c 100644 --- a/squid/locale/ru/fusiondirectory.po +++ b/squid/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po index 2edb90d434..10772fc6e1 100644 --- a/squid/locale/ru@petr1708/fusiondirectory.po +++ b/squid/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po index d043a48617..e682d6f559 100644 --- a/squid/locale/sv/fusiondirectory.po +++ b/squid/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po index 8d4c195495..629dce53e9 100644 --- a/squid/locale/ug/fusiondirectory.po +++ b/squid/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po index a692fc4997..340b01f609 100644 --- a/squid/locale/vi_VN/fusiondirectory.po +++ b/squid/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po index 2df81348c1..ff3509e91e 100644 --- a/squid/locale/zh/fusiondirectory.po +++ b/squid/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po index c06e52d67b..74980b5dd8 100644 --- a/ssh/locale/ar/fusiondirectory.po +++ b/ssh/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po index eacb0caab2..dfea12cad9 100644 --- a/ssh/locale/ca/fusiondirectory.po +++ b/ssh/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po index 67b1ebc37d..54938a9ee3 100644 --- a/ssh/locale/cs_CZ/fusiondirectory.po +++ b/ssh/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po index f865faa51a..57341e9232 100644 --- a/ssh/locale/de/fusiondirectory.po +++ b/ssh/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po index 9afb532ba0..d9287203e3 100644 --- a/ssh/locale/el_GR/fusiondirectory.po +++ b/ssh/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ssh/locale/en/fusiondirectory.po b/ssh/locale/en/fusiondirectory.po index 6d1846984a..83a4d67cbc 100644 --- a/ssh/locale/en/fusiondirectory.po +++ b/ssh/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po index 098bab5c17..b942633219 100644 --- a/ssh/locale/es/fusiondirectory.po +++ b/ssh/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po index 72e4d1a25c..ebcf25dc51 100644 --- a/ssh/locale/es_CO/fusiondirectory.po +++ b/ssh/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po index debab0c339..2d0eb76e6f 100644 --- a/ssh/locale/es_VE/fusiondirectory.po +++ b/ssh/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po index e45f813807..0096ac01f6 100644 --- a/ssh/locale/fa_IR/fusiondirectory.po +++ b/ssh/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po index f6d9baf959..63d4202588 100644 --- a/ssh/locale/fi_FI/fusiondirectory.po +++ b/ssh/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po index 74b515cddc..63b4b9f81d 100644 --- a/ssh/locale/fr/fusiondirectory.po +++ b/ssh/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po index af77da554a..8cbceae405 100644 --- a/ssh/locale/hu_HU/fusiondirectory.po +++ b/ssh/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po index 3355313b3b..e4dbef884b 100644 --- a/ssh/locale/id/fusiondirectory.po +++ b/ssh/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po index 8f2ef5ed0c..553a887169 100644 --- a/ssh/locale/it_IT/fusiondirectory.po +++ b/ssh/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po index e4359d6309..2b75b0308c 100644 --- a/ssh/locale/lv/fusiondirectory.po +++ b/ssh/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po index b8cf243f7f..c6ad8569fa 100644 --- a/ssh/locale/nb/fusiondirectory.po +++ b/ssh/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po index 4f6c22daa8..784df39ad5 100644 --- a/ssh/locale/nl/fusiondirectory.po +++ b/ssh/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po index d4b81473e9..d1740aedd6 100644 --- a/ssh/locale/pl/fusiondirectory.po +++ b/ssh/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po index d419505d05..6ac56e4673 100644 --- a/ssh/locale/pt/fusiondirectory.po +++ b/ssh/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po index 80fee154f9..b7f55bd4cc 100644 --- a/ssh/locale/pt_BR/fusiondirectory.po +++ b/ssh/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po index 5475995a43..75d0eed1cc 100644 --- a/ssh/locale/ru/fusiondirectory.po +++ b/ssh/locale/ru/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-11 15:54+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po index 87487edcb4..bb16682ef7 100644 --- a/ssh/locale/ru@petr1708/fusiondirectory.po +++ b/ssh/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po index 266fbc0ce4..9a5d764f60 100644 --- a/ssh/locale/sv/fusiondirectory.po +++ b/ssh/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po index 49e896c896..efd48a4456 100644 --- a/ssh/locale/ug/fusiondirectory.po +++ b/ssh/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po index 85c7b92cff..442c1387f2 100644 --- a/ssh/locale/vi_VN/fusiondirectory.po +++ b/ssh/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po index f0a14a6b0f..261902ed1d 100644 --- a/ssh/locale/zh/fusiondirectory.po +++ b/ssh/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po index 79767ecdf8..fbcec1fdc2 100644 --- a/subcontracting/locale/ar/fusiondirectory.po +++ b/subcontracting/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po index ecf0db88ea..0a7d36316d 100644 --- a/subcontracting/locale/ca/fusiondirectory.po +++ b/subcontracting/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po index 97b0afa38e..9496b18a01 100644 --- a/subcontracting/locale/cs_CZ/fusiondirectory.po +++ b/subcontracting/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po index 2c808c13ad..97ccab2381 100644 --- a/subcontracting/locale/de/fusiondirectory.po +++ b/subcontracting/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po index c9230f14b4..2710598637 100644 --- a/subcontracting/locale/el_GR/fusiondirectory.po +++ b/subcontracting/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/subcontracting/locale/en/fusiondirectory.po b/subcontracting/locale/en/fusiondirectory.po index ee3b51b795..f198dafe38 100644 --- a/subcontracting/locale/en/fusiondirectory.po +++ b/subcontracting/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po index 154779ef3b..0c33eed442 100644 --- a/subcontracting/locale/es/fusiondirectory.po +++ b/subcontracting/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po index c8e2ecd410..3020bd3f40 100644 --- a/subcontracting/locale/es_CO/fusiondirectory.po +++ b/subcontracting/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po index 06516b967f..3143e9a13a 100644 --- a/subcontracting/locale/es_VE/fusiondirectory.po +++ b/subcontracting/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po index 59fe5d19ae..b14df553af 100644 --- a/subcontracting/locale/fa_IR/fusiondirectory.po +++ b/subcontracting/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po index 563c6d5692..30477e08ac 100644 --- a/subcontracting/locale/fi_FI/fusiondirectory.po +++ b/subcontracting/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-02-25 10:29+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po index b6e5059815..d0f276c849 100644 --- a/subcontracting/locale/fr/fusiondirectory.po +++ b/subcontracting/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:28+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po index 36add77dc9..fa80941a20 100644 --- a/subcontracting/locale/hu_HU/fusiondirectory.po +++ b/subcontracting/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po index 04840a150d..2ec5995a84 100644 --- a/subcontracting/locale/id/fusiondirectory.po +++ b/subcontracting/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po index 0892bb91ed..2942fd9d91 100644 --- a/subcontracting/locale/it_IT/fusiondirectory.po +++ b/subcontracting/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:53+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po index aca7885c5c..ce9636d9d5 100644 --- a/subcontracting/locale/lv/fusiondirectory.po +++ b/subcontracting/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po index 2830897a9d..4a3e96fe13 100644 --- a/subcontracting/locale/nb/fusiondirectory.po +++ b/subcontracting/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po index 73026a596e..e7f31defb3 100644 --- a/subcontracting/locale/nl/fusiondirectory.po +++ b/subcontracting/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po index eacb21939b..dce1254486 100644 --- a/subcontracting/locale/pl/fusiondirectory.po +++ b/subcontracting/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po index ffa041b786..97db6984d1 100644 --- a/subcontracting/locale/pt/fusiondirectory.po +++ b/subcontracting/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po index 753ff6576b..7f2deb4ada 100644 --- a/subcontracting/locale/pt_BR/fusiondirectory.po +++ b/subcontracting/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po index 98c8c420a2..16bf7e3a6c 100644 --- a/subcontracting/locale/ru/fusiondirectory.po +++ b/subcontracting/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po index 7616047464..e35ac68d4e 100644 --- a/subcontracting/locale/ru@petr1708/fusiondirectory.po +++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po index 9946f84eed..5f3192cd8e 100644 --- a/subcontracting/locale/sv/fusiondirectory.po +++ b/subcontracting/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po index 13e13e0d41..fb78c63dea 100644 --- a/subcontracting/locale/ug/fusiondirectory.po +++ b/subcontracting/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po index e35cab2046..86ef982dda 100644 --- a/subcontracting/locale/vi_VN/fusiondirectory.po +++ b/subcontracting/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po index f02ba8de90..e38edab693 100644 --- a/subcontracting/locale/zh/fusiondirectory.po +++ b/subcontracting/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po index 2d6df879af..5827e729fc 100644 --- a/sudo/locale/ar/fusiondirectory.po +++ b/sudo/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po index eb425999d1..c1e4c0f200 100644 --- a/sudo/locale/ca/fusiondirectory.po +++ b/sudo/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po index 1142693c4d..e67286ffea 100644 --- a/sudo/locale/cs_CZ/fusiondirectory.po +++ b/sudo/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po index ece99ad377..01c4b161d6 100644 --- a/sudo/locale/de/fusiondirectory.po +++ b/sudo/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po index 10508cd263..83224bffb9 100644 --- a/sudo/locale/el_GR/fusiondirectory.po +++ b/sudo/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sudo/locale/en/fusiondirectory.po b/sudo/locale/en/fusiondirectory.po index cd59d6c40c..a06d406517 100644 --- a/sudo/locale/en/fusiondirectory.po +++ b/sudo/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po index 30dc91db6a..c470864ccf 100644 --- a/sudo/locale/es/fusiondirectory.po +++ b/sudo/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po index 6ceee94dd6..affd5ae9ef 100644 --- a/sudo/locale/es_CO/fusiondirectory.po +++ b/sudo/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po index 3548e4555f..3222db39f1 100644 --- a/sudo/locale/es_VE/fusiondirectory.po +++ b/sudo/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po index 7e8c3895c3..70e0c2da8c 100644 --- a/sudo/locale/fa_IR/fusiondirectory.po +++ b/sudo/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po index c8f5d1909a..0085dacede 100644 --- a/sudo/locale/fi_FI/fusiondirectory.po +++ b/sudo/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po index 4ff8ba9ba4..aafde0c2e7 100644 --- a/sudo/locale/fr/fusiondirectory.po +++ b/sudo/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po index bd45e695d4..9469e415e9 100644 --- a/sudo/locale/hu_HU/fusiondirectory.po +++ b/sudo/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po index 053b06c346..3938a2f52d 100644 --- a/sudo/locale/id/fusiondirectory.po +++ b/sudo/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po index 95c080935b..9469d53175 100644 --- a/sudo/locale/it_IT/fusiondirectory.po +++ b/sudo/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po index 72480156ad..89efb41b90 100644 --- a/sudo/locale/lv/fusiondirectory.po +++ b/sudo/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po index f50d1fa08e..3b1fab193f 100644 --- a/sudo/locale/nb/fusiondirectory.po +++ b/sudo/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po index 79493b8170..41e930249a 100644 --- a/sudo/locale/nl/fusiondirectory.po +++ b/sudo/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po index a733b21afa..fb18770692 100644 --- a/sudo/locale/pl/fusiondirectory.po +++ b/sudo/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po index cf4c091cc5..3c64410e0c 100644 --- a/sudo/locale/pt/fusiondirectory.po +++ b/sudo/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po index 84b1df4ced..0e453e66c6 100644 --- a/sudo/locale/pt_BR/fusiondirectory.po +++ b/sudo/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po index 0f26c31b48..1b490fd9f3 100644 --- a/sudo/locale/ru/fusiondirectory.po +++ b/sudo/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po index 8e0230afa6..b9200d4a32 100644 --- a/sudo/locale/ru@petr1708/fusiondirectory.po +++ b/sudo/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po index 0be3359e79..b663cf98b1 100644 --- a/sudo/locale/sv/fusiondirectory.po +++ b/sudo/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po index 3cc0653c63..4aad1650d9 100644 --- a/sudo/locale/ug/fusiondirectory.po +++ b/sudo/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po index 6c6822db61..00bf88c53a 100644 --- a/sudo/locale/vi_VN/fusiondirectory.po +++ b/sudo/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po index a1fff61c91..b49c8e4677 100644 --- a/sudo/locale/zh/fusiondirectory.po +++ b/sudo/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po index 8c9c08a775..9567b4aad1 100644 --- a/supann/locale/ar/fusiondirectory.po +++ b/supann/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po index db2d0f5471..7ff41f1973 100644 --- a/supann/locale/ca/fusiondirectory.po +++ b/supann/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po index 87500157fa..6cc55253d5 100644 --- a/supann/locale/cs_CZ/fusiondirectory.po +++ b/supann/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po index 48a0ff8ae9..eac2089daa 100644 --- a/supann/locale/de/fusiondirectory.po +++ b/supann/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po index 0e58d5f18b..9052dbab16 100644 --- a/supann/locale/el_GR/fusiondirectory.po +++ b/supann/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/supann/locale/en/fusiondirectory.po b/supann/locale/en/fusiondirectory.po index e030d65b85..bacf96c22a 100644 --- a/supann/locale/en/fusiondirectory.po +++ b/supann/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po index 7788632f1e..2154a685bf 100644 --- a/supann/locale/es/fusiondirectory.po +++ b/supann/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po index 8fe78aa181..14ba1f5310 100644 --- a/supann/locale/es_CO/fusiondirectory.po +++ b/supann/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po index 86947ce1f8..1a1bd1926e 100644 --- a/supann/locale/es_VE/fusiondirectory.po +++ b/supann/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po index 4bb913c24b..51d5698635 100644 --- a/supann/locale/fa_IR/fusiondirectory.po +++ b/supann/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po index 59a8000ffe..5ae98a4918 100644 --- a/supann/locale/fi_FI/fusiondirectory.po +++ b/supann/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po index 8943d20c78..b5e595f4c4 100644 --- a/supann/locale/fr/fusiondirectory.po +++ b/supann/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po index 385c8bcb77..0bcac74df1 100644 --- a/supann/locale/hu_HU/fusiondirectory.po +++ b/supann/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po index 653f5ddec8..e86c24e8b3 100644 --- a/supann/locale/id/fusiondirectory.po +++ b/supann/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po index de5b3cf432..df207dd811 100644 --- a/supann/locale/it_IT/fusiondirectory.po +++ b/supann/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po index 0c34ee2943..447f2d7575 100644 --- a/supann/locale/lv/fusiondirectory.po +++ b/supann/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po index ce5d730b55..31971c17cd 100644 --- a/supann/locale/nb/fusiondirectory.po +++ b/supann/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po index e15e4bbade..a1ab60ae4d 100644 --- a/supann/locale/nl/fusiondirectory.po +++ b/supann/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po index b8c167e6b8..633ab26aff 100644 --- a/supann/locale/pl/fusiondirectory.po +++ b/supann/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po index af898f771e..056bcda895 100644 --- a/supann/locale/pt/fusiondirectory.po +++ b/supann/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po index 67120411ce..34837ff6e1 100644 --- a/supann/locale/pt_BR/fusiondirectory.po +++ b/supann/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po index ba99d237a1..96b49b579b 100644 --- a/supann/locale/ru/fusiondirectory.po +++ b/supann/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po index cdbbe472c9..fcbbbb71c0 100644 --- a/supann/locale/ru@petr1708/fusiondirectory.po +++ b/supann/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po index 553137e39d..261d06e783 100644 --- a/supann/locale/sv/fusiondirectory.po +++ b/supann/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po index 3645b3db42..69787a6f6f 100644 --- a/supann/locale/ug/fusiondirectory.po +++ b/supann/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po index 99b9fe3f67..623077a1d2 100644 --- a/supann/locale/vi_VN/fusiondirectory.po +++ b/supann/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po index 643385401c..210bd1c34b 100644 --- a/supann/locale/zh/fusiondirectory.po +++ b/supann/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po index 3a2dae6e90..fce89f6ef1 100644 --- a/sympa/locale/ar/fusiondirectory.po +++ b/sympa/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po index 60ed4b3e5f..0bd01331df 100644 --- a/sympa/locale/ca/fusiondirectory.po +++ b/sympa/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po index 87516faf12..26d4898e9a 100644 --- a/sympa/locale/cs_CZ/fusiondirectory.po +++ b/sympa/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po index 703df7578b..5d39bfabfa 100644 --- a/sympa/locale/de/fusiondirectory.po +++ b/sympa/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po index 69ec1ae966..c2e97522bb 100644 --- a/sympa/locale/el_GR/fusiondirectory.po +++ b/sympa/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sympa/locale/en/fusiondirectory.po b/sympa/locale/en/fusiondirectory.po index 4ed0646f79..0682202178 100644 --- a/sympa/locale/en/fusiondirectory.po +++ b/sympa/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po index f7db4ecb85..de3228e71f 100644 --- a/sympa/locale/es/fusiondirectory.po +++ b/sympa/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po index 2465fb2e26..a35b5b3e5f 100644 --- a/sympa/locale/es_CO/fusiondirectory.po +++ b/sympa/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po index 4f2864b73c..fe5a6e6a0a 100644 --- a/sympa/locale/es_VE/fusiondirectory.po +++ b/sympa/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po index dffa792154..f008b41d24 100644 --- a/sympa/locale/fa_IR/fusiondirectory.po +++ b/sympa/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po index d283162fbb..08951030d8 100644 --- a/sympa/locale/fi_FI/fusiondirectory.po +++ b/sympa/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po index 674db51749..18d6be8987 100644 --- a/sympa/locale/fr/fusiondirectory.po +++ b/sympa/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po index 0045a635d1..01269e8f10 100644 --- a/sympa/locale/hu_HU/fusiondirectory.po +++ b/sympa/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po index a60101f4c6..b8d2b004fd 100644 --- a/sympa/locale/id/fusiondirectory.po +++ b/sympa/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po index 65f3e3a812..27285fc526 100644 --- a/sympa/locale/it_IT/fusiondirectory.po +++ b/sympa/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po index b4cfddd180..5ecfad4cfc 100644 --- a/sympa/locale/lv/fusiondirectory.po +++ b/sympa/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po index 2f34008e29..7c6ee95397 100644 --- a/sympa/locale/nb/fusiondirectory.po +++ b/sympa/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po index d6442175b4..cefd3c46cc 100644 --- a/sympa/locale/nl/fusiondirectory.po +++ b/sympa/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po index dc82f10ec6..626f4f70b2 100644 --- a/sympa/locale/pl/fusiondirectory.po +++ b/sympa/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po index e1afba8863..cb7adc8248 100644 --- a/sympa/locale/pt/fusiondirectory.po +++ b/sympa/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po index 5821763232..4b984a7e2a 100644 --- a/sympa/locale/pt_BR/fusiondirectory.po +++ b/sympa/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po index e17641b0ef..0434d33fda 100644 --- a/sympa/locale/ru/fusiondirectory.po +++ b/sympa/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po index 35a6717536..8300afc2be 100644 --- a/sympa/locale/ru@petr1708/fusiondirectory.po +++ b/sympa/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po index 3e75ddf0c4..c4cc894694 100644 --- a/sympa/locale/sv/fusiondirectory.po +++ b/sympa/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po index 1f6b03ffea..7c53865ac2 100644 --- a/sympa/locale/ug/fusiondirectory.po +++ b/sympa/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po index 0c7fc0e281..7e3ac5aa23 100644 --- a/sympa/locale/vi_VN/fusiondirectory.po +++ b/sympa/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po index 2944a717cb..70c8e9bfd2 100644 --- a/sympa/locale/zh/fusiondirectory.po +++ b/sympa/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po index ef619f46f1..6c89b7ae90 100644 --- a/systems/locale/ar/fusiondirectory.po +++ b/systems/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po index 60e35d34da..b537f8c398 100644 --- a/systems/locale/ca/fusiondirectory.po +++ b/systems/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po index 33e64c94de..3ea4890b54 100644 --- a/systems/locale/cs_CZ/fusiondirectory.po +++ b/systems/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po index e81434ffc4..219034e7ba 100644 --- a/systems/locale/de/fusiondirectory.po +++ b/systems/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po index 96602c07e4..2d6c4b8d10 100644 --- a/systems/locale/el_GR/fusiondirectory.po +++ b/systems/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/systems/locale/en/fusiondirectory.po b/systems/locale/en/fusiondirectory.po index 97f5224eb9..6b78f89bea 100644 --- a/systems/locale/en/fusiondirectory.po +++ b/systems/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po index 13af13a38e..d3de1bf33f 100644 --- a/systems/locale/es/fusiondirectory.po +++ b/systems/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po index 6448ba501c..66e4839f9a 100644 --- a/systems/locale/es_CO/fusiondirectory.po +++ b/systems/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po index 81a42f4f79..0d9b111c88 100644 --- a/systems/locale/es_VE/fusiondirectory.po +++ b/systems/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po index be6b55fcc0..cf62ed4d78 100644 --- a/systems/locale/fa_IR/fusiondirectory.po +++ b/systems/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po index 74e231d88d..2ec613912f 100644 --- a/systems/locale/fi_FI/fusiondirectory.po +++ b/systems/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-07-08 12:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po index 7e2bfd8ec0..cc06033e45 100644 --- a/systems/locale/fr/fusiondirectory.po +++ b/systems/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:10+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po index 963cef1bc8..5197a26d20 100644 --- a/systems/locale/hu_HU/fusiondirectory.po +++ b/systems/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po index b746e82741..7563688050 100644 --- a/systems/locale/id/fusiondirectory.po +++ b/systems/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po index 8d5a528d2f..805b3770fd 100644 --- a/systems/locale/it_IT/fusiondirectory.po +++ b/systems/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 17:23+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po index 18633dcfa6..159a5573e8 100644 --- a/systems/locale/lv/fusiondirectory.po +++ b/systems/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po index 8c7f5bd334..d9b8173094 100644 --- a/systems/locale/nb/fusiondirectory.po +++ b/systems/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po index 68aa765214..fca26f6443 100644 --- a/systems/locale/nl/fusiondirectory.po +++ b/systems/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po index 9535c3b331..bd4aa28a84 100644 --- a/systems/locale/pl/fusiondirectory.po +++ b/systems/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po index 89d5246d01..addb98b9c2 100644 --- a/systems/locale/pt/fusiondirectory.po +++ b/systems/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po index 168032d7cb..ffe5a7ce32 100644 --- a/systems/locale/pt_BR/fusiondirectory.po +++ b/systems/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po index 9907921a0b..8754f45f4b 100644 --- a/systems/locale/ru/fusiondirectory.po +++ b/systems/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po index 29b7a3c0df..8898571033 100644 --- a/systems/locale/ru@petr1708/fusiondirectory.po +++ b/systems/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po index 36ab6f2b5f..3c4aaa0094 100644 --- a/systems/locale/sv/fusiondirectory.po +++ b/systems/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po index 586b7b189c..5bf3df1b04 100644 --- a/systems/locale/ug/fusiondirectory.po +++ b/systems/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po index 92f21210f3..fe32c741aa 100644 --- a/systems/locale/vi_VN/fusiondirectory.po +++ b/systems/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po index 0fa526e965..db21bf40b2 100644 --- a/systems/locale/zh/fusiondirectory.po +++ b/systems/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po index 15beea28f1..5d15609e72 100644 --- a/user-reminder/locale/ar/fusiondirectory.po +++ b/user-reminder/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po index ac6a877342..21157accf8 100644 --- a/user-reminder/locale/ca/fusiondirectory.po +++ b/user-reminder/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po index 74aa995845..974a4ddb70 100644 --- a/user-reminder/locale/cs_CZ/fusiondirectory.po +++ b/user-reminder/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po index afe28bb965..88cbb4b511 100644 --- a/user-reminder/locale/de/fusiondirectory.po +++ b/user-reminder/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po index 28cf289f76..eb3dcf69a9 100644 --- a/user-reminder/locale/el_GR/fusiondirectory.po +++ b/user-reminder/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/user-reminder/locale/en/fusiondirectory.po b/user-reminder/locale/en/fusiondirectory.po index e9b5b60d35..ee94b799e0 100644 --- a/user-reminder/locale/en/fusiondirectory.po +++ b/user-reminder/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po index 99b480999f..71ce808073 100644 --- a/user-reminder/locale/es/fusiondirectory.po +++ b/user-reminder/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po index 3f6d8af7f3..9e42b4c375 100644 --- a/user-reminder/locale/es_CO/fusiondirectory.po +++ b/user-reminder/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po index fba2a408a2..1f2ab43d09 100644 --- a/user-reminder/locale/es_VE/fusiondirectory.po +++ b/user-reminder/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po index f0b127236c..2a68f4bc08 100644 --- a/user-reminder/locale/fa_IR/fusiondirectory.po +++ b/user-reminder/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po index 00886c5de7..0b5ee67630 100644 --- a/user-reminder/locale/fi_FI/fusiondirectory.po +++ b/user-reminder/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po index eb4221e6ba..c526b0a5d8 100644 --- a/user-reminder/locale/fr/fusiondirectory.po +++ b/user-reminder/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po index 9964ab753d..5297e21a61 100644 --- a/user-reminder/locale/hu_HU/fusiondirectory.po +++ b/user-reminder/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po index 88d12b89eb..4d753ea8ef 100644 --- a/user-reminder/locale/id/fusiondirectory.po +++ b/user-reminder/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po index f0852061b6..c464c85011 100644 --- a/user-reminder/locale/it_IT/fusiondirectory.po +++ b/user-reminder/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po index 08e0147fd4..b17abf1daa 100644 --- a/user-reminder/locale/lv/fusiondirectory.po +++ b/user-reminder/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po index b231501ad2..9b4bc9ae1b 100644 --- a/user-reminder/locale/nb/fusiondirectory.po +++ b/user-reminder/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po index 27fc4ca475..43b48a2a80 100644 --- a/user-reminder/locale/nl/fusiondirectory.po +++ b/user-reminder/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po index dc46a833c1..a3e0bd88f5 100644 --- a/user-reminder/locale/pl/fusiondirectory.po +++ b/user-reminder/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po index 8155849b96..0acd2a7619 100644 --- a/user-reminder/locale/pt/fusiondirectory.po +++ b/user-reminder/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po index 4cc19c9ad5..8685adb547 100644 --- a/user-reminder/locale/pt_BR/fusiondirectory.po +++ b/user-reminder/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po index 1b7b8c87ce..f664d156f4 100644 --- a/user-reminder/locale/ru/fusiondirectory.po +++ b/user-reminder/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po index f8381a2451..9d584b10e5 100644 --- a/user-reminder/locale/ru@petr1708/fusiondirectory.po +++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po index aff2954642..ef9eedb849 100644 --- a/user-reminder/locale/sv/fusiondirectory.po +++ b/user-reminder/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po index 3f3bc492bb..bf66b4f8a0 100644 --- a/user-reminder/locale/ug/fusiondirectory.po +++ b/user-reminder/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po index 975a26a772..ec1779bca2 100644 --- a/user-reminder/locale/vi_VN/fusiondirectory.po +++ b/user-reminder/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po index 0889044664..f8c294cb3f 100644 --- a/user-reminder/locale/zh/fusiondirectory.po +++ b/user-reminder/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po index d3d64240e6..9783a6c7a9 100644 --- a/weblink/locale/ar/fusiondirectory.po +++ b/weblink/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po index a52677f0dc..a2febb2226 100644 --- a/weblink/locale/ca/fusiondirectory.po +++ b/weblink/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po index f85a1ec78c..1855c0c813 100644 --- a/weblink/locale/cs_CZ/fusiondirectory.po +++ b/weblink/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po index 3429785b94..ead224bcb6 100644 --- a/weblink/locale/de/fusiondirectory.po +++ b/weblink/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po index 6911e7a9fc..8edf5c3594 100644 --- a/weblink/locale/el_GR/fusiondirectory.po +++ b/weblink/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/weblink/locale/en/fusiondirectory.po b/weblink/locale/en/fusiondirectory.po index ac9689450a..bbc4fb59f1 100644 --- a/weblink/locale/en/fusiondirectory.po +++ b/weblink/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po index 3d984f8b63..cf3f31da92 100644 --- a/weblink/locale/es/fusiondirectory.po +++ b/weblink/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po index 2949eb31bb..5bda262ff3 100644 --- a/weblink/locale/es_CO/fusiondirectory.po +++ b/weblink/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po index eac79a2879..951c3eb8a5 100644 --- a/weblink/locale/es_VE/fusiondirectory.po +++ b/weblink/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po index d04dd8440d..a785b22f12 100644 --- a/weblink/locale/fa_IR/fusiondirectory.po +++ b/weblink/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po index 8758b1e1dd..282ddf5c5c 100644 --- a/weblink/locale/fi_FI/fusiondirectory.po +++ b/weblink/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po index 9f7cdd2743..9ba1703e1a 100644 --- a/weblink/locale/fr/fusiondirectory.po +++ b/weblink/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po index f7e3fc8e37..e387a83dcd 100644 --- a/weblink/locale/hu_HU/fusiondirectory.po +++ b/weblink/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po index dc4f080ef3..ebc6ed94bd 100644 --- a/weblink/locale/id/fusiondirectory.po +++ b/weblink/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po index c1f22bcfd0..095eba3e35 100644 --- a/weblink/locale/it_IT/fusiondirectory.po +++ b/weblink/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po index 30879ef92e..b32a21c5a9 100644 --- a/weblink/locale/lv/fusiondirectory.po +++ b/weblink/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po index 73b34f23a9..617d132a94 100644 --- a/weblink/locale/nb/fusiondirectory.po +++ b/weblink/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po index 7c4fef872c..a3e8fe366c 100644 --- a/weblink/locale/nl/fusiondirectory.po +++ b/weblink/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po index d6d363bf99..82c2ea03c6 100644 --- a/weblink/locale/pl/fusiondirectory.po +++ b/weblink/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po index 0299c7fd75..ce5834df63 100644 --- a/weblink/locale/pt/fusiondirectory.po +++ b/weblink/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po index ba894bc643..3e9c8149b7 100644 --- a/weblink/locale/pt_BR/fusiondirectory.po +++ b/weblink/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po index 679c349bfe..8c2f960fb1 100644 --- a/weblink/locale/ru/fusiondirectory.po +++ b/weblink/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po index 3ae7112c59..53e835c4ef 100644 --- a/weblink/locale/ru@petr1708/fusiondirectory.po +++ b/weblink/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po index 4e7b47c886..95b3a63554 100644 --- a/weblink/locale/sv/fusiondirectory.po +++ b/weblink/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po index 897f4e6186..bc99660d42 100644 --- a/weblink/locale/ug/fusiondirectory.po +++ b/weblink/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po index 42486666f3..e004a2add1 100644 --- a/weblink/locale/vi_VN/fusiondirectory.po +++ b/weblink/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po index b3af8b2cbc..7586df472d 100644 --- a/weblink/locale/zh/fusiondirectory.po +++ b/weblink/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po index ae401db6ea..47d289dfe5 100644 --- a/webservice/locale/ar/fusiondirectory.po +++ b/webservice/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po index 943868fd07..14287c823c 100644 --- a/webservice/locale/ca/fusiondirectory.po +++ b/webservice/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" @@ -27,26 +27,26 @@ msgstr "La configuració %s/%s del FusionDirectori no és llegible. S'està avor msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Connector" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po index d7244bb821..5289b8a3ae 100644 --- a/webservice/locale/cs_CZ/fusiondirectory.po +++ b/webservice/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" @@ -27,26 +27,26 @@ msgstr "Nastavenà %s/%s FusionDirectory nenà Äitelné. Akce byla zruÅ¡ena." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Nelze nalézt soubor %s – opravte to spuÅ¡tÄ›nÃm %s (na serveru)." -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Zásuvný modul" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "%s nelze smazat. Je uzamÄeno %s." -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po index 979cb47e31..90b12d74c5 100644 --- a/webservice/locale/de/fusiondirectory.po +++ b/webservice/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" @@ -28,26 +28,26 @@ msgstr "FusionDirectory Konfiguration %s/%s ist nicht lesbar. Abgebrochen." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Konnte Datei '%s' nicht finden - bitte führen Sie '%s' aus um das Problem zu beseitigen" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Erweiterung" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po index f50e11cbb3..d2f4d48ef2 100644 --- a/webservice/locale/el_GR/fusiondirectory.po +++ b/webservice/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" @@ -28,26 +28,26 @@ msgstr "Οι Ïυθμίσεις %s/%s του FusionDirectory δεν είναι msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Αδυναμία ÎµÎ½Ï„Î¿Ï€Î¹ÏƒÎ¼Î¿Ï Î±Ïχείου '%s' - παÏακαλώ εκτελÎστε το '%s' για να το διοÏθώσετε" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Î Ïόσθετο" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "Αδυναμία διαγÏαφής %s. Έχει κλειδωθεί από το %s." -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/en/fusiondirectory.po b/webservice/locale/en/fusiondirectory.po index 174525ca69..6932b8b478 100644 --- a/webservice/locale/en/fusiondirectory.po +++ b/webservice/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -27,28 +27,28 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "" "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "" "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po index 03b00907f7..a113d1a8e4 100644 --- a/webservice/locale/es/fusiondirectory.po +++ b/webservice/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" @@ -27,26 +27,26 @@ msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para solucionarlo" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Extensión" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po index 4ebe9eec02..6285c15143 100644 --- a/webservice/locale/es_CO/fusiondirectory.po +++ b/webservice/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" @@ -27,26 +27,26 @@ msgstr "La configuración %s/%s de FusionDirectory no tiene permisos de lectura. msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "No se encuentra el archivo '%s' - por favor ejecute '%s' para arreglar esto." -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po index be7155b6cf..783cbcd7f8 100644 --- a/webservice/locale/es_VE/fusiondirectory.po +++ b/webservice/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" @@ -27,26 +27,26 @@ msgstr "La configuración de FusionDirectory %s/%s no se puede leer. Cancelado." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para solucionarlo" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Extensión" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po index 7b80d3ad78..f901726fdd 100644 --- a/webservice/locale/fa_IR/fusiondirectory.po +++ b/webservice/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "ÙØ§ÛŒÙ„ '%s' را نمی توانم پیدا کنم برای Ø±ÙØ¹ مشکل دستور '%s' را بزنید." -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "پلاگین" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po index a83668ad33..de5d66aaba 100644 --- a/webservice/locale/fi_FI/fusiondirectory.po +++ b/webservice/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po index 89748aaf5c..3f5b87dfa4 100644 --- a/webservice/locale/fr/fusiondirectory.po +++ b/webservice/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" @@ -29,26 +29,26 @@ msgstr "Le fichier de configuration de FusionDirectory %s/%s ne peut être lu. A msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Fichier '%s' non trouvé - veuillez exécuter '%s' pour régler ce problème" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "Impossible d’effacer %s. Il a été verrouillé par %s." -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "Impossible d'obtenir la méthode de mot de passe pour le compte \"%s\". Le compte n'a pas été verrouillé !" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "Méthode de mot de passe \"%s\" a échoué. Le compte \"%s\" n'a pas été verrouillé!" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "Impossible de trouver le compte \"%s\" dans LDAP. Il n'a pas été verrouillé!" diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po index 25c731a880..09e919c3b1 100644 --- a/webservice/locale/hu_HU/fusiondirectory.po +++ b/webservice/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po index cd85155aee..86a7380038 100644 --- a/webservice/locale/id/fusiondirectory.po +++ b/webservice/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po index e422c3b1b0..a320bb8d79 100644 --- a/webservice/locale/it_IT/fusiondirectory.po +++ b/webservice/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" @@ -29,26 +29,26 @@ msgstr "Il file di configurazione %s/%s non è leggibile. Operazione Annullata." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Impossibile trovare il file '%s' - esegui '%s' per porre rimedio al problema" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Estensione" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "Non puoi cancellare %s perché é ancora utilizzata da %s" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "Impossibile ottenere metodo di password per l'account\"%s\". Non è stato bloccato!" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "Il metodo di bloccaggio \"%s\" é fallito. L'account \"%s\" non é stato bloccato!" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "Account \"%s\" non trovato nella LDAP. Non é stato bloccato!" diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po index a1e55c63e8..3e81e8e01d 100644 --- a/webservice/locale/lv/fusiondirectory.po +++ b/webservice/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po index fe00739456..afa841e6da 100644 --- a/webservice/locale/nb/fusiondirectory.po +++ b/webservice/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po index 14847859ad..7679d1eb69 100644 --- a/webservice/locale/nl/fusiondirectory.po +++ b/webservice/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" @@ -27,26 +27,26 @@ msgstr "FusionDirectory configuratie %s/%s is niet leesbaar. Geannuleerd." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Kan bestand '%s' niet vinden - gebruik aub '%s' om dit op te lossen" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po index a9bfad33f5..4441c6c2ed 100644 --- a/webservice/locale/pl/fusiondirectory.po +++ b/webservice/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Dodatek" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po index c5ca88e37a..45ed1613d6 100644 --- a/webservice/locale/pt/fusiondirectory.po +++ b/webservice/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po index 1ac15c00d0..88bf904ca7 100644 --- a/webservice/locale/pt_BR/fusiondirectory.po +++ b/webservice/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" @@ -27,26 +27,26 @@ msgstr "Abortado. Configuração %s/%s do FusionDirectory não pôde ser lida." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Não foi possÃvel localizar o arquivo '%s' - execute '%s' para solucionar o problema" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po index c76000861b..df72f21fb1 100644 --- a/webservice/locale/ru/fusiondirectory.po +++ b/webservice/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Ðе могу обнаружить файл '%s' - пожалуйÑта запуÑтите '%s', чтобы иÑправить Ñто." -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Плагин" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po index d5df4c8889..5e768117fd 100644 --- a/webservice/locale/ru@petr1708/fusiondirectory.po +++ b/webservice/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po index 609a44bc4a..da7d142e9b 100644 --- a/webservice/locale/sv/fusiondirectory.po +++ b/webservice/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" @@ -27,26 +27,26 @@ msgstr "FusionDirectory-konfiguration %s/%s är inte läsbar. Avbryter." msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Kan inte lokalisera filen '%s' - vänligen kör '%s' för att Ã¥tgärda detta" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po index 77a1cdff5e..f535e38c20 100644 --- a/webservice/locale/ug/fusiondirectory.po +++ b/webservice/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po index 6070f2f7ba..2a385ede9e 100644 --- a/webservice/locale/vi_VN/fusiondirectory.po +++ b/webservice/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "Không thể xác định vị trà file '%s'- xin hãy chạy '%s' để sá»a lá»—i nà y!" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "Plugin" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po index 4c89d05c7a..f029f60939 100644 --- a/webservice/locale/zh/fusiondirectory.po +++ b/webservice/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-07-06 14:01+0200\n" +"POT-Creation-Date: 2016-08-02 08:56+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" @@ -27,26 +27,26 @@ msgstr "" msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: html/jsonrpc.php:317 html/jsonrpc.php:399 +#: html/jsonrpc.php:317 html/jsonrpc.php:401 msgid "Plugin" msgstr "" -#: html/jsonrpc.php:490 +#: html/jsonrpc.php:493 #, php-format msgid "Cannot delete %s. It has been locked by %s." msgstr "" -#: html/jsonrpc.php:537 html/jsonrpc.php:566 +#: html/jsonrpc.php:540 html/jsonrpc.php:569 #, php-format msgid "Failed to get password method for account \"%s\". It has not been locked!" msgstr "" -#: html/jsonrpc.php:562 +#: html/jsonrpc.php:565 #, php-format msgid "Password method \"%s\" failed locking. Account \"%s\" has not been locked!" msgstr "" -#: html/jsonrpc.php:569 +#: html/jsonrpc.php:572 #, php-format msgid "Could not find account \"%s\" in LDAP. It has not been locked!" msgstr "" -- GitLab From d21b213219325c2ff49337a0e142042560852b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 2 Aug 2016 16:37:25 +0200 Subject: [PATCH 07/25] Fixes #5043 Removed specific code as object creation has been moved in mainInc --- gpg/addons/gpg/main.inc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gpg/addons/gpg/main.inc b/gpg/addons/gpg/main.inc index 274d7af884..cb7b9f40f9 100644 --- a/gpg/addons/gpg/main.inc +++ b/gpg/addons/gpg/main.inc @@ -18,9 +18,5 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ -try { - simplePlugin::mainInc('pgpServerInfo', 'cn=pgpServerInfo,'.$config->current['BASE']); -} catch (NonExistingLdapNodeException $e) { - simplePlugin::mainInc('pgpServerInfo', 'new'); -} +simplePlugin::mainInc('pgpServerInfo', 'cn=pgpServerInfo,'.$config->current['BASE']); ?> -- GitLab From b1f372340f9940069347a6f5bec88f5ddf368dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 2 Aug 2016 18:05:41 +0200 Subject: [PATCH 08/25] Fixes #5044 Migrated GPG select dialog to simpleSelectManagement --- .../gpg/pgpKeySelect/class_pgpKeySelect.inc | 59 +++++++++++-------- .../gpg/pgpKeySelect/pgpKeySelect-filter.xml | 45 -------------- .../gpg/pgpKeySelect/pgpKeySelect-list.tpl | 7 --- .../gpg/pgpKeySelect/pgpKeySelect-list.xml | 11 ++-- 4 files changed, 39 insertions(+), 83 deletions(-) delete mode 100644 gpg/personal/gpg/pgpKeySelect/pgpKeySelect-filter.xml delete mode 100644 gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.tpl diff --git a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc index 8c1347570c..63c3bcf045 100644 --- a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc +++ b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc @@ -18,12 +18,34 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ -class pgpKeySelect extends management +class pgpKeySelect extends simpleSelectManagement { - protected $skipFooter = TRUE; - protected $skipHeader = TRUE; + protected $objectTypes = array(); + protected $autoFilter = FALSE; + + protected $departmentBrowser = FALSE; + protected $departmentRootVisible = FALSE; + protected $baseMode = FALSE; + protected $multiSelect = TRUE; function __construct() + { + $this->listXMLPath = get_template_path('pgpKeySelect-list.xml', TRUE, dirname(__FILE__)); + + parent::__construct(); + } + + function configureHeadpage () + { + parent::configureHeadpage(); + $this->headpage->registerElementFilter('pgpDate', 'pgpKeySelect::filterPgpDate'); + $this->headpage->registerElementFilter('pgpSize', 'pgpKeySelect::filterPgpSize'); + $this->headpage->registerElementFilter('pgpDisabled', 'pgpKeySelect::filterPgpRevoked'); + $this->headpage->registerElementFilter('pgpRevoked', 'pgpKeySelect::filterPgpRevoked'); + } + + /* Build the filter */ + function configureFilter () { global $config; @@ -39,28 +61,15 @@ class pgpKeySelect extends management } else { msg_dialog::display(_('Configuration error'), _('You need to configure GPG base dn through the addons section first')); } - - $filter = new filter(get_template_path('pgpKeySelect-filter.xml', TRUE, dirname(__FILE__))); - $filter->setObjectStorage($this->storagePoints); - $this->setFilter($filter); - - // Build headpage - $headpage = new listing(get_template_path('pgpKeySelect-list.xml', TRUE, dirname(__FILE__))); - $headpage->registerElementFilter('pgpDate', 'pgpKeySelect::filterPgpDate'); - $headpage->registerElementFilter('pgpSize', 'pgpKeySelect::filterPgpSize'); - $headpage->registerElementFilter('pgpDisabled', 'pgpKeySelect::filterPgpRevoked'); - $headpage->registerElementFilter('pgpRevoked', 'pgpKeySelect::filterPgpRevoked'); - $headpage->setBase($config->current['BASE']); - $headpage->setFilter($filter); - - parent::__construct('', $headpage); - } - - function renderList() - { - $smarty = get_smarty(); - $smarty->assign('objectFilters', array()); - return parent::renderList(); + $this->filter->setObjectStorage($this->storagePoints); + $this->filter->category = 'user'; + $this->filter->query['0']['backend'] = 'LDAPBlacklist'; + $attributes = array('pgpKeyID', 'pgpUserID', 'pgpKeyCreateTime', 'pgpKeyExpireTime', 'pgpKeyType', 'pgpKeySize'); + $this->filter->query[0]['filter'] = '$NAME'; + $this->filter->query[0]['attribute'] = $attributes; + $this->filter->elements['NAME']['set'] = '(|('.join('=*$*)(', $attributes).'=*$*))'; + $this->filter->elements['NAME']['autocomplete']['filter'] = '(|('.join('=*$NAME*)(', $attributes).'=*$NAME*))'; + $this->filter->elements['NAME']['autocomplete']['attribute'] = $attributes; } static function filterSingleValue($value, $func) diff --git a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-filter.xml b/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-filter.xml deleted file mode 100644 index 5b80cb1fa6..0000000000 --- a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-filter.xml +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<filterdef> - <definition> - <category>groups</category> - <template>simple-filter.tpl</template> - <initial>true</initial> - </definition> - - <search> - <query> - <backend>LDAPBlacklist</backend> - <filter>(&(objectClass=pgpKeyInfo)$NAME)</filter> - <attribute>dn</attribute> - <attribute>objectClass</attribute> - <attribute>pgpKeyID</attribute> - <attribute>pgpUserID</attribute> - <attribute>pgpKeyCreateTime</attribute> - <attribute>pgpKeyExpireTime</attribute> - <attribute>pgpKeyType</attribute> - <attribute>pgpKeySize</attribute> - <attribute>pgpRevoked</attribute> - <attribute>pgpDisabled</attribute> - </query> - <scope>auto</scope> - </search> - - <element> - <type>textfield</type> - <tag>NAME</tag> - <size>20</size> - <maxlength>60</maxlength> - <default></default> - <unset></unset> - <set>(pgpUserID=*$*)</set> - <alphabet>false</alphabet> - <autocomplete> - <backend>LDAPBlacklist</backend> - <filter>(pgpUserID=*$NAME*)</filter> - <attribute>pgpUserID</attribute> - <frequency>0.5</frequency> - <characters>3</characters> - </autocomplete> - </element> -</filterdef> diff --git a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.tpl b/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.tpl deleted file mode 100644 index 73652856df..0000000000 --- a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{include file={filePath file="simple-list.tpl"}} - -<p class="plugbottom"> - <input type="submit" name="add_finish" value="{msgPool type=addButton}"/> - - <input type="submit" name="add_cancel" value="{msgPool type=cancelButton}"/> -</p> diff --git a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.xml b/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.xml index 3ab1d4d646..b89118e1bd 100644 --- a/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.xml +++ b/gpg/personal/gpg/pgpKeySelect/pgpKeySelect-list.xml @@ -6,7 +6,8 @@ <departmentRootVisible>false</departmentRootVisible> <baseMode>false</baseMode> <multiSelect>true</multiSelect> - <template>../plugins/personal/gpg/pgpKeySelect/pgpKeySelect-list.tpl</template> + <template>simple-select-list.tpl</template> + <module>simple</module> <label>Please select the desired entries</label> <defaultSortColumn>1</defaultSortColumn> @@ -17,7 +18,6 @@ <class>gpgAccount</class> <image>geticon.php?context=status&icon=dialog-password&size=16</image> </objectType> - </definition> <table> @@ -29,7 +29,7 @@ <department> <value>%{filter:departmentLink(row,dn,description)}</value> - <span>1</span> + <span>2</span> </department> <column> @@ -40,7 +40,7 @@ <label>Key ID</label> <sortAttribute>pgpKeyID</sortAttribute> <sortType>string</sortType> - <value>%{pgpKeyID}</value> + <value>%{filter:selectLink(pid,row,dn,pgpKeyID)}</value> <export>true</export> </column> @@ -48,7 +48,7 @@ <label>User</label> <sortAttribute>pgpUserID</sortAttribute> <sortType>string</sortType> - <value>%{pgpUserID}</value> + <value>%{filter:selectLink(pid,row,dn,pgpUserID)}</value> <export>true</export> </column> @@ -99,7 +99,6 @@ <value>%{filter:pgpDisabled(pgpDisabled)}</value> <export>true</export> </column> - </table> <actionmenu> -- GitLab From 360920b6ec8d4ff3068649cdc81100cfd80a5fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 4 Aug 2016 14:45:10 +0200 Subject: [PATCH 09/25] Fixes #5025 Copy paste error in ppolicy --- ppolicy/admin/ppolicy/class_ppolicy.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppolicy/admin/ppolicy/class_ppolicy.inc b/ppolicy/admin/ppolicy/class_ppolicy.inc index 1bbf6f6351..722016a206 100644 --- a/ppolicy/admin/ppolicy/class_ppolicy.inc +++ b/ppolicy/admin/ppolicy/class_ppolicy.inc @@ -179,7 +179,7 @@ class ppolicy extends simplePlugin ) ) ); - $this->attributesAccess['pwdCheckQuality']->attributes[0]->setManagedAttributes( + $this->attributesAccess['pwdCheckQuality']->setManagedAttributes( array ( 'disable' => array ( 0 => array ( -- GitLab From f38f0a5f9bc719c8a1ba5ea24f909d2e737188b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 4 Aug 2016 15:02:41 +0200 Subject: [PATCH 10/25] Fixes #5025 Avoid None value in Check quality --- ppolicy/admin/ppolicy/class_ppolicy.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppolicy/admin/ppolicy/class_ppolicy.inc b/ppolicy/admin/ppolicy/class_ppolicy.inc index 722016a206..b92cdafaab 100644 --- a/ppolicy/admin/ppolicy/class_ppolicy.inc +++ b/ppolicy/admin/ppolicy/class_ppolicy.inc @@ -102,7 +102,7 @@ class ppolicy extends simplePlugin ), new SelectAttribute( _('Check quality'), _('Decides what to do if the function in "Check module" is not available'), - 'pwdCheckQuality', FALSE, + 'pwdCheckQuality', TRUE, array(0, 1, 2), 0, array(_('Disabled'), _('Ignore errors'), _('Reject on errors')) ), -- GitLab From b63dc6a7b11e5465bf53435db148b89f1adc5f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 4 Aug 2016 15:13:13 +0200 Subject: [PATCH 11/25] Fixes #5020 Removed calls to PHP4 constructors --- .../systems/services/dhcp/class_dhcpClass.inc | 6 +++--- .../systems/services/dhcp/class_dhcpDnsZone.inc | 6 +++--- .../systems/services/dhcp/class_dhcpGroup.inc | 6 +++--- .../admin/systems/services/dhcp/class_dhcpHost.inc | 6 +++--- .../admin/systems/services/dhcp/class_dhcpPool.inc | 6 +++--- .../systems/services/dhcp/class_dhcpService.inc | 6 +++--- .../services/dhcp/class_dhcpSharedNetwork.inc | 14 +++++++------- .../systems/services/dhcp/class_dhcpSubClass.inc | 6 +++--- .../systems/services/dhcp/class_dhcpSubnet.inc | 6 +++--- .../systems/services/dhcp/class_dhcpTSigKey.inc | 6 +++--- 10 files changed, 34 insertions(+), 34 deletions(-) diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc b/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc index 2585c76d90..9a2ef31e0d 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpClass.inc @@ -29,7 +29,7 @@ class dhcpClass extends dhcpPlugin function __construct($parent,&$attrs) { /* Load statements / options */ - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); } function execute() @@ -71,7 +71,7 @@ class dhcpClass extends dhcpPlugin } /* Handle global saving */ - dhcpPlugin::save_object(); + parent::save_object(); } @@ -113,7 +113,7 @@ class dhcpClass extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); return ($this->attrs); } diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc b/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc index a2a5953d9d..9609e16ada 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpDnsZone.inc @@ -40,7 +40,7 @@ class dhcpDnsZone extends dhcpPlugin function __construct($parent,$attrs,$host_exists_in_gosa = FALSE) { global $config; - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); /* Load attributes */ if (!$this->new){ @@ -131,7 +131,7 @@ class dhcpDnsZone extends dhcpPlugin } - dhcpPlugin::save_object(); + parent::save_object(); } @@ -180,7 +180,7 @@ class dhcpDnsZone extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); if ($this->dhcpKeyDN != ""){ $this->attrs['dhcpKeyDN']= array(base64_decode($this->dhcpKeyDN)); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc b/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc index f8c18641fa..2e55b46397 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc @@ -29,7 +29,7 @@ class dhcpGroup extends dhcpPlugin function __construct($parent,&$attrs) { /* Load statements / options */ - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); } function execute() @@ -71,7 +71,7 @@ class dhcpGroup extends dhcpPlugin } /* Handle global saving */ - dhcpPlugin::save_object(); + parent::save_object(); } @@ -113,7 +113,7 @@ class dhcpGroup extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); return ($this->attrs); } diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc b/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc index 230d12d6d0..df6cd5d65a 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpHost.inc @@ -32,7 +32,7 @@ class dhcpHost extends dhcpPlugin function __construct($parent,$attrs,$host_exists_in_gosa = FALSE) { - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); /* Load attributes */ if (!$this->new){ @@ -113,7 +113,7 @@ class dhcpHost extends dhcpPlugin $this->options->set('host-name',$this->cn); } - dhcpPlugin::save_object(); + parent::save_object(); } @@ -159,7 +159,7 @@ class dhcpHost extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); if ($this->dhcpHWAddress != ""){ $this->attrs['dhcpHWAddress']= array($this->dhcpHWAddress); } else { diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc b/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc index 1215d9c4a7..e9df9566ce 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc @@ -33,7 +33,7 @@ class dhcpPool extends dhcpPlugin function __construct($parent,$attrs) { - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); /* Load attributes */ if (!$this->new){ @@ -85,7 +85,7 @@ class dhcpPool extends dhcpPlugin $this->range_stop= validate(get_post('range_stop')); } - dhcpPlugin::save_object(); + parent::save_object(); /* Move range to internal variable */ $this->dhcpRange= $this->range_start." ".$this->range_stop; @@ -160,7 +160,7 @@ class dhcpPool extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); $this->attrs['dhcpRange']= array($this->dhcpRange); return ($this->attrs); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpService.inc b/dhcp/admin/systems/services/dhcp/class_dhcpService.inc index 87b845f90a..67cea39a5b 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpService.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpService.inc @@ -33,7 +33,7 @@ class dhcpService extends dhcpPlugin function __construct($parent, $attrs) { - dhcpPlugin::dhcpPlugin($parent, $attrs); + parent::__construct($parent, $attrs); /* Load statements / options */ if (!$this->new) { @@ -115,7 +115,7 @@ class dhcpService extends dhcpPlugin } } - dhcpPlugin::save_object(); + parent::save_object(); } @@ -156,7 +156,7 @@ class dhcpService extends dhcpPlugin $server_name = $res['cn'][0]; } - dhcpPlugin::save(); + parent::save(); $this->attrs['dhcpPrimaryDN'] = array($this->dhcpPrimaryDN); $this->removeOption('server-name'); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc index 78faffda66..7a5dadffb6 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc @@ -28,7 +28,7 @@ class dhcpSharedNetwork extends dhcpPlugin function __construct($parent,$attrs) { - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); $this->advanced->setAutoStatements(array("server-identifier", "default-lease-time", "max-lease-time", "min-lease-time", "authoritative", "deny unknown-clients", @@ -105,12 +105,12 @@ class dhcpSharedNetwork extends dhcpPlugin function save_object() { /* Check permissions, don't touch anything if we do not have write permissions */ - if (!preg_match("/w/",$this->parent->getacl(""))){ - dhcpPlugin::save_object(); - }elseif(isset($_POST['cn'])){ + if (!preg_match("/w/", $this->parent->getacl(""))) { + parent::save_object(); + } elseif(isset($_POST['cn'])) { - $this->cn= validate(get_post('cn')); - dhcpPlugin::save_object(); + $this->cn = validate(get_post('cn')); + parent::save_object(); foreach (array("server-identifier", "default-lease-time", "max-lease-time", "min-lease-time") as $attr){ @@ -185,7 +185,7 @@ class dhcpSharedNetwork extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); return ($this->attrs); } diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc index 6976196a8c..4253b89cc0 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSubClass.inc @@ -28,7 +28,7 @@ class dhcpSubClass extends dhcpPlugin function __construct($parent,&$attrs) { /* Load statements / options */ - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); } function execute() @@ -70,7 +70,7 @@ class dhcpSubClass extends dhcpPlugin } /* Handle global saving */ - dhcpPlugin::save_object(); + parent::save_object(); } @@ -112,7 +112,7 @@ class dhcpSubClass extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); return ($this->attrs); } diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc b/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc index af9123c521..28e9cb62d4 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc @@ -35,7 +35,7 @@ class dhcpSubnet extends dhcpPlugin function __construct($parent,$attrs) { - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); if (!$this->new){ /* Load attributes */ @@ -123,7 +123,7 @@ class dhcpSubnet extends dhcpPlugin /* Move range to internal variable */ $this->dhcpRange= $this->range_start." ".$this->range_stop; } - dhcpPlugin::save_object(); + parent::save_object(); } @@ -189,7 +189,7 @@ class dhcpSubnet extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); /* Move dn to the result */ $this->attrs['dhcpNetMask']= array(netmask_to_bits($this->dhcpNetMask)); diff --git a/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc b/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc index 45d92e5b46..5841399032 100644 --- a/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc +++ b/dhcp/admin/systems/services/dhcp/class_dhcpTSigKey.inc @@ -32,7 +32,7 @@ class dhcpTSigKey extends dhcpPlugin function __construct($parent,$attrs) { - dhcpPlugin::dhcpPlugin($parent,$attrs); + parent::__construct($parent,$attrs); /* Load attributes */ if (!$this->new){ @@ -95,7 +95,7 @@ class dhcpTSigKey extends dhcpPlugin } - dhcpPlugin::save_object(); + parent::save_object(); } @@ -140,7 +140,7 @@ class dhcpTSigKey extends dhcpPlugin /* Save to LDAP */ function save() { - dhcpPlugin::save(); + parent::save(); if ($this->dhcpKeyAlgorithm != ""){ $this->attrs['dhcpKeyAlgorithm']= array($this->dhcpKeyAlgorithm); -- GitLab From 8886e5e271615369961499493f2528cd1e05f8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 4 Aug 2016 17:40:54 +0200 Subject: [PATCH 12/25] Fixes #5051 Added linkedin support in social handlers --- personal/personal/personal/class_socialHandlers.inc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/personal/personal/personal/class_socialHandlers.inc b/personal/personal/personal/class_socialHandlers.inc index ec21a6dc0c..33020956c3 100644 --- a/personal/personal/personal/class_socialHandlers.inc +++ b/personal/personal/personal/class_socialHandlers.inc @@ -133,3 +133,13 @@ class socialHandler_diaspora extends socialHandler return $value; } } + +class socialHandler_linkedin extends socialHandler +{ + static function getName() + { + return _('LinkedIn'); + } + + protected $baseurl = 'https://www.linkedin.com/in'; +} -- GitLab From 36b8ad36be9f8516eb59099d3b06f0c59c205ac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 9 Aug 2016 15:12:04 +0200 Subject: [PATCH 13/25] Fixes #5055 Fixed argonaut action launching Conflicts: systems/admin/systems/class_systemManagement.inc --- argonaut/addons/argonaut/class_argonautAction.inc | 1 + systems/admin/systems/class_systemManagement.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/argonaut/addons/argonaut/class_argonautAction.inc b/argonaut/addons/argonaut/class_argonautAction.inc index b5103cc83a..6d9d205a55 100644 --- a/argonaut/addons/argonaut/class_argonautAction.inc +++ b/argonaut/addons/argonaut/class_argonautAction.inc @@ -147,6 +147,7 @@ class argonautAction extends simplePlugin public function __construct($action) { + global $config; parent::__construct($config->current['BASE']); $this->attributesAccess['scheduled']->setManagedAttributes( diff --git a/systems/admin/systems/class_systemManagement.inc b/systems/admin/systems/class_systemManagement.inc index 4fa438faea..e0c8906de6 100644 --- a/systems/admin/systems/class_systemManagement.inc +++ b/systems/admin/systems/class_systemManagement.inc @@ -172,7 +172,7 @@ class systemManagement extends management // Prepare event to be added if (isset($events[$event])) { - $this->dialogObject = new argonautAction(array('action' => $event)); + $this->dialogObject = new argonautAction($event); $this->dialogObject->targets = $mac; if ($triggered) { -- GitLab From 20ef1e77c5e8c7497e879b97950658b81aa683eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 10 Aug 2016 16:08:21 +0200 Subject: [PATCH 14/25] Fixes #5058 Avoid PHP errors in user-reminder as well --- user-reminder/html/class_expiredUserPostpone.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/user-reminder/html/class_expiredUserPostpone.inc b/user-reminder/html/class_expiredUserPostpone.inc index 1d4abe2008..07492fe24e 100644 --- a/user-reminder/html/class_expiredUserPostpone.inc +++ b/user-reminder/html/class_expiredUserPostpone.inc @@ -83,12 +83,14 @@ class expiredUserPostpone extends standAlonePage $smarty->assign('usePrototype', 'FALSE'); $smarty->append('js_files', 'include/pwdStrength.js'); $smarty->append('css_files', get_template_path('login.css')); + $lang = session::global_get('lang'); + $smarty->assign('lang', preg_replace('/_.*$/', '', $lang)); + $smarty->assign('rtl', language_is_rtl($lang)); $smarty->display(get_template_path('headers.tpl')); $smarty->assign('version', FD_VERSION); $smarty->assign('success', $success); $smarty->assign('activated', $this->activated); - $smarty->display(get_template_path('user-reminder.tpl')); } -- GitLab From 47b0812fa469638ae4831d22a79553974e74606a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 11 Aug 2016 09:51:44 +0200 Subject: [PATCH 15/25] Fixes #5056 Allowing plugins to easily add argonaut actions to the menu Conflicts: systems/admin/systems/class_systemManagement.inc --- .../addons/argonaut/class_argonautAction.inc | 47 -------- .../argonaut/class_argonautEventTypes.inc | 102 ++++++++++++++++++ .../argonaut/class_argonautImportFile.inc | 2 +- .../addons/argonaut/class_argonautQueue.inc | 6 +- .../argonaut/class_filterArgonautEvents.inc | 2 +- .../admin/ogroups/goto/class_termgroup.inc | 2 +- .../admin/systems/class_systemManagement.inc | 4 +- .../systems/class_workstationGeneric.inc | 2 +- 8 files changed, 111 insertions(+), 56 deletions(-) create mode 100644 argonaut/addons/argonaut/class_argonautEventTypes.inc diff --git a/argonaut/addons/argonaut/class_argonautAction.inc b/argonaut/addons/argonaut/class_argonautAction.inc index 6d9d205a55..c2f2558923 100644 --- a/argonaut/addons/argonaut/class_argonautAction.inc +++ b/argonaut/addons/argonaut/class_argonautAction.inc @@ -220,52 +220,5 @@ class argonautAction extends simplePlugin return $ret; } - - /*! \brief Returns event information, like menu strings, images ... - @return Array Event informations. - */ - static public function get_event_info($action) - { - $events = self::get_event_types(); - if (isset($events[$action])) { - $infos = $events[$action]; - - $infos['menuimg'] = '<img src="'.$infos['img'].'" alt="'.$infos['name'].'" class="center"/>'; - $infos['listimg'] = '<img src="'.$infos['img'].'" title="'.$infos['name']. - '"alt="'.$infos['name'].'" class="center"/>'; - return $infos; - } else { - return FALSE; - } - } - - /*! \brief Returns a complete list of all available events. - @return Array Containing info for all available events. - */ - static public function get_event_types() - { - return array( - 'System.halt' => array( - 'name' => _('Switch off'), - 'img' => 'geticon.php?context=actions&icon=system-shutdown&size=16' - ), - 'Deployment.reboot' => array( - 'name' => _('Reboot'), - 'img' => 'geticon.php?context=actions&icon=system-reboot&size=16' - ), - 'Deployment.wake' => array( - 'name' => _('Wake up'), - 'img' => 'geticon.php?context=status&icon=task-running&size=16' - ), - 'Deployment.update' => array( - 'name' => _('Software update'), - 'img' => 'geticon.php?context=actions&icon=system-update&size=16' - ), - 'Deployment.reinstall' => array( - 'name' => _('(Re)Install'), - 'img' => 'geticon.php?context=actions&icon=system-reinstall&size=16' - ), - ); - } } ?> diff --git a/argonaut/addons/argonaut/class_argonautEventTypes.inc b/argonaut/addons/argonaut/class_argonautEventTypes.inc new file mode 100644 index 0000000000..eb8709bc3d --- /dev/null +++ b/argonaut/addons/argonaut/class_argonautEventTypes.inc @@ -0,0 +1,102 @@ +<?php +/* + This code is part of FusionDirectory (http://www.fusiondirectory.org/) + Copyright (C) 2015-2016 FusionDirectory + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +class argonautEventTypes +{ + static protected function get_event_types_list() + { + die('get_event_types_list needs to be implemented in all subclass of argonautEventTypes'); + } + + /*! \brief Returns a complete list of all available events. + @return Array Containing info for all available events. + */ + static public function get_event_types() + { + global $class_mapping; + if (session::is_set('argonautEventTypes::get_event_types')) { + return session::get('argonautEventTypes::get_event_types'); + } else { + $ret = array(); + foreach (array_keys($class_mapping) as $class) { + if (is_subclass_of($class, 'argonautEventTypes')) { + $ret = array_merge($ret, $class::get_event_types_list()); + } + } + session::set('argonautEventTypes::get_event_types', $ret); + return $ret; + } + } + + /*! \brief Returns event information, like menu strings, images ... + @return Array Event informations. + */ + static public function get_event_info($action) + { + $events = self::get_event_types(); + if (isset($events[$action])) { + $infos = $events[$action]; + + $infos['listimg'] = '<img src="'.$infos['img'].'" title="'.$infos['name']. + '"alt="'.$infos['name'].'" class="center"/>'; + return $infos; + } else { + return FALSE; + } + } +} + +class argonautEventSystem extends argonautEventTypes +{ + static protected function get_event_types_list() + { + return array( + 'System.halt' => array( + 'name' => _('Switch off'), + 'img' => 'geticon.php?context=actions&icon=system-shutdown&size=16' + ) + ); + } +} + +class argonautEventDeployment extends argonautEventTypes +{ + static protected function get_event_types_list() + { + return array( + 'Deployment.reboot' => array( + 'name' => _('Reboot'), + 'img' => 'geticon.php?context=actions&icon=system-reboot&size=16' + ), + 'Deployment.wake' => array( + 'name' => _('Wake up'), + 'img' => 'geticon.php?context=status&icon=task-running&size=16' + ), + 'Deployment.update' => array( + 'name' => _('Software update'), + 'img' => 'geticon.php?context=actions&icon=system-update&size=16' + ), + 'Deployment.reinstall' => array( + 'name' => _('(Re)Install'), + 'img' => 'geticon.php?context=actions&icon=system-reinstall&size=16' + ), + ); + } +} diff --git a/argonaut/addons/argonaut/class_argonautImportFile.inc b/argonaut/addons/argonaut/class_argonautImportFile.inc index 30641da009..0e551733b4 100644 --- a/argonaut/addons/argonaut/class_argonautImportFile.inc +++ b/argonaut/addons/argonaut/class_argonautImportFile.inc @@ -84,7 +84,7 @@ class argonautImportFile extends simplePlugin $this->attributesAccess['import']->setLinearRendering(TRUE); $this->events = array(); - $this->daemon_events = argonautAction::get_event_types(); + $this->daemon_events = argonautEventTypes::get_event_types(); } function execute() diff --git a/argonaut/addons/argonaut/class_argonautQueue.inc b/argonaut/addons/argonaut/class_argonautQueue.inc index 6fddbef66d..6fa03a50ae 100644 --- a/argonaut/addons/argonaut/class_argonautQueue.inc +++ b/argonaut/addons/argonaut/class_argonautQueue.inc @@ -103,7 +103,7 @@ class argonautQueue extends simpleManagement $task = $tmp['EVENT']; /* Create a printable job name/description */ - $infos = argonautAction::get_event_info($task['HEADERTAG']); + $infos = argonautEventTypes::get_event_info($task['HEADERTAG']); if ($infos) { $j_name = $task['ID']." - ".$infos['name']." ".$task['MACADDRESS']; } else { @@ -130,7 +130,7 @@ class argonautQueue extends simpleManagement foreach ($this->dns as $dn) { $tmp = $this->headpage->getEntry($dn); $task = $tmp['EVENT']; - $infos = argonautAction::get_event_info($task['HEADERTAG']); + $infos = argonautEventTypes::get_event_info($task['HEADERTAG']); if ($infos) { $objects[] = array( 'name' => $infos['name'], @@ -290,7 +290,7 @@ class argonautQueue extends simpleManagement /* Check if this event exists as Daemon class * In this case, display a more accurate entry. */ - $infos = argonautAction::get_event_info($tag); + $infos = argonautEventTypes::get_event_info($tag); if ($infos) { $str = $infos['name']; diff --git a/argonaut/addons/argonaut/class_filterArgonautEvents.inc b/argonaut/addons/argonaut/class_filterArgonautEvents.inc index 88b7d65250..c061eac56f 100644 --- a/argonaut/addons/argonaut/class_filterArgonautEvents.inc +++ b/argonaut/addons/argonaut/class_filterArgonautEvents.inc @@ -26,7 +26,7 @@ class filterArgonautEvents extends filterLDAP global $config; $o_queue = new supportDaemon(); - $events = argonautAction::get_event_types(); + $events = argonautEventTypes::get_event_types(); /* Get tags that will be used in queue searches */ $event_tags = array("none"); diff --git a/systems/admin/ogroups/goto/class_termgroup.inc b/systems/admin/ogroups/goto/class_termgroup.inc index e63f5fb812..d0e15e35fe 100644 --- a/systems/admin/ogroups/goto/class_termgroup.inc +++ b/systems/admin/ogroups/goto/class_termgroup.inc @@ -174,7 +174,7 @@ class termgroup extends plugin $action = $this->mapActions[$_POST['saction']]; if (class_available('argonautAction')) { - $events = argonautAction::get_event_types(); + $events = argonautEventTypes::get_event_types(); $macaddresses = array(); foreach ($this->members as $cn => $macAddress){ $macaddresses[]= $macAddress; diff --git a/systems/admin/systems/class_systemManagement.inc b/systems/admin/systems/class_systemManagement.inc index e0c8906de6..a59ecf4f1e 100644 --- a/systems/admin/systems/class_systemManagement.inc +++ b/systems/admin/systems/class_systemManagement.inc @@ -62,7 +62,7 @@ class systemManagement extends management if (class_available('argonautAction') && class_available('supportDaemon')) { $this->headpage->xmlData['actionmenu']['action'][2]['action'] = array(); $this->headpage->xmlData['actionmenu']['action'][3]['action'] = array(); - $events = argonautAction::get_event_types(); + $events = argonautEventTypes::get_event_types(); foreach ($events as $name => $data) { $this->registerAction("T_".$name, "handleEvent"); $headpage->xmlData['actionmenu']['action'][2]['action'][] = array( @@ -142,7 +142,7 @@ class systemManagement extends management $mac = array(); // Collect target mac addresses - $events = argonautAction::get_event_types(); + $events = argonautEventTypes::get_event_types(); $o_queue = new supportDaemon(); foreach ($target as $dn) { $obj = $headpage->getEntry($dn); diff --git a/systems/admin/systems/class_workstationGeneric.inc b/systems/admin/systems/class_workstationGeneric.inc index f8fd679ffb..9dd523d8ca 100644 --- a/systems/admin/systems/class_workstationGeneric.inc +++ b/systems/admin/systems/class_workstationGeneric.inc @@ -267,7 +267,7 @@ class workstationGeneric extends systemSimplePluginGlue if ($activate && class_available('supportDaemon')) { /* Send installation activation */ - $events = argonautAction::get_event_types(); + $events = argonautEventTypes::get_event_types(); if (isset($events['installation_activation'])) { $o_queue = new supportDaemon(); $o_queue->append_call('installation_activation', array($this->netConfigDNS->macAddress), array()); -- GitLab From aa4da1db7b23345430c7dee5b95879d4c06ab5c2 Mon Sep 17 00:00:00 2001 From: Mortier Benoit <benoit.mortier@opensides.be> Date: Thu, 11 Aug 2016 21:37:10 +0200 Subject: [PATCH 16/25] Updating locales for 1.0.15 Signed-off-by: Mortier Benoit <benoit.mortier@opensides.be> --- alias/locale/ar/fusiondirectory.po | 2 +- alias/locale/ca/fusiondirectory.po | 2 +- alias/locale/cs_CZ/fusiondirectory.po | 2 +- alias/locale/de/fusiondirectory.po | 2 +- alias/locale/el_GR/fusiondirectory.po | 2 +- alias/locale/en/fusiondirectory.po | 2 +- alias/locale/es/fusiondirectory.po | 2 +- alias/locale/es_CO/fusiondirectory.po | 2 +- alias/locale/es_VE/fusiondirectory.po | 2 +- alias/locale/fa_IR/fusiondirectory.po | 2 +- alias/locale/fi_FI/fusiondirectory.po | 3 +- alias/locale/fr/fusiondirectory.po | 2 +- alias/locale/hu_HU/fusiondirectory.po | 2 +- alias/locale/id/fusiondirectory.po | 2 +- alias/locale/it_IT/fusiondirectory.po | 7 +-- alias/locale/lv/fusiondirectory.po | 2 +- alias/locale/nb/fusiondirectory.po | 2 +- alias/locale/nl/fusiondirectory.po | 2 +- alias/locale/pl/fusiondirectory.po | 2 +- alias/locale/pt/fusiondirectory.po | 2 +- alias/locale/pt_BR/fusiondirectory.po | 2 +- alias/locale/ru/fusiondirectory.po | 2 +- alias/locale/ru@petr1708/fusiondirectory.po | 2 +- alias/locale/sv/fusiondirectory.po | 2 +- alias/locale/ug/fusiondirectory.po | 2 +- alias/locale/vi_VN/fusiondirectory.po | 2 +- alias/locale/zh/fusiondirectory.po | 2 +- apache2/locale/ar/fusiondirectory.po | 2 +- apache2/locale/ca/fusiondirectory.po | 2 +- apache2/locale/cs_CZ/fusiondirectory.po | 2 +- apache2/locale/de/fusiondirectory.po | 2 +- apache2/locale/el_GR/fusiondirectory.po | 2 +- apache2/locale/en/fusiondirectory.po | 2 +- apache2/locale/es/fusiondirectory.po | 2 +- apache2/locale/es_CO/fusiondirectory.po | 2 +- apache2/locale/es_VE/fusiondirectory.po | 2 +- apache2/locale/fa_IR/fusiondirectory.po | 2 +- apache2/locale/fi_FI/fusiondirectory.po | 30 ++++++----- apache2/locale/fr/fusiondirectory.po | 2 +- apache2/locale/hu_HU/fusiondirectory.po | 2 +- apache2/locale/id/fusiondirectory.po | 2 +- apache2/locale/it_IT/fusiondirectory.po | 7 +-- apache2/locale/lv/fusiondirectory.po | 2 +- apache2/locale/nb/fusiondirectory.po | 2 +- apache2/locale/nl/fusiondirectory.po | 2 +- apache2/locale/pl/fusiondirectory.po | 2 +- apache2/locale/pt/fusiondirectory.po | 2 +- apache2/locale/pt_BR/fusiondirectory.po | 2 +- apache2/locale/ru/fusiondirectory.po | 2 +- apache2/locale/ru@petr1708/fusiondirectory.po | 2 +- apache2/locale/sv/fusiondirectory.po | 2 +- apache2/locale/ug/fusiondirectory.po | 2 +- apache2/locale/vi_VN/fusiondirectory.po | 2 +- apache2/locale/zh/fusiondirectory.po | 2 +- applications/locale/ar/fusiondirectory.po | 2 +- applications/locale/ca/fusiondirectory.po | 2 +- applications/locale/cs_CZ/fusiondirectory.po | 2 +- applications/locale/de/fusiondirectory.po | 2 +- applications/locale/el_GR/fusiondirectory.po | 2 +- applications/locale/en/fusiondirectory.po | 2 +- applications/locale/es/fusiondirectory.po | 2 +- applications/locale/es_CO/fusiondirectory.po | 2 +- applications/locale/es_VE/fusiondirectory.po | 2 +- applications/locale/fa_IR/fusiondirectory.po | 2 +- applications/locale/fi_FI/fusiondirectory.po | 2 +- applications/locale/fr/fusiondirectory.po | 2 +- applications/locale/hu_HU/fusiondirectory.po | 2 +- applications/locale/id/fusiondirectory.po | 2 +- applications/locale/it_IT/fusiondirectory.po | 7 +-- applications/locale/lv/fusiondirectory.po | 2 +- applications/locale/nb/fusiondirectory.po | 2 +- applications/locale/nl/fusiondirectory.po | 2 +- applications/locale/pl/fusiondirectory.po | 2 +- applications/locale/pt/fusiondirectory.po | 2 +- applications/locale/pt_BR/fusiondirectory.po | 2 +- applications/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- applications/locale/sv/fusiondirectory.po | 2 +- applications/locale/ug/fusiondirectory.po | 2 +- applications/locale/vi_VN/fusiondirectory.po | 2 +- applications/locale/zh/fusiondirectory.po | 2 +- argonaut/locale/ar/fusiondirectory.po | 42 +++++++-------- argonaut/locale/ca/fusiondirectory.po | 42 +++++++-------- argonaut/locale/cs_CZ/fusiondirectory.po | 42 +++++++-------- argonaut/locale/de/fusiondirectory.po | 42 +++++++-------- argonaut/locale/el_GR/fusiondirectory.po | 42 +++++++-------- argonaut/locale/en/fusiondirectory.po | 42 +++++++-------- argonaut/locale/es/fusiondirectory.po | 42 +++++++-------- argonaut/locale/es_CO/fusiondirectory.po | 42 +++++++-------- argonaut/locale/es_VE/fusiondirectory.po | 42 +++++++-------- argonaut/locale/fa_IR/fusiondirectory.po | 42 +++++++-------- argonaut/locale/fi_FI/fusiondirectory.po | 46 ++++++++--------- argonaut/locale/fr/fusiondirectory.po | 42 +++++++-------- argonaut/locale/hu_HU/fusiondirectory.po | 42 +++++++-------- argonaut/locale/id/fusiondirectory.po | 42 +++++++-------- argonaut/locale/it_IT/fusiondirectory.po | 46 ++++++++--------- argonaut/locale/lv/fusiondirectory.po | 42 +++++++-------- argonaut/locale/nb/fusiondirectory.po | 42 +++++++-------- argonaut/locale/nl/fusiondirectory.po | 42 +++++++-------- argonaut/locale/pl/fusiondirectory.po | 42 +++++++-------- argonaut/locale/pt/fusiondirectory.po | 42 +++++++-------- argonaut/locale/pt_BR/fusiondirectory.po | 42 +++++++-------- argonaut/locale/ru/fusiondirectory.po | 42 +++++++-------- .../locale/ru@petr1708/fusiondirectory.po | 42 +++++++-------- argonaut/locale/sv/fusiondirectory.po | 42 +++++++-------- argonaut/locale/ug/fusiondirectory.po | 42 +++++++-------- argonaut/locale/vi_VN/fusiondirectory.po | 42 +++++++-------- argonaut/locale/zh/fusiondirectory.po | 42 +++++++-------- audit/locale/ar/fusiondirectory.po | 2 +- audit/locale/ca/fusiondirectory.po | 2 +- audit/locale/cs_CZ/fusiondirectory.po | 2 +- audit/locale/de/fusiondirectory.po | 2 +- audit/locale/el_GR/fusiondirectory.po | 2 +- audit/locale/en/fusiondirectory.po | 2 +- audit/locale/es/fusiondirectory.po | 2 +- audit/locale/es_CO/fusiondirectory.po | 2 +- audit/locale/es_VE/fusiondirectory.po | 2 +- audit/locale/fa_IR/fusiondirectory.po | 2 +- audit/locale/fi_FI/fusiondirectory.po | 3 +- audit/locale/fr/fusiondirectory.po | 2 +- audit/locale/hu_HU/fusiondirectory.po | 2 +- audit/locale/id/fusiondirectory.po | 2 +- audit/locale/it_IT/fusiondirectory.po | 2 +- audit/locale/lv/fusiondirectory.po | 2 +- audit/locale/nb/fusiondirectory.po | 2 +- audit/locale/nl/fusiondirectory.po | 2 +- audit/locale/pl/fusiondirectory.po | 2 +- audit/locale/pt/fusiondirectory.po | 2 +- audit/locale/pt_BR/fusiondirectory.po | 2 +- audit/locale/ru/fusiondirectory.po | 2 +- audit/locale/ru@petr1708/fusiondirectory.po | 2 +- audit/locale/sv/fusiondirectory.po | 2 +- audit/locale/ug/fusiondirectory.po | 2 +- audit/locale/vi_VN/fusiondirectory.po | 2 +- audit/locale/zh/fusiondirectory.po | 2 +- autofs/locale/ar/fusiondirectory.po | 2 +- autofs/locale/ca/fusiondirectory.po | 2 +- autofs/locale/cs_CZ/fusiondirectory.po | 2 +- autofs/locale/de/fusiondirectory.po | 2 +- autofs/locale/el_GR/fusiondirectory.po | 2 +- autofs/locale/en/fusiondirectory.po | 2 +- autofs/locale/es/fusiondirectory.po | 2 +- autofs/locale/es_CO/fusiondirectory.po | 2 +- autofs/locale/es_VE/fusiondirectory.po | 2 +- autofs/locale/fa_IR/fusiondirectory.po | 2 +- autofs/locale/fi_FI/fusiondirectory.po | 2 +- autofs/locale/fr/fusiondirectory.po | 2 +- autofs/locale/hu_HU/fusiondirectory.po | 2 +- autofs/locale/id/fusiondirectory.po | 2 +- autofs/locale/it_IT/fusiondirectory.po | 7 +-- autofs/locale/lv/fusiondirectory.po | 2 +- autofs/locale/nb/fusiondirectory.po | 2 +- autofs/locale/nl/fusiondirectory.po | 2 +- autofs/locale/pl/fusiondirectory.po | 2 +- autofs/locale/pt/fusiondirectory.po | 2 +- autofs/locale/pt_BR/fusiondirectory.po | 2 +- autofs/locale/ru/fusiondirectory.po | 2 +- autofs/locale/ru@petr1708/fusiondirectory.po | 2 +- autofs/locale/sv/fusiondirectory.po | 2 +- autofs/locale/ug/fusiondirectory.po | 2 +- autofs/locale/vi_VN/fusiondirectory.po | 2 +- autofs/locale/zh/fusiondirectory.po | 2 +- certificates/locale/ar/fusiondirectory.po | 2 +- certificates/locale/ca/fusiondirectory.po | 2 +- certificates/locale/cs_CZ/fusiondirectory.po | 2 +- certificates/locale/de/fusiondirectory.po | 2 +- certificates/locale/el_GR/fusiondirectory.po | 2 +- certificates/locale/en/fusiondirectory.po | 2 +- certificates/locale/es/fusiondirectory.po | 2 +- certificates/locale/es_CO/fusiondirectory.po | 2 +- certificates/locale/es_VE/fusiondirectory.po | 2 +- certificates/locale/fa_IR/fusiondirectory.po | 2 +- certificates/locale/fi_FI/fusiondirectory.po | 2 +- certificates/locale/fr/fusiondirectory.po | 2 +- certificates/locale/hu_HU/fusiondirectory.po | 2 +- certificates/locale/id/fusiondirectory.po | 2 +- certificates/locale/it_IT/fusiondirectory.po | 7 +-- certificates/locale/lv/fusiondirectory.po | 2 +- certificates/locale/nb/fusiondirectory.po | 2 +- certificates/locale/nl/fusiondirectory.po | 2 +- certificates/locale/pl/fusiondirectory.po | 2 +- certificates/locale/pt/fusiondirectory.po | 2 +- certificates/locale/pt_BR/fusiondirectory.po | 2 +- certificates/locale/ru/fusiondirectory.po | 4 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- certificates/locale/sv/fusiondirectory.po | 2 +- certificates/locale/ug/fusiondirectory.po | 2 +- certificates/locale/vi_VN/fusiondirectory.po | 2 +- certificates/locale/zh/fusiondirectory.po | 2 +- community/locale/ar/fusiondirectory.po | 2 +- community/locale/ca/fusiondirectory.po | 2 +- community/locale/cs_CZ/fusiondirectory.po | 2 +- community/locale/de/fusiondirectory.po | 2 +- community/locale/el_GR/fusiondirectory.po | 2 +- community/locale/en/fusiondirectory.po | 2 +- community/locale/es/fusiondirectory.po | 2 +- community/locale/es_CO/fusiondirectory.po | 2 +- community/locale/es_VE/fusiondirectory.po | 2 +- community/locale/fa_IR/fusiondirectory.po | 2 +- community/locale/fi_FI/fusiondirectory.po | 2 +- community/locale/fr/fusiondirectory.po | 2 +- community/locale/hu_HU/fusiondirectory.po | 2 +- community/locale/id/fusiondirectory.po | 2 +- community/locale/it_IT/fusiondirectory.po | 2 +- community/locale/lv/fusiondirectory.po | 2 +- community/locale/nb/fusiondirectory.po | 2 +- community/locale/nl/fusiondirectory.po | 2 +- community/locale/pl/fusiondirectory.po | 2 +- community/locale/pt/fusiondirectory.po | 2 +- community/locale/pt_BR/fusiondirectory.po | 2 +- community/locale/ru/fusiondirectory.po | 3 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- community/locale/sv/fusiondirectory.po | 2 +- community/locale/ug/fusiondirectory.po | 2 +- community/locale/vi_VN/fusiondirectory.po | 2 +- community/locale/zh/fusiondirectory.po | 2 +- cyrus/locale/ar/fusiondirectory.po | 2 +- cyrus/locale/ca/fusiondirectory.po | 2 +- cyrus/locale/cs_CZ/fusiondirectory.po | 2 +- cyrus/locale/de/fusiondirectory.po | 2 +- cyrus/locale/el_GR/fusiondirectory.po | 2 +- cyrus/locale/en/fusiondirectory.po | 2 +- cyrus/locale/es/fusiondirectory.po | 2 +- cyrus/locale/es_CO/fusiondirectory.po | 2 +- cyrus/locale/es_VE/fusiondirectory.po | 2 +- cyrus/locale/fa_IR/fusiondirectory.po | 2 +- cyrus/locale/fi_FI/fusiondirectory.po | 2 +- cyrus/locale/fr/fusiondirectory.po | 2 +- cyrus/locale/hu_HU/fusiondirectory.po | 2 +- cyrus/locale/id/fusiondirectory.po | 2 +- cyrus/locale/it_IT/fusiondirectory.po | 7 +-- cyrus/locale/lv/fusiondirectory.po | 2 +- cyrus/locale/nb/fusiondirectory.po | 2 +- cyrus/locale/nl/fusiondirectory.po | 2 +- cyrus/locale/pl/fusiondirectory.po | 2 +- cyrus/locale/pt/fusiondirectory.po | 2 +- cyrus/locale/pt_BR/fusiondirectory.po | 2 +- cyrus/locale/ru/fusiondirectory.po | 2 +- cyrus/locale/ru@petr1708/fusiondirectory.po | 2 +- cyrus/locale/sv/fusiondirectory.po | 2 +- cyrus/locale/ug/fusiondirectory.po | 2 +- cyrus/locale/vi_VN/fusiondirectory.po | 2 +- cyrus/locale/zh/fusiondirectory.po | 2 +- debconf/locale/ar/fusiondirectory.po | 2 +- debconf/locale/ca/fusiondirectory.po | 2 +- debconf/locale/cs_CZ/fusiondirectory.po | 2 +- debconf/locale/de/fusiondirectory.po | 2 +- debconf/locale/el_GR/fusiondirectory.po | 2 +- debconf/locale/en/fusiondirectory.po | 2 +- debconf/locale/es/fusiondirectory.po | 2 +- debconf/locale/es_CO/fusiondirectory.po | 2 +- debconf/locale/es_VE/fusiondirectory.po | 2 +- debconf/locale/fa_IR/fusiondirectory.po | 2 +- debconf/locale/fi_FI/fusiondirectory.po | 2 +- debconf/locale/fr/fusiondirectory.po | 2 +- debconf/locale/hu_HU/fusiondirectory.po | 2 +- debconf/locale/id/fusiondirectory.po | 2 +- debconf/locale/it_IT/fusiondirectory.po | 3 +- debconf/locale/lv/fusiondirectory.po | 2 +- debconf/locale/nb/fusiondirectory.po | 2 +- debconf/locale/nl/fusiondirectory.po | 2 +- debconf/locale/pl/fusiondirectory.po | 2 +- debconf/locale/pt/fusiondirectory.po | 2 +- debconf/locale/pt_BR/fusiondirectory.po | 2 +- debconf/locale/ru/fusiondirectory.po | 2 +- debconf/locale/ru@petr1708/fusiondirectory.po | 2 +- debconf/locale/sv/fusiondirectory.po | 2 +- debconf/locale/ug/fusiondirectory.po | 2 +- debconf/locale/vi_VN/fusiondirectory.po | 2 +- debconf/locale/zh/fusiondirectory.po | 2 +- developers/locale/ar/fusiondirectory.po | 2 +- developers/locale/ca/fusiondirectory.po | 2 +- developers/locale/cs_CZ/fusiondirectory.po | 2 +- developers/locale/de/fusiondirectory.po | 2 +- developers/locale/el_GR/fusiondirectory.po | 2 +- developers/locale/en/fusiondirectory.po | 2 +- developers/locale/es/fusiondirectory.po | 2 +- developers/locale/es_CO/fusiondirectory.po | 2 +- developers/locale/es_VE/fusiondirectory.po | 2 +- developers/locale/fa_IR/fusiondirectory.po | 2 +- developers/locale/fi_FI/fusiondirectory.po | 2 +- developers/locale/fr/fusiondirectory.po | 2 +- developers/locale/hu_HU/fusiondirectory.po | 2 +- developers/locale/id/fusiondirectory.po | 2 +- developers/locale/it_IT/fusiondirectory.po | 3 +- developers/locale/lv/fusiondirectory.po | 2 +- developers/locale/nb/fusiondirectory.po | 2 +- developers/locale/nl/fusiondirectory.po | 2 +- developers/locale/pl/fusiondirectory.po | 2 +- developers/locale/pt/fusiondirectory.po | 2 +- developers/locale/pt_BR/fusiondirectory.po | 2 +- developers/locale/ru/fusiondirectory.po | 4 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- developers/locale/sv/fusiondirectory.po | 2 +- developers/locale/ug/fusiondirectory.po | 2 +- developers/locale/vi_VN/fusiondirectory.po | 2 +- developers/locale/zh/fusiondirectory.po | 2 +- dhcp/locale/ar/fusiondirectory.po | 2 +- dhcp/locale/ca/fusiondirectory.po | 2 +- dhcp/locale/cs_CZ/fusiondirectory.po | 2 +- dhcp/locale/de/fusiondirectory.po | 2 +- dhcp/locale/el_GR/fusiondirectory.po | 2 +- dhcp/locale/en/fusiondirectory.po | 2 +- dhcp/locale/es/fusiondirectory.po | 2 +- dhcp/locale/es_CO/fusiondirectory.po | 2 +- dhcp/locale/es_VE/fusiondirectory.po | 2 +- dhcp/locale/fa_IR/fusiondirectory.po | 2 +- dhcp/locale/fi_FI/fusiondirectory.po | 6 +-- dhcp/locale/fr/fusiondirectory.po | 2 +- dhcp/locale/hu_HU/fusiondirectory.po | 2 +- dhcp/locale/id/fusiondirectory.po | 2 +- dhcp/locale/it_IT/fusiondirectory.po | 7 +-- dhcp/locale/lv/fusiondirectory.po | 2 +- dhcp/locale/nb/fusiondirectory.po | 2 +- dhcp/locale/nl/fusiondirectory.po | 2 +- dhcp/locale/pl/fusiondirectory.po | 2 +- dhcp/locale/pt/fusiondirectory.po | 2 +- dhcp/locale/pt_BR/fusiondirectory.po | 2 +- dhcp/locale/ru/fusiondirectory.po | 2 +- dhcp/locale/ru@petr1708/fusiondirectory.po | 2 +- dhcp/locale/sv/fusiondirectory.po | 2 +- dhcp/locale/ug/fusiondirectory.po | 2 +- dhcp/locale/vi_VN/fusiondirectory.po | 2 +- dhcp/locale/zh/fusiondirectory.po | 2 +- dns/locale/ar/fusiondirectory.po | 2 +- dns/locale/ca/fusiondirectory.po | 2 +- dns/locale/cs_CZ/fusiondirectory.po | 2 +- dns/locale/de/fusiondirectory.po | 2 +- dns/locale/el_GR/fusiondirectory.po | 2 +- dns/locale/en/fusiondirectory.po | 2 +- dns/locale/es/fusiondirectory.po | 2 +- dns/locale/es_CO/fusiondirectory.po | 2 +- dns/locale/es_VE/fusiondirectory.po | 2 +- dns/locale/fa_IR/fusiondirectory.po | 2 +- dns/locale/fi_FI/fusiondirectory.po | 2 +- dns/locale/fr/fusiondirectory.po | 2 +- dns/locale/hu_HU/fusiondirectory.po | 2 +- dns/locale/id/fusiondirectory.po | 2 +- dns/locale/it_IT/fusiondirectory.po | 6 +-- dns/locale/lv/fusiondirectory.po | 2 +- dns/locale/nb/fusiondirectory.po | 2 +- dns/locale/nl/fusiondirectory.po | 2 +- dns/locale/pl/fusiondirectory.po | 2 +- dns/locale/pt/fusiondirectory.po | 2 +- dns/locale/pt_BR/fusiondirectory.po | 2 +- dns/locale/ru/fusiondirectory.po | 4 +- dns/locale/ru@petr1708/fusiondirectory.po | 2 +- dns/locale/sv/fusiondirectory.po | 2 +- dns/locale/ug/fusiondirectory.po | 2 +- dns/locale/vi_VN/fusiondirectory.po | 2 +- dns/locale/zh/fusiondirectory.po | 2 +- dovecot/locale/ar/fusiondirectory.po | 2 +- dovecot/locale/ca/fusiondirectory.po | 2 +- dovecot/locale/cs_CZ/fusiondirectory.po | 2 +- dovecot/locale/de/fusiondirectory.po | 2 +- dovecot/locale/el_GR/fusiondirectory.po | 2 +- dovecot/locale/en/fusiondirectory.po | 2 +- dovecot/locale/es/fusiondirectory.po | 2 +- dovecot/locale/es_CO/fusiondirectory.po | 2 +- dovecot/locale/es_VE/fusiondirectory.po | 2 +- dovecot/locale/fa_IR/fusiondirectory.po | 2 +- dovecot/locale/fi_FI/fusiondirectory.po | 2 +- dovecot/locale/fr/fusiondirectory.po | 2 +- dovecot/locale/hu_HU/fusiondirectory.po | 2 +- dovecot/locale/id/fusiondirectory.po | 2 +- dovecot/locale/it_IT/fusiondirectory.po | 2 +- dovecot/locale/lv/fusiondirectory.po | 2 +- dovecot/locale/nb/fusiondirectory.po | 2 +- dovecot/locale/nl/fusiondirectory.po | 2 +- dovecot/locale/pl/fusiondirectory.po | 2 +- dovecot/locale/pt/fusiondirectory.po | 2 +- dovecot/locale/pt_BR/fusiondirectory.po | 2 +- dovecot/locale/ru/fusiondirectory.po | 2 +- dovecot/locale/ru@petr1708/fusiondirectory.po | 2 +- dovecot/locale/sv/fusiondirectory.po | 2 +- dovecot/locale/ug/fusiondirectory.po | 2 +- dovecot/locale/vi_VN/fusiondirectory.po | 2 +- dovecot/locale/zh/fusiondirectory.po | 2 +- dsa/locale/ar/fusiondirectory.po | 2 +- dsa/locale/ca/fusiondirectory.po | 2 +- dsa/locale/cs_CZ/fusiondirectory.po | 2 +- dsa/locale/de/fusiondirectory.po | 2 +- dsa/locale/el_GR/fusiondirectory.po | 2 +- dsa/locale/en/fusiondirectory.po | 2 +- dsa/locale/es/fusiondirectory.po | 2 +- dsa/locale/es_CO/fusiondirectory.po | 2 +- dsa/locale/es_VE/fusiondirectory.po | 2 +- dsa/locale/fa_IR/fusiondirectory.po | 2 +- dsa/locale/fi_FI/fusiondirectory.po | 2 +- dsa/locale/fr/fusiondirectory.po | 2 +- dsa/locale/hu_HU/fusiondirectory.po | 2 +- dsa/locale/id/fusiondirectory.po | 2 +- dsa/locale/it_IT/fusiondirectory.po | 5 +- dsa/locale/lv/fusiondirectory.po | 2 +- dsa/locale/nb/fusiondirectory.po | 2 +- dsa/locale/nl/fusiondirectory.po | 2 +- dsa/locale/pl/fusiondirectory.po | 2 +- dsa/locale/pt/fusiondirectory.po | 2 +- dsa/locale/pt_BR/fusiondirectory.po | 2 +- dsa/locale/ru/fusiondirectory.po | 2 +- dsa/locale/ru@petr1708/fusiondirectory.po | 2 +- dsa/locale/sv/fusiondirectory.po | 2 +- dsa/locale/ug/fusiondirectory.po | 2 +- dsa/locale/vi_VN/fusiondirectory.po | 2 +- dsa/locale/zh/fusiondirectory.po | 2 +- ejbca/locale/ar/fusiondirectory.po | 2 +- ejbca/locale/ca/fusiondirectory.po | 2 +- ejbca/locale/cs_CZ/fusiondirectory.po | 2 +- ejbca/locale/de/fusiondirectory.po | 2 +- ejbca/locale/el_GR/fusiondirectory.po | 2 +- ejbca/locale/en/fusiondirectory.po | 2 +- ejbca/locale/es/fusiondirectory.po | 2 +- ejbca/locale/es_CO/fusiondirectory.po | 2 +- ejbca/locale/es_VE/fusiondirectory.po | 2 +- ejbca/locale/fa_IR/fusiondirectory.po | 2 +- ejbca/locale/fi_FI/fusiondirectory.po | 2 +- ejbca/locale/fr/fusiondirectory.po | 2 +- ejbca/locale/hu_HU/fusiondirectory.po | 2 +- ejbca/locale/id/fusiondirectory.po | 2 +- ejbca/locale/it_IT/fusiondirectory.po | 2 +- ejbca/locale/lv/fusiondirectory.po | 2 +- ejbca/locale/nb/fusiondirectory.po | 2 +- ejbca/locale/nl/fusiondirectory.po | 2 +- ejbca/locale/pl/fusiondirectory.po | 2 +- ejbca/locale/pt/fusiondirectory.po | 2 +- ejbca/locale/pt_BR/fusiondirectory.po | 2 +- ejbca/locale/ru/fusiondirectory.po | 2 +- ejbca/locale/ru@petr1708/fusiondirectory.po | 2 +- ejbca/locale/sv/fusiondirectory.po | 2 +- ejbca/locale/ug/fusiondirectory.po | 2 +- ejbca/locale/vi_VN/fusiondirectory.po | 2 +- ejbca/locale/zh/fusiondirectory.po | 2 +- fai/locale/ar/fusiondirectory.po | 2 +- fai/locale/ca/fusiondirectory.po | 2 +- fai/locale/cs_CZ/fusiondirectory.po | 2 +- fai/locale/de/fusiondirectory.po | 2 +- fai/locale/el_GR/fusiondirectory.po | 2 +- fai/locale/en/fusiondirectory.po | 2 +- fai/locale/es/fusiondirectory.po | 2 +- fai/locale/es_CO/fusiondirectory.po | 2 +- fai/locale/es_VE/fusiondirectory.po | 2 +- fai/locale/fa_IR/fusiondirectory.po | 2 +- fai/locale/fi_FI/fusiondirectory.po | 6 +-- fai/locale/fr/fusiondirectory.po | 2 +- fai/locale/hu_HU/fusiondirectory.po | 2 +- fai/locale/id/fusiondirectory.po | 2 +- fai/locale/it_IT/fusiondirectory.po | 2 +- fai/locale/lv/fusiondirectory.po | 2 +- fai/locale/nb/fusiondirectory.po | 2 +- fai/locale/nl/fusiondirectory.po | 2 +- fai/locale/pl/fusiondirectory.po | 2 +- fai/locale/pt/fusiondirectory.po | 2 +- fai/locale/pt_BR/fusiondirectory.po | 2 +- fai/locale/ru/fusiondirectory.po | 2 +- fai/locale/ru@petr1708/fusiondirectory.po | 2 +- fai/locale/sv/fusiondirectory.po | 2 +- fai/locale/ug/fusiondirectory.po | 2 +- fai/locale/vi_VN/fusiondirectory.po | 2 +- fai/locale/zh/fusiondirectory.po | 2 +- freeradius/locale/ar/fusiondirectory.po | 2 +- freeradius/locale/ca/fusiondirectory.po | 2 +- freeradius/locale/cs_CZ/fusiondirectory.po | 2 +- freeradius/locale/de/fusiondirectory.po | 2 +- freeradius/locale/el_GR/fusiondirectory.po | 2 +- freeradius/locale/en/fusiondirectory.po | 2 +- freeradius/locale/es/fusiondirectory.po | 2 +- freeradius/locale/es_CO/fusiondirectory.po | 2 +- freeradius/locale/es_VE/fusiondirectory.po | 2 +- freeradius/locale/fa_IR/fusiondirectory.po | 2 +- freeradius/locale/fi_FI/fusiondirectory.po | 2 +- freeradius/locale/fr/fusiondirectory.po | 2 +- freeradius/locale/hu_HU/fusiondirectory.po | 2 +- freeradius/locale/id/fusiondirectory.po | 2 +- freeradius/locale/it_IT/fusiondirectory.po | 3 +- freeradius/locale/lv/fusiondirectory.po | 2 +- freeradius/locale/nb/fusiondirectory.po | 2 +- freeradius/locale/nl/fusiondirectory.po | 2 +- freeradius/locale/pl/fusiondirectory.po | 2 +- freeradius/locale/pt/fusiondirectory.po | 2 +- freeradius/locale/pt_BR/fusiondirectory.po | 2 +- freeradius/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- freeradius/locale/sv/fusiondirectory.po | 2 +- freeradius/locale/ug/fusiondirectory.po | 2 +- freeradius/locale/vi_VN/fusiondirectory.po | 2 +- freeradius/locale/zh/fusiondirectory.po | 2 +- fusioninventory/locale/ar/fusiondirectory.po | 2 +- fusioninventory/locale/ca/fusiondirectory.po | 2 +- .../locale/cs_CZ/fusiondirectory.po | 2 +- fusioninventory/locale/de/fusiondirectory.po | 2 +- .../locale/el_GR/fusiondirectory.po | 2 +- fusioninventory/locale/en/fusiondirectory.po | 2 +- fusioninventory/locale/es/fusiondirectory.po | 2 +- .../locale/es_CO/fusiondirectory.po | 2 +- .../locale/es_VE/fusiondirectory.po | 2 +- .../locale/fa_IR/fusiondirectory.po | 2 +- .../locale/fi_FI/fusiondirectory.po | 6 +-- fusioninventory/locale/fr/fusiondirectory.po | 2 +- .../locale/hu_HU/fusiondirectory.po | 2 +- fusioninventory/locale/id/fusiondirectory.po | 2 +- .../locale/it_IT/fusiondirectory.po | 2 +- fusioninventory/locale/lv/fusiondirectory.po | 2 +- fusioninventory/locale/nb/fusiondirectory.po | 2 +- fusioninventory/locale/nl/fusiondirectory.po | 2 +- fusioninventory/locale/pl/fusiondirectory.po | 2 +- fusioninventory/locale/pt/fusiondirectory.po | 2 +- .../locale/pt_BR/fusiondirectory.po | 2 +- fusioninventory/locale/ru/fusiondirectory.po | 6 +-- .../locale/ru@petr1708/fusiondirectory.po | 2 +- fusioninventory/locale/sv/fusiondirectory.po | 2 +- fusioninventory/locale/ug/fusiondirectory.po | 2 +- .../locale/vi_VN/fusiondirectory.po | 2 +- fusioninventory/locale/zh/fusiondirectory.po | 2 +- gpg/locale/ar/fusiondirectory.po | 26 +++++----- gpg/locale/ca/fusiondirectory.po | 26 +++++----- gpg/locale/cs_CZ/fusiondirectory.po | 26 +++++----- gpg/locale/de/fusiondirectory.po | 26 +++++----- gpg/locale/el_GR/fusiondirectory.po | 26 +++++----- gpg/locale/en/fusiondirectory.po | 26 +++++----- gpg/locale/es/fusiondirectory.po | 26 +++++----- gpg/locale/es_CO/fusiondirectory.po | 26 +++++----- gpg/locale/es_VE/fusiondirectory.po | 26 +++++----- gpg/locale/fa_IR/fusiondirectory.po | 26 +++++----- gpg/locale/fi_FI/fusiondirectory.po | 26 +++++----- gpg/locale/fr/fusiondirectory.po | 26 +++++----- gpg/locale/hu_HU/fusiondirectory.po | 26 +++++----- gpg/locale/id/fusiondirectory.po | 26 +++++----- gpg/locale/it_IT/fusiondirectory.po | 27 +++++----- gpg/locale/lv/fusiondirectory.po | 26 +++++----- gpg/locale/nb/fusiondirectory.po | 26 +++++----- gpg/locale/nl/fusiondirectory.po | 26 +++++----- gpg/locale/pl/fusiondirectory.po | 26 +++++----- gpg/locale/pt/fusiondirectory.po | 26 +++++----- gpg/locale/pt_BR/fusiondirectory.po | 26 +++++----- gpg/locale/ru/fusiondirectory.po | 36 ++++++------- gpg/locale/ru@petr1708/fusiondirectory.po | 26 +++++----- gpg/locale/sv/fusiondirectory.po | 26 +++++----- gpg/locale/ug/fusiondirectory.po | 26 +++++----- gpg/locale/vi_VN/fusiondirectory.po | 26 +++++----- gpg/locale/zh/fusiondirectory.po | 26 +++++----- ipmi/locale/ar/fusiondirectory.po | 2 +- ipmi/locale/ca/fusiondirectory.po | 2 +- ipmi/locale/cs_CZ/fusiondirectory.po | 2 +- ipmi/locale/de/fusiondirectory.po | 2 +- ipmi/locale/el_GR/fusiondirectory.po | 2 +- ipmi/locale/en/fusiondirectory.po | 2 +- ipmi/locale/es/fusiondirectory.po | 2 +- ipmi/locale/es_CO/fusiondirectory.po | 2 +- ipmi/locale/es_VE/fusiondirectory.po | 2 +- ipmi/locale/fa_IR/fusiondirectory.po | 2 +- ipmi/locale/fi_FI/fusiondirectory.po | 2 +- ipmi/locale/fr/fusiondirectory.po | 2 +- ipmi/locale/hu_HU/fusiondirectory.po | 2 +- ipmi/locale/id/fusiondirectory.po | 2 +- ipmi/locale/it_IT/fusiondirectory.po | 3 +- ipmi/locale/lv/fusiondirectory.po | 2 +- ipmi/locale/nb/fusiondirectory.po | 2 +- ipmi/locale/nl/fusiondirectory.po | 2 +- ipmi/locale/pl/fusiondirectory.po | 2 +- ipmi/locale/pt/fusiondirectory.po | 2 +- ipmi/locale/pt_BR/fusiondirectory.po | 2 +- ipmi/locale/ru/fusiondirectory.po | 2 +- ipmi/locale/ru@petr1708/fusiondirectory.po | 2 +- ipmi/locale/sv/fusiondirectory.po | 2 +- ipmi/locale/ug/fusiondirectory.po | 2 +- ipmi/locale/vi_VN/fusiondirectory.po | 2 +- ipmi/locale/zh/fusiondirectory.po | 2 +- kolab2/locale/ar/fusiondirectory.po | 2 +- kolab2/locale/ca/fusiondirectory.po | 2 +- kolab2/locale/cs_CZ/fusiondirectory.po | 2 +- kolab2/locale/de/fusiondirectory.po | 2 +- kolab2/locale/el_GR/fusiondirectory.po | 2 +- kolab2/locale/en/fusiondirectory.po | 2 +- kolab2/locale/es/fusiondirectory.po | 2 +- kolab2/locale/es_CO/fusiondirectory.po | 2 +- kolab2/locale/es_VE/fusiondirectory.po | 2 +- kolab2/locale/fa_IR/fusiondirectory.po | 2 +- kolab2/locale/fi_FI/fusiondirectory.po | 2 +- kolab2/locale/fr/fusiondirectory.po | 2 +- kolab2/locale/hu_HU/fusiondirectory.po | 2 +- kolab2/locale/id/fusiondirectory.po | 2 +- kolab2/locale/it_IT/fusiondirectory.po | 3 +- kolab2/locale/lv/fusiondirectory.po | 2 +- kolab2/locale/nb/fusiondirectory.po | 2 +- kolab2/locale/nl/fusiondirectory.po | 2 +- kolab2/locale/pl/fusiondirectory.po | 2 +- kolab2/locale/pt/fusiondirectory.po | 2 +- kolab2/locale/pt_BR/fusiondirectory.po | 2 +- kolab2/locale/ru/fusiondirectory.po | 2 +- kolab2/locale/ru@petr1708/fusiondirectory.po | 2 +- kolab2/locale/sv/fusiondirectory.po | 2 +- kolab2/locale/ug/fusiondirectory.po | 2 +- kolab2/locale/vi_VN/fusiondirectory.po | 2 +- kolab2/locale/zh/fusiondirectory.po | 2 +- ldapdump/locale/ar/fusiondirectory.po | 2 +- ldapdump/locale/ca/fusiondirectory.po | 2 +- ldapdump/locale/cs_CZ/fusiondirectory.po | 2 +- ldapdump/locale/de/fusiondirectory.po | 2 +- ldapdump/locale/el_GR/fusiondirectory.po | 3 +- ldapdump/locale/en/fusiondirectory.po | 2 +- ldapdump/locale/es/fusiondirectory.po | 2 +- ldapdump/locale/es_CO/fusiondirectory.po | 2 +- ldapdump/locale/es_VE/fusiondirectory.po | 2 +- ldapdump/locale/fa_IR/fusiondirectory.po | 2 +- ldapdump/locale/fi_FI/fusiondirectory.po | 2 +- ldapdump/locale/fr/fusiondirectory.po | 2 +- ldapdump/locale/hu_HU/fusiondirectory.po | 2 +- ldapdump/locale/id/fusiondirectory.po | 2 +- ldapdump/locale/it_IT/fusiondirectory.po | 3 +- ldapdump/locale/lv/fusiondirectory.po | 2 +- ldapdump/locale/nb/fusiondirectory.po | 2 +- ldapdump/locale/nl/fusiondirectory.po | 2 +- ldapdump/locale/pl/fusiondirectory.po | 2 +- ldapdump/locale/pt/fusiondirectory.po | 2 +- ldapdump/locale/pt_BR/fusiondirectory.po | 2 +- ldapdump/locale/ru/fusiondirectory.po | 10 ++-- .../locale/ru@petr1708/fusiondirectory.po | 2 +- ldapdump/locale/sv/fusiondirectory.po | 2 +- ldapdump/locale/ug/fusiondirectory.po | 2 +- ldapdump/locale/vi_VN/fusiondirectory.po | 2 +- ldapdump/locale/zh/fusiondirectory.po | 2 +- ldapmanager/locale/ar/fusiondirectory.po | 2 +- ldapmanager/locale/ca/fusiondirectory.po | 2 +- ldapmanager/locale/cs_CZ/fusiondirectory.po | 2 +- ldapmanager/locale/de/fusiondirectory.po | 2 +- ldapmanager/locale/el_GR/fusiondirectory.po | 2 +- ldapmanager/locale/en/fusiondirectory.po | 2 +- ldapmanager/locale/es/fusiondirectory.po | 2 +- ldapmanager/locale/es_CO/fusiondirectory.po | 2 +- ldapmanager/locale/es_VE/fusiondirectory.po | 2 +- ldapmanager/locale/fa_IR/fusiondirectory.po | 2 +- ldapmanager/locale/fi_FI/fusiondirectory.po | 2 +- ldapmanager/locale/fr/fusiondirectory.po | 2 +- ldapmanager/locale/hu_HU/fusiondirectory.po | 2 +- ldapmanager/locale/id/fusiondirectory.po | 2 +- ldapmanager/locale/it_IT/fusiondirectory.po | 2 +- ldapmanager/locale/lv/fusiondirectory.po | 2 +- ldapmanager/locale/nb/fusiondirectory.po | 2 +- ldapmanager/locale/nl/fusiondirectory.po | 2 +- ldapmanager/locale/pl/fusiondirectory.po | 2 +- ldapmanager/locale/pt/fusiondirectory.po | 2 +- ldapmanager/locale/pt_BR/fusiondirectory.po | 2 +- ldapmanager/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- ldapmanager/locale/sv/fusiondirectory.po | 2 +- ldapmanager/locale/ug/fusiondirectory.po | 2 +- ldapmanager/locale/vi_VN/fusiondirectory.po | 2 +- ldapmanager/locale/zh/fusiondirectory.po | 2 +- mail/locale/ar/fusiondirectory.po | 2 +- mail/locale/ca/fusiondirectory.po | 2 +- mail/locale/cs_CZ/fusiondirectory.po | 2 +- mail/locale/de/fusiondirectory.po | 2 +- mail/locale/el_GR/fusiondirectory.po | 2 +- mail/locale/en/fusiondirectory.po | 2 +- mail/locale/es/fusiondirectory.po | 2 +- mail/locale/es_CO/fusiondirectory.po | 2 +- mail/locale/es_VE/fusiondirectory.po | 2 +- mail/locale/fa_IR/fusiondirectory.po | 2 +- mail/locale/fi_FI/fusiondirectory.po | 2 +- mail/locale/fr/fusiondirectory.po | 2 +- mail/locale/hu_HU/fusiondirectory.po | 2 +- mail/locale/id/fusiondirectory.po | 2 +- mail/locale/it_IT/fusiondirectory.po | 2 +- mail/locale/lv/fusiondirectory.po | 2 +- mail/locale/nb/fusiondirectory.po | 2 +- mail/locale/nl/fusiondirectory.po | 2 +- mail/locale/pl/fusiondirectory.po | 2 +- mail/locale/pt/fusiondirectory.po | 2 +- mail/locale/pt_BR/fusiondirectory.po | 2 +- mail/locale/ru/fusiondirectory.po | 2 +- mail/locale/ru@petr1708/fusiondirectory.po | 2 +- mail/locale/sv/fusiondirectory.po | 2 +- mail/locale/ug/fusiondirectory.po | 2 +- mail/locale/vi_VN/fusiondirectory.po | 2 +- mail/locale/zh/fusiondirectory.po | 2 +- mixedgroups/locale/ar/fusiondirectory.po | 2 +- mixedgroups/locale/ca/fusiondirectory.po | 2 +- mixedgroups/locale/cs_CZ/fusiondirectory.po | 2 +- mixedgroups/locale/de/fusiondirectory.po | 2 +- mixedgroups/locale/el_GR/fusiondirectory.po | 2 +- mixedgroups/locale/en/fusiondirectory.po | 2 +- mixedgroups/locale/es/fusiondirectory.po | 2 +- mixedgroups/locale/es_CO/fusiondirectory.po | 2 +- mixedgroups/locale/es_VE/fusiondirectory.po | 2 +- mixedgroups/locale/fa_IR/fusiondirectory.po | 2 +- mixedgroups/locale/fi_FI/fusiondirectory.po | 4 +- mixedgroups/locale/fr/fusiondirectory.po | 2 +- mixedgroups/locale/hu_HU/fusiondirectory.po | 2 +- mixedgroups/locale/id/fusiondirectory.po | 2 +- mixedgroups/locale/it_IT/fusiondirectory.po | 3 +- mixedgroups/locale/lv/fusiondirectory.po | 2 +- mixedgroups/locale/nb/fusiondirectory.po | 2 +- mixedgroups/locale/nl/fusiondirectory.po | 2 +- mixedgroups/locale/pl/fusiondirectory.po | 2 +- mixedgroups/locale/pt/fusiondirectory.po | 2 +- mixedgroups/locale/pt_BR/fusiondirectory.po | 2 +- mixedgroups/locale/ru/fusiondirectory.po | 18 ++++--- .../locale/ru@petr1708/fusiondirectory.po | 2 +- mixedgroups/locale/sv/fusiondirectory.po | 2 +- mixedgroups/locale/ug/fusiondirectory.po | 2 +- mixedgroups/locale/vi_VN/fusiondirectory.po | 2 +- mixedgroups/locale/zh/fusiondirectory.po | 2 +- nagios/locale/ar/fusiondirectory.po | 2 +- nagios/locale/ca/fusiondirectory.po | 2 +- nagios/locale/cs_CZ/fusiondirectory.po | 2 +- nagios/locale/de/fusiondirectory.po | 2 +- nagios/locale/el_GR/fusiondirectory.po | 2 +- nagios/locale/en/fusiondirectory.po | 2 +- nagios/locale/es/fusiondirectory.po | 2 +- nagios/locale/es_CO/fusiondirectory.po | 2 +- nagios/locale/es_VE/fusiondirectory.po | 2 +- nagios/locale/fa_IR/fusiondirectory.po | 2 +- nagios/locale/fi_FI/fusiondirectory.po | 2 +- nagios/locale/fr/fusiondirectory.po | 2 +- nagios/locale/hu_HU/fusiondirectory.po | 2 +- nagios/locale/id/fusiondirectory.po | 2 +- nagios/locale/it_IT/fusiondirectory.po | 3 +- nagios/locale/lv/fusiondirectory.po | 2 +- nagios/locale/nb/fusiondirectory.po | 2 +- nagios/locale/nl/fusiondirectory.po | 2 +- nagios/locale/pl/fusiondirectory.po | 2 +- nagios/locale/pt/fusiondirectory.po | 2 +- nagios/locale/pt_BR/fusiondirectory.po | 2 +- nagios/locale/ru/fusiondirectory.po | 2 +- nagios/locale/ru@petr1708/fusiondirectory.po | 2 +- nagios/locale/sv/fusiondirectory.po | 2 +- nagios/locale/ug/fusiondirectory.po | 2 +- nagios/locale/vi_VN/fusiondirectory.po | 2 +- nagios/locale/zh/fusiondirectory.po | 2 +- netgroups/locale/ar/fusiondirectory.po | 2 +- netgroups/locale/ca/fusiondirectory.po | 2 +- netgroups/locale/cs_CZ/fusiondirectory.po | 2 +- netgroups/locale/de/fusiondirectory.po | 2 +- netgroups/locale/el_GR/fusiondirectory.po | 2 +- netgroups/locale/en/fusiondirectory.po | 2 +- netgroups/locale/es/fusiondirectory.po | 2 +- netgroups/locale/es_CO/fusiondirectory.po | 2 +- netgroups/locale/es_VE/fusiondirectory.po | 2 +- netgroups/locale/fa_IR/fusiondirectory.po | 2 +- netgroups/locale/fi_FI/fusiondirectory.po | 2 +- netgroups/locale/fr/fusiondirectory.po | 2 +- netgroups/locale/hu_HU/fusiondirectory.po | 2 +- netgroups/locale/id/fusiondirectory.po | 2 +- netgroups/locale/it_IT/fusiondirectory.po | 3 +- netgroups/locale/lv/fusiondirectory.po | 2 +- netgroups/locale/nb/fusiondirectory.po | 2 +- netgroups/locale/nl/fusiondirectory.po | 2 +- netgroups/locale/pl/fusiondirectory.po | 2 +- netgroups/locale/pt/fusiondirectory.po | 2 +- netgroups/locale/pt_BR/fusiondirectory.po | 2 +- netgroups/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- netgroups/locale/sv/fusiondirectory.po | 2 +- netgroups/locale/ug/fusiondirectory.po | 2 +- netgroups/locale/vi_VN/fusiondirectory.po | 2 +- netgroups/locale/zh/fusiondirectory.po | 2 +- newsletter/locale/ar/fusiondirectory.po | 2 +- newsletter/locale/ca/fusiondirectory.po | 2 +- newsletter/locale/cs_CZ/fusiondirectory.po | 2 +- newsletter/locale/de/fusiondirectory.po | 2 +- newsletter/locale/el_GR/fusiondirectory.po | 2 +- newsletter/locale/en/fusiondirectory.po | 2 +- newsletter/locale/es/fusiondirectory.po | 2 +- newsletter/locale/es_CO/fusiondirectory.po | 2 +- newsletter/locale/es_VE/fusiondirectory.po | 2 +- newsletter/locale/fa_IR/fusiondirectory.po | 2 +- newsletter/locale/fi_FI/fusiondirectory.po | 2 +- newsletter/locale/fr/fusiondirectory.po | 2 +- newsletter/locale/hu_HU/fusiondirectory.po | 2 +- newsletter/locale/id/fusiondirectory.po | 2 +- newsletter/locale/it_IT/fusiondirectory.po | 3 +- newsletter/locale/lv/fusiondirectory.po | 2 +- newsletter/locale/nb/fusiondirectory.po | 2 +- newsletter/locale/nl/fusiondirectory.po | 2 +- newsletter/locale/pl/fusiondirectory.po | 2 +- newsletter/locale/pt/fusiondirectory.po | 2 +- newsletter/locale/pt_BR/fusiondirectory.po | 2 +- newsletter/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- newsletter/locale/sv/fusiondirectory.po | 2 +- newsletter/locale/ug/fusiondirectory.po | 2 +- newsletter/locale/vi_VN/fusiondirectory.po | 2 +- newsletter/locale/zh/fusiondirectory.po | 2 +- opsi/locale/ar/fusiondirectory.po | 2 +- opsi/locale/ca/fusiondirectory.po | 2 +- opsi/locale/cs_CZ/fusiondirectory.po | 2 +- opsi/locale/de/fusiondirectory.po | 2 +- opsi/locale/el_GR/fusiondirectory.po | 2 +- opsi/locale/en/fusiondirectory.po | 2 +- opsi/locale/es/fusiondirectory.po | 2 +- opsi/locale/es_CO/fusiondirectory.po | 2 +- opsi/locale/es_VE/fusiondirectory.po | 2 +- opsi/locale/fa_IR/fusiondirectory.po | 2 +- opsi/locale/fi_FI/fusiondirectory.po | 2 +- opsi/locale/fr/fusiondirectory.po | 2 +- opsi/locale/hu_HU/fusiondirectory.po | 2 +- opsi/locale/id/fusiondirectory.po | 2 +- opsi/locale/it_IT/fusiondirectory.po | 3 +- opsi/locale/lv/fusiondirectory.po | 2 +- opsi/locale/nb/fusiondirectory.po | 2 +- opsi/locale/nl/fusiondirectory.po | 2 +- opsi/locale/pl/fusiondirectory.po | 2 +- opsi/locale/pt/fusiondirectory.po | 2 +- opsi/locale/pt_BR/fusiondirectory.po | 2 +- opsi/locale/ru/fusiondirectory.po | 2 +- opsi/locale/ru@petr1708/fusiondirectory.po | 2 +- opsi/locale/sv/fusiondirectory.po | 2 +- opsi/locale/ug/fusiondirectory.po | 2 +- opsi/locale/vi_VN/fusiondirectory.po | 2 +- opsi/locale/zh/fusiondirectory.po | 2 +- personal/locale/ar/fusiondirectory.po | 8 ++- personal/locale/ca/fusiondirectory.po | 8 ++- personal/locale/cs_CZ/fusiondirectory.po | 8 ++- personal/locale/de/fusiondirectory.po | 8 ++- personal/locale/el_GR/fusiondirectory.po | 9 +++- personal/locale/en/fusiondirectory.po | 6 ++- personal/locale/es/fusiondirectory.po | 8 ++- personal/locale/es_CO/fusiondirectory.po | 8 ++- personal/locale/es_VE/fusiondirectory.po | 8 ++- personal/locale/fa_IR/fusiondirectory.po | 8 ++- personal/locale/fi_FI/fusiondirectory.po | 10 ++-- personal/locale/fr/fusiondirectory.po | 8 ++- personal/locale/hu_HU/fusiondirectory.po | 8 ++- personal/locale/id/fusiondirectory.po | 8 ++- personal/locale/it_IT/fusiondirectory.po | 11 ++-- personal/locale/lv/fusiondirectory.po | 8 ++- personal/locale/nb/fusiondirectory.po | 8 ++- personal/locale/nl/fusiondirectory.po | 8 ++- personal/locale/pl/fusiondirectory.po | 8 ++- personal/locale/pt/fusiondirectory.po | 8 ++- personal/locale/pt_BR/fusiondirectory.po | 8 ++- personal/locale/ru/fusiondirectory.po | 21 +++++--- .../locale/ru@petr1708/fusiondirectory.po | 8 ++- personal/locale/sv/fusiondirectory.po | 8 ++- personal/locale/ug/fusiondirectory.po | 8 ++- personal/locale/vi_VN/fusiondirectory.po | 8 ++- personal/locale/zh/fusiondirectory.po | 8 ++- postfix/locale/ar/fusiondirectory.po | 2 +- postfix/locale/ca/fusiondirectory.po | 2 +- postfix/locale/cs_CZ/fusiondirectory.po | 2 +- postfix/locale/de/fusiondirectory.po | 2 +- postfix/locale/el_GR/fusiondirectory.po | 2 +- postfix/locale/en/fusiondirectory.po | 2 +- postfix/locale/es/fusiondirectory.po | 2 +- postfix/locale/es_CO/fusiondirectory.po | 2 +- postfix/locale/es_VE/fusiondirectory.po | 2 +- postfix/locale/fa_IR/fusiondirectory.po | 2 +- postfix/locale/fi_FI/fusiondirectory.po | 2 +- postfix/locale/fr/fusiondirectory.po | 2 +- postfix/locale/hu_HU/fusiondirectory.po | 2 +- postfix/locale/id/fusiondirectory.po | 2 +- postfix/locale/it_IT/fusiondirectory.po | 2 +- postfix/locale/lv/fusiondirectory.po | 2 +- postfix/locale/nb/fusiondirectory.po | 2 +- postfix/locale/nl/fusiondirectory.po | 2 +- postfix/locale/pl/fusiondirectory.po | 2 +- postfix/locale/pt/fusiondirectory.po | 2 +- postfix/locale/pt_BR/fusiondirectory.po | 2 +- postfix/locale/ru/fusiondirectory.po | 2 +- postfix/locale/ru@petr1708/fusiondirectory.po | 2 +- postfix/locale/sv/fusiondirectory.po | 2 +- postfix/locale/ug/fusiondirectory.po | 2 +- postfix/locale/vi_VN/fusiondirectory.po | 2 +- postfix/locale/zh/fusiondirectory.po | 2 +- ppolicy/locale/ar/fusiondirectory.po | 2 +- ppolicy/locale/ca/fusiondirectory.po | 2 +- ppolicy/locale/cs_CZ/fusiondirectory.po | 2 +- ppolicy/locale/de/fusiondirectory.po | 2 +- ppolicy/locale/el_GR/fusiondirectory.po | 3 +- ppolicy/locale/en/fusiondirectory.po | 2 +- ppolicy/locale/es/fusiondirectory.po | 2 +- ppolicy/locale/es_CO/fusiondirectory.po | 2 +- ppolicy/locale/es_VE/fusiondirectory.po | 2 +- ppolicy/locale/fa_IR/fusiondirectory.po | 2 +- ppolicy/locale/fi_FI/fusiondirectory.po | 2 +- ppolicy/locale/fr/fusiondirectory.po | 6 +-- ppolicy/locale/hu_HU/fusiondirectory.po | 2 +- ppolicy/locale/id/fusiondirectory.po | 2 +- ppolicy/locale/it_IT/fusiondirectory.po | 20 ++++---- ppolicy/locale/lv/fusiondirectory.po | 2 +- ppolicy/locale/nb/fusiondirectory.po | 2 +- ppolicy/locale/nl/fusiondirectory.po | 2 +- ppolicy/locale/pl/fusiondirectory.po | 2 +- ppolicy/locale/pt/fusiondirectory.po | 2 +- ppolicy/locale/pt_BR/fusiondirectory.po | 2 +- ppolicy/locale/ru/fusiondirectory.po | 2 +- ppolicy/locale/ru@petr1708/fusiondirectory.po | 2 +- ppolicy/locale/sv/fusiondirectory.po | 2 +- ppolicy/locale/ug/fusiondirectory.po | 2 +- ppolicy/locale/vi_VN/fusiondirectory.po | 2 +- ppolicy/locale/zh/fusiondirectory.po | 2 +- puppet/locale/ar/fusiondirectory.po | 2 +- puppet/locale/ca/fusiondirectory.po | 2 +- puppet/locale/cs_CZ/fusiondirectory.po | 2 +- puppet/locale/de/fusiondirectory.po | 2 +- puppet/locale/el_GR/fusiondirectory.po | 3 +- puppet/locale/en/fusiondirectory.po | 2 +- puppet/locale/es/fusiondirectory.po | 2 +- puppet/locale/es_CO/fusiondirectory.po | 2 +- puppet/locale/es_VE/fusiondirectory.po | 2 +- puppet/locale/fa_IR/fusiondirectory.po | 2 +- puppet/locale/fi_FI/fusiondirectory.po | 2 +- puppet/locale/fr/fusiondirectory.po | 2 +- puppet/locale/hu_HU/fusiondirectory.po | 2 +- puppet/locale/id/fusiondirectory.po | 2 +- puppet/locale/it_IT/fusiondirectory.po | 3 +- puppet/locale/lv/fusiondirectory.po | 2 +- puppet/locale/nb/fusiondirectory.po | 2 +- puppet/locale/nl/fusiondirectory.po | 2 +- puppet/locale/pl/fusiondirectory.po | 2 +- puppet/locale/pt/fusiondirectory.po | 2 +- puppet/locale/pt_BR/fusiondirectory.po | 2 +- puppet/locale/ru/fusiondirectory.po | 2 +- puppet/locale/ru@petr1708/fusiondirectory.po | 2 +- puppet/locale/sv/fusiondirectory.po | 2 +- puppet/locale/ug/fusiondirectory.po | 2 +- puppet/locale/vi_VN/fusiondirectory.po | 2 +- puppet/locale/zh/fusiondirectory.po | 2 +- pureftpd/locale/ar/fusiondirectory.po | 2 +- pureftpd/locale/ca/fusiondirectory.po | 2 +- pureftpd/locale/cs_CZ/fusiondirectory.po | 2 +- pureftpd/locale/de/fusiondirectory.po | 2 +- pureftpd/locale/el_GR/fusiondirectory.po | 2 +- pureftpd/locale/en/fusiondirectory.po | 2 +- pureftpd/locale/es/fusiondirectory.po | 2 +- pureftpd/locale/es_CO/fusiondirectory.po | 2 +- pureftpd/locale/es_VE/fusiondirectory.po | 2 +- pureftpd/locale/fa_IR/fusiondirectory.po | 2 +- pureftpd/locale/fi_FI/fusiondirectory.po | 2 +- pureftpd/locale/fr/fusiondirectory.po | 2 +- pureftpd/locale/hu_HU/fusiondirectory.po | 2 +- pureftpd/locale/id/fusiondirectory.po | 2 +- pureftpd/locale/it_IT/fusiondirectory.po | 3 +- pureftpd/locale/lv/fusiondirectory.po | 2 +- pureftpd/locale/nb/fusiondirectory.po | 2 +- pureftpd/locale/nl/fusiondirectory.po | 2 +- pureftpd/locale/pl/fusiondirectory.po | 2 +- pureftpd/locale/pt/fusiondirectory.po | 2 +- pureftpd/locale/pt_BR/fusiondirectory.po | 2 +- pureftpd/locale/ru/fusiondirectory.po | 18 ++++--- .../locale/ru@petr1708/fusiondirectory.po | 2 +- pureftpd/locale/sv/fusiondirectory.po | 2 +- pureftpd/locale/ug/fusiondirectory.po | 2 +- pureftpd/locale/vi_VN/fusiondirectory.po | 2 +- pureftpd/locale/zh/fusiondirectory.po | 2 +- quota/locale/ar/fusiondirectory.po | 2 +- quota/locale/ca/fusiondirectory.po | 2 +- quota/locale/cs_CZ/fusiondirectory.po | 2 +- quota/locale/de/fusiondirectory.po | 2 +- quota/locale/el_GR/fusiondirectory.po | 2 +- quota/locale/en/fusiondirectory.po | 2 +- quota/locale/es/fusiondirectory.po | 2 +- quota/locale/es_CO/fusiondirectory.po | 2 +- quota/locale/es_VE/fusiondirectory.po | 2 +- quota/locale/fa_IR/fusiondirectory.po | 2 +- quota/locale/fi_FI/fusiondirectory.po | 4 +- quota/locale/fr/fusiondirectory.po | 2 +- quota/locale/hu_HU/fusiondirectory.po | 2 +- quota/locale/id/fusiondirectory.po | 2 +- quota/locale/it_IT/fusiondirectory.po | 7 +-- quota/locale/lv/fusiondirectory.po | 2 +- quota/locale/nb/fusiondirectory.po | 2 +- quota/locale/nl/fusiondirectory.po | 2 +- quota/locale/pl/fusiondirectory.po | 2 +- quota/locale/pt/fusiondirectory.po | 2 +- quota/locale/pt_BR/fusiondirectory.po | 2 +- quota/locale/ru/fusiondirectory.po | 6 +-- quota/locale/ru@petr1708/fusiondirectory.po | 2 +- quota/locale/sv/fusiondirectory.po | 2 +- quota/locale/ug/fusiondirectory.po | 2 +- quota/locale/vi_VN/fusiondirectory.po | 2 +- quota/locale/zh/fusiondirectory.po | 2 +- repository/locale/ar/fusiondirectory.po | 2 +- repository/locale/ca/fusiondirectory.po | 2 +- repository/locale/cs_CZ/fusiondirectory.po | 2 +- repository/locale/de/fusiondirectory.po | 2 +- repository/locale/el_GR/fusiondirectory.po | 2 +- repository/locale/en/fusiondirectory.po | 2 +- repository/locale/es/fusiondirectory.po | 2 +- repository/locale/es_CO/fusiondirectory.po | 2 +- repository/locale/es_VE/fusiondirectory.po | 2 +- repository/locale/fa_IR/fusiondirectory.po | 2 +- repository/locale/fi_FI/fusiondirectory.po | 2 +- repository/locale/fr/fusiondirectory.po | 2 +- repository/locale/hu_HU/fusiondirectory.po | 2 +- repository/locale/id/fusiondirectory.po | 2 +- repository/locale/it_IT/fusiondirectory.po | 7 +-- repository/locale/lv/fusiondirectory.po | 2 +- repository/locale/nb/fusiondirectory.po | 2 +- repository/locale/nl/fusiondirectory.po | 2 +- repository/locale/pl/fusiondirectory.po | 2 +- repository/locale/pt/fusiondirectory.po | 2 +- repository/locale/pt_BR/fusiondirectory.po | 2 +- repository/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- repository/locale/sv/fusiondirectory.po | 2 +- repository/locale/ug/fusiondirectory.po | 2 +- repository/locale/vi_VN/fusiondirectory.po | 2 +- repository/locale/zh/fusiondirectory.po | 2 +- samba/locale/ar/fusiondirectory.po | 2 +- samba/locale/ca/fusiondirectory.po | 2 +- samba/locale/cs_CZ/fusiondirectory.po | 2 +- samba/locale/de/fusiondirectory.po | 2 +- samba/locale/el_GR/fusiondirectory.po | 2 +- samba/locale/en/fusiondirectory.po | 2 +- samba/locale/es/fusiondirectory.po | 2 +- samba/locale/es_CO/fusiondirectory.po | 2 +- samba/locale/es_VE/fusiondirectory.po | 2 +- samba/locale/fa_IR/fusiondirectory.po | 2 +- samba/locale/fi_FI/fusiondirectory.po | 4 +- samba/locale/fr/fusiondirectory.po | 2 +- samba/locale/hu_HU/fusiondirectory.po | 2 +- samba/locale/id/fusiondirectory.po | 2 +- samba/locale/it_IT/fusiondirectory.po | 9 ++-- samba/locale/lv/fusiondirectory.po | 2 +- samba/locale/nb/fusiondirectory.po | 2 +- samba/locale/nl/fusiondirectory.po | 2 +- samba/locale/pl/fusiondirectory.po | 2 +- samba/locale/pt/fusiondirectory.po | 2 +- samba/locale/pt_BR/fusiondirectory.po | 2 +- samba/locale/ru/fusiondirectory.po | 20 ++++---- samba/locale/ru@petr1708/fusiondirectory.po | 2 +- samba/locale/sv/fusiondirectory.po | 2 +- samba/locale/ug/fusiondirectory.po | 2 +- samba/locale/vi_VN/fusiondirectory.po | 2 +- samba/locale/zh/fusiondirectory.po | 2 +- sogo/locale/ar/fusiondirectory.po | 2 +- sogo/locale/ca/fusiondirectory.po | 2 +- sogo/locale/cs_CZ/fusiondirectory.po | 2 +- sogo/locale/de/fusiondirectory.po | 2 +- sogo/locale/el_GR/fusiondirectory.po | 2 +- sogo/locale/en/fusiondirectory.po | 2 +- sogo/locale/es/fusiondirectory.po | 2 +- sogo/locale/es_CO/fusiondirectory.po | 2 +- sogo/locale/es_VE/fusiondirectory.po | 2 +- sogo/locale/fa_IR/fusiondirectory.po | 2 +- sogo/locale/fi_FI/fusiondirectory.po | 2 +- sogo/locale/fr/fusiondirectory.po | 2 +- sogo/locale/hu_HU/fusiondirectory.po | 2 +- sogo/locale/id/fusiondirectory.po | 2 +- sogo/locale/it_IT/fusiondirectory.po | 9 ++-- sogo/locale/lv/fusiondirectory.po | 2 +- sogo/locale/nb/fusiondirectory.po | 2 +- sogo/locale/nl/fusiondirectory.po | 2 +- sogo/locale/pl/fusiondirectory.po | 2 +- sogo/locale/pt/fusiondirectory.po | 2 +- sogo/locale/pt_BR/fusiondirectory.po | 2 +- sogo/locale/ru/fusiondirectory.po | 2 +- sogo/locale/ru@petr1708/fusiondirectory.po | 2 +- sogo/locale/sv/fusiondirectory.po | 2 +- sogo/locale/ug/fusiondirectory.po | 2 +- sogo/locale/vi_VN/fusiondirectory.po | 2 +- sogo/locale/zh/fusiondirectory.po | 2 +- spamassassin/locale/ar/fusiondirectory.po | 2 +- spamassassin/locale/ca/fusiondirectory.po | 2 +- spamassassin/locale/cs_CZ/fusiondirectory.po | 2 +- spamassassin/locale/de/fusiondirectory.po | 2 +- spamassassin/locale/el_GR/fusiondirectory.po | 2 +- spamassassin/locale/en/fusiondirectory.po | 2 +- spamassassin/locale/es/fusiondirectory.po | 2 +- spamassassin/locale/es_CO/fusiondirectory.po | 2 +- spamassassin/locale/es_VE/fusiondirectory.po | 2 +- spamassassin/locale/fa_IR/fusiondirectory.po | 2 +- spamassassin/locale/fi_FI/fusiondirectory.po | 2 +- spamassassin/locale/fr/fusiondirectory.po | 2 +- spamassassin/locale/hu_HU/fusiondirectory.po | 2 +- spamassassin/locale/id/fusiondirectory.po | 2 +- spamassassin/locale/it_IT/fusiondirectory.po | 2 +- spamassassin/locale/lv/fusiondirectory.po | 2 +- spamassassin/locale/nb/fusiondirectory.po | 2 +- spamassassin/locale/nl/fusiondirectory.po | 2 +- spamassassin/locale/pl/fusiondirectory.po | 2 +- spamassassin/locale/pt/fusiondirectory.po | 2 +- spamassassin/locale/pt_BR/fusiondirectory.po | 2 +- spamassassin/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- spamassassin/locale/sv/fusiondirectory.po | 2 +- spamassassin/locale/ug/fusiondirectory.po | 2 +- spamassassin/locale/vi_VN/fusiondirectory.po | 2 +- spamassassin/locale/zh/fusiondirectory.po | 2 +- squid/locale/ar/fusiondirectory.po | 2 +- squid/locale/ca/fusiondirectory.po | 2 +- squid/locale/cs_CZ/fusiondirectory.po | 2 +- squid/locale/de/fusiondirectory.po | 2 +- squid/locale/el_GR/fusiondirectory.po | 2 +- squid/locale/en/fusiondirectory.po | 2 +- squid/locale/es/fusiondirectory.po | 2 +- squid/locale/es_CO/fusiondirectory.po | 2 +- squid/locale/es_VE/fusiondirectory.po | 2 +- squid/locale/fa_IR/fusiondirectory.po | 2 +- squid/locale/fi_FI/fusiondirectory.po | 2 +- squid/locale/fr/fusiondirectory.po | 2 +- squid/locale/hu_HU/fusiondirectory.po | 2 +- squid/locale/id/fusiondirectory.po | 2 +- squid/locale/it_IT/fusiondirectory.po | 7 +-- squid/locale/lv/fusiondirectory.po | 2 +- squid/locale/nb/fusiondirectory.po | 2 +- squid/locale/nl/fusiondirectory.po | 2 +- squid/locale/pl/fusiondirectory.po | 2 +- squid/locale/pt/fusiondirectory.po | 2 +- squid/locale/pt_BR/fusiondirectory.po | 2 +- squid/locale/ru/fusiondirectory.po | 2 +- squid/locale/ru@petr1708/fusiondirectory.po | 2 +- squid/locale/sv/fusiondirectory.po | 2 +- squid/locale/ug/fusiondirectory.po | 2 +- squid/locale/vi_VN/fusiondirectory.po | 2 +- squid/locale/zh/fusiondirectory.po | 2 +- ssh/locale/ar/fusiondirectory.po | 2 +- ssh/locale/ca/fusiondirectory.po | 2 +- ssh/locale/cs_CZ/fusiondirectory.po | 2 +- ssh/locale/de/fusiondirectory.po | 2 +- ssh/locale/el_GR/fusiondirectory.po | 3 +- ssh/locale/en/fusiondirectory.po | 2 +- ssh/locale/es/fusiondirectory.po | 2 +- ssh/locale/es_CO/fusiondirectory.po | 2 +- ssh/locale/es_VE/fusiondirectory.po | 2 +- ssh/locale/fa_IR/fusiondirectory.po | 2 +- ssh/locale/fi_FI/fusiondirectory.po | 2 +- ssh/locale/fr/fusiondirectory.po | 2 +- ssh/locale/hu_HU/fusiondirectory.po | 2 +- ssh/locale/id/fusiondirectory.po | 2 +- ssh/locale/it_IT/fusiondirectory.po | 9 ++-- ssh/locale/lv/fusiondirectory.po | 2 +- ssh/locale/nb/fusiondirectory.po | 2 +- ssh/locale/nl/fusiondirectory.po | 2 +- ssh/locale/pl/fusiondirectory.po | 2 +- ssh/locale/pt/fusiondirectory.po | 2 +- ssh/locale/pt_BR/fusiondirectory.po | 2 +- ssh/locale/ru/fusiondirectory.po | 2 +- ssh/locale/ru@petr1708/fusiondirectory.po | 2 +- ssh/locale/sv/fusiondirectory.po | 2 +- ssh/locale/ug/fusiondirectory.po | 2 +- ssh/locale/vi_VN/fusiondirectory.po | 2 +- ssh/locale/zh/fusiondirectory.po | 2 +- subcontracting/locale/ar/fusiondirectory.po | 2 +- subcontracting/locale/ca/fusiondirectory.po | 2 +- .../locale/cs_CZ/fusiondirectory.po | 2 +- subcontracting/locale/de/fusiondirectory.po | 2 +- .../locale/el_GR/fusiondirectory.po | 2 +- subcontracting/locale/en/fusiondirectory.po | 2 +- subcontracting/locale/es/fusiondirectory.po | 2 +- .../locale/es_CO/fusiondirectory.po | 2 +- .../locale/es_VE/fusiondirectory.po | 2 +- .../locale/fa_IR/fusiondirectory.po | 2 +- .../locale/fi_FI/fusiondirectory.po | 2 +- subcontracting/locale/fr/fusiondirectory.po | 2 +- .../locale/hu_HU/fusiondirectory.po | 2 +- subcontracting/locale/id/fusiondirectory.po | 2 +- .../locale/it_IT/fusiondirectory.po | 3 +- subcontracting/locale/lv/fusiondirectory.po | 2 +- subcontracting/locale/nb/fusiondirectory.po | 2 +- subcontracting/locale/nl/fusiondirectory.po | 2 +- subcontracting/locale/pl/fusiondirectory.po | 2 +- subcontracting/locale/pt/fusiondirectory.po | 2 +- .../locale/pt_BR/fusiondirectory.po | 2 +- subcontracting/locale/ru/fusiondirectory.po | 2 +- .../locale/ru@petr1708/fusiondirectory.po | 2 +- subcontracting/locale/sv/fusiondirectory.po | 2 +- subcontracting/locale/ug/fusiondirectory.po | 2 +- .../locale/vi_VN/fusiondirectory.po | 2 +- subcontracting/locale/zh/fusiondirectory.po | 2 +- sudo/locale/ar/fusiondirectory.po | 2 +- sudo/locale/ca/fusiondirectory.po | 2 +- sudo/locale/cs_CZ/fusiondirectory.po | 2 +- sudo/locale/de/fusiondirectory.po | 2 +- sudo/locale/el_GR/fusiondirectory.po | 3 +- sudo/locale/en/fusiondirectory.po | 2 +- sudo/locale/es/fusiondirectory.po | 2 +- sudo/locale/es_CO/fusiondirectory.po | 2 +- sudo/locale/es_VE/fusiondirectory.po | 2 +- sudo/locale/fa_IR/fusiondirectory.po | 2 +- sudo/locale/fi_FI/fusiondirectory.po | 2 +- sudo/locale/fr/fusiondirectory.po | 2 +- sudo/locale/hu_HU/fusiondirectory.po | 2 +- sudo/locale/id/fusiondirectory.po | 2 +- sudo/locale/it_IT/fusiondirectory.po | 3 +- sudo/locale/lv/fusiondirectory.po | 2 +- sudo/locale/nb/fusiondirectory.po | 2 +- sudo/locale/nl/fusiondirectory.po | 2 +- sudo/locale/pl/fusiondirectory.po | 2 +- sudo/locale/pt/fusiondirectory.po | 2 +- sudo/locale/pt_BR/fusiondirectory.po | 2 +- sudo/locale/ru/fusiondirectory.po | 2 +- sudo/locale/ru@petr1708/fusiondirectory.po | 2 +- sudo/locale/sv/fusiondirectory.po | 2 +- sudo/locale/ug/fusiondirectory.po | 2 +- sudo/locale/vi_VN/fusiondirectory.po | 2 +- sudo/locale/zh/fusiondirectory.po | 2 +- supann/locale/ar/fusiondirectory.po | 2 +- supann/locale/ca/fusiondirectory.po | 2 +- supann/locale/cs_CZ/fusiondirectory.po | 2 +- supann/locale/de/fusiondirectory.po | 2 +- supann/locale/el_GR/fusiondirectory.po | 2 +- supann/locale/en/fusiondirectory.po | 2 +- supann/locale/es/fusiondirectory.po | 2 +- supann/locale/es_CO/fusiondirectory.po | 2 +- supann/locale/es_VE/fusiondirectory.po | 2 +- supann/locale/fa_IR/fusiondirectory.po | 2 +- supann/locale/fi_FI/fusiondirectory.po | 2 +- supann/locale/fr/fusiondirectory.po | 2 +- supann/locale/hu_HU/fusiondirectory.po | 2 +- supann/locale/id/fusiondirectory.po | 2 +- supann/locale/it_IT/fusiondirectory.po | 6 +-- supann/locale/lv/fusiondirectory.po | 2 +- supann/locale/nb/fusiondirectory.po | 2 +- supann/locale/nl/fusiondirectory.po | 2 +- supann/locale/pl/fusiondirectory.po | 2 +- supann/locale/pt/fusiondirectory.po | 2 +- supann/locale/pt_BR/fusiondirectory.po | 2 +- supann/locale/ru/fusiondirectory.po | 2 +- supann/locale/ru@petr1708/fusiondirectory.po | 2 +- supann/locale/sv/fusiondirectory.po | 2 +- supann/locale/ug/fusiondirectory.po | 2 +- supann/locale/vi_VN/fusiondirectory.po | 2 +- supann/locale/zh/fusiondirectory.po | 2 +- sympa/locale/ar/fusiondirectory.po | 2 +- sympa/locale/ca/fusiondirectory.po | 2 +- sympa/locale/cs_CZ/fusiondirectory.po | 2 +- sympa/locale/de/fusiondirectory.po | 2 +- sympa/locale/el_GR/fusiondirectory.po | 2 +- sympa/locale/en/fusiondirectory.po | 2 +- sympa/locale/es/fusiondirectory.po | 2 +- sympa/locale/es_CO/fusiondirectory.po | 2 +- sympa/locale/es_VE/fusiondirectory.po | 2 +- sympa/locale/fa_IR/fusiondirectory.po | 2 +- sympa/locale/fi_FI/fusiondirectory.po | 2 +- sympa/locale/fr/fusiondirectory.po | 2 +- sympa/locale/hu_HU/fusiondirectory.po | 2 +- sympa/locale/id/fusiondirectory.po | 2 +- sympa/locale/it_IT/fusiondirectory.po | 3 +- sympa/locale/lv/fusiondirectory.po | 2 +- sympa/locale/nb/fusiondirectory.po | 2 +- sympa/locale/nl/fusiondirectory.po | 2 +- sympa/locale/pl/fusiondirectory.po | 2 +- sympa/locale/pt/fusiondirectory.po | 2 +- sympa/locale/pt_BR/fusiondirectory.po | 2 +- sympa/locale/ru/fusiondirectory.po | 2 +- sympa/locale/ru@petr1708/fusiondirectory.po | 2 +- sympa/locale/sv/fusiondirectory.po | 2 +- sympa/locale/ug/fusiondirectory.po | 2 +- sympa/locale/vi_VN/fusiondirectory.po | 2 +- sympa/locale/zh/fusiondirectory.po | 2 +- systems/locale/ar/fusiondirectory.po | 2 +- systems/locale/ca/fusiondirectory.po | 2 +- systems/locale/cs_CZ/fusiondirectory.po | 2 +- systems/locale/de/fusiondirectory.po | 2 +- systems/locale/el_GR/fusiondirectory.po | 3 +- systems/locale/en/fusiondirectory.po | 2 +- systems/locale/es/fusiondirectory.po | 2 +- systems/locale/es_CO/fusiondirectory.po | 2 +- systems/locale/es_VE/fusiondirectory.po | 2 +- systems/locale/fa_IR/fusiondirectory.po | 2 +- systems/locale/fi_FI/fusiondirectory.po | 12 ++--- systems/locale/fr/fusiondirectory.po | 2 +- systems/locale/hu_HU/fusiondirectory.po | 2 +- systems/locale/id/fusiondirectory.po | 2 +- systems/locale/it_IT/fusiondirectory.po | 8 +-- systems/locale/lv/fusiondirectory.po | 2 +- systems/locale/nb/fusiondirectory.po | 2 +- systems/locale/nl/fusiondirectory.po | 2 +- systems/locale/pl/fusiondirectory.po | 2 +- systems/locale/pt/fusiondirectory.po | 2 +- systems/locale/pt_BR/fusiondirectory.po | 2 +- systems/locale/ru/fusiondirectory.po | 51 ++++++++++--------- systems/locale/ru@petr1708/fusiondirectory.po | 2 +- systems/locale/sv/fusiondirectory.po | 2 +- systems/locale/ug/fusiondirectory.po | 2 +- systems/locale/vi_VN/fusiondirectory.po | 2 +- systems/locale/zh/fusiondirectory.po | 2 +- user-reminder/locale/ar/fusiondirectory.po | 8 +-- user-reminder/locale/ca/fusiondirectory.po | 8 +-- user-reminder/locale/cs_CZ/fusiondirectory.po | 8 +-- user-reminder/locale/de/fusiondirectory.po | 8 +-- user-reminder/locale/el_GR/fusiondirectory.po | 8 +-- user-reminder/locale/en/fusiondirectory.po | 8 +-- user-reminder/locale/es/fusiondirectory.po | 8 +-- user-reminder/locale/es_CO/fusiondirectory.po | 8 +-- user-reminder/locale/es_VE/fusiondirectory.po | 8 +-- user-reminder/locale/fa_IR/fusiondirectory.po | 8 +-- user-reminder/locale/fi_FI/fusiondirectory.po | 8 +-- user-reminder/locale/fr/fusiondirectory.po | 10 ++-- user-reminder/locale/hu_HU/fusiondirectory.po | 8 +-- user-reminder/locale/id/fusiondirectory.po | 8 +-- user-reminder/locale/it_IT/fusiondirectory.po | 12 ++--- user-reminder/locale/lv/fusiondirectory.po | 8 +-- user-reminder/locale/nb/fusiondirectory.po | 8 +-- user-reminder/locale/nl/fusiondirectory.po | 8 +-- user-reminder/locale/pl/fusiondirectory.po | 8 +-- user-reminder/locale/pt/fusiondirectory.po | 8 +-- user-reminder/locale/pt_BR/fusiondirectory.po | 8 +-- user-reminder/locale/ru/fusiondirectory.po | 12 ++--- .../locale/ru@petr1708/fusiondirectory.po | 8 +-- user-reminder/locale/sv/fusiondirectory.po | 8 +-- user-reminder/locale/ug/fusiondirectory.po | 8 +-- user-reminder/locale/vi_VN/fusiondirectory.po | 8 +-- user-reminder/locale/zh/fusiondirectory.po | 8 +-- weblink/locale/ar/fusiondirectory.po | 2 +- weblink/locale/ca/fusiondirectory.po | 2 +- weblink/locale/cs_CZ/fusiondirectory.po | 2 +- weblink/locale/de/fusiondirectory.po | 2 +- weblink/locale/el_GR/fusiondirectory.po | 2 +- weblink/locale/en/fusiondirectory.po | 2 +- weblink/locale/es/fusiondirectory.po | 2 +- weblink/locale/es_CO/fusiondirectory.po | 2 +- weblink/locale/es_VE/fusiondirectory.po | 2 +- weblink/locale/fa_IR/fusiondirectory.po | 2 +- weblink/locale/fi_FI/fusiondirectory.po | 2 +- weblink/locale/fr/fusiondirectory.po | 2 +- weblink/locale/hu_HU/fusiondirectory.po | 2 +- weblink/locale/id/fusiondirectory.po | 2 +- weblink/locale/it_IT/fusiondirectory.po | 3 +- weblink/locale/lv/fusiondirectory.po | 2 +- weblink/locale/nb/fusiondirectory.po | 2 +- weblink/locale/nl/fusiondirectory.po | 2 +- weblink/locale/pl/fusiondirectory.po | 2 +- weblink/locale/pt/fusiondirectory.po | 2 +- weblink/locale/pt_BR/fusiondirectory.po | 2 +- weblink/locale/ru/fusiondirectory.po | 2 +- weblink/locale/ru@petr1708/fusiondirectory.po | 2 +- weblink/locale/sv/fusiondirectory.po | 2 +- weblink/locale/ug/fusiondirectory.po | 2 +- weblink/locale/vi_VN/fusiondirectory.po | 2 +- weblink/locale/zh/fusiondirectory.po | 2 +- webservice/locale/ar/fusiondirectory.po | 2 +- webservice/locale/ca/fusiondirectory.po | 2 +- webservice/locale/cs_CZ/fusiondirectory.po | 2 +- webservice/locale/de/fusiondirectory.po | 2 +- webservice/locale/el_GR/fusiondirectory.po | 2 +- webservice/locale/en/fusiondirectory.po | 2 +- webservice/locale/es/fusiondirectory.po | 2 +- webservice/locale/es_CO/fusiondirectory.po | 2 +- webservice/locale/es_VE/fusiondirectory.po | 2 +- webservice/locale/fa_IR/fusiondirectory.po | 2 +- webservice/locale/fi_FI/fusiondirectory.po | 2 +- webservice/locale/fr/fusiondirectory.po | 2 +- webservice/locale/hu_HU/fusiondirectory.po | 2 +- webservice/locale/id/fusiondirectory.po | 2 +- webservice/locale/it_IT/fusiondirectory.po | 4 +- webservice/locale/lv/fusiondirectory.po | 2 +- webservice/locale/nb/fusiondirectory.po | 2 +- webservice/locale/nl/fusiondirectory.po | 2 +- webservice/locale/pl/fusiondirectory.po | 2 +- webservice/locale/pt/fusiondirectory.po | 2 +- webservice/locale/pt_BR/fusiondirectory.po | 2 +- webservice/locale/ru/fusiondirectory.po | 6 +-- .../locale/ru@petr1708/fusiondirectory.po | 2 +- webservice/locale/sv/fusiondirectory.po | 2 +- webservice/locale/ug/fusiondirectory.po | 2 +- webservice/locale/vi_VN/fusiondirectory.po | 2 +- webservice/locale/zh/fusiondirectory.po | 2 +- 1350 files changed, 2641 insertions(+), 2476 deletions(-) diff --git a/alias/locale/ar/fusiondirectory.po b/alias/locale/ar/fusiondirectory.po index e1e8c47c5b..5639f1ee05 100644 --- a/alias/locale/ar/fusiondirectory.po +++ b/alias/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/alias/locale/ca/fusiondirectory.po b/alias/locale/ca/fusiondirectory.po index 14a510b2a6..05326d4cf9 100644 --- a/alias/locale/ca/fusiondirectory.po +++ b/alias/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/alias/locale/cs_CZ/fusiondirectory.po b/alias/locale/cs_CZ/fusiondirectory.po index 3ff88c476b..d69cb3da32 100644 --- a/alias/locale/cs_CZ/fusiondirectory.po +++ b/alias/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/alias/locale/de/fusiondirectory.po b/alias/locale/de/fusiondirectory.po index f5062067d2..3bfab1274e 100644 --- a/alias/locale/de/fusiondirectory.po +++ b/alias/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/alias/locale/el_GR/fusiondirectory.po b/alias/locale/el_GR/fusiondirectory.po index 70dda00d86..75bac08d33 100644 --- a/alias/locale/el_GR/fusiondirectory.po +++ b/alias/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/alias/locale/en/fusiondirectory.po b/alias/locale/en/fusiondirectory.po index 1238f427ff..ed595d157b 100644 --- a/alias/locale/en/fusiondirectory.po +++ b/alias/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/alias/locale/es/fusiondirectory.po b/alias/locale/es/fusiondirectory.po index 00b6837b38..fcae6214d8 100644 --- a/alias/locale/es/fusiondirectory.po +++ b/alias/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/alias/locale/es_CO/fusiondirectory.po b/alias/locale/es_CO/fusiondirectory.po index c5e1b300be..a02a0622f3 100644 --- a/alias/locale/es_CO/fusiondirectory.po +++ b/alias/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/alias/locale/es_VE/fusiondirectory.po b/alias/locale/es_VE/fusiondirectory.po index 3eefa6d2a9..f6f3d8e311 100644 --- a/alias/locale/es_VE/fusiondirectory.po +++ b/alias/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/alias/locale/fa_IR/fusiondirectory.po b/alias/locale/fa_IR/fusiondirectory.po index 8964bbc8e9..4a8a960261 100644 --- a/alias/locale/fa_IR/fusiondirectory.po +++ b/alias/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/alias/locale/fi_FI/fusiondirectory.po b/alias/locale/fi_FI/fusiondirectory.po index 91a0e1e311..341ba22625 100644 --- a/alias/locale/fi_FI/fusiondirectory.po +++ b/alias/locale/fi_FI/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Dina Solveig Jalkanen, 2016 +# Dina Solveig Jalkanen, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-08 12:22+0000\n" "Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/alias/locale/fr/fusiondirectory.po b/alias/locale/fr/fusiondirectory.po index e84be3d3b5..a8b01fe686 100644 --- a/alias/locale/fr/fusiondirectory.po +++ b/alias/locale/fr/fusiondirectory.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/alias/locale/hu_HU/fusiondirectory.po b/alias/locale/hu_HU/fusiondirectory.po index c37dcac13d..b3b4fb1954 100644 --- a/alias/locale/hu_HU/fusiondirectory.po +++ b/alias/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/alias/locale/id/fusiondirectory.po b/alias/locale/id/fusiondirectory.po index 7df2e83437..5aa6937311 100644 --- a/alias/locale/id/fusiondirectory.po +++ b/alias/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/alias/locale/it_IT/fusiondirectory.po b/alias/locale/it_IT/fusiondirectory.po index d87acaa5be..7a9e510f8f 100644 --- a/alias/locale/it_IT/fusiondirectory.po +++ b/alias/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:46+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/alias/locale/lv/fusiondirectory.po b/alias/locale/lv/fusiondirectory.po index 920aa47768..34a398cce3 100644 --- a/alias/locale/lv/fusiondirectory.po +++ b/alias/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/alias/locale/nb/fusiondirectory.po b/alias/locale/nb/fusiondirectory.po index 9e9f12a9fa..14a5dbdd74 100644 --- a/alias/locale/nb/fusiondirectory.po +++ b/alias/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/alias/locale/nl/fusiondirectory.po b/alias/locale/nl/fusiondirectory.po index 75844ad6f9..1911f5f843 100644 --- a/alias/locale/nl/fusiondirectory.po +++ b/alias/locale/nl/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/alias/locale/pl/fusiondirectory.po b/alias/locale/pl/fusiondirectory.po index 89c3cc7af3..c7c7d3a5c4 100644 --- a/alias/locale/pl/fusiondirectory.po +++ b/alias/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/alias/locale/pt/fusiondirectory.po b/alias/locale/pt/fusiondirectory.po index a569810df7..d7ad8452dd 100644 --- a/alias/locale/pt/fusiondirectory.po +++ b/alias/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/alias/locale/pt_BR/fusiondirectory.po b/alias/locale/pt_BR/fusiondirectory.po index 4eb5c68d9d..9498b932d3 100644 --- a/alias/locale/pt_BR/fusiondirectory.po +++ b/alias/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/alias/locale/ru/fusiondirectory.po b/alias/locale/ru/fusiondirectory.po index a11b1e55c9..50b8d5389c 100644 --- a/alias/locale/ru/fusiondirectory.po +++ b/alias/locale/ru/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/alias/locale/ru@petr1708/fusiondirectory.po b/alias/locale/ru@petr1708/fusiondirectory.po index 921ee3d59f..94abdc29f3 100644 --- a/alias/locale/ru@petr1708/fusiondirectory.po +++ b/alias/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/alias/locale/sv/fusiondirectory.po b/alias/locale/sv/fusiondirectory.po index 034828cd3b..d16cd3241c 100644 --- a/alias/locale/sv/fusiondirectory.po +++ b/alias/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/alias/locale/ug/fusiondirectory.po b/alias/locale/ug/fusiondirectory.po index 5c6376f11c..588f67d163 100644 --- a/alias/locale/ug/fusiondirectory.po +++ b/alias/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:30+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/alias/locale/vi_VN/fusiondirectory.po b/alias/locale/vi_VN/fusiondirectory.po index 4e024e7904..6c5642e189 100644 --- a/alias/locale/vi_VN/fusiondirectory.po +++ b/alias/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/alias/locale/zh/fusiondirectory.po b/alias/locale/zh/fusiondirectory.po index 9461b6f21a..8b4f1254a5 100644 --- a/alias/locale/zh/fusiondirectory.po +++ b/alias/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/apache2/locale/ar/fusiondirectory.po b/apache2/locale/ar/fusiondirectory.po index 5f2f00edaf..7e5cdd7f3d 100644 --- a/apache2/locale/ar/fusiondirectory.po +++ b/apache2/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/apache2/locale/ca/fusiondirectory.po b/apache2/locale/ca/fusiondirectory.po index 9ba55be296..8b9806d3d7 100644 --- a/apache2/locale/ca/fusiondirectory.po +++ b/apache2/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/apache2/locale/cs_CZ/fusiondirectory.po b/apache2/locale/cs_CZ/fusiondirectory.po index b1a500df96..ed075bad83 100644 --- a/apache2/locale/cs_CZ/fusiondirectory.po +++ b/apache2/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/apache2/locale/de/fusiondirectory.po b/apache2/locale/de/fusiondirectory.po index f65a5c206f..934584fbcf 100644 --- a/apache2/locale/de/fusiondirectory.po +++ b/apache2/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/apache2/locale/el_GR/fusiondirectory.po b/apache2/locale/el_GR/fusiondirectory.po index 5d03798d91..0779e11675 100644 --- a/apache2/locale/el_GR/fusiondirectory.po +++ b/apache2/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/apache2/locale/en/fusiondirectory.po b/apache2/locale/en/fusiondirectory.po index 51a061cdf7..a17c8de614 100644 --- a/apache2/locale/en/fusiondirectory.po +++ b/apache2/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/apache2/locale/es/fusiondirectory.po b/apache2/locale/es/fusiondirectory.po index c74c15ac00..1f703612fc 100644 --- a/apache2/locale/es/fusiondirectory.po +++ b/apache2/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/apache2/locale/es_CO/fusiondirectory.po b/apache2/locale/es_CO/fusiondirectory.po index 2260e7fd04..e834a22e3b 100644 --- a/apache2/locale/es_CO/fusiondirectory.po +++ b/apache2/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/apache2/locale/es_VE/fusiondirectory.po b/apache2/locale/es_VE/fusiondirectory.po index 21cb895030..26d993743f 100644 --- a/apache2/locale/es_VE/fusiondirectory.po +++ b/apache2/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/apache2/locale/fa_IR/fusiondirectory.po b/apache2/locale/fa_IR/fusiondirectory.po index c51395f68a..f2f5b54d85 100644 --- a/apache2/locale/fa_IR/fusiondirectory.po +++ b/apache2/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/apache2/locale/fi_FI/fusiondirectory.po b/apache2/locale/fi_FI/fusiondirectory.po index 2fd62e6d56..e46ecd2d43 100644 --- a/apache2/locale/fi_FI/fusiondirectory.po +++ b/apache2/locale/fi_FI/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dina Solveig Jalkanen, 2016 +# Dina Solveig Jalkanen, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-03 09:33+0000\n" +"Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +21,7 @@ msgstr "" #: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 msgid "Apache service" -msgstr "" +msgstr "Apache palvelu" #: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 msgid "Apache virtual host service" @@ -43,7 +45,7 @@ msgstr "" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 msgid "Server name" -msgstr "" +msgstr "Palvelimen nimi" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 @@ -52,11 +54,11 @@ msgstr "" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 msgid "Actions" -msgstr "" +msgstr "Toiminnot" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 msgid "Create" -msgstr "" +msgstr "Luo" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 msgid "serviceApacheVhostEdit" @@ -64,7 +66,7 @@ msgstr "" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 msgid "Remove" -msgstr "" +msgstr "Poista" #: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 msgid "Edit host" @@ -93,7 +95,7 @@ msgstr "" #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 msgid "Apache Vhost" -msgstr "" +msgstr "Apache Vhost" #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 msgid "Informations" @@ -134,11 +136,11 @@ msgstr "" #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 msgid "Script" -msgstr "" +msgstr "Skripti" #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 msgid "Script Directory" -msgstr "" +msgstr "Skriptihakemisto" #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 #: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 @@ -155,7 +157,7 @@ msgstr "" #: admin/systems/services/apache2/remove.tpl.c:2 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/systems/services/apache2/remove.tpl.c:5 msgid "" @@ -182,8 +184,8 @@ msgstr "" #: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 msgid "Save" -msgstr "" +msgstr "Talenna" #: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 msgid "Cancel" -msgstr "" +msgstr "Peruta" diff --git a/apache2/locale/fr/fusiondirectory.po b/apache2/locale/fr/fusiondirectory.po index 8ce56d42f4..afbd2b8359 100644 --- a/apache2/locale/fr/fusiondirectory.po +++ b/apache2/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/apache2/locale/hu_HU/fusiondirectory.po b/apache2/locale/hu_HU/fusiondirectory.po index 1ab62ac0f0..3e481b6622 100644 --- a/apache2/locale/hu_HU/fusiondirectory.po +++ b/apache2/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/apache2/locale/id/fusiondirectory.po b/apache2/locale/id/fusiondirectory.po index 36d6a2489b..1aa3e83d55 100644 --- a/apache2/locale/id/fusiondirectory.po +++ b/apache2/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/apache2/locale/it_IT/fusiondirectory.po b/apache2/locale/it_IT/fusiondirectory.po index 9116ddf99d..3fd66669e3 100644 --- a/apache2/locale/it_IT/fusiondirectory.po +++ b/apache2/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:51+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/apache2/locale/lv/fusiondirectory.po b/apache2/locale/lv/fusiondirectory.po index 11aa1aab9d..5cde36c3e0 100644 --- a/apache2/locale/lv/fusiondirectory.po +++ b/apache2/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/apache2/locale/nb/fusiondirectory.po b/apache2/locale/nb/fusiondirectory.po index c65e97ffba..0163b79eab 100644 --- a/apache2/locale/nb/fusiondirectory.po +++ b/apache2/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/apache2/locale/nl/fusiondirectory.po b/apache2/locale/nl/fusiondirectory.po index 31a3c2e002..2dc883d752 100644 --- a/apache2/locale/nl/fusiondirectory.po +++ b/apache2/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/apache2/locale/pl/fusiondirectory.po b/apache2/locale/pl/fusiondirectory.po index 306a44b957..c5f384feed 100644 --- a/apache2/locale/pl/fusiondirectory.po +++ b/apache2/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/apache2/locale/pt/fusiondirectory.po b/apache2/locale/pt/fusiondirectory.po index 511ff27d50..33205807f3 100644 --- a/apache2/locale/pt/fusiondirectory.po +++ b/apache2/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/apache2/locale/pt_BR/fusiondirectory.po b/apache2/locale/pt_BR/fusiondirectory.po index 666fe18a2d..f6b1b7f06b 100644 --- a/apache2/locale/pt_BR/fusiondirectory.po +++ b/apache2/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/apache2/locale/ru/fusiondirectory.po b/apache2/locale/ru/fusiondirectory.po index 14a53c495e..5f933275b7 100644 --- a/apache2/locale/ru/fusiondirectory.po +++ b/apache2/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/apache2/locale/ru@petr1708/fusiondirectory.po b/apache2/locale/ru@petr1708/fusiondirectory.po index 6d6da42754..f30b6510ff 100644 --- a/apache2/locale/ru@petr1708/fusiondirectory.po +++ b/apache2/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/apache2/locale/sv/fusiondirectory.po b/apache2/locale/sv/fusiondirectory.po index 8e0b8ea55b..7c77f98cc3 100644 --- a/apache2/locale/sv/fusiondirectory.po +++ b/apache2/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/apache2/locale/ug/fusiondirectory.po b/apache2/locale/ug/fusiondirectory.po index 3bcafc66e7..a24d5aae12 100644 --- a/apache2/locale/ug/fusiondirectory.po +++ b/apache2/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/apache2/locale/vi_VN/fusiondirectory.po b/apache2/locale/vi_VN/fusiondirectory.po index 54c9e138cc..45fa14e88d 100644 --- a/apache2/locale/vi_VN/fusiondirectory.po +++ b/apache2/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/apache2/locale/zh/fusiondirectory.po b/apache2/locale/zh/fusiondirectory.po index 04ed8de2e3..468a89edff 100644 --- a/apache2/locale/zh/fusiondirectory.po +++ b/apache2/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/applications/locale/ar/fusiondirectory.po b/applications/locale/ar/fusiondirectory.po index 9f0e5aa4be..cb95d034c5 100644 --- a/applications/locale/ar/fusiondirectory.po +++ b/applications/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/applications/locale/ca/fusiondirectory.po b/applications/locale/ca/fusiondirectory.po index 6d03e0f66f..ca6b062291 100644 --- a/applications/locale/ca/fusiondirectory.po +++ b/applications/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/applications/locale/cs_CZ/fusiondirectory.po b/applications/locale/cs_CZ/fusiondirectory.po index 4dee16f873..ff306e2df5 100644 --- a/applications/locale/cs_CZ/fusiondirectory.po +++ b/applications/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/applications/locale/de/fusiondirectory.po b/applications/locale/de/fusiondirectory.po index fb4a33b909..3ae938be67 100644 --- a/applications/locale/de/fusiondirectory.po +++ b/applications/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/applications/locale/el_GR/fusiondirectory.po b/applications/locale/el_GR/fusiondirectory.po index ac7ea6e156..07e2561b1d 100644 --- a/applications/locale/el_GR/fusiondirectory.po +++ b/applications/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/applications/locale/en/fusiondirectory.po b/applications/locale/en/fusiondirectory.po index bb0d175f1b..40099c4815 100644 --- a/applications/locale/en/fusiondirectory.po +++ b/applications/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/applications/locale/es/fusiondirectory.po b/applications/locale/es/fusiondirectory.po index a4ac974d00..de5d0c669b 100644 --- a/applications/locale/es/fusiondirectory.po +++ b/applications/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/applications/locale/es_CO/fusiondirectory.po b/applications/locale/es_CO/fusiondirectory.po index bb00a2871d..abc8d4652a 100644 --- a/applications/locale/es_CO/fusiondirectory.po +++ b/applications/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/applications/locale/es_VE/fusiondirectory.po b/applications/locale/es_VE/fusiondirectory.po index bd9b36aca7..b9dbced50c 100644 --- a/applications/locale/es_VE/fusiondirectory.po +++ b/applications/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/applications/locale/fa_IR/fusiondirectory.po b/applications/locale/fa_IR/fusiondirectory.po index afa6148c0b..ef8f68787b 100644 --- a/applications/locale/fa_IR/fusiondirectory.po +++ b/applications/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/applications/locale/fi_FI/fusiondirectory.po b/applications/locale/fi_FI/fusiondirectory.po index 65e3f21317..e94968df4b 100644 --- a/applications/locale/fi_FI/fusiondirectory.po +++ b/applications/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/applications/locale/fr/fusiondirectory.po b/applications/locale/fr/fusiondirectory.po index 3b198718d0..d2b11dfc6d 100644 --- a/applications/locale/fr/fusiondirectory.po +++ b/applications/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/applications/locale/hu_HU/fusiondirectory.po b/applications/locale/hu_HU/fusiondirectory.po index 9fe4dc9d0a..f53471e52b 100644 --- a/applications/locale/hu_HU/fusiondirectory.po +++ b/applications/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/applications/locale/id/fusiondirectory.po b/applications/locale/id/fusiondirectory.po index a2d9d989b4..d800ad4d22 100644 --- a/applications/locale/id/fusiondirectory.po +++ b/applications/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/applications/locale/it_IT/fusiondirectory.po b/applications/locale/it_IT/fusiondirectory.po index 01503f37f2..ed1c178eb2 100644 --- a/applications/locale/it_IT/fusiondirectory.po +++ b/applications/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:47+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/applications/locale/lv/fusiondirectory.po b/applications/locale/lv/fusiondirectory.po index 85b600b5e9..84f04d9297 100644 --- a/applications/locale/lv/fusiondirectory.po +++ b/applications/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/applications/locale/nb/fusiondirectory.po b/applications/locale/nb/fusiondirectory.po index 063ca3b3e6..b58afa5455 100644 --- a/applications/locale/nb/fusiondirectory.po +++ b/applications/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/applications/locale/nl/fusiondirectory.po b/applications/locale/nl/fusiondirectory.po index e013ae7cf2..7bceee9378 100644 --- a/applications/locale/nl/fusiondirectory.po +++ b/applications/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/applications/locale/pl/fusiondirectory.po b/applications/locale/pl/fusiondirectory.po index a15809b232..013eb2c535 100644 --- a/applications/locale/pl/fusiondirectory.po +++ b/applications/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/applications/locale/pt/fusiondirectory.po b/applications/locale/pt/fusiondirectory.po index 63834bea2b..d4e2a54494 100644 --- a/applications/locale/pt/fusiondirectory.po +++ b/applications/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/applications/locale/pt_BR/fusiondirectory.po b/applications/locale/pt_BR/fusiondirectory.po index e3d000f96a..26d22f3dff 100644 --- a/applications/locale/pt_BR/fusiondirectory.po +++ b/applications/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/applications/locale/ru/fusiondirectory.po b/applications/locale/ru/fusiondirectory.po index 72a6747c51..1bf9227611 100644 --- a/applications/locale/ru/fusiondirectory.po +++ b/applications/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/applications/locale/ru@petr1708/fusiondirectory.po b/applications/locale/ru@petr1708/fusiondirectory.po index f4cede0a1d..dabf2e1426 100644 --- a/applications/locale/ru@petr1708/fusiondirectory.po +++ b/applications/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/applications/locale/sv/fusiondirectory.po b/applications/locale/sv/fusiondirectory.po index 8a985689c2..c3a0a68520 100644 --- a/applications/locale/sv/fusiondirectory.po +++ b/applications/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/applications/locale/ug/fusiondirectory.po b/applications/locale/ug/fusiondirectory.po index a29cacb7da..614ad09fe2 100644 --- a/applications/locale/ug/fusiondirectory.po +++ b/applications/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/applications/locale/vi_VN/fusiondirectory.po b/applications/locale/vi_VN/fusiondirectory.po index c5bdf5b153..7049130195 100644 --- a/applications/locale/vi_VN/fusiondirectory.po +++ b/applications/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/applications/locale/zh/fusiondirectory.po b/applications/locale/zh/fusiondirectory.po index 9316e5f588..8fc82cc944 100644 --- a/applications/locale/zh/fusiondirectory.po +++ b/applications/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/argonaut/locale/ar/fusiondirectory.po b/argonaut/locale/ar/fusiondirectory.po index b17edcc9a2..a90c248b43 100644 --- a/argonaut/locale/ar/fusiondirectory.po +++ b/argonaut/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "إعادة تشغيل" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "إعادة تشغيل" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/ca/fusiondirectory.po b/argonaut/locale/ca/fusiondirectory.po index 9e080aa00c..1bf5326c6c 100644 --- a/argonaut/locale/ca/fusiondirectory.po +++ b/argonaut/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/cs_CZ/fusiondirectory.po b/argonaut/locale/cs_CZ/fusiondirectory.po index e078f6e713..980f8d7422 100644 --- a/argonaut/locale/cs_CZ/fusiondirectory.po +++ b/argonaut/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" @@ -447,6 +447,26 @@ msgstr "LTSP" msgid "LTSP server" msgstr "Linuxový terminálový server (LTSP)" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Vypnout" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Restartovat" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "zapnout na dálku" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Aktualizace programového vybavenÃ" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(PÅ™e)Instalovat" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Vypnout" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Restartovat" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "zapnout na dálku" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Aktualizace programového vybavenÃ" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(PÅ™e)Instalovat" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Nalezeno vÃce argonaut serverů. Použit je možné ale pouze jeden" diff --git a/argonaut/locale/de/fusiondirectory.po b/argonaut/locale/de/fusiondirectory.po index 2a4c6d936c..0ebd45e6ff 100644 --- a/argonaut/locale/de/fusiondirectory.po +++ b/argonaut/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" @@ -447,6 +447,26 @@ msgstr "LTSP" msgid "LTSP server" msgstr "LTSP Server" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Ausschalten" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Neustarten" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Aufwecken" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Softwareupdate" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(Re)Installieren" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Ausschalten" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Neustarten" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Aufwecken" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Softwareupdate" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(Re)Installieren" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Mehrere argonaut Server gefunden. Nur einer wird unterstützt" diff --git a/argonaut/locale/el_GR/fusiondirectory.po b/argonaut/locale/el_GR/fusiondirectory.po index 70999fa7e0..aa5662b47f 100644 --- a/argonaut/locale/el_GR/fusiondirectory.po +++ b/argonaut/locale/el_GR/fusiondirectory.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" @@ -451,6 +451,26 @@ msgstr "" msgid "LTSP server" msgstr "ΕξυπηÏετητής LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Κλείσιμο" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Επανεκκίνηση" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "ΕνημÎÏωση λογισμικοÏ" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(Επαν)εγκατάσταση" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -699,26 +719,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Κλείσιμο" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Επανεκκίνηση" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "ΕνημÎÏωση λογισμικοÏ" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(Επαν)εγκατάσταση" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/en/fusiondirectory.po b/argonaut/locale/en/fusiondirectory.po index f576729ebe..dcb8009ba7 100644 --- a/argonaut/locale/en/fusiondirectory.po +++ b/argonaut/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -445,6 +445,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -693,26 +713,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/es/fusiondirectory.po b/argonaut/locale/es/fusiondirectory.po index 550b1d48dc..b0f1676d9a 100644 --- a/argonaut/locale/es/fusiondirectory.po +++ b/argonaut/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "Servidor LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Apagar" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Reiniciar" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Despertar" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Actualización software" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Apagar" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Reiniciar" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Despertar" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Actualización software" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/es_CO/fusiondirectory.po b/argonaut/locale/es_CO/fusiondirectory.po index d3a85b8002..508fea8090 100644 --- a/argonaut/locale/es_CO/fusiondirectory.po +++ b/argonaut/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/es_VE/fusiondirectory.po b/argonaut/locale/es_VE/fusiondirectory.po index c611cbdfc1..1f08da1e16 100644 --- a/argonaut/locale/es_VE/fusiondirectory.po +++ b/argonaut/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "Servidor LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Apagar" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Reiniciar" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Despertar" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Actualización software" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Apagar" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Reiniciar" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Despertar" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Actualización software" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Varios servidores Argonaut encontrados. Solo se soporta uno" diff --git a/argonaut/locale/fa_IR/fusiondirectory.po b/argonaut/locale/fa_IR/fusiondirectory.po index 16e65f8dd6..247526a893 100644 --- a/argonaut/locale/fa_IR/fusiondirectory.po +++ b/argonaut/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/fi_FI/fusiondirectory.po b/argonaut/locale/fi_FI/fusiondirectory.po index 2f65e3c4a7..10ad089700 100644 --- a/argonaut/locale/fi_FI/fusiondirectory.po +++ b/argonaut/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -540,7 +560,7 @@ msgstr "Lupa" #: addons/argonaut/class_argonautQueue.inc:122 #: addons/argonaut/deploy-list.xml:86 addons/argonaut/deploy-list.xml:136 msgid "Remove" -msgstr "" +msgstr "Poista" #: addons/argonaut/class_argonautQueue.inc:123 #, php-format @@ -614,7 +634,7 @@ msgstr "" #: addons/argonaut/deploy-list.xml:67 msgid "Actions" -msgstr "" +msgstr "Toiminnot" #: addons/argonaut/deploy-list.xml:97 addons/argonaut/deploy-list.xml:144 msgid "Abort" @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/fr/fusiondirectory.po b/argonaut/locale/fr/fusiondirectory.po index d84be24621..6c2f76b3ed 100644 --- a/argonaut/locale/fr/fusiondirectory.po +++ b/argonaut/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" @@ -448,6 +448,26 @@ msgstr "LTSP" msgid "LTSP server" msgstr "Serveur LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Éteindre" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Redémarrer" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Réveiller" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Mise à jour logicielle" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(Ré)installer" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -696,26 +716,6 @@ msgstr "Cibles" msgid "Targets for this task" msgstr "Cibles pour cette tache" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Éteindre" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Redémarrer" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Réveiller" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Mise à jour logicielle" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(Ré)installer" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Plusieurs serveurs Argonaut ont été trouvés. Un seul est supporté pour l'instant" diff --git a/argonaut/locale/hu_HU/fusiondirectory.po b/argonaut/locale/hu_HU/fusiondirectory.po index 47f18a7bc6..f792a50a53 100644 --- a/argonaut/locale/hu_HU/fusiondirectory.po +++ b/argonaut/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/id/fusiondirectory.po b/argonaut/locale/id/fusiondirectory.po index 28642c1912..405736d04a 100644 --- a/argonaut/locale/id/fusiondirectory.po +++ b/argonaut/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/it_IT/fusiondirectory.po b/argonaut/locale/it_IT/fusiondirectory.po index 56f6764613..f1854e7e19 100644 --- a/argonaut/locale/it_IT/fusiondirectory.po +++ b/argonaut/locale/it_IT/fusiondirectory.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:47+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -447,6 +447,26 @@ msgstr "LTSP" msgid "LTSP server" msgstr "Server LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Spegni" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Riavvia" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Risvegliare" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Aggiornamento del software" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(Re)Installa" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "Obiettivi" msgid "Targets for this task" msgstr "Obiettivi di questa attività " -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Spegni" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Riavvia" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Risvegliare" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Aggiornamento del software" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(Re)Installa" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Trovati più di un server Argonaut. Solo uno è supportato" diff --git a/argonaut/locale/lv/fusiondirectory.po b/argonaut/locale/lv/fusiondirectory.po index 6abeddb50b..d41e813acb 100644 --- a/argonaut/locale/lv/fusiondirectory.po +++ b/argonaut/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/nb/fusiondirectory.po b/argonaut/locale/nb/fusiondirectory.po index 8f7f11b832..fbe42f896e 100644 --- a/argonaut/locale/nb/fusiondirectory.po +++ b/argonaut/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/nl/fusiondirectory.po b/argonaut/locale/nl/fusiondirectory.po index f71e7bab09..9053b11853 100644 --- a/argonaut/locale/nl/fusiondirectory.po +++ b/argonaut/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "LTSP server" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Uitschakelen" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Herstarten" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Aanzetten" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Software update" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Uitschakelen" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Herstarten" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Aanzetten" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Software update" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Meerdere argonaut servers gevonden. Er is maar 1 mogelijk" diff --git a/argonaut/locale/pl/fusiondirectory.po b/argonaut/locale/pl/fusiondirectory.po index be013210aa..3051bc4276 100644 --- a/argonaut/locale/pl/fusiondirectory.po +++ b/argonaut/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Wyłącz" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Restartuj" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Zbudź" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Wyłącz" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Restartuj" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Zbudź" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/pt/fusiondirectory.po b/argonaut/locale/pt/fusiondirectory.po index 80de6fed6f..5c0f2bd5f7 100644 --- a/argonaut/locale/pt/fusiondirectory.po +++ b/argonaut/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/pt_BR/fusiondirectory.po b/argonaut/locale/pt_BR/fusiondirectory.po index 219415f7c6..b7bf1a6dfa 100644 --- a/argonaut/locale/pt_BR/fusiondirectory.po +++ b/argonaut/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" @@ -447,6 +447,26 @@ msgstr "LTSP" msgid "LTSP server" msgstr "Servidor LTSP" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Desligue" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Reiniciar" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Acordar" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Atualização de software" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "(Re)Instalar" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Desligue" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Reiniciar" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Acordar" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Atualização de software" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "(Re)Instalar" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "Servidores múltiplos argonaut encontrados. Apenas um é suportado" diff --git a/argonaut/locale/ru/fusiondirectory.po b/argonaut/locale/ru/fusiondirectory.po index b61bf7de72..bd7f586597 100644 --- a/argonaut/locale/ru/fusiondirectory.po +++ b/argonaut/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 20:45+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "Выключить" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "Перезагрузить" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "Вернуть в обычный режим" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "Обновить программное обеÑпечение" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "Выключить" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "Перезагрузить" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "Вернуть в обычный режим" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "Обновить программное обеÑпечение" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/ru@petr1708/fusiondirectory.po b/argonaut/locale/ru@petr1708/fusiondirectory.po index d5119c2961..e704b275c6 100644 --- a/argonaut/locale/ru@petr1708/fusiondirectory.po +++ b/argonaut/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/sv/fusiondirectory.po b/argonaut/locale/sv/fusiondirectory.po index e850dc6bec..b1f5c85712 100644 --- a/argonaut/locale/sv/fusiondirectory.po +++ b/argonaut/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/ug/fusiondirectory.po b/argonaut/locale/ug/fusiondirectory.po index bf91a028e2..a1ee7b4735 100644 --- a/argonaut/locale/ug/fusiondirectory.po +++ b/argonaut/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:31+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/vi_VN/fusiondirectory.po b/argonaut/locale/vi_VN/fusiondirectory.po index f538893801..bb59ed6354 100644 --- a/argonaut/locale/vi_VN/fusiondirectory.po +++ b/argonaut/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/argonaut/locale/zh/fusiondirectory.po b/argonaut/locale/zh/fusiondirectory.po index 373858b280..fcb7c05ee3 100644 --- a/argonaut/locale/zh/fusiondirectory.po +++ b/argonaut/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" @@ -447,6 +447,26 @@ msgstr "" msgid "LTSP server" msgstr "" +#: addons/argonaut/class_argonautEventTypes.inc:72 +msgid "Switch off" +msgstr "å…³é—" + +#: addons/argonaut/class_argonautEventTypes.inc:85 +msgid "Reboot" +msgstr "é‡å¯" + +#: addons/argonaut/class_argonautEventTypes.inc:89 +msgid "Wake up" +msgstr "唤醒" + +#: addons/argonaut/class_argonautEventTypes.inc:93 +msgid "Software update" +msgstr "" + +#: addons/argonaut/class_argonautEventTypes.inc:97 +msgid "(Re)Install" +msgstr "" + #: addons/argonaut/class_filterArgonautEvents.inc:39 #: addons/argonaut/class_argonautQueue.inc:260 #: addons/argonaut/class_argonautQueue.inc:344 @@ -695,26 +715,6 @@ msgstr "" msgid "Targets for this task" msgstr "" -#: addons/argonaut/class_argonautAction.inc:248 -msgid "Switch off" -msgstr "å…³é—" - -#: addons/argonaut/class_argonautAction.inc:252 -msgid "Reboot" -msgstr "é‡å¯" - -#: addons/argonaut/class_argonautAction.inc:256 -msgid "Wake up" -msgstr "唤醒" - -#: addons/argonaut/class_argonautAction.inc:260 -msgid "Software update" -msgstr "" - -#: addons/argonaut/class_argonautAction.inc:264 -msgid "(Re)Install" -msgstr "" - #: include/class_supportDaemon.inc:107 msgid "Multiple argonaut server found. Only one is supported" msgstr "" diff --git a/audit/locale/ar/fusiondirectory.po b/audit/locale/ar/fusiondirectory.po index 87c842a193..e04f0cf3cf 100644 --- a/audit/locale/ar/fusiondirectory.po +++ b/audit/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/audit/locale/ca/fusiondirectory.po b/audit/locale/ca/fusiondirectory.po index 143b72356e..ba8b8a0f3b 100644 --- a/audit/locale/ca/fusiondirectory.po +++ b/audit/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/audit/locale/cs_CZ/fusiondirectory.po b/audit/locale/cs_CZ/fusiondirectory.po index ddf4c892ee..198d2c8436 100644 --- a/audit/locale/cs_CZ/fusiondirectory.po +++ b/audit/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/audit/locale/de/fusiondirectory.po b/audit/locale/de/fusiondirectory.po index 2ca0e317e9..25e12eaf98 100644 --- a/audit/locale/de/fusiondirectory.po +++ b/audit/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/audit/locale/el_GR/fusiondirectory.po b/audit/locale/el_GR/fusiondirectory.po index 75c6e723d0..f0c0dfffa6 100644 --- a/audit/locale/el_GR/fusiondirectory.po +++ b/audit/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/audit/locale/en/fusiondirectory.po b/audit/locale/en/fusiondirectory.po index 4ed10a13ee..77d31a93db 100644 --- a/audit/locale/en/fusiondirectory.po +++ b/audit/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/audit/locale/es/fusiondirectory.po b/audit/locale/es/fusiondirectory.po index c0e99a447c..e40cb0b3c8 100644 --- a/audit/locale/es/fusiondirectory.po +++ b/audit/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/audit/locale/es_CO/fusiondirectory.po b/audit/locale/es_CO/fusiondirectory.po index aecc2806dd..0cf1d4eeff 100644 --- a/audit/locale/es_CO/fusiondirectory.po +++ b/audit/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/audit/locale/es_VE/fusiondirectory.po b/audit/locale/es_VE/fusiondirectory.po index d12f84d63a..74c04a78d5 100644 --- a/audit/locale/es_VE/fusiondirectory.po +++ b/audit/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/audit/locale/fa_IR/fusiondirectory.po b/audit/locale/fa_IR/fusiondirectory.po index 203dea751b..24bd0a8778 100644 --- a/audit/locale/fa_IR/fusiondirectory.po +++ b/audit/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/audit/locale/fi_FI/fusiondirectory.po b/audit/locale/fi_FI/fusiondirectory.po index 99a4feca1f..27b60621c9 100644 --- a/audit/locale/fi_FI/fusiondirectory.po +++ b/audit/locale/fi_FI/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Dina Solveig Jalkanen, 2016 +# Dina Solveig Jalkanen, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-05 12:22+0000\n" "Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/audit/locale/fr/fusiondirectory.po b/audit/locale/fr/fusiondirectory.po index 4a300e9f8d..efed868525 100644 --- a/audit/locale/fr/fusiondirectory.po +++ b/audit/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/audit/locale/hu_HU/fusiondirectory.po b/audit/locale/hu_HU/fusiondirectory.po index b3891a2df0..ddf301bc39 100644 --- a/audit/locale/hu_HU/fusiondirectory.po +++ b/audit/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/audit/locale/id/fusiondirectory.po b/audit/locale/id/fusiondirectory.po index fe783effe9..97e7789b1c 100644 --- a/audit/locale/id/fusiondirectory.po +++ b/audit/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/audit/locale/it_IT/fusiondirectory.po b/audit/locale/it_IT/fusiondirectory.po index 4055c14539..974bb1a0e1 100644 --- a/audit/locale/it_IT/fusiondirectory.po +++ b/audit/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/audit/locale/lv/fusiondirectory.po b/audit/locale/lv/fusiondirectory.po index ccfa41c069..6a196fc29a 100644 --- a/audit/locale/lv/fusiondirectory.po +++ b/audit/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/audit/locale/nb/fusiondirectory.po b/audit/locale/nb/fusiondirectory.po index 7b5ab5fb00..ffdb428d93 100644 --- a/audit/locale/nb/fusiondirectory.po +++ b/audit/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/audit/locale/nl/fusiondirectory.po b/audit/locale/nl/fusiondirectory.po index c0f2cf0351..44709e9ed1 100644 --- a/audit/locale/nl/fusiondirectory.po +++ b/audit/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/audit/locale/pl/fusiondirectory.po b/audit/locale/pl/fusiondirectory.po index 4e1f52f7be..061b817ed8 100644 --- a/audit/locale/pl/fusiondirectory.po +++ b/audit/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/audit/locale/pt/fusiondirectory.po b/audit/locale/pt/fusiondirectory.po index 4ffedb1efa..8d769213d4 100644 --- a/audit/locale/pt/fusiondirectory.po +++ b/audit/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/audit/locale/pt_BR/fusiondirectory.po b/audit/locale/pt_BR/fusiondirectory.po index 2392790248..766fb788e0 100644 --- a/audit/locale/pt_BR/fusiondirectory.po +++ b/audit/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po index 33bc64f7ea..29a0f30754 100644 --- a/audit/locale/ru/fusiondirectory.po +++ b/audit/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/audit/locale/ru@petr1708/fusiondirectory.po b/audit/locale/ru@petr1708/fusiondirectory.po index 4eb186ebb3..88d5bee276 100644 --- a/audit/locale/ru@petr1708/fusiondirectory.po +++ b/audit/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/audit/locale/sv/fusiondirectory.po b/audit/locale/sv/fusiondirectory.po index 9d0e6d96b9..e9802692a6 100644 --- a/audit/locale/sv/fusiondirectory.po +++ b/audit/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/audit/locale/ug/fusiondirectory.po b/audit/locale/ug/fusiondirectory.po index 71d4d26e2b..cd4859e2a7 100644 --- a/audit/locale/ug/fusiondirectory.po +++ b/audit/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/audit/locale/vi_VN/fusiondirectory.po b/audit/locale/vi_VN/fusiondirectory.po index 60bb4449d7..56d4ee1906 100644 --- a/audit/locale/vi_VN/fusiondirectory.po +++ b/audit/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/audit/locale/zh/fusiondirectory.po b/audit/locale/zh/fusiondirectory.po index e9bdb83fd5..781e9d29b3 100644 --- a/audit/locale/zh/fusiondirectory.po +++ b/audit/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/autofs/locale/ar/fusiondirectory.po b/autofs/locale/ar/fusiondirectory.po index 8a55cffda7..95f739bdeb 100644 --- a/autofs/locale/ar/fusiondirectory.po +++ b/autofs/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/autofs/locale/ca/fusiondirectory.po b/autofs/locale/ca/fusiondirectory.po index 17a3145c7b..eeb6194f8a 100644 --- a/autofs/locale/ca/fusiondirectory.po +++ b/autofs/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/autofs/locale/cs_CZ/fusiondirectory.po b/autofs/locale/cs_CZ/fusiondirectory.po index 26584de25c..f7216b6e40 100644 --- a/autofs/locale/cs_CZ/fusiondirectory.po +++ b/autofs/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/autofs/locale/de/fusiondirectory.po b/autofs/locale/de/fusiondirectory.po index 43e5b0d1f0..dcde42f514 100644 --- a/autofs/locale/de/fusiondirectory.po +++ b/autofs/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/autofs/locale/el_GR/fusiondirectory.po b/autofs/locale/el_GR/fusiondirectory.po index 8667404f48..401b0e0f6d 100644 --- a/autofs/locale/el_GR/fusiondirectory.po +++ b/autofs/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/autofs/locale/en/fusiondirectory.po b/autofs/locale/en/fusiondirectory.po index b874007f2c..6e5a1effe5 100644 --- a/autofs/locale/en/fusiondirectory.po +++ b/autofs/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/autofs/locale/es/fusiondirectory.po b/autofs/locale/es/fusiondirectory.po index 00d3d65025..9687e7310a 100644 --- a/autofs/locale/es/fusiondirectory.po +++ b/autofs/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/autofs/locale/es_CO/fusiondirectory.po b/autofs/locale/es_CO/fusiondirectory.po index 591dc01a43..aae99137b8 100644 --- a/autofs/locale/es_CO/fusiondirectory.po +++ b/autofs/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/autofs/locale/es_VE/fusiondirectory.po b/autofs/locale/es_VE/fusiondirectory.po index 2518e1240d..0075fe8929 100644 --- a/autofs/locale/es_VE/fusiondirectory.po +++ b/autofs/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/autofs/locale/fa_IR/fusiondirectory.po b/autofs/locale/fa_IR/fusiondirectory.po index 9892ebed4f..b18a4dd069 100644 --- a/autofs/locale/fa_IR/fusiondirectory.po +++ b/autofs/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/autofs/locale/fi_FI/fusiondirectory.po b/autofs/locale/fi_FI/fusiondirectory.po index e5d56e096e..c147b3bc6c 100644 --- a/autofs/locale/fi_FI/fusiondirectory.po +++ b/autofs/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/autofs/locale/fr/fusiondirectory.po b/autofs/locale/fr/fusiondirectory.po index b09d55412e..2894b06ec2 100644 --- a/autofs/locale/fr/fusiondirectory.po +++ b/autofs/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/autofs/locale/hu_HU/fusiondirectory.po b/autofs/locale/hu_HU/fusiondirectory.po index 3d72b4107a..d2b575f592 100644 --- a/autofs/locale/hu_HU/fusiondirectory.po +++ b/autofs/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/autofs/locale/id/fusiondirectory.po b/autofs/locale/id/fusiondirectory.po index e5e0f41f1d..8f7ba07dd7 100644 --- a/autofs/locale/id/fusiondirectory.po +++ b/autofs/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/autofs/locale/it_IT/fusiondirectory.po b/autofs/locale/it_IT/fusiondirectory.po index f01901dd7e..05a788cb28 100644 --- a/autofs/locale/it_IT/fusiondirectory.po +++ b/autofs/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:47+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/autofs/locale/lv/fusiondirectory.po b/autofs/locale/lv/fusiondirectory.po index d4f000c9ec..5a44d13038 100644 --- a/autofs/locale/lv/fusiondirectory.po +++ b/autofs/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/autofs/locale/nb/fusiondirectory.po b/autofs/locale/nb/fusiondirectory.po index 962c068cfa..22da34ee39 100644 --- a/autofs/locale/nb/fusiondirectory.po +++ b/autofs/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/autofs/locale/nl/fusiondirectory.po b/autofs/locale/nl/fusiondirectory.po index 5f058b3019..d90c5cfbdb 100644 --- a/autofs/locale/nl/fusiondirectory.po +++ b/autofs/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/autofs/locale/pl/fusiondirectory.po b/autofs/locale/pl/fusiondirectory.po index d76ec4d824..06c949c6d4 100644 --- a/autofs/locale/pl/fusiondirectory.po +++ b/autofs/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/autofs/locale/pt/fusiondirectory.po b/autofs/locale/pt/fusiondirectory.po index 2849f92172..967ced6e59 100644 --- a/autofs/locale/pt/fusiondirectory.po +++ b/autofs/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/autofs/locale/pt_BR/fusiondirectory.po b/autofs/locale/pt_BR/fusiondirectory.po index f329abe51a..662ec203a8 100644 --- a/autofs/locale/pt_BR/fusiondirectory.po +++ b/autofs/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/autofs/locale/ru/fusiondirectory.po b/autofs/locale/ru/fusiondirectory.po index b170317559..8bf6d92b61 100644 --- a/autofs/locale/ru/fusiondirectory.po +++ b/autofs/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/autofs/locale/ru@petr1708/fusiondirectory.po b/autofs/locale/ru@petr1708/fusiondirectory.po index acf974f38c..3f51a8f912 100644 --- a/autofs/locale/ru@petr1708/fusiondirectory.po +++ b/autofs/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/autofs/locale/sv/fusiondirectory.po b/autofs/locale/sv/fusiondirectory.po index a410c80fc9..84013bebc0 100644 --- a/autofs/locale/sv/fusiondirectory.po +++ b/autofs/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/autofs/locale/ug/fusiondirectory.po b/autofs/locale/ug/fusiondirectory.po index cdb25ed4fa..e5eef32d02 100644 --- a/autofs/locale/ug/fusiondirectory.po +++ b/autofs/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:33+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/autofs/locale/vi_VN/fusiondirectory.po b/autofs/locale/vi_VN/fusiondirectory.po index b6958e7747..19e53574c6 100644 --- a/autofs/locale/vi_VN/fusiondirectory.po +++ b/autofs/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/autofs/locale/zh/fusiondirectory.po b/autofs/locale/zh/fusiondirectory.po index e3b1dd0ce3..b43e4d5c47 100644 --- a/autofs/locale/zh/fusiondirectory.po +++ b/autofs/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/certificates/locale/ar/fusiondirectory.po b/certificates/locale/ar/fusiondirectory.po index 9b759b5e08..b1e6f99be6 100644 --- a/certificates/locale/ar/fusiondirectory.po +++ b/certificates/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/certificates/locale/ca/fusiondirectory.po b/certificates/locale/ca/fusiondirectory.po index b5519f15df..827c79067b 100644 --- a/certificates/locale/ca/fusiondirectory.po +++ b/certificates/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/certificates/locale/cs_CZ/fusiondirectory.po b/certificates/locale/cs_CZ/fusiondirectory.po index 60fb7129da..6913f9fb11 100644 --- a/certificates/locale/cs_CZ/fusiondirectory.po +++ b/certificates/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/certificates/locale/de/fusiondirectory.po b/certificates/locale/de/fusiondirectory.po index 6040d358f2..fc5d57ec9b 100644 --- a/certificates/locale/de/fusiondirectory.po +++ b/certificates/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/certificates/locale/el_GR/fusiondirectory.po b/certificates/locale/el_GR/fusiondirectory.po index 9a20d797bd..f8acb902e6 100644 --- a/certificates/locale/el_GR/fusiondirectory.po +++ b/certificates/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/certificates/locale/en/fusiondirectory.po b/certificates/locale/en/fusiondirectory.po index ba17f5d4fe..14c0b456ba 100644 --- a/certificates/locale/en/fusiondirectory.po +++ b/certificates/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/certificates/locale/es/fusiondirectory.po b/certificates/locale/es/fusiondirectory.po index a8e0737984..94bfefb567 100644 --- a/certificates/locale/es/fusiondirectory.po +++ b/certificates/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/certificates/locale/es_CO/fusiondirectory.po b/certificates/locale/es_CO/fusiondirectory.po index f5571cd832..8f3aebcfa6 100644 --- a/certificates/locale/es_CO/fusiondirectory.po +++ b/certificates/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/certificates/locale/es_VE/fusiondirectory.po b/certificates/locale/es_VE/fusiondirectory.po index 72c71a4a89..3d0a77bd10 100644 --- a/certificates/locale/es_VE/fusiondirectory.po +++ b/certificates/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/certificates/locale/fa_IR/fusiondirectory.po b/certificates/locale/fa_IR/fusiondirectory.po index de868905d7..40e85d57d3 100644 --- a/certificates/locale/fa_IR/fusiondirectory.po +++ b/certificates/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/certificates/locale/fi_FI/fusiondirectory.po b/certificates/locale/fi_FI/fusiondirectory.po index 845ec75f7e..96ebbbd84b 100644 --- a/certificates/locale/fi_FI/fusiondirectory.po +++ b/certificates/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/certificates/locale/fr/fusiondirectory.po b/certificates/locale/fr/fusiondirectory.po index 891254a468..f788355144 100644 --- a/certificates/locale/fr/fusiondirectory.po +++ b/certificates/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/certificates/locale/hu_HU/fusiondirectory.po b/certificates/locale/hu_HU/fusiondirectory.po index 0d34d13095..fa8d5a387e 100644 --- a/certificates/locale/hu_HU/fusiondirectory.po +++ b/certificates/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/certificates/locale/id/fusiondirectory.po b/certificates/locale/id/fusiondirectory.po index 9f3c4eca36..03fee130f9 100644 --- a/certificates/locale/id/fusiondirectory.po +++ b/certificates/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/certificates/locale/it_IT/fusiondirectory.po b/certificates/locale/it_IT/fusiondirectory.po index 197a4c5899..0b66b5974c 100644 --- a/certificates/locale/it_IT/fusiondirectory.po +++ b/certificates/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 15:42+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:47+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/certificates/locale/lv/fusiondirectory.po b/certificates/locale/lv/fusiondirectory.po index df97081c88..d9d5b4223a 100644 --- a/certificates/locale/lv/fusiondirectory.po +++ b/certificates/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/certificates/locale/nb/fusiondirectory.po b/certificates/locale/nb/fusiondirectory.po index 270bad43a7..da08ebd37d 100644 --- a/certificates/locale/nb/fusiondirectory.po +++ b/certificates/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/certificates/locale/nl/fusiondirectory.po b/certificates/locale/nl/fusiondirectory.po index 24531da3ad..568656b95a 100644 --- a/certificates/locale/nl/fusiondirectory.po +++ b/certificates/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/certificates/locale/pl/fusiondirectory.po b/certificates/locale/pl/fusiondirectory.po index 0d4814037a..dce23e1ae4 100644 --- a/certificates/locale/pl/fusiondirectory.po +++ b/certificates/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/certificates/locale/pt/fusiondirectory.po b/certificates/locale/pt/fusiondirectory.po index 80e38ed27e..197e94a512 100644 --- a/certificates/locale/pt/fusiondirectory.po +++ b/certificates/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/certificates/locale/pt_BR/fusiondirectory.po b/certificates/locale/pt_BR/fusiondirectory.po index 04f60f4c57..9d25a8713d 100644 --- a/certificates/locale/pt_BR/fusiondirectory.po +++ b/certificates/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/certificates/locale/ru/fusiondirectory.po b/certificates/locale/ru/fusiondirectory.po index 1b8f2c5480..5500a5a901 100644 --- a/certificates/locale/ru/fusiondirectory.po +++ b/certificates/locale/ru/fusiondirectory.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alexey Matveev, 2015 +# Alexey Matveev, 2015-2016 # Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 21:27+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/certificates/locale/ru@petr1708/fusiondirectory.po b/certificates/locale/ru@petr1708/fusiondirectory.po index 2cc2306812..67b2877147 100644 --- a/certificates/locale/ru@petr1708/fusiondirectory.po +++ b/certificates/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/certificates/locale/sv/fusiondirectory.po b/certificates/locale/sv/fusiondirectory.po index 71a07e2d41..a1f619904b 100644 --- a/certificates/locale/sv/fusiondirectory.po +++ b/certificates/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/certificates/locale/ug/fusiondirectory.po b/certificates/locale/ug/fusiondirectory.po index 915baf0666..5fb8e4c483 100644 --- a/certificates/locale/ug/fusiondirectory.po +++ b/certificates/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/certificates/locale/vi_VN/fusiondirectory.po b/certificates/locale/vi_VN/fusiondirectory.po index 6ca719eb67..3e8be6ac9c 100644 --- a/certificates/locale/vi_VN/fusiondirectory.po +++ b/certificates/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/certificates/locale/zh/fusiondirectory.po b/certificates/locale/zh/fusiondirectory.po index abde5edabf..5db0337e71 100644 --- a/certificates/locale/zh/fusiondirectory.po +++ b/certificates/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/community/locale/ar/fusiondirectory.po b/community/locale/ar/fusiondirectory.po index a750825a8e..ea05732c49 100644 --- a/community/locale/ar/fusiondirectory.po +++ b/community/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/community/locale/ca/fusiondirectory.po b/community/locale/ca/fusiondirectory.po index c7e8008b69..fa2d8986ae 100644 --- a/community/locale/ca/fusiondirectory.po +++ b/community/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/community/locale/cs_CZ/fusiondirectory.po b/community/locale/cs_CZ/fusiondirectory.po index 5f4a2ee5f1..83c9ca793b 100644 --- a/community/locale/cs_CZ/fusiondirectory.po +++ b/community/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/community/locale/de/fusiondirectory.po b/community/locale/de/fusiondirectory.po index bb3f92e8b0..b61745afea 100644 --- a/community/locale/de/fusiondirectory.po +++ b/community/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/community/locale/el_GR/fusiondirectory.po b/community/locale/el_GR/fusiondirectory.po index 531a41d18e..933094d503 100644 --- a/community/locale/el_GR/fusiondirectory.po +++ b/community/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/community/locale/en/fusiondirectory.po b/community/locale/en/fusiondirectory.po index d600ed3428..1845f36851 100644 --- a/community/locale/en/fusiondirectory.po +++ b/community/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/community/locale/es/fusiondirectory.po b/community/locale/es/fusiondirectory.po index 303abb928d..2566917f63 100644 --- a/community/locale/es/fusiondirectory.po +++ b/community/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/community/locale/es_CO/fusiondirectory.po b/community/locale/es_CO/fusiondirectory.po index 0fdae75eb3..7d7fb2052f 100644 --- a/community/locale/es_CO/fusiondirectory.po +++ b/community/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/community/locale/es_VE/fusiondirectory.po b/community/locale/es_VE/fusiondirectory.po index 9d5690b702..4ee130c75c 100644 --- a/community/locale/es_VE/fusiondirectory.po +++ b/community/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/community/locale/fa_IR/fusiondirectory.po b/community/locale/fa_IR/fusiondirectory.po index 9d255be90e..b52670d1a7 100644 --- a/community/locale/fa_IR/fusiondirectory.po +++ b/community/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/community/locale/fi_FI/fusiondirectory.po b/community/locale/fi_FI/fusiondirectory.po index ec54de3787..b08496ac0b 100644 --- a/community/locale/fi_FI/fusiondirectory.po +++ b/community/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/community/locale/fr/fusiondirectory.po b/community/locale/fr/fusiondirectory.po index 68006dc7a0..be9ab7d08c 100644 --- a/community/locale/fr/fusiondirectory.po +++ b/community/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:16+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/community/locale/hu_HU/fusiondirectory.po b/community/locale/hu_HU/fusiondirectory.po index 18d3446ebe..6caf91170b 100644 --- a/community/locale/hu_HU/fusiondirectory.po +++ b/community/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/community/locale/id/fusiondirectory.po b/community/locale/id/fusiondirectory.po index cb6acef3b9..fdc108cd1b 100644 --- a/community/locale/id/fusiondirectory.po +++ b/community/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/community/locale/it_IT/fusiondirectory.po b/community/locale/it_IT/fusiondirectory.po index 24e56f3399..3fc1d20417 100644 --- a/community/locale/it_IT/fusiondirectory.po +++ b/community/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-03 15:37+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/community/locale/lv/fusiondirectory.po b/community/locale/lv/fusiondirectory.po index ef44f73aa4..fdafdf7f6c 100644 --- a/community/locale/lv/fusiondirectory.po +++ b/community/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/community/locale/nb/fusiondirectory.po b/community/locale/nb/fusiondirectory.po index c8640c0fd2..16c9016716 100644 --- a/community/locale/nb/fusiondirectory.po +++ b/community/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/community/locale/nl/fusiondirectory.po b/community/locale/nl/fusiondirectory.po index 4122efb14f..70c3b4e8f4 100644 --- a/community/locale/nl/fusiondirectory.po +++ b/community/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/community/locale/pl/fusiondirectory.po b/community/locale/pl/fusiondirectory.po index 879b90d0bf..086f3abf9d 100644 --- a/community/locale/pl/fusiondirectory.po +++ b/community/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/community/locale/pt/fusiondirectory.po b/community/locale/pt/fusiondirectory.po index ac6e486d24..a9cfe4005a 100644 --- a/community/locale/pt/fusiondirectory.po +++ b/community/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/community/locale/pt_BR/fusiondirectory.po b/community/locale/pt_BR/fusiondirectory.po index 43de12d07e..9b3c2c3294 100644 --- a/community/locale/pt_BR/fusiondirectory.po +++ b/community/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/community/locale/ru/fusiondirectory.po b/community/locale/ru/fusiondirectory.po index 2b18b92bd7..b89face4d9 100644 --- a/community/locale/ru/fusiondirectory.po +++ b/community/locale/ru/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/community/locale/ru@petr1708/fusiondirectory.po b/community/locale/ru@petr1708/fusiondirectory.po index 0f780de863..9d42930b2d 100644 --- a/community/locale/ru@petr1708/fusiondirectory.po +++ b/community/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/community/locale/sv/fusiondirectory.po b/community/locale/sv/fusiondirectory.po index 18d082e946..7ecdcda2a7 100644 --- a/community/locale/sv/fusiondirectory.po +++ b/community/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/community/locale/ug/fusiondirectory.po b/community/locale/ug/fusiondirectory.po index 8f670570c2..e087fe353d 100644 --- a/community/locale/ug/fusiondirectory.po +++ b/community/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/community/locale/vi_VN/fusiondirectory.po b/community/locale/vi_VN/fusiondirectory.po index 2bef633d73..dbafc6d7d0 100644 --- a/community/locale/vi_VN/fusiondirectory.po +++ b/community/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/community/locale/zh/fusiondirectory.po b/community/locale/zh/fusiondirectory.po index 7b4307119f..7db4b58943 100644 --- a/community/locale/zh/fusiondirectory.po +++ b/community/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/cyrus/locale/ar/fusiondirectory.po b/cyrus/locale/ar/fusiondirectory.po index 1e5753ca08..b98f021160 100644 --- a/cyrus/locale/ar/fusiondirectory.po +++ b/cyrus/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/cyrus/locale/ca/fusiondirectory.po b/cyrus/locale/ca/fusiondirectory.po index 96a2e143fb..6cf7e27399 100644 --- a/cyrus/locale/ca/fusiondirectory.po +++ b/cyrus/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/cyrus/locale/cs_CZ/fusiondirectory.po b/cyrus/locale/cs_CZ/fusiondirectory.po index 1e4080f549..197fccb8f6 100644 --- a/cyrus/locale/cs_CZ/fusiondirectory.po +++ b/cyrus/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/cyrus/locale/de/fusiondirectory.po b/cyrus/locale/de/fusiondirectory.po index 8820054e47..3b53bbda26 100644 --- a/cyrus/locale/de/fusiondirectory.po +++ b/cyrus/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/cyrus/locale/el_GR/fusiondirectory.po b/cyrus/locale/el_GR/fusiondirectory.po index 01158aa81a..a85fb9447d 100644 --- a/cyrus/locale/el_GR/fusiondirectory.po +++ b/cyrus/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/cyrus/locale/en/fusiondirectory.po b/cyrus/locale/en/fusiondirectory.po index e9e3bdf383..bd41711a8f 100644 --- a/cyrus/locale/en/fusiondirectory.po +++ b/cyrus/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/cyrus/locale/es/fusiondirectory.po b/cyrus/locale/es/fusiondirectory.po index 04275bdaa6..b371c9944a 100644 --- a/cyrus/locale/es/fusiondirectory.po +++ b/cyrus/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/cyrus/locale/es_CO/fusiondirectory.po b/cyrus/locale/es_CO/fusiondirectory.po index d80d06ec9b..527f19bb72 100644 --- a/cyrus/locale/es_CO/fusiondirectory.po +++ b/cyrus/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/cyrus/locale/es_VE/fusiondirectory.po b/cyrus/locale/es_VE/fusiondirectory.po index 2eee726f7d..7f8485cc1a 100644 --- a/cyrus/locale/es_VE/fusiondirectory.po +++ b/cyrus/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/cyrus/locale/fa_IR/fusiondirectory.po b/cyrus/locale/fa_IR/fusiondirectory.po index 9dbf549d35..1415de78ab 100644 --- a/cyrus/locale/fa_IR/fusiondirectory.po +++ b/cyrus/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/cyrus/locale/fi_FI/fusiondirectory.po b/cyrus/locale/fi_FI/fusiondirectory.po index 07e69a950b..0e307ec71e 100644 --- a/cyrus/locale/fi_FI/fusiondirectory.po +++ b/cyrus/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/cyrus/locale/fr/fusiondirectory.po b/cyrus/locale/fr/fusiondirectory.po index 5ca16fa776..2163249991 100644 --- a/cyrus/locale/fr/fusiondirectory.po +++ b/cyrus/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/cyrus/locale/hu_HU/fusiondirectory.po b/cyrus/locale/hu_HU/fusiondirectory.po index 58f10fb24f..067b50b689 100644 --- a/cyrus/locale/hu_HU/fusiondirectory.po +++ b/cyrus/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/cyrus/locale/id/fusiondirectory.po b/cyrus/locale/id/fusiondirectory.po index 9237aea4ba..40d31180a6 100644 --- a/cyrus/locale/id/fusiondirectory.po +++ b/cyrus/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/cyrus/locale/it_IT/fusiondirectory.po b/cyrus/locale/it_IT/fusiondirectory.po index 1f8e179b25..e829f34d60 100644 --- a/cyrus/locale/it_IT/fusiondirectory.po +++ b/cyrus/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:47+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/cyrus/locale/lv/fusiondirectory.po b/cyrus/locale/lv/fusiondirectory.po index d90e878ed3..a7e5895046 100644 --- a/cyrus/locale/lv/fusiondirectory.po +++ b/cyrus/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/cyrus/locale/nb/fusiondirectory.po b/cyrus/locale/nb/fusiondirectory.po index 594c0e4158..ccafc49fc1 100644 --- a/cyrus/locale/nb/fusiondirectory.po +++ b/cyrus/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/cyrus/locale/nl/fusiondirectory.po b/cyrus/locale/nl/fusiondirectory.po index e3c1c47f91..1f8255e834 100644 --- a/cyrus/locale/nl/fusiondirectory.po +++ b/cyrus/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/cyrus/locale/pl/fusiondirectory.po b/cyrus/locale/pl/fusiondirectory.po index e87b0b3ad8..4d5bf43132 100644 --- a/cyrus/locale/pl/fusiondirectory.po +++ b/cyrus/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/cyrus/locale/pt/fusiondirectory.po b/cyrus/locale/pt/fusiondirectory.po index 9cbf673811..1e0b3add74 100644 --- a/cyrus/locale/pt/fusiondirectory.po +++ b/cyrus/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/cyrus/locale/pt_BR/fusiondirectory.po b/cyrus/locale/pt_BR/fusiondirectory.po index 268d31e500..0546c66c4f 100644 --- a/cyrus/locale/pt_BR/fusiondirectory.po +++ b/cyrus/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/cyrus/locale/ru/fusiondirectory.po b/cyrus/locale/ru/fusiondirectory.po index de3dd91dd2..e3870e104c 100644 --- a/cyrus/locale/ru/fusiondirectory.po +++ b/cyrus/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/cyrus/locale/ru@petr1708/fusiondirectory.po b/cyrus/locale/ru@petr1708/fusiondirectory.po index abd911aa09..f9d694729f 100644 --- a/cyrus/locale/ru@petr1708/fusiondirectory.po +++ b/cyrus/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/cyrus/locale/sv/fusiondirectory.po b/cyrus/locale/sv/fusiondirectory.po index e0fab8676e..30ecc1718e 100644 --- a/cyrus/locale/sv/fusiondirectory.po +++ b/cyrus/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/cyrus/locale/ug/fusiondirectory.po b/cyrus/locale/ug/fusiondirectory.po index 2dc7a1a5f4..74db598ad4 100644 --- a/cyrus/locale/ug/fusiondirectory.po +++ b/cyrus/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:34+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/cyrus/locale/vi_VN/fusiondirectory.po b/cyrus/locale/vi_VN/fusiondirectory.po index bf16e3e68d..028781d8d2 100644 --- a/cyrus/locale/vi_VN/fusiondirectory.po +++ b/cyrus/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/cyrus/locale/zh/fusiondirectory.po b/cyrus/locale/zh/fusiondirectory.po index 3200c38b79..8bb3227e16 100644 --- a/cyrus/locale/zh/fusiondirectory.po +++ b/cyrus/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/debconf/locale/ar/fusiondirectory.po b/debconf/locale/ar/fusiondirectory.po index 0cdb6180e5..155b351d7d 100644 --- a/debconf/locale/ar/fusiondirectory.po +++ b/debconf/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/debconf/locale/ca/fusiondirectory.po b/debconf/locale/ca/fusiondirectory.po index d5d72a1a76..03a5f45daa 100644 --- a/debconf/locale/ca/fusiondirectory.po +++ b/debconf/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/debconf/locale/cs_CZ/fusiondirectory.po b/debconf/locale/cs_CZ/fusiondirectory.po index 4f042fa97c..d1042ec7d5 100644 --- a/debconf/locale/cs_CZ/fusiondirectory.po +++ b/debconf/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/debconf/locale/de/fusiondirectory.po b/debconf/locale/de/fusiondirectory.po index 8588a6c2b6..b733ab5032 100644 --- a/debconf/locale/de/fusiondirectory.po +++ b/debconf/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/debconf/locale/el_GR/fusiondirectory.po b/debconf/locale/el_GR/fusiondirectory.po index b2eebd9d83..ad3f48118c 100644 --- a/debconf/locale/el_GR/fusiondirectory.po +++ b/debconf/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/debconf/locale/en/fusiondirectory.po b/debconf/locale/en/fusiondirectory.po index 7df97b80f3..083f1d3ff6 100644 --- a/debconf/locale/en/fusiondirectory.po +++ b/debconf/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/debconf/locale/es/fusiondirectory.po b/debconf/locale/es/fusiondirectory.po index c1db5b7e0b..18ac50bbd4 100644 --- a/debconf/locale/es/fusiondirectory.po +++ b/debconf/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/debconf/locale/es_CO/fusiondirectory.po b/debconf/locale/es_CO/fusiondirectory.po index 103fc28bd9..b2d40a6043 100644 --- a/debconf/locale/es_CO/fusiondirectory.po +++ b/debconf/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/debconf/locale/es_VE/fusiondirectory.po b/debconf/locale/es_VE/fusiondirectory.po index 2bd14c4ae9..b342f74267 100644 --- a/debconf/locale/es_VE/fusiondirectory.po +++ b/debconf/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/debconf/locale/fa_IR/fusiondirectory.po b/debconf/locale/fa_IR/fusiondirectory.po index 3818f9dc7d..e473ddb659 100644 --- a/debconf/locale/fa_IR/fusiondirectory.po +++ b/debconf/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po index 002d0cbc44..c3042b22e6 100644 --- a/debconf/locale/fi_FI/fusiondirectory.po +++ b/debconf/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/debconf/locale/fr/fusiondirectory.po b/debconf/locale/fr/fusiondirectory.po index 6e6ae79fc2..7ac9a8b15d 100644 --- a/debconf/locale/fr/fusiondirectory.po +++ b/debconf/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/debconf/locale/hu_HU/fusiondirectory.po b/debconf/locale/hu_HU/fusiondirectory.po index 99079d93a8..c00702c64c 100644 --- a/debconf/locale/hu_HU/fusiondirectory.po +++ b/debconf/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/debconf/locale/id/fusiondirectory.po b/debconf/locale/id/fusiondirectory.po index 17f49ac9a7..de834e18dc 100644 --- a/debconf/locale/id/fusiondirectory.po +++ b/debconf/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/debconf/locale/it_IT/fusiondirectory.po b/debconf/locale/it_IT/fusiondirectory.po index 5241594509..58fb595d1f 100644 --- a/debconf/locale/it_IT/fusiondirectory.po +++ b/debconf/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/debconf/locale/lv/fusiondirectory.po b/debconf/locale/lv/fusiondirectory.po index 761895c629..c7d9b55e72 100644 --- a/debconf/locale/lv/fusiondirectory.po +++ b/debconf/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/debconf/locale/nb/fusiondirectory.po b/debconf/locale/nb/fusiondirectory.po index 17a4fe7255..69172db86e 100644 --- a/debconf/locale/nb/fusiondirectory.po +++ b/debconf/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/debconf/locale/nl/fusiondirectory.po b/debconf/locale/nl/fusiondirectory.po index 4376050d74..ff0dbc864f 100644 --- a/debconf/locale/nl/fusiondirectory.po +++ b/debconf/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/debconf/locale/pl/fusiondirectory.po b/debconf/locale/pl/fusiondirectory.po index 8bcda94a35..0cb75c9f97 100644 --- a/debconf/locale/pl/fusiondirectory.po +++ b/debconf/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/debconf/locale/pt/fusiondirectory.po b/debconf/locale/pt/fusiondirectory.po index fc7ce05a8b..7f63c6b01a 100644 --- a/debconf/locale/pt/fusiondirectory.po +++ b/debconf/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/debconf/locale/pt_BR/fusiondirectory.po b/debconf/locale/pt_BR/fusiondirectory.po index a367d270be..49bdd8d5b1 100644 --- a/debconf/locale/pt_BR/fusiondirectory.po +++ b/debconf/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/debconf/locale/ru/fusiondirectory.po b/debconf/locale/ru/fusiondirectory.po index a9e24eb19e..c7ccaff477 100644 --- a/debconf/locale/ru/fusiondirectory.po +++ b/debconf/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/debconf/locale/ru@petr1708/fusiondirectory.po b/debconf/locale/ru@petr1708/fusiondirectory.po index 226c5682a5..b18dd102af 100644 --- a/debconf/locale/ru@petr1708/fusiondirectory.po +++ b/debconf/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/debconf/locale/sv/fusiondirectory.po b/debconf/locale/sv/fusiondirectory.po index 5ff6722f22..884a1c8053 100644 --- a/debconf/locale/sv/fusiondirectory.po +++ b/debconf/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/debconf/locale/ug/fusiondirectory.po b/debconf/locale/ug/fusiondirectory.po index 6a51066c14..9c5416e226 100644 --- a/debconf/locale/ug/fusiondirectory.po +++ b/debconf/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/debconf/locale/vi_VN/fusiondirectory.po b/debconf/locale/vi_VN/fusiondirectory.po index 189828a653..d6cb313733 100644 --- a/debconf/locale/vi_VN/fusiondirectory.po +++ b/debconf/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/debconf/locale/zh/fusiondirectory.po b/debconf/locale/zh/fusiondirectory.po index bd1f484334..d8649f23d0 100644 --- a/debconf/locale/zh/fusiondirectory.po +++ b/debconf/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/developers/locale/ar/fusiondirectory.po b/developers/locale/ar/fusiondirectory.po index 0ed9404375..3f166e854f 100644 --- a/developers/locale/ar/fusiondirectory.po +++ b/developers/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/developers/locale/ca/fusiondirectory.po b/developers/locale/ca/fusiondirectory.po index 77a72e15e7..1abe4b263a 100644 --- a/developers/locale/ca/fusiondirectory.po +++ b/developers/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/developers/locale/cs_CZ/fusiondirectory.po b/developers/locale/cs_CZ/fusiondirectory.po index c352b680e7..5605b7a54c 100644 --- a/developers/locale/cs_CZ/fusiondirectory.po +++ b/developers/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/developers/locale/de/fusiondirectory.po b/developers/locale/de/fusiondirectory.po index adb1d46d50..fc4d4250d1 100644 --- a/developers/locale/de/fusiondirectory.po +++ b/developers/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/developers/locale/el_GR/fusiondirectory.po b/developers/locale/el_GR/fusiondirectory.po index a0f38a08f3..52ca160882 100644 --- a/developers/locale/el_GR/fusiondirectory.po +++ b/developers/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/developers/locale/en/fusiondirectory.po b/developers/locale/en/fusiondirectory.po index 78bc37f469..52e4189a33 100644 --- a/developers/locale/en/fusiondirectory.po +++ b/developers/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/developers/locale/es/fusiondirectory.po b/developers/locale/es/fusiondirectory.po index be5f4af7a1..23a441ff2c 100644 --- a/developers/locale/es/fusiondirectory.po +++ b/developers/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/developers/locale/es_CO/fusiondirectory.po b/developers/locale/es_CO/fusiondirectory.po index 89fc6064d2..0a43c9e7ac 100644 --- a/developers/locale/es_CO/fusiondirectory.po +++ b/developers/locale/es_CO/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/developers/locale/es_VE/fusiondirectory.po b/developers/locale/es_VE/fusiondirectory.po index 9b4d30e078..d3ed4737fd 100644 --- a/developers/locale/es_VE/fusiondirectory.po +++ b/developers/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/developers/locale/fa_IR/fusiondirectory.po b/developers/locale/fa_IR/fusiondirectory.po index b770251c20..9b49e8d824 100644 --- a/developers/locale/fa_IR/fusiondirectory.po +++ b/developers/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/developers/locale/fi_FI/fusiondirectory.po b/developers/locale/fi_FI/fusiondirectory.po index 919f467b20..6c9c226738 100644 --- a/developers/locale/fi_FI/fusiondirectory.po +++ b/developers/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/developers/locale/fr/fusiondirectory.po b/developers/locale/fr/fusiondirectory.po index d3bb4bda61..a19ebf5a2b 100644 --- a/developers/locale/fr/fusiondirectory.po +++ b/developers/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/developers/locale/hu_HU/fusiondirectory.po b/developers/locale/hu_HU/fusiondirectory.po index 66baf9d1b1..e9fbf79518 100644 --- a/developers/locale/hu_HU/fusiondirectory.po +++ b/developers/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/developers/locale/id/fusiondirectory.po b/developers/locale/id/fusiondirectory.po index a2f74c4c01..c4f20102c8 100644 --- a/developers/locale/id/fusiondirectory.po +++ b/developers/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/developers/locale/it_IT/fusiondirectory.po b/developers/locale/it_IT/fusiondirectory.po index 5309cc80f8..0c49025e43 100644 --- a/developers/locale/it_IT/fusiondirectory.po +++ b/developers/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/developers/locale/lv/fusiondirectory.po b/developers/locale/lv/fusiondirectory.po index 77eabf1fca..6c4bd1df93 100644 --- a/developers/locale/lv/fusiondirectory.po +++ b/developers/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/developers/locale/nb/fusiondirectory.po b/developers/locale/nb/fusiondirectory.po index 4fd0a87c15..19ad58489b 100644 --- a/developers/locale/nb/fusiondirectory.po +++ b/developers/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:38+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/developers/locale/nl/fusiondirectory.po b/developers/locale/nl/fusiondirectory.po index e4ff187103..44abb34015 100644 --- a/developers/locale/nl/fusiondirectory.po +++ b/developers/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/developers/locale/pl/fusiondirectory.po b/developers/locale/pl/fusiondirectory.po index 1ceb3052bb..b849f0dc42 100644 --- a/developers/locale/pl/fusiondirectory.po +++ b/developers/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/developers/locale/pt/fusiondirectory.po b/developers/locale/pt/fusiondirectory.po index 1cb1f88e63..659d8de262 100644 --- a/developers/locale/pt/fusiondirectory.po +++ b/developers/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/developers/locale/pt_BR/fusiondirectory.po b/developers/locale/pt_BR/fusiondirectory.po index f2ed847bcd..0ccff6e08c 100644 --- a/developers/locale/pt_BR/fusiondirectory.po +++ b/developers/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/developers/locale/ru/fusiondirectory.po b/developers/locale/ru/fusiondirectory.po index bd53c4662a..81243f440c 100644 --- a/developers/locale/ru/fusiondirectory.po +++ b/developers/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-02-11 18:55+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/developers/locale/ru@petr1708/fusiondirectory.po b/developers/locale/ru@petr1708/fusiondirectory.po index 61a56e2475..9962b96327 100644 --- a/developers/locale/ru@petr1708/fusiondirectory.po +++ b/developers/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/developers/locale/sv/fusiondirectory.po b/developers/locale/sv/fusiondirectory.po index 9a3f413491..7c5ff0bbe8 100644 --- a/developers/locale/sv/fusiondirectory.po +++ b/developers/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/developers/locale/ug/fusiondirectory.po b/developers/locale/ug/fusiondirectory.po index d8f149ecee..e147eba9b6 100644 --- a/developers/locale/ug/fusiondirectory.po +++ b/developers/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:35+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/developers/locale/vi_VN/fusiondirectory.po b/developers/locale/vi_VN/fusiondirectory.po index b925aea143..c439535b62 100644 --- a/developers/locale/vi_VN/fusiondirectory.po +++ b/developers/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/developers/locale/zh/fusiondirectory.po b/developers/locale/zh/fusiondirectory.po index c1f442eebd..e8e60e2867 100644 --- a/developers/locale/zh/fusiondirectory.po +++ b/developers/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dhcp/locale/ar/fusiondirectory.po b/dhcp/locale/ar/fusiondirectory.po index 31caf6cd0f..7d2d4e7dbe 100644 --- a/dhcp/locale/ar/fusiondirectory.po +++ b/dhcp/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dhcp/locale/ca/fusiondirectory.po b/dhcp/locale/ca/fusiondirectory.po index 9597e2ef5f..b61256dabe 100644 --- a/dhcp/locale/ca/fusiondirectory.po +++ b/dhcp/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dhcp/locale/cs_CZ/fusiondirectory.po b/dhcp/locale/cs_CZ/fusiondirectory.po index 9ed1fae3b5..a9d01a7f68 100644 --- a/dhcp/locale/cs_CZ/fusiondirectory.po +++ b/dhcp/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dhcp/locale/de/fusiondirectory.po b/dhcp/locale/de/fusiondirectory.po index 2264e44446..567517a070 100644 --- a/dhcp/locale/de/fusiondirectory.po +++ b/dhcp/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dhcp/locale/el_GR/fusiondirectory.po b/dhcp/locale/el_GR/fusiondirectory.po index 4071b8c75e..323deb78c5 100644 --- a/dhcp/locale/el_GR/fusiondirectory.po +++ b/dhcp/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dhcp/locale/en/fusiondirectory.po b/dhcp/locale/en/fusiondirectory.po index 31f2b3eb61..da9026713c 100644 --- a/dhcp/locale/en/fusiondirectory.po +++ b/dhcp/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dhcp/locale/es/fusiondirectory.po b/dhcp/locale/es/fusiondirectory.po index a296c2cfd3..dd40f957c1 100644 --- a/dhcp/locale/es/fusiondirectory.po +++ b/dhcp/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dhcp/locale/es_CO/fusiondirectory.po b/dhcp/locale/es_CO/fusiondirectory.po index d66315a629..bf24db2317 100644 --- a/dhcp/locale/es_CO/fusiondirectory.po +++ b/dhcp/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dhcp/locale/es_VE/fusiondirectory.po b/dhcp/locale/es_VE/fusiondirectory.po index 6783f5ff2c..fdad98db80 100644 --- a/dhcp/locale/es_VE/fusiondirectory.po +++ b/dhcp/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dhcp/locale/fa_IR/fusiondirectory.po b/dhcp/locale/fa_IR/fusiondirectory.po index f5e1b153e9..6f9be75b53 100644 --- a/dhcp/locale/fa_IR/fusiondirectory.po +++ b/dhcp/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po index 504ed44b55..b210729554 100644 --- a/dhcp/locale/fi_FI/fusiondirectory.po +++ b/dhcp/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -435,7 +435,7 @@ msgstr "" #: admin/systems/services/dhcp/remove_dhcp.tpl.c:2 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/systems/services/dhcp/remove_dhcp.tpl.c:5 msgid "" @@ -481,7 +481,7 @@ msgstr "" #: admin/systems/services/dhcp/dhcpNewSection.tpl.c:14 msgid "Create" -msgstr "" +msgstr "Luo" #: admin/systems/services/dhcp/dhcp_advanced.tpl.c:2 msgid "Hide advanced settings" diff --git a/dhcp/locale/fr/fusiondirectory.po b/dhcp/locale/fr/fusiondirectory.po index a6326ecbc8..2bf5922400 100644 --- a/dhcp/locale/fr/fusiondirectory.po +++ b/dhcp/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dhcp/locale/hu_HU/fusiondirectory.po b/dhcp/locale/hu_HU/fusiondirectory.po index a8d2ec53fb..7ce0c23cab 100644 --- a/dhcp/locale/hu_HU/fusiondirectory.po +++ b/dhcp/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dhcp/locale/id/fusiondirectory.po b/dhcp/locale/id/fusiondirectory.po index 7045d37c8f..9ca30c4a91 100644 --- a/dhcp/locale/id/fusiondirectory.po +++ b/dhcp/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dhcp/locale/it_IT/fusiondirectory.po b/dhcp/locale/it_IT/fusiondirectory.po index a96e14465a..248f5d1a6b 100644 --- a/dhcp/locale/it_IT/fusiondirectory.po +++ b/dhcp/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:49+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/dhcp/locale/lv/fusiondirectory.po b/dhcp/locale/lv/fusiondirectory.po index 278e6c2302..e6b661eba0 100644 --- a/dhcp/locale/lv/fusiondirectory.po +++ b/dhcp/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dhcp/locale/nb/fusiondirectory.po b/dhcp/locale/nb/fusiondirectory.po index 0cfb4705c1..8b054757f6 100644 --- a/dhcp/locale/nb/fusiondirectory.po +++ b/dhcp/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dhcp/locale/nl/fusiondirectory.po b/dhcp/locale/nl/fusiondirectory.po index 2e7aa2131e..b8c4bcd4f4 100644 --- a/dhcp/locale/nl/fusiondirectory.po +++ b/dhcp/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dhcp/locale/pl/fusiondirectory.po b/dhcp/locale/pl/fusiondirectory.po index f834774344..48e7c77efd 100644 --- a/dhcp/locale/pl/fusiondirectory.po +++ b/dhcp/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dhcp/locale/pt/fusiondirectory.po b/dhcp/locale/pt/fusiondirectory.po index 57bda612f4..75b7ad9c58 100644 --- a/dhcp/locale/pt/fusiondirectory.po +++ b/dhcp/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dhcp/locale/pt_BR/fusiondirectory.po b/dhcp/locale/pt_BR/fusiondirectory.po index 09cfa33539..f1be626220 100644 --- a/dhcp/locale/pt_BR/fusiondirectory.po +++ b/dhcp/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dhcp/locale/ru/fusiondirectory.po b/dhcp/locale/ru/fusiondirectory.po index 0b9e6fed0e..b441423528 100644 --- a/dhcp/locale/ru/fusiondirectory.po +++ b/dhcp/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dhcp/locale/ru@petr1708/fusiondirectory.po b/dhcp/locale/ru@petr1708/fusiondirectory.po index 8d09dd2865..ad71193c31 100644 --- a/dhcp/locale/ru@petr1708/fusiondirectory.po +++ b/dhcp/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dhcp/locale/sv/fusiondirectory.po b/dhcp/locale/sv/fusiondirectory.po index 9b34bcf661..1c542db3ee 100644 --- a/dhcp/locale/sv/fusiondirectory.po +++ b/dhcp/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dhcp/locale/ug/fusiondirectory.po b/dhcp/locale/ug/fusiondirectory.po index af7dda9cee..9f65f51d02 100644 --- a/dhcp/locale/ug/fusiondirectory.po +++ b/dhcp/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:37+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dhcp/locale/vi_VN/fusiondirectory.po b/dhcp/locale/vi_VN/fusiondirectory.po index 9329d3f2ec..3dc19f8550 100644 --- a/dhcp/locale/vi_VN/fusiondirectory.po +++ b/dhcp/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dhcp/locale/zh/fusiondirectory.po b/dhcp/locale/zh/fusiondirectory.po index ef187c9b22..6a14665043 100644 --- a/dhcp/locale/zh/fusiondirectory.po +++ b/dhcp/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dns/locale/ar/fusiondirectory.po b/dns/locale/ar/fusiondirectory.po index 81648c0a62..dcb8222d3b 100644 --- a/dns/locale/ar/fusiondirectory.po +++ b/dns/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dns/locale/ca/fusiondirectory.po b/dns/locale/ca/fusiondirectory.po index 05506c0758..c07bac09a6 100644 --- a/dns/locale/ca/fusiondirectory.po +++ b/dns/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dns/locale/cs_CZ/fusiondirectory.po b/dns/locale/cs_CZ/fusiondirectory.po index 8da2ae9c25..d4b5e73c32 100644 --- a/dns/locale/cs_CZ/fusiondirectory.po +++ b/dns/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dns/locale/de/fusiondirectory.po b/dns/locale/de/fusiondirectory.po index b5797b09f0..e8ef4f8bf7 100644 --- a/dns/locale/de/fusiondirectory.po +++ b/dns/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dns/locale/el_GR/fusiondirectory.po b/dns/locale/el_GR/fusiondirectory.po index 1e47327d61..b39e84ca8a 100644 --- a/dns/locale/el_GR/fusiondirectory.po +++ b/dns/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dns/locale/en/fusiondirectory.po b/dns/locale/en/fusiondirectory.po index d1b86bdf10..0a3fd151b6 100644 --- a/dns/locale/en/fusiondirectory.po +++ b/dns/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dns/locale/es/fusiondirectory.po b/dns/locale/es/fusiondirectory.po index eb923ec68f..91a2072816 100644 --- a/dns/locale/es/fusiondirectory.po +++ b/dns/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dns/locale/es_CO/fusiondirectory.po b/dns/locale/es_CO/fusiondirectory.po index a444a65140..6f2eb60ccd 100644 --- a/dns/locale/es_CO/fusiondirectory.po +++ b/dns/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dns/locale/es_VE/fusiondirectory.po b/dns/locale/es_VE/fusiondirectory.po index d232d3de25..529cb2b9db 100644 --- a/dns/locale/es_VE/fusiondirectory.po +++ b/dns/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dns/locale/fa_IR/fusiondirectory.po b/dns/locale/fa_IR/fusiondirectory.po index af315c4e70..4dd807d178 100644 --- a/dns/locale/fa_IR/fusiondirectory.po +++ b/dns/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po index 6f6b741176..59544038f4 100644 --- a/dns/locale/fi_FI/fusiondirectory.po +++ b/dns/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-05 12:22+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dns/locale/fr/fusiondirectory.po b/dns/locale/fr/fusiondirectory.po index fd1b86551e..5091954ddb 100644 --- a/dns/locale/fr/fusiondirectory.po +++ b/dns/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dns/locale/hu_HU/fusiondirectory.po b/dns/locale/hu_HU/fusiondirectory.po index f8c4544112..1eeac5b683 100644 --- a/dns/locale/hu_HU/fusiondirectory.po +++ b/dns/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dns/locale/id/fusiondirectory.po b/dns/locale/id/fusiondirectory.po index ae083f72df..3e74d6e2ff 100644 --- a/dns/locale/id/fusiondirectory.po +++ b/dns/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dns/locale/it_IT/fusiondirectory.po b/dns/locale/it_IT/fusiondirectory.po index 8acb20b98c..ec919e3f6b 100644 --- a/dns/locale/it_IT/fusiondirectory.po +++ b/dns/locale/it_IT/fusiondirectory.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:51+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/dns/locale/lv/fusiondirectory.po b/dns/locale/lv/fusiondirectory.po index 39fc5525d3..90b6ffea35 100644 --- a/dns/locale/lv/fusiondirectory.po +++ b/dns/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dns/locale/nb/fusiondirectory.po b/dns/locale/nb/fusiondirectory.po index 5d766eb157..35a0a814b9 100644 --- a/dns/locale/nb/fusiondirectory.po +++ b/dns/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dns/locale/nl/fusiondirectory.po b/dns/locale/nl/fusiondirectory.po index 6c91b71fee..67c8318e90 100644 --- a/dns/locale/nl/fusiondirectory.po +++ b/dns/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dns/locale/pl/fusiondirectory.po b/dns/locale/pl/fusiondirectory.po index 6a2583de0c..ee55ec4f1b 100644 --- a/dns/locale/pl/fusiondirectory.po +++ b/dns/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dns/locale/pt/fusiondirectory.po b/dns/locale/pt/fusiondirectory.po index 608f2ae194..bbd208ca7e 100644 --- a/dns/locale/pt/fusiondirectory.po +++ b/dns/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dns/locale/pt_BR/fusiondirectory.po b/dns/locale/pt_BR/fusiondirectory.po index 5279bc1209..a86ecf26bc 100644 --- a/dns/locale/pt_BR/fusiondirectory.po +++ b/dns/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dns/locale/ru/fusiondirectory.po b/dns/locale/ru/fusiondirectory.po index 1c9eebf35b..ec99768f16 100644 --- a/dns/locale/ru/fusiondirectory.po +++ b/dns/locale/ru/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/dns/locale/ru@petr1708/fusiondirectory.po b/dns/locale/ru@petr1708/fusiondirectory.po index 9e96301f6a..eb67e4ca3d 100644 --- a/dns/locale/ru@petr1708/fusiondirectory.po +++ b/dns/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dns/locale/sv/fusiondirectory.po b/dns/locale/sv/fusiondirectory.po index 92c7966892..fb9fe5c92a 100644 --- a/dns/locale/sv/fusiondirectory.po +++ b/dns/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dns/locale/ug/fusiondirectory.po b/dns/locale/ug/fusiondirectory.po index e22f66e604..03fdfd343c 100644 --- a/dns/locale/ug/fusiondirectory.po +++ b/dns/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dns/locale/vi_VN/fusiondirectory.po b/dns/locale/vi_VN/fusiondirectory.po index 36b5e68336..944605ea8b 100644 --- a/dns/locale/vi_VN/fusiondirectory.po +++ b/dns/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dns/locale/zh/fusiondirectory.po b/dns/locale/zh/fusiondirectory.po index 662217e5c3..390dd6a0c0 100644 --- a/dns/locale/zh/fusiondirectory.po +++ b/dns/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dovecot/locale/ar/fusiondirectory.po b/dovecot/locale/ar/fusiondirectory.po index dca21c0641..dd8e066607 100644 --- a/dovecot/locale/ar/fusiondirectory.po +++ b/dovecot/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dovecot/locale/ca/fusiondirectory.po b/dovecot/locale/ca/fusiondirectory.po index df2382fdf5..1a4ea246be 100644 --- a/dovecot/locale/ca/fusiondirectory.po +++ b/dovecot/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dovecot/locale/cs_CZ/fusiondirectory.po b/dovecot/locale/cs_CZ/fusiondirectory.po index ec6df43eb3..a0542b82d2 100644 --- a/dovecot/locale/cs_CZ/fusiondirectory.po +++ b/dovecot/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dovecot/locale/de/fusiondirectory.po b/dovecot/locale/de/fusiondirectory.po index 44d0d44d31..41dcbf1660 100644 --- a/dovecot/locale/de/fusiondirectory.po +++ b/dovecot/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dovecot/locale/el_GR/fusiondirectory.po b/dovecot/locale/el_GR/fusiondirectory.po index 9a8424eff8..a45c327554 100644 --- a/dovecot/locale/el_GR/fusiondirectory.po +++ b/dovecot/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dovecot/locale/en/fusiondirectory.po b/dovecot/locale/en/fusiondirectory.po index b14708f0ab..ebdb5cbc8c 100644 --- a/dovecot/locale/en/fusiondirectory.po +++ b/dovecot/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dovecot/locale/es/fusiondirectory.po b/dovecot/locale/es/fusiondirectory.po index 656a988c35..82f9a55ab9 100644 --- a/dovecot/locale/es/fusiondirectory.po +++ b/dovecot/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dovecot/locale/es_CO/fusiondirectory.po b/dovecot/locale/es_CO/fusiondirectory.po index f91c3e3b0c..9023ff947a 100644 --- a/dovecot/locale/es_CO/fusiondirectory.po +++ b/dovecot/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dovecot/locale/es_VE/fusiondirectory.po b/dovecot/locale/es_VE/fusiondirectory.po index 926eec5fbb..17ca3dbb95 100644 --- a/dovecot/locale/es_VE/fusiondirectory.po +++ b/dovecot/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dovecot/locale/fa_IR/fusiondirectory.po b/dovecot/locale/fa_IR/fusiondirectory.po index 59620b2c6a..47cd1e9c7f 100644 --- a/dovecot/locale/fa_IR/fusiondirectory.po +++ b/dovecot/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dovecot/locale/fi_FI/fusiondirectory.po b/dovecot/locale/fi_FI/fusiondirectory.po index 773d20e09e..6ddf7250e1 100644 --- a/dovecot/locale/fi_FI/fusiondirectory.po +++ b/dovecot/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:39+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dovecot/locale/fr/fusiondirectory.po b/dovecot/locale/fr/fusiondirectory.po index d7c78ff5f2..0c5bfb2cc1 100644 --- a/dovecot/locale/fr/fusiondirectory.po +++ b/dovecot/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:17+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dovecot/locale/hu_HU/fusiondirectory.po b/dovecot/locale/hu_HU/fusiondirectory.po index 5993a76dbd..f1a4197eed 100644 --- a/dovecot/locale/hu_HU/fusiondirectory.po +++ b/dovecot/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dovecot/locale/id/fusiondirectory.po b/dovecot/locale/id/fusiondirectory.po index 1188671539..1924607ef9 100644 --- a/dovecot/locale/id/fusiondirectory.po +++ b/dovecot/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dovecot/locale/it_IT/fusiondirectory.po b/dovecot/locale/it_IT/fusiondirectory.po index 040e60dc31..ae1b963ff9 100644 --- a/dovecot/locale/it_IT/fusiondirectory.po +++ b/dovecot/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-18 07:04+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/dovecot/locale/lv/fusiondirectory.po b/dovecot/locale/lv/fusiondirectory.po index 6a8a7b0a28..c0abf81408 100644 --- a/dovecot/locale/lv/fusiondirectory.po +++ b/dovecot/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dovecot/locale/nb/fusiondirectory.po b/dovecot/locale/nb/fusiondirectory.po index f734ac97c7..58d8cab116 100644 --- a/dovecot/locale/nb/fusiondirectory.po +++ b/dovecot/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dovecot/locale/nl/fusiondirectory.po b/dovecot/locale/nl/fusiondirectory.po index fd0d455e10..879ddef7ed 100644 --- a/dovecot/locale/nl/fusiondirectory.po +++ b/dovecot/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dovecot/locale/pl/fusiondirectory.po b/dovecot/locale/pl/fusiondirectory.po index 91806c62b3..250106e1cc 100644 --- a/dovecot/locale/pl/fusiondirectory.po +++ b/dovecot/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dovecot/locale/pt/fusiondirectory.po b/dovecot/locale/pt/fusiondirectory.po index 0f43484193..551578cd4d 100644 --- a/dovecot/locale/pt/fusiondirectory.po +++ b/dovecot/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dovecot/locale/pt_BR/fusiondirectory.po b/dovecot/locale/pt_BR/fusiondirectory.po index 493bc71a84..e5d2330823 100644 --- a/dovecot/locale/pt_BR/fusiondirectory.po +++ b/dovecot/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dovecot/locale/ru/fusiondirectory.po b/dovecot/locale/ru/fusiondirectory.po index db9d624ab4..8e9f76c7f9 100644 --- a/dovecot/locale/ru/fusiondirectory.po +++ b/dovecot/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dovecot/locale/ru@petr1708/fusiondirectory.po b/dovecot/locale/ru@petr1708/fusiondirectory.po index 2a891f7e0f..5da64c3e9b 100644 --- a/dovecot/locale/ru@petr1708/fusiondirectory.po +++ b/dovecot/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dovecot/locale/sv/fusiondirectory.po b/dovecot/locale/sv/fusiondirectory.po index 0b1df6fe6e..5e88486a90 100644 --- a/dovecot/locale/sv/fusiondirectory.po +++ b/dovecot/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dovecot/locale/ug/fusiondirectory.po b/dovecot/locale/ug/fusiondirectory.po index da633a83b3..e65f32d9cc 100644 --- a/dovecot/locale/ug/fusiondirectory.po +++ b/dovecot/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dovecot/locale/vi_VN/fusiondirectory.po b/dovecot/locale/vi_VN/fusiondirectory.po index e91dc81082..8411229b2b 100644 --- a/dovecot/locale/vi_VN/fusiondirectory.po +++ b/dovecot/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dovecot/locale/zh/fusiondirectory.po b/dovecot/locale/zh/fusiondirectory.po index b1b9db5d9b..618ef1cce7 100644 --- a/dovecot/locale/zh/fusiondirectory.po +++ b/dovecot/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 16:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/dsa/locale/ar/fusiondirectory.po b/dsa/locale/ar/fusiondirectory.po index 7b89ad393f..968d4d2c1b 100644 --- a/dsa/locale/ar/fusiondirectory.po +++ b/dsa/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/dsa/locale/ca/fusiondirectory.po b/dsa/locale/ca/fusiondirectory.po index 8c0e450780..9d1152004c 100644 --- a/dsa/locale/ca/fusiondirectory.po +++ b/dsa/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/dsa/locale/cs_CZ/fusiondirectory.po b/dsa/locale/cs_CZ/fusiondirectory.po index 344ce55cbd..d50963fd61 100644 --- a/dsa/locale/cs_CZ/fusiondirectory.po +++ b/dsa/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/dsa/locale/de/fusiondirectory.po b/dsa/locale/de/fusiondirectory.po index 5d269250fc..0e3255942b 100644 --- a/dsa/locale/de/fusiondirectory.po +++ b/dsa/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/dsa/locale/el_GR/fusiondirectory.po b/dsa/locale/el_GR/fusiondirectory.po index 71edfe6ce2..ed79b8d90c 100644 --- a/dsa/locale/el_GR/fusiondirectory.po +++ b/dsa/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/dsa/locale/en/fusiondirectory.po b/dsa/locale/en/fusiondirectory.po index 77f7d9b7c2..02bd3d1484 100644 --- a/dsa/locale/en/fusiondirectory.po +++ b/dsa/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/dsa/locale/es/fusiondirectory.po b/dsa/locale/es/fusiondirectory.po index 750701d8ae..381ef33680 100644 --- a/dsa/locale/es/fusiondirectory.po +++ b/dsa/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/dsa/locale/es_CO/fusiondirectory.po b/dsa/locale/es_CO/fusiondirectory.po index 1de31cae9d..4d9522c4ae 100644 --- a/dsa/locale/es_CO/fusiondirectory.po +++ b/dsa/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/dsa/locale/es_VE/fusiondirectory.po b/dsa/locale/es_VE/fusiondirectory.po index 491bd7d303..0781f3462d 100644 --- a/dsa/locale/es_VE/fusiondirectory.po +++ b/dsa/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/dsa/locale/fa_IR/fusiondirectory.po b/dsa/locale/fa_IR/fusiondirectory.po index fff022bc90..6221d09a5d 100644 --- a/dsa/locale/fa_IR/fusiondirectory.po +++ b/dsa/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/dsa/locale/fi_FI/fusiondirectory.po b/dsa/locale/fi_FI/fusiondirectory.po index c4244855aa..2106890170 100644 --- a/dsa/locale/fi_FI/fusiondirectory.po +++ b/dsa/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/dsa/locale/fr/fusiondirectory.po b/dsa/locale/fr/fusiondirectory.po index 2f174e9a4f..1056705afa 100644 --- a/dsa/locale/fr/fusiondirectory.po +++ b/dsa/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/dsa/locale/hu_HU/fusiondirectory.po b/dsa/locale/hu_HU/fusiondirectory.po index a7b2ff9d1b..6480b56123 100644 --- a/dsa/locale/hu_HU/fusiondirectory.po +++ b/dsa/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/dsa/locale/id/fusiondirectory.po b/dsa/locale/id/fusiondirectory.po index d916112e0c..7505b628fc 100644 --- a/dsa/locale/id/fusiondirectory.po +++ b/dsa/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/dsa/locale/it_IT/fusiondirectory.po b/dsa/locale/it_IT/fusiondirectory.po index 555949cbbf..7c28e33fdb 100644 --- a/dsa/locale/it_IT/fusiondirectory.po +++ b/dsa/locale/it_IT/fusiondirectory.po @@ -4,12 +4,13 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:04+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:48+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" diff --git a/dsa/locale/lv/fusiondirectory.po b/dsa/locale/lv/fusiondirectory.po index b44b9d1ad3..31e90be5b5 100644 --- a/dsa/locale/lv/fusiondirectory.po +++ b/dsa/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/dsa/locale/nb/fusiondirectory.po b/dsa/locale/nb/fusiondirectory.po index 3c62a1c215..720485b3dc 100644 --- a/dsa/locale/nb/fusiondirectory.po +++ b/dsa/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/dsa/locale/nl/fusiondirectory.po b/dsa/locale/nl/fusiondirectory.po index d7e335aa51..dc9bb7c04b 100644 --- a/dsa/locale/nl/fusiondirectory.po +++ b/dsa/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/dsa/locale/pl/fusiondirectory.po b/dsa/locale/pl/fusiondirectory.po index b3d5b36b30..4de2a429b0 100644 --- a/dsa/locale/pl/fusiondirectory.po +++ b/dsa/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/dsa/locale/pt/fusiondirectory.po b/dsa/locale/pt/fusiondirectory.po index 13c99a6711..172f3e7d90 100644 --- a/dsa/locale/pt/fusiondirectory.po +++ b/dsa/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/dsa/locale/pt_BR/fusiondirectory.po b/dsa/locale/pt_BR/fusiondirectory.po index c6fe623f96..2a0dc384c1 100644 --- a/dsa/locale/pt_BR/fusiondirectory.po +++ b/dsa/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/dsa/locale/ru/fusiondirectory.po b/dsa/locale/ru/fusiondirectory.po index 0058823dd4..1a2cdd92bf 100644 --- a/dsa/locale/ru/fusiondirectory.po +++ b/dsa/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/dsa/locale/ru@petr1708/fusiondirectory.po b/dsa/locale/ru@petr1708/fusiondirectory.po index 32ee633c11..a77e013415 100644 --- a/dsa/locale/ru@petr1708/fusiondirectory.po +++ b/dsa/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/dsa/locale/sv/fusiondirectory.po b/dsa/locale/sv/fusiondirectory.po index 8ae697a80e..d578977d42 100644 --- a/dsa/locale/sv/fusiondirectory.po +++ b/dsa/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/dsa/locale/ug/fusiondirectory.po b/dsa/locale/ug/fusiondirectory.po index 87f44f78ba..a666c6fc07 100644 --- a/dsa/locale/ug/fusiondirectory.po +++ b/dsa/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:40+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/dsa/locale/vi_VN/fusiondirectory.po b/dsa/locale/vi_VN/fusiondirectory.po index 85a9f52f21..4b7e836baa 100644 --- a/dsa/locale/vi_VN/fusiondirectory.po +++ b/dsa/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/dsa/locale/zh/fusiondirectory.po b/dsa/locale/zh/fusiondirectory.po index 2038acccc0..c4892285cc 100644 --- a/dsa/locale/zh/fusiondirectory.po +++ b/dsa/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ejbca/locale/ar/fusiondirectory.po b/ejbca/locale/ar/fusiondirectory.po index 95ed07642d..b6eb32a90d 100644 --- a/ejbca/locale/ar/fusiondirectory.po +++ b/ejbca/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ejbca/locale/ca/fusiondirectory.po b/ejbca/locale/ca/fusiondirectory.po index 360b7ed387..ff71319d5e 100644 --- a/ejbca/locale/ca/fusiondirectory.po +++ b/ejbca/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ejbca/locale/cs_CZ/fusiondirectory.po b/ejbca/locale/cs_CZ/fusiondirectory.po index 95bc2db941..f62b212ab1 100644 --- a/ejbca/locale/cs_CZ/fusiondirectory.po +++ b/ejbca/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ejbca/locale/de/fusiondirectory.po b/ejbca/locale/de/fusiondirectory.po index 4cfe400a21..8c2d00adca 100644 --- a/ejbca/locale/de/fusiondirectory.po +++ b/ejbca/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ejbca/locale/el_GR/fusiondirectory.po b/ejbca/locale/el_GR/fusiondirectory.po index ba1c39e25d..fdde27c284 100644 --- a/ejbca/locale/el_GR/fusiondirectory.po +++ b/ejbca/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ejbca/locale/en/fusiondirectory.po b/ejbca/locale/en/fusiondirectory.po index 77b19bdb78..37fc551d63 100644 --- a/ejbca/locale/en/fusiondirectory.po +++ b/ejbca/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ejbca/locale/es/fusiondirectory.po b/ejbca/locale/es/fusiondirectory.po index 4d548d4d5b..34371208e0 100644 --- a/ejbca/locale/es/fusiondirectory.po +++ b/ejbca/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ejbca/locale/es_CO/fusiondirectory.po b/ejbca/locale/es_CO/fusiondirectory.po index 7d96f48ce2..b5796e778c 100644 --- a/ejbca/locale/es_CO/fusiondirectory.po +++ b/ejbca/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ejbca/locale/es_VE/fusiondirectory.po b/ejbca/locale/es_VE/fusiondirectory.po index 51d042bba4..fd386126ae 100644 --- a/ejbca/locale/es_VE/fusiondirectory.po +++ b/ejbca/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ejbca/locale/fa_IR/fusiondirectory.po b/ejbca/locale/fa_IR/fusiondirectory.po index 16c44a3f05..c083754ad3 100644 --- a/ejbca/locale/fa_IR/fusiondirectory.po +++ b/ejbca/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ejbca/locale/fi_FI/fusiondirectory.po b/ejbca/locale/fi_FI/fusiondirectory.po index 86e9ffedf1..10c9b5cc8b 100644 --- a/ejbca/locale/fi_FI/fusiondirectory.po +++ b/ejbca/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ejbca/locale/fr/fusiondirectory.po b/ejbca/locale/fr/fusiondirectory.po index fdb526e3b5..8d0515e944 100644 --- a/ejbca/locale/fr/fusiondirectory.po +++ b/ejbca/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ejbca/locale/hu_HU/fusiondirectory.po b/ejbca/locale/hu_HU/fusiondirectory.po index da4f28c23e..97f82222a1 100644 --- a/ejbca/locale/hu_HU/fusiondirectory.po +++ b/ejbca/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ejbca/locale/id/fusiondirectory.po b/ejbca/locale/id/fusiondirectory.po index eab3dc4054..0277c4a71d 100644 --- a/ejbca/locale/id/fusiondirectory.po +++ b/ejbca/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ejbca/locale/it_IT/fusiondirectory.po b/ejbca/locale/it_IT/fusiondirectory.po index d6de6a8553..432ebdb1a2 100644 --- a/ejbca/locale/it_IT/fusiondirectory.po +++ b/ejbca/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ejbca/locale/lv/fusiondirectory.po b/ejbca/locale/lv/fusiondirectory.po index 46293d322e..570fd3df7e 100644 --- a/ejbca/locale/lv/fusiondirectory.po +++ b/ejbca/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ejbca/locale/nb/fusiondirectory.po b/ejbca/locale/nb/fusiondirectory.po index d55aff2937..99bd2033e6 100644 --- a/ejbca/locale/nb/fusiondirectory.po +++ b/ejbca/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ejbca/locale/nl/fusiondirectory.po b/ejbca/locale/nl/fusiondirectory.po index d0233d61ee..707a70c6e8 100644 --- a/ejbca/locale/nl/fusiondirectory.po +++ b/ejbca/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ejbca/locale/pl/fusiondirectory.po b/ejbca/locale/pl/fusiondirectory.po index 52a435a490..1727937c6a 100644 --- a/ejbca/locale/pl/fusiondirectory.po +++ b/ejbca/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ejbca/locale/pt/fusiondirectory.po b/ejbca/locale/pt/fusiondirectory.po index 4808175c42..7305c6056d 100644 --- a/ejbca/locale/pt/fusiondirectory.po +++ b/ejbca/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ejbca/locale/pt_BR/fusiondirectory.po b/ejbca/locale/pt_BR/fusiondirectory.po index 4ff9c63504..67d1e9209d 100644 --- a/ejbca/locale/pt_BR/fusiondirectory.po +++ b/ejbca/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ejbca/locale/ru/fusiondirectory.po b/ejbca/locale/ru/fusiondirectory.po index 39b2cc6f0a..15d033e857 100644 --- a/ejbca/locale/ru/fusiondirectory.po +++ b/ejbca/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 21:27+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ejbca/locale/ru@petr1708/fusiondirectory.po b/ejbca/locale/ru@petr1708/fusiondirectory.po index 3c0dacd3ac..51b8b5ff03 100644 --- a/ejbca/locale/ru@petr1708/fusiondirectory.po +++ b/ejbca/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ejbca/locale/sv/fusiondirectory.po b/ejbca/locale/sv/fusiondirectory.po index 174d2f53ac..dd749aac42 100644 --- a/ejbca/locale/sv/fusiondirectory.po +++ b/ejbca/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ejbca/locale/ug/fusiondirectory.po b/ejbca/locale/ug/fusiondirectory.po index 646eae9df4..ad639b271c 100644 --- a/ejbca/locale/ug/fusiondirectory.po +++ b/ejbca/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:41+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ejbca/locale/vi_VN/fusiondirectory.po b/ejbca/locale/vi_VN/fusiondirectory.po index 5e6e8cc2c4..df26d94410 100644 --- a/ejbca/locale/vi_VN/fusiondirectory.po +++ b/ejbca/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ejbca/locale/zh/fusiondirectory.po b/ejbca/locale/zh/fusiondirectory.po index 1cffd56e06..fff65fa249 100644 --- a/ejbca/locale/zh/fusiondirectory.po +++ b/ejbca/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/fai/locale/ar/fusiondirectory.po b/fai/locale/ar/fusiondirectory.po index bd2268fc0c..626722daa0 100644 --- a/fai/locale/ar/fusiondirectory.po +++ b/fai/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/fai/locale/ca/fusiondirectory.po b/fai/locale/ca/fusiondirectory.po index d864572ada..c79cd18dda 100644 --- a/fai/locale/ca/fusiondirectory.po +++ b/fai/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/fai/locale/cs_CZ/fusiondirectory.po b/fai/locale/cs_CZ/fusiondirectory.po index 39384bdcd6..4f5b2c8a29 100644 --- a/fai/locale/cs_CZ/fusiondirectory.po +++ b/fai/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/fai/locale/de/fusiondirectory.po b/fai/locale/de/fusiondirectory.po index c6058f8d03..02f127b77d 100644 --- a/fai/locale/de/fusiondirectory.po +++ b/fai/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/fai/locale/el_GR/fusiondirectory.po b/fai/locale/el_GR/fusiondirectory.po index 82dcb1d270..0241a0623e 100644 --- a/fai/locale/el_GR/fusiondirectory.po +++ b/fai/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/fai/locale/en/fusiondirectory.po b/fai/locale/en/fusiondirectory.po index 4ca5f5868c..d20fedca37 100644 --- a/fai/locale/en/fusiondirectory.po +++ b/fai/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/fai/locale/es/fusiondirectory.po b/fai/locale/es/fusiondirectory.po index a015493bf9..eb81b582ff 100644 --- a/fai/locale/es/fusiondirectory.po +++ b/fai/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/fai/locale/es_CO/fusiondirectory.po b/fai/locale/es_CO/fusiondirectory.po index e67f9e90a9..47a732e5f9 100644 --- a/fai/locale/es_CO/fusiondirectory.po +++ b/fai/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/fai/locale/es_VE/fusiondirectory.po b/fai/locale/es_VE/fusiondirectory.po index 5b9d1d2065..4a6aca53ee 100644 --- a/fai/locale/es_VE/fusiondirectory.po +++ b/fai/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/fai/locale/fa_IR/fusiondirectory.po b/fai/locale/fa_IR/fusiondirectory.po index b0af72d98a..903df1c920 100644 --- a/fai/locale/fa_IR/fusiondirectory.po +++ b/fai/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po index c2d6a483d3..2ed9919fc0 100644 --- a/fai/locale/fi_FI/fusiondirectory.po +++ b/fai/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -379,7 +379,7 @@ msgstr "" #: admin/fai/class_faiPackageConfiguration.inc:172 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/fai/class_faiPackageConfiguration.inc:173 #, php-format @@ -393,7 +393,7 @@ msgstr "" #: admin/fai/class_faiScript.inc:30 admin/fai/class_faiScript.inc:84 #: admin/fai/class_faiHook.inc:85 msgid "Script" -msgstr "" +msgstr "skripti" #: admin/fai/class_faiScript.inc:31 admin/fai/class_faiScript.inc:34 msgid "FAI script" diff --git a/fai/locale/fr/fusiondirectory.po b/fai/locale/fr/fusiondirectory.po index 9c915039e5..c38e6f0289 100644 --- a/fai/locale/fr/fusiondirectory.po +++ b/fai/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/fai/locale/hu_HU/fusiondirectory.po b/fai/locale/hu_HU/fusiondirectory.po index 24e4d5c629..beb5acbd26 100644 --- a/fai/locale/hu_HU/fusiondirectory.po +++ b/fai/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/fai/locale/id/fusiondirectory.po b/fai/locale/id/fusiondirectory.po index 205f37f7ae..9cbcaefef0 100644 --- a/fai/locale/id/fusiondirectory.po +++ b/fai/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/fai/locale/it_IT/fusiondirectory.po b/fai/locale/it_IT/fusiondirectory.po index a0f5bcfe50..8a716718a7 100644 --- a/fai/locale/it_IT/fusiondirectory.po +++ b/fai/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/fai/locale/lv/fusiondirectory.po b/fai/locale/lv/fusiondirectory.po index 6118f39426..db31d901dc 100644 --- a/fai/locale/lv/fusiondirectory.po +++ b/fai/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/fai/locale/nb/fusiondirectory.po b/fai/locale/nb/fusiondirectory.po index 391e02208c..0ef226a7d8 100644 --- a/fai/locale/nb/fusiondirectory.po +++ b/fai/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/fai/locale/nl/fusiondirectory.po b/fai/locale/nl/fusiondirectory.po index 81ca25e704..193d0cdc32 100644 --- a/fai/locale/nl/fusiondirectory.po +++ b/fai/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/fai/locale/pl/fusiondirectory.po b/fai/locale/pl/fusiondirectory.po index 8ef56250b4..654bd5d94d 100644 --- a/fai/locale/pl/fusiondirectory.po +++ b/fai/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/fai/locale/pt/fusiondirectory.po b/fai/locale/pt/fusiondirectory.po index b22cc98cc7..63227f96a6 100644 --- a/fai/locale/pt/fusiondirectory.po +++ b/fai/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/fai/locale/pt_BR/fusiondirectory.po b/fai/locale/pt_BR/fusiondirectory.po index 255245f96a..dfcccf6486 100644 --- a/fai/locale/pt_BR/fusiondirectory.po +++ b/fai/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/fai/locale/ru/fusiondirectory.po b/fai/locale/ru/fusiondirectory.po index 4e43e20c6b..9051399a18 100644 --- a/fai/locale/ru/fusiondirectory.po +++ b/fai/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/fai/locale/ru@petr1708/fusiondirectory.po b/fai/locale/ru@petr1708/fusiondirectory.po index 973ea172ba..4b20bcffd2 100644 --- a/fai/locale/ru@petr1708/fusiondirectory.po +++ b/fai/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/fai/locale/sv/fusiondirectory.po b/fai/locale/sv/fusiondirectory.po index 94dbd9e8a2..a5acb6dea3 100644 --- a/fai/locale/sv/fusiondirectory.po +++ b/fai/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/fai/locale/ug/fusiondirectory.po b/fai/locale/ug/fusiondirectory.po index 91c61c0433..9f47e5021a 100644 --- a/fai/locale/ug/fusiondirectory.po +++ b/fai/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:42+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/fai/locale/vi_VN/fusiondirectory.po b/fai/locale/vi_VN/fusiondirectory.po index 06c06cdba9..bcf5f1517d 100644 --- a/fai/locale/vi_VN/fusiondirectory.po +++ b/fai/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/fai/locale/zh/fusiondirectory.po b/fai/locale/zh/fusiondirectory.po index 170b0ae861..39957ece3c 100644 --- a/fai/locale/zh/fusiondirectory.po +++ b/fai/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/freeradius/locale/ar/fusiondirectory.po b/freeradius/locale/ar/fusiondirectory.po index b1edf0bfd9..aed74c273f 100644 --- a/freeradius/locale/ar/fusiondirectory.po +++ b/freeradius/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/freeradius/locale/ca/fusiondirectory.po b/freeradius/locale/ca/fusiondirectory.po index 893e5f3362..88a3b46048 100644 --- a/freeradius/locale/ca/fusiondirectory.po +++ b/freeradius/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/freeradius/locale/cs_CZ/fusiondirectory.po b/freeradius/locale/cs_CZ/fusiondirectory.po index 5ca2f84b92..a800f121c7 100644 --- a/freeradius/locale/cs_CZ/fusiondirectory.po +++ b/freeradius/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/freeradius/locale/de/fusiondirectory.po b/freeradius/locale/de/fusiondirectory.po index a4b850db69..21d26568c3 100644 --- a/freeradius/locale/de/fusiondirectory.po +++ b/freeradius/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/freeradius/locale/el_GR/fusiondirectory.po b/freeradius/locale/el_GR/fusiondirectory.po index c0801cad31..19af4d91dd 100644 --- a/freeradius/locale/el_GR/fusiondirectory.po +++ b/freeradius/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/freeradius/locale/en/fusiondirectory.po b/freeradius/locale/en/fusiondirectory.po index 5e0a543cfc..82b3c02a7b 100644 --- a/freeradius/locale/en/fusiondirectory.po +++ b/freeradius/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/freeradius/locale/es/fusiondirectory.po b/freeradius/locale/es/fusiondirectory.po index 54a845091c..faa2594b0e 100644 --- a/freeradius/locale/es/fusiondirectory.po +++ b/freeradius/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/freeradius/locale/es_CO/fusiondirectory.po b/freeradius/locale/es_CO/fusiondirectory.po index 7741f15cfb..2987875ff6 100644 --- a/freeradius/locale/es_CO/fusiondirectory.po +++ b/freeradius/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/freeradius/locale/es_VE/fusiondirectory.po b/freeradius/locale/es_VE/fusiondirectory.po index a31e6df694..119b3968cb 100644 --- a/freeradius/locale/es_VE/fusiondirectory.po +++ b/freeradius/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/freeradius/locale/fa_IR/fusiondirectory.po b/freeradius/locale/fa_IR/fusiondirectory.po index cdaad6916b..03ad81d165 100644 --- a/freeradius/locale/fa_IR/fusiondirectory.po +++ b/freeradius/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/freeradius/locale/fi_FI/fusiondirectory.po b/freeradius/locale/fi_FI/fusiondirectory.po index 048f54e6ea..5564881171 100644 --- a/freeradius/locale/fi_FI/fusiondirectory.po +++ b/freeradius/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/freeradius/locale/fr/fusiondirectory.po b/freeradius/locale/fr/fusiondirectory.po index 21ac343ca0..ff5efdd40d 100644 --- a/freeradius/locale/fr/fusiondirectory.po +++ b/freeradius/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/freeradius/locale/hu_HU/fusiondirectory.po b/freeradius/locale/hu_HU/fusiondirectory.po index 5b2f486a7e..f81dc9d2fe 100644 --- a/freeradius/locale/hu_HU/fusiondirectory.po +++ b/freeradius/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/freeradius/locale/id/fusiondirectory.po b/freeradius/locale/id/fusiondirectory.po index e5bda8f07f..3b6a3dc693 100644 --- a/freeradius/locale/id/fusiondirectory.po +++ b/freeradius/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/freeradius/locale/it_IT/fusiondirectory.po b/freeradius/locale/it_IT/fusiondirectory.po index 9d4247568c..b6f88bf2bf 100644 --- a/freeradius/locale/it_IT/fusiondirectory.po +++ b/freeradius/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/freeradius/locale/lv/fusiondirectory.po b/freeradius/locale/lv/fusiondirectory.po index baa28d9b19..9ee273f229 100644 --- a/freeradius/locale/lv/fusiondirectory.po +++ b/freeradius/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/freeradius/locale/nb/fusiondirectory.po b/freeradius/locale/nb/fusiondirectory.po index bcb9666a77..6a857b5443 100644 --- a/freeradius/locale/nb/fusiondirectory.po +++ b/freeradius/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/freeradius/locale/nl/fusiondirectory.po b/freeradius/locale/nl/fusiondirectory.po index db5bf47c06..813ec06f40 100644 --- a/freeradius/locale/nl/fusiondirectory.po +++ b/freeradius/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/freeradius/locale/pl/fusiondirectory.po b/freeradius/locale/pl/fusiondirectory.po index e3a6f17080..8c0006addd 100644 --- a/freeradius/locale/pl/fusiondirectory.po +++ b/freeradius/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/freeradius/locale/pt/fusiondirectory.po b/freeradius/locale/pt/fusiondirectory.po index ff9a737bb7..594505c84e 100644 --- a/freeradius/locale/pt/fusiondirectory.po +++ b/freeradius/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/freeradius/locale/pt_BR/fusiondirectory.po b/freeradius/locale/pt_BR/fusiondirectory.po index 12f27a73d1..35a3a8bbc0 100644 --- a/freeradius/locale/pt_BR/fusiondirectory.po +++ b/freeradius/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/freeradius/locale/ru/fusiondirectory.po b/freeradius/locale/ru/fusiondirectory.po index a5d665b9e1..721b714f69 100644 --- a/freeradius/locale/ru/fusiondirectory.po +++ b/freeradius/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/freeradius/locale/ru@petr1708/fusiondirectory.po b/freeradius/locale/ru@petr1708/fusiondirectory.po index 2fdf8615de..62a9219084 100644 --- a/freeradius/locale/ru@petr1708/fusiondirectory.po +++ b/freeradius/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/freeradius/locale/sv/fusiondirectory.po b/freeradius/locale/sv/fusiondirectory.po index 6913207b70..a97d95536c 100644 --- a/freeradius/locale/sv/fusiondirectory.po +++ b/freeradius/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/freeradius/locale/ug/fusiondirectory.po b/freeradius/locale/ug/fusiondirectory.po index 38c30f8f3e..996e293845 100644 --- a/freeradius/locale/ug/fusiondirectory.po +++ b/freeradius/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/freeradius/locale/vi_VN/fusiondirectory.po b/freeradius/locale/vi_VN/fusiondirectory.po index 19fbcc66db..a5d7cffc4c 100644 --- a/freeradius/locale/vi_VN/fusiondirectory.po +++ b/freeradius/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/freeradius/locale/zh/fusiondirectory.po b/freeradius/locale/zh/fusiondirectory.po index 8f11494a82..b88b7e26b4 100644 --- a/freeradius/locale/zh/fusiondirectory.po +++ b/freeradius/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:43+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/fusioninventory/locale/ar/fusiondirectory.po b/fusioninventory/locale/ar/fusiondirectory.po index fdc0040efe..c14cfca0f6 100644 --- a/fusioninventory/locale/ar/fusiondirectory.po +++ b/fusioninventory/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/fusioninventory/locale/ca/fusiondirectory.po b/fusioninventory/locale/ca/fusiondirectory.po index c87327930a..03be00520d 100644 --- a/fusioninventory/locale/ca/fusiondirectory.po +++ b/fusioninventory/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/fusioninventory/locale/cs_CZ/fusiondirectory.po b/fusioninventory/locale/cs_CZ/fusiondirectory.po index 0d44219937..43589e42bc 100644 --- a/fusioninventory/locale/cs_CZ/fusiondirectory.po +++ b/fusioninventory/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/fusioninventory/locale/de/fusiondirectory.po b/fusioninventory/locale/de/fusiondirectory.po index 610305ffbe..1be795f378 100644 --- a/fusioninventory/locale/de/fusiondirectory.po +++ b/fusioninventory/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/fusioninventory/locale/el_GR/fusiondirectory.po b/fusioninventory/locale/el_GR/fusiondirectory.po index edb3e5671c..f3f8770f78 100644 --- a/fusioninventory/locale/el_GR/fusiondirectory.po +++ b/fusioninventory/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/fusioninventory/locale/en/fusiondirectory.po b/fusioninventory/locale/en/fusiondirectory.po index a63452ffc1..93ef5921ea 100644 --- a/fusioninventory/locale/en/fusiondirectory.po +++ b/fusioninventory/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/fusioninventory/locale/es/fusiondirectory.po b/fusioninventory/locale/es/fusiondirectory.po index f0e3f228ed..a0b6575e40 100644 --- a/fusioninventory/locale/es/fusiondirectory.po +++ b/fusioninventory/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/fusioninventory/locale/es_CO/fusiondirectory.po b/fusioninventory/locale/es_CO/fusiondirectory.po index 4afc3a9e09..b933b04600 100644 --- a/fusioninventory/locale/es_CO/fusiondirectory.po +++ b/fusioninventory/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/fusioninventory/locale/es_VE/fusiondirectory.po b/fusioninventory/locale/es_VE/fusiondirectory.po index 9832e1bc70..c572305d4c 100644 --- a/fusioninventory/locale/es_VE/fusiondirectory.po +++ b/fusioninventory/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/fusioninventory/locale/fa_IR/fusiondirectory.po b/fusioninventory/locale/fa_IR/fusiondirectory.po index a7b16cee73..87cb3ba2f5 100644 --- a/fusioninventory/locale/fa_IR/fusiondirectory.po +++ b/fusioninventory/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/fusioninventory/locale/fi_FI/fusiondirectory.po b/fusioninventory/locale/fi_FI/fusiondirectory.po index b0fd6b31d0..8e8600a2b6 100644 --- a/fusioninventory/locale/fi_FI/fusiondirectory.po +++ b/fusioninventory/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -36,7 +36,7 @@ msgstr "" #: admin/inventory/inventory-list.xml:50 msgid "Actions" -msgstr "" +msgstr "Toiminnot" #: admin/inventory/inventory-list.xml:61 admin/inventory/inventory-list.xml:85 msgid "Edit" @@ -44,7 +44,7 @@ msgstr "" #: admin/inventory/inventory-list.xml:68 admin/inventory/inventory-list.xml:92 msgid "Remove" -msgstr "" +msgstr "Poista" #: admin/inventory/class_inventoryManagement.inc:36 msgid "Inventory objects" diff --git a/fusioninventory/locale/fr/fusiondirectory.po b/fusioninventory/locale/fr/fusiondirectory.po index 6d6b53419a..6598964aae 100644 --- a/fusioninventory/locale/fr/fusiondirectory.po +++ b/fusioninventory/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/fusioninventory/locale/hu_HU/fusiondirectory.po b/fusioninventory/locale/hu_HU/fusiondirectory.po index 7b3c33553a..953a797140 100644 --- a/fusioninventory/locale/hu_HU/fusiondirectory.po +++ b/fusioninventory/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:44+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/fusioninventory/locale/id/fusiondirectory.po b/fusioninventory/locale/id/fusiondirectory.po index 7859165df3..494c2b58fc 100644 --- a/fusioninventory/locale/id/fusiondirectory.po +++ b/fusioninventory/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/fusioninventory/locale/it_IT/fusiondirectory.po b/fusioninventory/locale/it_IT/fusiondirectory.po index f4bf42f1b2..21c33116ed 100644 --- a/fusioninventory/locale/it_IT/fusiondirectory.po +++ b/fusioninventory/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/fusioninventory/locale/lv/fusiondirectory.po b/fusioninventory/locale/lv/fusiondirectory.po index 06676c6e22..772f202e74 100644 --- a/fusioninventory/locale/lv/fusiondirectory.po +++ b/fusioninventory/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/fusioninventory/locale/nb/fusiondirectory.po b/fusioninventory/locale/nb/fusiondirectory.po index 1d0824bb25..40188dd4e7 100644 --- a/fusioninventory/locale/nb/fusiondirectory.po +++ b/fusioninventory/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/fusioninventory/locale/nl/fusiondirectory.po b/fusioninventory/locale/nl/fusiondirectory.po index 8597d42f6b..59c879e7d2 100644 --- a/fusioninventory/locale/nl/fusiondirectory.po +++ b/fusioninventory/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/fusioninventory/locale/pl/fusiondirectory.po b/fusioninventory/locale/pl/fusiondirectory.po index 0012c74e9c..e9cb790ab4 100644 --- a/fusioninventory/locale/pl/fusiondirectory.po +++ b/fusioninventory/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/fusioninventory/locale/pt/fusiondirectory.po b/fusioninventory/locale/pt/fusiondirectory.po index 97b04d2bf2..0b7fb229f0 100644 --- a/fusioninventory/locale/pt/fusiondirectory.po +++ b/fusioninventory/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/fusioninventory/locale/pt_BR/fusiondirectory.po b/fusioninventory/locale/pt_BR/fusiondirectory.po index a7a03f8566..7677a4b662 100644 --- a/fusioninventory/locale/pt_BR/fusiondirectory.po +++ b/fusioninventory/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/fusioninventory/locale/ru/fusiondirectory.po b/fusioninventory/locale/ru/fusiondirectory.po index 47377d0390..7bd4f5e681 100644 --- a/fusioninventory/locale/ru/fusiondirectory.po +++ b/fusioninventory/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-02-10 15:28+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -152,7 +152,7 @@ msgstr "" #: html/collect.php:78 #, php-format msgid "FusionDirectory configuration %s/%s is not readable. Aborted." -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ FusionDirectory %s/%s не читаема. Прервано." #: config/fusioninventory/class_fiConfig.inc:28 msgid "FusionInventory configuration" diff --git a/fusioninventory/locale/ru@petr1708/fusiondirectory.po b/fusioninventory/locale/ru@petr1708/fusiondirectory.po index 9897a5e2ac..20f183cdf3 100644 --- a/fusioninventory/locale/ru@petr1708/fusiondirectory.po +++ b/fusioninventory/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/fusioninventory/locale/sv/fusiondirectory.po b/fusioninventory/locale/sv/fusiondirectory.po index 1487767f88..9a43cca666 100644 --- a/fusioninventory/locale/sv/fusiondirectory.po +++ b/fusioninventory/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/fusioninventory/locale/ug/fusiondirectory.po b/fusioninventory/locale/ug/fusiondirectory.po index 582ec207ed..0af1b8f629 100644 --- a/fusioninventory/locale/ug/fusiondirectory.po +++ b/fusioninventory/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/fusioninventory/locale/vi_VN/fusiondirectory.po b/fusioninventory/locale/vi_VN/fusiondirectory.po index 3ea7a0397b..dd0247c97e 100644 --- a/fusioninventory/locale/vi_VN/fusiondirectory.po +++ b/fusioninventory/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/fusioninventory/locale/zh/fusiondirectory.po b/fusioninventory/locale/zh/fusiondirectory.po index ea54755349..7e2c2e375d 100644 --- a/fusioninventory/locale/zh/fusiondirectory.po +++ b/fusioninventory/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:28+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/gpg/locale/ar/fusiondirectory.po b/gpg/locale/ar/fusiondirectory.po index b150b1e0fc..625a76dd34 100644 --- a/gpg/locale/ar/fusiondirectory.po +++ b/gpg/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "النوع" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/ca/fusiondirectory.po b/gpg/locale/ca/fusiondirectory.po index 547112dfac..ccee64a588 100644 --- a/gpg/locale/ca/fusiondirectory.po +++ b/gpg/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Error d'LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Error de la configuració" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/cs_CZ/fusiondirectory.po b/gpg/locale/cs_CZ/fusiondirectory.po index ded3b865bd..9f6e6c5814 100644 --- a/gpg/locale/cs_CZ/fusiondirectory.po +++ b/gpg/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" @@ -54,16 +54,16 @@ msgstr "VÄ›tev pod základem, ve které jsou uloženy klÃÄe" msgid "LDAP error" msgstr "Chyba LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Vyberte požadované položky" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "PGP klÃÄ" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "Identifikátor klÃÄe" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Typ" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Velikost" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "Platnost odvolána" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Vypnuto" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Chyba v nastavenÃ" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "Nejprve je tÅ™eba prostÅ™ednictvÃm sekce pÅ™Ãdavky nastavit základ GPG" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Identifikátor uživatele" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "ÄŒas vytvoÅ™enÃ" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "SkonÄenà platnosti" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "Algoritmus" diff --git a/gpg/locale/de/fusiondirectory.po b/gpg/locale/de/fusiondirectory.po index f1496dc403..a578ee4ff5 100644 --- a/gpg/locale/de/fusiondirectory.po +++ b/gpg/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP-Fehler" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Bitte wählen Sie die gewünschten Einträge" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "PGP-Schlüssel" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "Schlüsselkennung" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Typ" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Größe" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "Widerrufen" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Deaktiviert" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Konfigurationsfehler" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Benutzer-ID" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "Erstellungszeitpunkt" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "Ablauf" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "Algorithmus" diff --git a/gpg/locale/el_GR/fusiondirectory.po b/gpg/locale/el_GR/fusiondirectory.po index 24132552ef..254b77aab5 100644 --- a/gpg/locale/el_GR/fusiondirectory.po +++ b/gpg/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" @@ -55,16 +55,16 @@ msgstr "Κλάδος κάτω από την βάση όπου αποθηκεÏο msgid "LDAP error" msgstr "Σφάλμα LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "ΠαÏακαλώ επιλÎξτε τις επιθυμητÎÏ‚ καταχωÏήσεις" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "Κλειδί PGP" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "ΑναγνωÏιστικό κλειδιοÏ" @@ -85,41 +85,41 @@ msgid "Type" msgstr "ΤÏπος" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "ΜÎγεθος" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "Ανεκλήθη" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "ΑπενεÏγοποιημÎνο" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Σφάλμα ÏÏθμισης" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "Θα Ï€ÏÎπει να Ïυθμίσετε την GPG base dn μÎσω την ενότητας Ï€ÏοσθÎτωβ Ï€Ïώτα" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ΑναγνωÏιστικό χÏήστη" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "ΗμεÏομηνία δημιουÏγίας" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "Λήξη" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "ΑλγόÏιθμος" diff --git a/gpg/locale/en/fusiondirectory.po b/gpg/locale/en/fusiondirectory.po index d4103e6519..38782cbbdb 100644 --- a/gpg/locale/en/fusiondirectory.po +++ b/gpg/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/es/fusiondirectory.po b/gpg/locale/es/fusiondirectory.po index a26f187b73..8dcd3b4cff 100644 --- a/gpg/locale/es/fusiondirectory.po +++ b/gpg/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Error LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Por favor seleccione las entradas que desee" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Tamaño" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Desactivado" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Error en la configuración" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Identificador (ID) de usuario" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/es_CO/fusiondirectory.po b/gpg/locale/es_CO/fusiondirectory.po index 656e064b70..5845e14c59 100644 --- a/gpg/locale/es_CO/fusiondirectory.po +++ b/gpg/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Error LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Por favor elija las entradas que desea" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Error de configuración" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID de usuario" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/es_VE/fusiondirectory.po b/gpg/locale/es_VE/fusiondirectory.po index c698e31d53..abcb5a4df5 100644 --- a/gpg/locale/es_VE/fusiondirectory.po +++ b/gpg/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Error de LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Por favor seleccione las entradas que desee" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Tamaño" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Desactivado" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Error en la configuración" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Identificador (ID) de usuario" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/fa_IR/fusiondirectory.po b/gpg/locale/fa_IR/fusiondirectory.po index 193810cc9c..8b49ee6d83 100644 --- a/gpg/locale/fa_IR/fusiondirectory.po +++ b/gpg/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "خطای LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po index dc24602b12..30284bc9e3 100644 --- a/gpg/locale/fi_FI/fusiondirectory.po +++ b/gpg/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tyyppi" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Käyttäjätunnus" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/fr/fusiondirectory.po b/gpg/locale/fr/fusiondirectory.po index 773e8dae3a..472ba30fa5 100644 --- a/gpg/locale/fr/fusiondirectory.po +++ b/gpg/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" @@ -57,16 +57,16 @@ msgstr "Branche où seront stockées les clefs GPG" msgid "LDAP error" msgstr "Erreur LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Veuillez sélectionner les entrées désirées" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "Clef PGP" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "ID de la clef" @@ -87,41 +87,41 @@ msgid "Type" msgstr "Type" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Taille" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "Révoquée" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Désactivée" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Erreur de configuration" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "Vous devez configurer d'abord le DN de base de GPG, dans la section «Configuration»" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID de l'utilisateur" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "Date de création" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "Date d'expiration" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "Algorithme" diff --git a/gpg/locale/hu_HU/fusiondirectory.po b/gpg/locale/hu_HU/fusiondirectory.po index 836973bf99..a96fa95b9e 100644 --- a/gpg/locale/hu_HU/fusiondirectory.po +++ b/gpg/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/id/fusiondirectory.po b/gpg/locale/id/fusiondirectory.po index 4b6489d474..c557a595d8 100644 --- a/gpg/locale/id/fusiondirectory.po +++ b/gpg/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/it_IT/fusiondirectory.po b/gpg/locale/it_IT/fusiondirectory.po index 295534ffe7..78b0419d18 100644 --- a/gpg/locale/it_IT/fusiondirectory.po +++ b/gpg/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" @@ -55,16 +56,16 @@ msgstr "Ramo sotto la base nel quale saranno immagazzinate le chiavi" msgid "LDAP error" msgstr "Errore LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Seleziona le entries desiderate" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "Chiave PGP" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "ID della chiave" @@ -85,41 +86,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Dimensione" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "Revocato" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Disabilitato" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Errore di configurazione" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "Devi prima di tutto configurare la bse dn per GPG, nella sezione addons" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID dell'utente" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "Data di creazione" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "Data di scadenza" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "Algoritmo" diff --git a/gpg/locale/lv/fusiondirectory.po b/gpg/locale/lv/fusiondirectory.po index 1f4fdb589f..f3aa34c708 100644 --- a/gpg/locale/lv/fusiondirectory.po +++ b/gpg/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP kļūda" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Veids" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "LietotÄja ID" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/nb/fusiondirectory.po b/gpg/locale/nb/fusiondirectory.po index 1107946b14..cc393579e9 100644 --- a/gpg/locale/nb/fusiondirectory.po +++ b/gpg/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP-feil" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/nl/fusiondirectory.po b/gpg/locale/nl/fusiondirectory.po index b6d1d75921..cdf4f62b6c 100644 --- a/gpg/locale/nl/fusiondirectory.po +++ b/gpg/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP fout" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Gelieve de gegevens te selecteren" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Type" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Grootte" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Niet actief" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Configuratie fout" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Gebruikers ID" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/pl/fusiondirectory.po b/gpg/locale/pl/fusiondirectory.po index 708045dd29..809586328a 100644 --- a/gpg/locale/pl/fusiondirectory.po +++ b/gpg/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "błąd LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Typ" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Rozmiar" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Wyłączone" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Błąd konfiguracji" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Identyfikator użytkownika" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/pt/fusiondirectory.po b/gpg/locale/pt/fusiondirectory.po index 5c050df1e5..d02feb69ef 100644 --- a/gpg/locale/pt/fusiondirectory.po +++ b/gpg/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Erro de LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Erro de configuração" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID do usuário" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/pt_BR/fusiondirectory.po b/gpg/locale/pt_BR/fusiondirectory.po index 7b8cd9b79b..926f758162 100644 --- a/gpg/locale/pt_BR/fusiondirectory.po +++ b/gpg/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Erro de LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Por favor, selecione as entradas desejadas" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Tipo" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Tamanho" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Erro de configuração" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID de usuário" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po index 8f84cae3ee..11f80221ab 100644 --- a/gpg/locale/ru/fusiondirectory.po +++ b/gpg/locale/ru/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-04-08 18:52+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 06:51+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,16 +56,16 @@ msgstr "Ветка в которой будут хранитьÑÑ ÐºÐ»ÑŽÑ‡Ð¸" msgid "LDAP error" msgstr "Ошибка LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "ПожалуйÑта выберете нужные запиÑи" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "Ключ PGP" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "ID ключа" @@ -84,41 +86,41 @@ msgid "Type" msgstr "Тип" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Размер" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" -msgstr "" +msgstr "Отозван" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Отключен" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Ошибка конфигурации" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Идентификатор пользователÑ" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "Ð’Ñ€ÐµÐ¼Ñ ÑозданиÑ" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" -msgstr "" +msgstr "Когда иÑтекает" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "Ðлгоритм" diff --git a/gpg/locale/ru@petr1708/fusiondirectory.po b/gpg/locale/ru@petr1708/fusiondirectory.po index 57277486ba..273e124bfb 100644 --- a/gpg/locale/ru@petr1708/fusiondirectory.po +++ b/gpg/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/sv/fusiondirectory.po b/gpg/locale/sv/fusiondirectory.po index 8b979ff00c..95020f2309 100644 --- a/gpg/locale/sv/fusiondirectory.po +++ b/gpg/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP-fel" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "Välj önskade poster" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Typ" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "Storlek" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Avaktiverad" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Konfigurationsfel" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "Användar-ID" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/ug/fusiondirectory.po b/gpg/locale/ug/fusiondirectory.po index 6f55cf70a6..2d3d6d6c00 100644 --- a/gpg/locale/ug/fusiondirectory.po +++ b/gpg/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:45+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/vi_VN/fusiondirectory.po b/gpg/locale/vi_VN/fusiondirectory.po index 980172e21b..f268a4b4fb 100644 --- a/gpg/locale/vi_VN/fusiondirectory.po +++ b/gpg/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "Lá»—i LDAP" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "Loại" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "Vô hiệu hóa/ Tắt chức năng" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "Lá»—i cấu hình" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "ID ngưá»i dùng" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/gpg/locale/zh/fusiondirectory.po b/gpg/locale/zh/fusiondirectory.po index deefa5490f..66c013074a 100644 --- a/gpg/locale/zh/fusiondirectory.po +++ b/gpg/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" @@ -54,16 +54,16 @@ msgstr "" msgid "LDAP error" msgstr "LDAP 错误" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:10 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" msgstr "" -#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:14 +#: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:15 msgid "PGP Key" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:40 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:127 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:136 msgid "Key ID" msgstr "" @@ -84,41 +84,41 @@ msgid "Type" msgstr "类型" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:80 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:132 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:141 msgid "Size" msgstr "大å°" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:88 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:133 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:142 msgid "Revoked" msgstr "" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:96 -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:134 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:143 msgid "Disabled" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "Configuration error" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:40 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:62 msgid "You need to configure GPG base dn through the addons section first" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:128 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:137 msgid "User ID" msgstr "用户 ID" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:129 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:138 msgid "Creation time" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:130 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:139 msgid "Expiration" msgstr "" -#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:131 +#: personal/gpg/pgpKeySelect/class_pgpKeySelect.inc:140 msgid "Algorithm" msgstr "" diff --git a/ipmi/locale/ar/fusiondirectory.po b/ipmi/locale/ar/fusiondirectory.po index 3ef4cdf163..43903b5f3f 100644 --- a/ipmi/locale/ar/fusiondirectory.po +++ b/ipmi/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ipmi/locale/ca/fusiondirectory.po b/ipmi/locale/ca/fusiondirectory.po index da7e818432..7ae5a8b82e 100644 --- a/ipmi/locale/ca/fusiondirectory.po +++ b/ipmi/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ipmi/locale/cs_CZ/fusiondirectory.po b/ipmi/locale/cs_CZ/fusiondirectory.po index a0b0ce3fd0..d219b0a761 100644 --- a/ipmi/locale/cs_CZ/fusiondirectory.po +++ b/ipmi/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ipmi/locale/de/fusiondirectory.po b/ipmi/locale/de/fusiondirectory.po index a9938dd9cc..1d3e27e091 100644 --- a/ipmi/locale/de/fusiondirectory.po +++ b/ipmi/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ipmi/locale/el_GR/fusiondirectory.po b/ipmi/locale/el_GR/fusiondirectory.po index 72d31f7a12..8e477181bb 100644 --- a/ipmi/locale/el_GR/fusiondirectory.po +++ b/ipmi/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ipmi/locale/en/fusiondirectory.po b/ipmi/locale/en/fusiondirectory.po index af3a28ebf7..5b8455e555 100644 --- a/ipmi/locale/en/fusiondirectory.po +++ b/ipmi/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ipmi/locale/es/fusiondirectory.po b/ipmi/locale/es/fusiondirectory.po index 1d15b2dae6..30bd2ab718 100644 --- a/ipmi/locale/es/fusiondirectory.po +++ b/ipmi/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ipmi/locale/es_CO/fusiondirectory.po b/ipmi/locale/es_CO/fusiondirectory.po index a27f17cf21..f926015839 100644 --- a/ipmi/locale/es_CO/fusiondirectory.po +++ b/ipmi/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ipmi/locale/es_VE/fusiondirectory.po b/ipmi/locale/es_VE/fusiondirectory.po index e740186fc0..f4d01f3d79 100644 --- a/ipmi/locale/es_VE/fusiondirectory.po +++ b/ipmi/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ipmi/locale/fa_IR/fusiondirectory.po b/ipmi/locale/fa_IR/fusiondirectory.po index adedd9a9ac..02efd1ff88 100644 --- a/ipmi/locale/fa_IR/fusiondirectory.po +++ b/ipmi/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ipmi/locale/fi_FI/fusiondirectory.po b/ipmi/locale/fi_FI/fusiondirectory.po index 42c7696f5e..c4471c4955 100644 --- a/ipmi/locale/fi_FI/fusiondirectory.po +++ b/ipmi/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ipmi/locale/fr/fusiondirectory.po b/ipmi/locale/fr/fusiondirectory.po index c92a9febc4..dff2e84587 100644 --- a/ipmi/locale/fr/fusiondirectory.po +++ b/ipmi/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ipmi/locale/hu_HU/fusiondirectory.po b/ipmi/locale/hu_HU/fusiondirectory.po index 916572000b..0a28f97318 100644 --- a/ipmi/locale/hu_HU/fusiondirectory.po +++ b/ipmi/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ipmi/locale/id/fusiondirectory.po b/ipmi/locale/id/fusiondirectory.po index 4308dba003..6c8b00410b 100644 --- a/ipmi/locale/id/fusiondirectory.po +++ b/ipmi/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ipmi/locale/it_IT/fusiondirectory.po b/ipmi/locale/it_IT/fusiondirectory.po index 135f59e1d5..cd062dfc86 100644 --- a/ipmi/locale/it_IT/fusiondirectory.po +++ b/ipmi/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ipmi/locale/lv/fusiondirectory.po b/ipmi/locale/lv/fusiondirectory.po index 5e70eebd95..365e482cd2 100644 --- a/ipmi/locale/lv/fusiondirectory.po +++ b/ipmi/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ipmi/locale/nb/fusiondirectory.po b/ipmi/locale/nb/fusiondirectory.po index f09ecacc33..593dee9755 100644 --- a/ipmi/locale/nb/fusiondirectory.po +++ b/ipmi/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ipmi/locale/nl/fusiondirectory.po b/ipmi/locale/nl/fusiondirectory.po index 9f7b1fc20d..55e7595778 100644 --- a/ipmi/locale/nl/fusiondirectory.po +++ b/ipmi/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ipmi/locale/pl/fusiondirectory.po b/ipmi/locale/pl/fusiondirectory.po index 9c78eab5a1..64f2ec12c7 100644 --- a/ipmi/locale/pl/fusiondirectory.po +++ b/ipmi/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:47+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ipmi/locale/pt/fusiondirectory.po b/ipmi/locale/pt/fusiondirectory.po index 82320dd030..5915a69370 100644 --- a/ipmi/locale/pt/fusiondirectory.po +++ b/ipmi/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ipmi/locale/pt_BR/fusiondirectory.po b/ipmi/locale/pt_BR/fusiondirectory.po index 8b2cbbf019..8403cea13f 100644 --- a/ipmi/locale/pt_BR/fusiondirectory.po +++ b/ipmi/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ipmi/locale/ru/fusiondirectory.po b/ipmi/locale/ru/fusiondirectory.po index 641de2c72e..592f5a92be 100644 --- a/ipmi/locale/ru/fusiondirectory.po +++ b/ipmi/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ipmi/locale/ru@petr1708/fusiondirectory.po b/ipmi/locale/ru@petr1708/fusiondirectory.po index 4dbb25bd3b..b1d8b6cd58 100644 --- a/ipmi/locale/ru@petr1708/fusiondirectory.po +++ b/ipmi/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ipmi/locale/sv/fusiondirectory.po b/ipmi/locale/sv/fusiondirectory.po index 0380849ef8..7725f7b578 100644 --- a/ipmi/locale/sv/fusiondirectory.po +++ b/ipmi/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ipmi/locale/ug/fusiondirectory.po b/ipmi/locale/ug/fusiondirectory.po index 09ccf3032e..d0f94b38af 100644 --- a/ipmi/locale/ug/fusiondirectory.po +++ b/ipmi/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ipmi/locale/vi_VN/fusiondirectory.po b/ipmi/locale/vi_VN/fusiondirectory.po index 1abf8541f6..a8b60899e6 100644 --- a/ipmi/locale/vi_VN/fusiondirectory.po +++ b/ipmi/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ipmi/locale/zh/fusiondirectory.po b/ipmi/locale/zh/fusiondirectory.po index c012e561b4..cd32239cc3 100644 --- a/ipmi/locale/zh/fusiondirectory.po +++ b/ipmi/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:46+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/kolab2/locale/ar/fusiondirectory.po b/kolab2/locale/ar/fusiondirectory.po index 1abca11f60..d2e6f166a9 100644 --- a/kolab2/locale/ar/fusiondirectory.po +++ b/kolab2/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/kolab2/locale/ca/fusiondirectory.po b/kolab2/locale/ca/fusiondirectory.po index a13ba579cf..67f5a4a3f8 100644 --- a/kolab2/locale/ca/fusiondirectory.po +++ b/kolab2/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/kolab2/locale/cs_CZ/fusiondirectory.po b/kolab2/locale/cs_CZ/fusiondirectory.po index fcf728e3c2..ccf3ab88d8 100644 --- a/kolab2/locale/cs_CZ/fusiondirectory.po +++ b/kolab2/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/kolab2/locale/de/fusiondirectory.po b/kolab2/locale/de/fusiondirectory.po index f3f15f7a7c..d2943af949 100644 --- a/kolab2/locale/de/fusiondirectory.po +++ b/kolab2/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/kolab2/locale/el_GR/fusiondirectory.po b/kolab2/locale/el_GR/fusiondirectory.po index 4bca97104f..d48bbdcaad 100644 --- a/kolab2/locale/el_GR/fusiondirectory.po +++ b/kolab2/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/kolab2/locale/en/fusiondirectory.po b/kolab2/locale/en/fusiondirectory.po index 258a05b1dc..91150afd6e 100644 --- a/kolab2/locale/en/fusiondirectory.po +++ b/kolab2/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/kolab2/locale/es/fusiondirectory.po b/kolab2/locale/es/fusiondirectory.po index b1e4dcbdb1..f430d317be 100644 --- a/kolab2/locale/es/fusiondirectory.po +++ b/kolab2/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/kolab2/locale/es_CO/fusiondirectory.po b/kolab2/locale/es_CO/fusiondirectory.po index 5d057ae857..e317dd1d1c 100644 --- a/kolab2/locale/es_CO/fusiondirectory.po +++ b/kolab2/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/kolab2/locale/es_VE/fusiondirectory.po b/kolab2/locale/es_VE/fusiondirectory.po index f1474d5e35..0f26330b36 100644 --- a/kolab2/locale/es_VE/fusiondirectory.po +++ b/kolab2/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/kolab2/locale/fa_IR/fusiondirectory.po b/kolab2/locale/fa_IR/fusiondirectory.po index 13604acaff..a7bc94e362 100644 --- a/kolab2/locale/fa_IR/fusiondirectory.po +++ b/kolab2/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/kolab2/locale/fi_FI/fusiondirectory.po b/kolab2/locale/fi_FI/fusiondirectory.po index d4218cda27..d4d6fa6144 100644 --- a/kolab2/locale/fi_FI/fusiondirectory.po +++ b/kolab2/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:47+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/kolab2/locale/fr/fusiondirectory.po b/kolab2/locale/fr/fusiondirectory.po index 3b64c073a9..933dfa1880 100644 --- a/kolab2/locale/fr/fusiondirectory.po +++ b/kolab2/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/kolab2/locale/hu_HU/fusiondirectory.po b/kolab2/locale/hu_HU/fusiondirectory.po index 81d0a57aa0..34734023cf 100644 --- a/kolab2/locale/hu_HU/fusiondirectory.po +++ b/kolab2/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/kolab2/locale/id/fusiondirectory.po b/kolab2/locale/id/fusiondirectory.po index e8a68bcb2e..5f61a030ed 100644 --- a/kolab2/locale/id/fusiondirectory.po +++ b/kolab2/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/kolab2/locale/it_IT/fusiondirectory.po b/kolab2/locale/it_IT/fusiondirectory.po index 1e408accaf..aae85876aa 100644 --- a/kolab2/locale/it_IT/fusiondirectory.po +++ b/kolab2/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/kolab2/locale/lv/fusiondirectory.po b/kolab2/locale/lv/fusiondirectory.po index 3caf189f29..ba68269408 100644 --- a/kolab2/locale/lv/fusiondirectory.po +++ b/kolab2/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/kolab2/locale/nb/fusiondirectory.po b/kolab2/locale/nb/fusiondirectory.po index ca6e042b9c..387081a9e1 100644 --- a/kolab2/locale/nb/fusiondirectory.po +++ b/kolab2/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/kolab2/locale/nl/fusiondirectory.po b/kolab2/locale/nl/fusiondirectory.po index 32cd0cdf10..04db64b849 100644 --- a/kolab2/locale/nl/fusiondirectory.po +++ b/kolab2/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/kolab2/locale/pl/fusiondirectory.po b/kolab2/locale/pl/fusiondirectory.po index 13adcaf969..75bc7a7343 100644 --- a/kolab2/locale/pl/fusiondirectory.po +++ b/kolab2/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/kolab2/locale/pt/fusiondirectory.po b/kolab2/locale/pt/fusiondirectory.po index 888c56e0ec..8287345366 100644 --- a/kolab2/locale/pt/fusiondirectory.po +++ b/kolab2/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/kolab2/locale/pt_BR/fusiondirectory.po b/kolab2/locale/pt_BR/fusiondirectory.po index f415448712..5f2272c7d2 100644 --- a/kolab2/locale/pt_BR/fusiondirectory.po +++ b/kolab2/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/kolab2/locale/ru/fusiondirectory.po b/kolab2/locale/ru/fusiondirectory.po index 9fa32a04e0..c7456f5749 100644 --- a/kolab2/locale/ru/fusiondirectory.po +++ b/kolab2/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/kolab2/locale/ru@petr1708/fusiondirectory.po b/kolab2/locale/ru@petr1708/fusiondirectory.po index 722cb17125..28a3c75ce0 100644 --- a/kolab2/locale/ru@petr1708/fusiondirectory.po +++ b/kolab2/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/kolab2/locale/sv/fusiondirectory.po b/kolab2/locale/sv/fusiondirectory.po index f82435ceba..0f8b4b53fd 100644 --- a/kolab2/locale/sv/fusiondirectory.po +++ b/kolab2/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/kolab2/locale/ug/fusiondirectory.po b/kolab2/locale/ug/fusiondirectory.po index 7cd0c6fafb..7e023dad58 100644 --- a/kolab2/locale/ug/fusiondirectory.po +++ b/kolab2/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/kolab2/locale/vi_VN/fusiondirectory.po b/kolab2/locale/vi_VN/fusiondirectory.po index 5c0c39e4fe..c85212ba41 100644 --- a/kolab2/locale/vi_VN/fusiondirectory.po +++ b/kolab2/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/kolab2/locale/zh/fusiondirectory.po b/kolab2/locale/zh/fusiondirectory.po index 1d1d4fc539..e517d9a35a 100644 --- a/kolab2/locale/zh/fusiondirectory.po +++ b/kolab2/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-12 13:36+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ldapdump/locale/ar/fusiondirectory.po b/ldapdump/locale/ar/fusiondirectory.po index eb739a7489..1c68d77643 100644 --- a/ldapdump/locale/ar/fusiondirectory.po +++ b/ldapdump/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ldapdump/locale/ca/fusiondirectory.po b/ldapdump/locale/ca/fusiondirectory.po index 27dad5a0c0..624c4f88a2 100644 --- a/ldapdump/locale/ca/fusiondirectory.po +++ b/ldapdump/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ldapdump/locale/cs_CZ/fusiondirectory.po b/ldapdump/locale/cs_CZ/fusiondirectory.po index 1602c19b63..fe7da76052 100644 --- a/ldapdump/locale/cs_CZ/fusiondirectory.po +++ b/ldapdump/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ldapdump/locale/de/fusiondirectory.po b/ldapdump/locale/de/fusiondirectory.po index 2fda5b7ff2..b1c8093d8f 100644 --- a/ldapdump/locale/de/fusiondirectory.po +++ b/ldapdump/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ldapdump/locale/el_GR/fusiondirectory.po b/ldapdump/locale/el_GR/fusiondirectory.po index 3513d23b12..ee248ec491 100644 --- a/ldapdump/locale/el_GR/fusiondirectory.po +++ b/ldapdump/locale/el_GR/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # pkst <pkst@eellak.gr>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ldapdump/locale/en/fusiondirectory.po b/ldapdump/locale/en/fusiondirectory.po index b754c5aef6..5e1c768ae4 100644 --- a/ldapdump/locale/en/fusiondirectory.po +++ b/ldapdump/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ldapdump/locale/es/fusiondirectory.po b/ldapdump/locale/es/fusiondirectory.po index a4cb76d42a..f702cb5b96 100644 --- a/ldapdump/locale/es/fusiondirectory.po +++ b/ldapdump/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ldapdump/locale/es_CO/fusiondirectory.po b/ldapdump/locale/es_CO/fusiondirectory.po index 1ced03e573..d9f1d05ce2 100644 --- a/ldapdump/locale/es_CO/fusiondirectory.po +++ b/ldapdump/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ldapdump/locale/es_VE/fusiondirectory.po b/ldapdump/locale/es_VE/fusiondirectory.po index 0d4feb9a6f..e532ce6a26 100644 --- a/ldapdump/locale/es_VE/fusiondirectory.po +++ b/ldapdump/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ldapdump/locale/fa_IR/fusiondirectory.po b/ldapdump/locale/fa_IR/fusiondirectory.po index 3174927ef3..9a453fa2f3 100644 --- a/ldapdump/locale/fa_IR/fusiondirectory.po +++ b/ldapdump/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ldapdump/locale/fi_FI/fusiondirectory.po b/ldapdump/locale/fi_FI/fusiondirectory.po index 5a704791da..32e689df0c 100644 --- a/ldapdump/locale/fi_FI/fusiondirectory.po +++ b/ldapdump/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ldapdump/locale/fr/fusiondirectory.po b/ldapdump/locale/fr/fusiondirectory.po index 6b89745017..72852ff131 100644 --- a/ldapdump/locale/fr/fusiondirectory.po +++ b/ldapdump/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ldapdump/locale/hu_HU/fusiondirectory.po b/ldapdump/locale/hu_HU/fusiondirectory.po index 30bb0cda81..b16c20e3e9 100644 --- a/ldapdump/locale/hu_HU/fusiondirectory.po +++ b/ldapdump/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ldapdump/locale/id/fusiondirectory.po b/ldapdump/locale/id/fusiondirectory.po index 0df61debb2..50cdb5bb0e 100644 --- a/ldapdump/locale/id/fusiondirectory.po +++ b/ldapdump/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ldapdump/locale/it_IT/fusiondirectory.po b/ldapdump/locale/it_IT/fusiondirectory.po index 5910f05d8d..8eeb9097d8 100644 --- a/ldapdump/locale/it_IT/fusiondirectory.po +++ b/ldapdump/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ldapdump/locale/lv/fusiondirectory.po b/ldapdump/locale/lv/fusiondirectory.po index c3ecc008ab..25505f3088 100644 --- a/ldapdump/locale/lv/fusiondirectory.po +++ b/ldapdump/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ldapdump/locale/nb/fusiondirectory.po b/ldapdump/locale/nb/fusiondirectory.po index 7f5338cb01..b95a56dd1c 100644 --- a/ldapdump/locale/nb/fusiondirectory.po +++ b/ldapdump/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ldapdump/locale/nl/fusiondirectory.po b/ldapdump/locale/nl/fusiondirectory.po index dc8247cae2..9be49ea689 100644 --- a/ldapdump/locale/nl/fusiondirectory.po +++ b/ldapdump/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ldapdump/locale/pl/fusiondirectory.po b/ldapdump/locale/pl/fusiondirectory.po index 8ba68692e0..2bcac9a665 100644 --- a/ldapdump/locale/pl/fusiondirectory.po +++ b/ldapdump/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ldapdump/locale/pt/fusiondirectory.po b/ldapdump/locale/pt/fusiondirectory.po index 06bc2ee8ce..fbd0c2942f 100644 --- a/ldapdump/locale/pt/fusiondirectory.po +++ b/ldapdump/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ldapdump/locale/pt_BR/fusiondirectory.po b/ldapdump/locale/pt_BR/fusiondirectory.po index 7008928c65..4628864275 100644 --- a/ldapdump/locale/pt_BR/fusiondirectory.po +++ b/ldapdump/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ldapdump/locale/ru/fusiondirectory.po b/ldapdump/locale/ru/fusiondirectory.po index 8f278a8531..2e1d522a78 100644 --- a/ldapdump/locale/ru/fusiondirectory.po +++ b/ldapdump/locale/ru/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-02-11 18:55+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:09+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,4 +29,4 @@ msgstr "" #: addons/ldapdump/ldapdump.tpl.c:2 msgid "Insufficient rights" -msgstr "недоÑтаточно прав" +msgstr "ÐедоÑтаточно прав" diff --git a/ldapdump/locale/ru@petr1708/fusiondirectory.po b/ldapdump/locale/ru@petr1708/fusiondirectory.po index 746b0f75cc..772dfe2877 100644 --- a/ldapdump/locale/ru@petr1708/fusiondirectory.po +++ b/ldapdump/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ldapdump/locale/sv/fusiondirectory.po b/ldapdump/locale/sv/fusiondirectory.po index c38eedcdcc..3388aa497d 100644 --- a/ldapdump/locale/sv/fusiondirectory.po +++ b/ldapdump/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:49+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ldapdump/locale/ug/fusiondirectory.po b/ldapdump/locale/ug/fusiondirectory.po index 280c1f32e1..23a5a315c8 100644 --- a/ldapdump/locale/ug/fusiondirectory.po +++ b/ldapdump/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ldapdump/locale/vi_VN/fusiondirectory.po b/ldapdump/locale/vi_VN/fusiondirectory.po index 4ecdcd6f5a..78f3ede010 100644 --- a/ldapdump/locale/vi_VN/fusiondirectory.po +++ b/ldapdump/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ldapdump/locale/zh/fusiondirectory.po b/ldapdump/locale/zh/fusiondirectory.po index 186bcc487a..a18e45d6a8 100644 --- a/ldapdump/locale/zh/fusiondirectory.po +++ b/ldapdump/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:48+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ldapmanager/locale/ar/fusiondirectory.po b/ldapmanager/locale/ar/fusiondirectory.po index ff10ea10a9..17b1c4bba6 100644 --- a/ldapmanager/locale/ar/fusiondirectory.po +++ b/ldapmanager/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ldapmanager/locale/ca/fusiondirectory.po b/ldapmanager/locale/ca/fusiondirectory.po index 99e2975ebf..07c00f5be1 100644 --- a/ldapmanager/locale/ca/fusiondirectory.po +++ b/ldapmanager/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ldapmanager/locale/cs_CZ/fusiondirectory.po b/ldapmanager/locale/cs_CZ/fusiondirectory.po index 4b1b27247c..5b500fe528 100644 --- a/ldapmanager/locale/cs_CZ/fusiondirectory.po +++ b/ldapmanager/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ldapmanager/locale/de/fusiondirectory.po b/ldapmanager/locale/de/fusiondirectory.po index 56d09c7611..f0a1db1234 100644 --- a/ldapmanager/locale/de/fusiondirectory.po +++ b/ldapmanager/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ldapmanager/locale/el_GR/fusiondirectory.po b/ldapmanager/locale/el_GR/fusiondirectory.po index eea75ea084..18f685e938 100644 --- a/ldapmanager/locale/el_GR/fusiondirectory.po +++ b/ldapmanager/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ldapmanager/locale/en/fusiondirectory.po b/ldapmanager/locale/en/fusiondirectory.po index 9fcf8a6a37..bf6bbe4dda 100644 --- a/ldapmanager/locale/en/fusiondirectory.po +++ b/ldapmanager/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ldapmanager/locale/es/fusiondirectory.po b/ldapmanager/locale/es/fusiondirectory.po index f46cbfe9cd..7cdf14bd27 100644 --- a/ldapmanager/locale/es/fusiondirectory.po +++ b/ldapmanager/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ldapmanager/locale/es_CO/fusiondirectory.po b/ldapmanager/locale/es_CO/fusiondirectory.po index c910b6f0d5..ae4eb181eb 100644 --- a/ldapmanager/locale/es_CO/fusiondirectory.po +++ b/ldapmanager/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ldapmanager/locale/es_VE/fusiondirectory.po b/ldapmanager/locale/es_VE/fusiondirectory.po index 1e0d4cada1..f4dfc56d85 100644 --- a/ldapmanager/locale/es_VE/fusiondirectory.po +++ b/ldapmanager/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ldapmanager/locale/fa_IR/fusiondirectory.po b/ldapmanager/locale/fa_IR/fusiondirectory.po index b94d15fc56..40ad3b9391 100644 --- a/ldapmanager/locale/fa_IR/fusiondirectory.po +++ b/ldapmanager/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po index 217b51adb7..8cad668fe6 100644 --- a/ldapmanager/locale/fi_FI/fusiondirectory.po +++ b/ldapmanager/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:49+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ldapmanager/locale/fr/fusiondirectory.po b/ldapmanager/locale/fr/fusiondirectory.po index dfe2f0cdff..f1e47687ab 100644 --- a/ldapmanager/locale/fr/fusiondirectory.po +++ b/ldapmanager/locale/fr/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 14:07+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ldapmanager/locale/hu_HU/fusiondirectory.po b/ldapmanager/locale/hu_HU/fusiondirectory.po index 49793776ff..7af56a0f62 100644 --- a/ldapmanager/locale/hu_HU/fusiondirectory.po +++ b/ldapmanager/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ldapmanager/locale/id/fusiondirectory.po b/ldapmanager/locale/id/fusiondirectory.po index 2d3ffd4cf9..678c09ed8d 100644 --- a/ldapmanager/locale/id/fusiondirectory.po +++ b/ldapmanager/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ldapmanager/locale/it_IT/fusiondirectory.po b/ldapmanager/locale/it_IT/fusiondirectory.po index fd68844102..2adeece8ae 100644 --- a/ldapmanager/locale/it_IT/fusiondirectory.po +++ b/ldapmanager/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 14:26+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/ldapmanager/locale/lv/fusiondirectory.po b/ldapmanager/locale/lv/fusiondirectory.po index fcb711675d..4a7fe1ed12 100644 --- a/ldapmanager/locale/lv/fusiondirectory.po +++ b/ldapmanager/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ldapmanager/locale/nb/fusiondirectory.po b/ldapmanager/locale/nb/fusiondirectory.po index e969b70ea0..58d036c150 100644 --- a/ldapmanager/locale/nb/fusiondirectory.po +++ b/ldapmanager/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ldapmanager/locale/nl/fusiondirectory.po b/ldapmanager/locale/nl/fusiondirectory.po index efab3869ca..c48ca6c2a8 100644 --- a/ldapmanager/locale/nl/fusiondirectory.po +++ b/ldapmanager/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ldapmanager/locale/pl/fusiondirectory.po b/ldapmanager/locale/pl/fusiondirectory.po index 9c88d02089..752cc05589 100644 --- a/ldapmanager/locale/pl/fusiondirectory.po +++ b/ldapmanager/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ldapmanager/locale/pt/fusiondirectory.po b/ldapmanager/locale/pt/fusiondirectory.po index 34d0201ee7..9ebf0d4091 100644 --- a/ldapmanager/locale/pt/fusiondirectory.po +++ b/ldapmanager/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ldapmanager/locale/pt_BR/fusiondirectory.po b/ldapmanager/locale/pt_BR/fusiondirectory.po index d133f1d863..a2bfd31228 100644 --- a/ldapmanager/locale/pt_BR/fusiondirectory.po +++ b/ldapmanager/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po index c2b192b5e4..66adcef23d 100644 --- a/ldapmanager/locale/ru/fusiondirectory.po +++ b/ldapmanager/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ldapmanager/locale/ru@petr1708/fusiondirectory.po b/ldapmanager/locale/ru@petr1708/fusiondirectory.po index 16d4424822..f37c87b8af 100644 --- a/ldapmanager/locale/ru@petr1708/fusiondirectory.po +++ b/ldapmanager/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ldapmanager/locale/sv/fusiondirectory.po b/ldapmanager/locale/sv/fusiondirectory.po index 6d7aec87aa..8a00043d45 100644 --- a/ldapmanager/locale/sv/fusiondirectory.po +++ b/ldapmanager/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ldapmanager/locale/ug/fusiondirectory.po b/ldapmanager/locale/ug/fusiondirectory.po index db6eef1b44..f5ed5c409c 100644 --- a/ldapmanager/locale/ug/fusiondirectory.po +++ b/ldapmanager/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ldapmanager/locale/vi_VN/fusiondirectory.po b/ldapmanager/locale/vi_VN/fusiondirectory.po index 04ac6eab79..00e22464a4 100644 --- a/ldapmanager/locale/vi_VN/fusiondirectory.po +++ b/ldapmanager/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ldapmanager/locale/zh/fusiondirectory.po b/ldapmanager/locale/zh/fusiondirectory.po index 5ae6f3bf48..0d1f3b916c 100644 --- a/ldapmanager/locale/zh/fusiondirectory.po +++ b/ldapmanager/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-05 12:25+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/mail/locale/ar/fusiondirectory.po b/mail/locale/ar/fusiondirectory.po index 7e27f6c64c..0fcb7f3675 100644 --- a/mail/locale/ar/fusiondirectory.po +++ b/mail/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/mail/locale/ca/fusiondirectory.po b/mail/locale/ca/fusiondirectory.po index f27c1d4052..4a44b3b19d 100644 --- a/mail/locale/ca/fusiondirectory.po +++ b/mail/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/mail/locale/cs_CZ/fusiondirectory.po b/mail/locale/cs_CZ/fusiondirectory.po index 92f9ed7fae..d2f5a518d0 100644 --- a/mail/locale/cs_CZ/fusiondirectory.po +++ b/mail/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/mail/locale/de/fusiondirectory.po b/mail/locale/de/fusiondirectory.po index c006841b69..2f1b8eaa62 100644 --- a/mail/locale/de/fusiondirectory.po +++ b/mail/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/mail/locale/el_GR/fusiondirectory.po b/mail/locale/el_GR/fusiondirectory.po index b6df589d7c..364dceb1f0 100644 --- a/mail/locale/el_GR/fusiondirectory.po +++ b/mail/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/mail/locale/en/fusiondirectory.po b/mail/locale/en/fusiondirectory.po index ef8274eff2..f3cb90a3da 100644 --- a/mail/locale/en/fusiondirectory.po +++ b/mail/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/mail/locale/es/fusiondirectory.po b/mail/locale/es/fusiondirectory.po index 23ebeafb43..04352da2cb 100644 --- a/mail/locale/es/fusiondirectory.po +++ b/mail/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/mail/locale/es_CO/fusiondirectory.po b/mail/locale/es_CO/fusiondirectory.po index f2c21d9cc3..1f261d4eb3 100644 --- a/mail/locale/es_CO/fusiondirectory.po +++ b/mail/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/mail/locale/es_VE/fusiondirectory.po b/mail/locale/es_VE/fusiondirectory.po index 21aa4cfcc8..c6618c4484 100644 --- a/mail/locale/es_VE/fusiondirectory.po +++ b/mail/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/mail/locale/fa_IR/fusiondirectory.po b/mail/locale/fa_IR/fusiondirectory.po index 70a124e8de..0dd2f4cb94 100644 --- a/mail/locale/fa_IR/fusiondirectory.po +++ b/mail/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/mail/locale/fi_FI/fusiondirectory.po b/mail/locale/fi_FI/fusiondirectory.po index 012f8af3df..6f9cb6a53e 100644 --- a/mail/locale/fi_FI/fusiondirectory.po +++ b/mail/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/mail/locale/fr/fusiondirectory.po b/mail/locale/fr/fusiondirectory.po index 09c8613e6a..1416ad2952 100644 --- a/mail/locale/fr/fusiondirectory.po +++ b/mail/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/mail/locale/hu_HU/fusiondirectory.po b/mail/locale/hu_HU/fusiondirectory.po index 9dfda44e0f..bf565a5e0e 100644 --- a/mail/locale/hu_HU/fusiondirectory.po +++ b/mail/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/mail/locale/id/fusiondirectory.po b/mail/locale/id/fusiondirectory.po index aa6da531ed..18b68bc06d 100644 --- a/mail/locale/id/fusiondirectory.po +++ b/mail/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/mail/locale/it_IT/fusiondirectory.po b/mail/locale/it_IT/fusiondirectory.po index f64945de56..6fb1ca1280 100644 --- a/mail/locale/it_IT/fusiondirectory.po +++ b/mail/locale/it_IT/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/mail/locale/lv/fusiondirectory.po b/mail/locale/lv/fusiondirectory.po index c8ab224e41..cfcb670949 100644 --- a/mail/locale/lv/fusiondirectory.po +++ b/mail/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/mail/locale/nb/fusiondirectory.po b/mail/locale/nb/fusiondirectory.po index a375fc73eb..908e8693aa 100644 --- a/mail/locale/nb/fusiondirectory.po +++ b/mail/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/mail/locale/nl/fusiondirectory.po b/mail/locale/nl/fusiondirectory.po index f082426eb3..40c29f4fc3 100644 --- a/mail/locale/nl/fusiondirectory.po +++ b/mail/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/mail/locale/pl/fusiondirectory.po b/mail/locale/pl/fusiondirectory.po index b9834f5e28..4be017a888 100644 --- a/mail/locale/pl/fusiondirectory.po +++ b/mail/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/mail/locale/pt/fusiondirectory.po b/mail/locale/pt/fusiondirectory.po index fed6aa5f72..726acaabbe 100644 --- a/mail/locale/pt/fusiondirectory.po +++ b/mail/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/mail/locale/pt_BR/fusiondirectory.po b/mail/locale/pt_BR/fusiondirectory.po index e04f6cf65f..823dbbc6b2 100644 --- a/mail/locale/pt_BR/fusiondirectory.po +++ b/mail/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/mail/locale/ru/fusiondirectory.po b/mail/locale/ru/fusiondirectory.po index 9450a38f2d..08e142db0c 100644 --- a/mail/locale/ru/fusiondirectory.po +++ b/mail/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/mail/locale/ru@petr1708/fusiondirectory.po b/mail/locale/ru@petr1708/fusiondirectory.po index 6630992a54..e602926f95 100644 --- a/mail/locale/ru@petr1708/fusiondirectory.po +++ b/mail/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/mail/locale/sv/fusiondirectory.po b/mail/locale/sv/fusiondirectory.po index af4543d23d..e3d2b05d57 100644 --- a/mail/locale/sv/fusiondirectory.po +++ b/mail/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/mail/locale/ug/fusiondirectory.po b/mail/locale/ug/fusiondirectory.po index 50e2d06d3c..1c32b9169c 100644 --- a/mail/locale/ug/fusiondirectory.po +++ b/mail/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/mail/locale/vi_VN/fusiondirectory.po b/mail/locale/vi_VN/fusiondirectory.po index 580ac57ed5..10b6cf5d7f 100644 --- a/mail/locale/vi_VN/fusiondirectory.po +++ b/mail/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/mail/locale/zh/fusiondirectory.po b/mail/locale/zh/fusiondirectory.po index e64de19762..7c5c6fb155 100644 --- a/mail/locale/zh/fusiondirectory.po +++ b/mail/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-07-01 14:11+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/mixedgroups/locale/ar/fusiondirectory.po b/mixedgroups/locale/ar/fusiondirectory.po index 2bb995e4f9..aa1e496337 100644 --- a/mixedgroups/locale/ar/fusiondirectory.po +++ b/mixedgroups/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/mixedgroups/locale/ca/fusiondirectory.po b/mixedgroups/locale/ca/fusiondirectory.po index 7837012858..11b4901167 100644 --- a/mixedgroups/locale/ca/fusiondirectory.po +++ b/mixedgroups/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/mixedgroups/locale/cs_CZ/fusiondirectory.po b/mixedgroups/locale/cs_CZ/fusiondirectory.po index 493d64d4bf..de8770ed22 100644 --- a/mixedgroups/locale/cs_CZ/fusiondirectory.po +++ b/mixedgroups/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/mixedgroups/locale/de/fusiondirectory.po b/mixedgroups/locale/de/fusiondirectory.po index e0f147d5bd..671f605cb7 100644 --- a/mixedgroups/locale/de/fusiondirectory.po +++ b/mixedgroups/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/mixedgroups/locale/el_GR/fusiondirectory.po b/mixedgroups/locale/el_GR/fusiondirectory.po index c097efe2a2..0c2b25a923 100644 --- a/mixedgroups/locale/el_GR/fusiondirectory.po +++ b/mixedgroups/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/mixedgroups/locale/en/fusiondirectory.po b/mixedgroups/locale/en/fusiondirectory.po index 9f27763fca..0b5cda1f9b 100644 --- a/mixedgroups/locale/en/fusiondirectory.po +++ b/mixedgroups/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/mixedgroups/locale/es/fusiondirectory.po b/mixedgroups/locale/es/fusiondirectory.po index b83210bca7..c686e506a0 100644 --- a/mixedgroups/locale/es/fusiondirectory.po +++ b/mixedgroups/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/mixedgroups/locale/es_CO/fusiondirectory.po b/mixedgroups/locale/es_CO/fusiondirectory.po index 0b97249d86..500e0007ba 100644 --- a/mixedgroups/locale/es_CO/fusiondirectory.po +++ b/mixedgroups/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/mixedgroups/locale/es_VE/fusiondirectory.po b/mixedgroups/locale/es_VE/fusiondirectory.po index bd88d49873..dc60e0a114 100644 --- a/mixedgroups/locale/es_VE/fusiondirectory.po +++ b/mixedgroups/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/mixedgroups/locale/fa_IR/fusiondirectory.po b/mixedgroups/locale/fa_IR/fusiondirectory.po index 9593045852..d527f6834a 100644 --- a/mixedgroups/locale/fa_IR/fusiondirectory.po +++ b/mixedgroups/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po index c3dab3344e..eb8a1a730f 100644 --- a/mixedgroups/locale/fi_FI/fusiondirectory.po +++ b/mixedgroups/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -76,7 +76,7 @@ msgstr "" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:166 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:166 msgid "Timeout while waiting for lock. Ignoring lock!" diff --git a/mixedgroups/locale/fr/fusiondirectory.po b/mixedgroups/locale/fr/fusiondirectory.po index b58e1c959d..c9c8aef759 100644 --- a/mixedgroups/locale/fr/fusiondirectory.po +++ b/mixedgroups/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/mixedgroups/locale/hu_HU/fusiondirectory.po b/mixedgroups/locale/hu_HU/fusiondirectory.po index 0041c9cea7..da3ae00482 100644 --- a/mixedgroups/locale/hu_HU/fusiondirectory.po +++ b/mixedgroups/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/mixedgroups/locale/id/fusiondirectory.po b/mixedgroups/locale/id/fusiondirectory.po index 0025d9e5f4..64618319a2 100644 --- a/mixedgroups/locale/id/fusiondirectory.po +++ b/mixedgroups/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/mixedgroups/locale/it_IT/fusiondirectory.po b/mixedgroups/locale/it_IT/fusiondirectory.po index a51fc4b9a2..b5ebc58c7e 100644 --- a/mixedgroups/locale/it_IT/fusiondirectory.po +++ b/mixedgroups/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/mixedgroups/locale/lv/fusiondirectory.po b/mixedgroups/locale/lv/fusiondirectory.po index 7edac87db6..0bc3ecb227 100644 --- a/mixedgroups/locale/lv/fusiondirectory.po +++ b/mixedgroups/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/mixedgroups/locale/nb/fusiondirectory.po b/mixedgroups/locale/nb/fusiondirectory.po index aa5d8a07bc..bb6f704238 100644 --- a/mixedgroups/locale/nb/fusiondirectory.po +++ b/mixedgroups/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/mixedgroups/locale/nl/fusiondirectory.po b/mixedgroups/locale/nl/fusiondirectory.po index d3402b4fb2..c4f8eab857 100644 --- a/mixedgroups/locale/nl/fusiondirectory.po +++ b/mixedgroups/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/mixedgroups/locale/pl/fusiondirectory.po b/mixedgroups/locale/pl/fusiondirectory.po index 5c4e52515f..2bee7c89af 100644 --- a/mixedgroups/locale/pl/fusiondirectory.po +++ b/mixedgroups/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/mixedgroups/locale/pt/fusiondirectory.po b/mixedgroups/locale/pt/fusiondirectory.po index 944c320c44..d2081b9025 100644 --- a/mixedgroups/locale/pt/fusiondirectory.po +++ b/mixedgroups/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/mixedgroups/locale/pt_BR/fusiondirectory.po b/mixedgroups/locale/pt_BR/fusiondirectory.po index 71d678fbc9..f2ffe25f0c 100644 --- a/mixedgroups/locale/pt_BR/fusiondirectory.po +++ b/mixedgroups/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/mixedgroups/locale/ru/fusiondirectory.po b/mixedgroups/locale/ru/fusiondirectory.po index c8ce77d15a..c5cc40468f 100644 --- a/mixedgroups/locale/ru/fusiondirectory.po +++ b/mixedgroups/locale/ru/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 07:14+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,11 +21,11 @@ msgstr "" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:28 msgid "Posix group" -msgstr "" +msgstr "Posix группа" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:29 msgid "Posix group settings" -msgstr "" +msgstr "ÐаÑтройки Posix группы" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:46 msgid "Properties" @@ -35,7 +37,7 @@ msgstr "Указать GID вручную" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:49 msgid "Force GID value for this group" -msgstr "" +msgstr "Указать значение GID Ð´Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:53 #: admin/ogroups/mixedgroups/class_mixedGroup.inc:123 @@ -72,7 +74,7 @@ msgstr "разрешить доÑтуп только на Ñти хоÑты" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:75 msgid "Only allow this group to connect to this list of hosts" -msgstr "" +msgstr "Позволить подключатьÑÑ Ñтой группе только к хоÑтам из ÑпиÑка" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:166 msgid "Warning" @@ -80,4 +82,4 @@ msgstr "Предупреждение" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:166 msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" +msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð±Ð»Ð¾ÐºÐ¸Ñ€Ð¾Ð²ÐºÐ¸ иÑтекло. Игнорирование блокировки!" diff --git a/mixedgroups/locale/ru@petr1708/fusiondirectory.po b/mixedgroups/locale/ru@petr1708/fusiondirectory.po index f802366528..26ba11e4b0 100644 --- a/mixedgroups/locale/ru@petr1708/fusiondirectory.po +++ b/mixedgroups/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/mixedgroups/locale/sv/fusiondirectory.po b/mixedgroups/locale/sv/fusiondirectory.po index 6abbba4784..9485eaf52c 100644 --- a/mixedgroups/locale/sv/fusiondirectory.po +++ b/mixedgroups/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/mixedgroups/locale/ug/fusiondirectory.po b/mixedgroups/locale/ug/fusiondirectory.po index facae947d5..dd08f64d60 100644 --- a/mixedgroups/locale/ug/fusiondirectory.po +++ b/mixedgroups/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:51+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/mixedgroups/locale/vi_VN/fusiondirectory.po b/mixedgroups/locale/vi_VN/fusiondirectory.po index 5a580bf50b..7a0b79e21a 100644 --- a/mixedgroups/locale/vi_VN/fusiondirectory.po +++ b/mixedgroups/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/mixedgroups/locale/zh/fusiondirectory.po b/mixedgroups/locale/zh/fusiondirectory.po index 3cbb80edbc..c2b81683ff 100644 --- a/mixedgroups/locale/zh/fusiondirectory.po +++ b/mixedgroups/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/nagios/locale/ar/fusiondirectory.po b/nagios/locale/ar/fusiondirectory.po index 89ece8a959..f0018ccca3 100644 --- a/nagios/locale/ar/fusiondirectory.po +++ b/nagios/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/nagios/locale/ca/fusiondirectory.po b/nagios/locale/ca/fusiondirectory.po index b73232dbb2..d22b4d2432 100644 --- a/nagios/locale/ca/fusiondirectory.po +++ b/nagios/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/nagios/locale/cs_CZ/fusiondirectory.po b/nagios/locale/cs_CZ/fusiondirectory.po index c59ea1bed3..f58a4a0ce8 100644 --- a/nagios/locale/cs_CZ/fusiondirectory.po +++ b/nagios/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/nagios/locale/de/fusiondirectory.po b/nagios/locale/de/fusiondirectory.po index c891d041da..c56a46adfa 100644 --- a/nagios/locale/de/fusiondirectory.po +++ b/nagios/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/nagios/locale/el_GR/fusiondirectory.po b/nagios/locale/el_GR/fusiondirectory.po index e3d3dc1815..27ee94d3be 100644 --- a/nagios/locale/el_GR/fusiondirectory.po +++ b/nagios/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/nagios/locale/en/fusiondirectory.po b/nagios/locale/en/fusiondirectory.po index 82deb80688..433580fddd 100644 --- a/nagios/locale/en/fusiondirectory.po +++ b/nagios/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/nagios/locale/es/fusiondirectory.po b/nagios/locale/es/fusiondirectory.po index 10b830f57f..36cfb8ef74 100644 --- a/nagios/locale/es/fusiondirectory.po +++ b/nagios/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/nagios/locale/es_CO/fusiondirectory.po b/nagios/locale/es_CO/fusiondirectory.po index a3305a8542..fd683e43d0 100644 --- a/nagios/locale/es_CO/fusiondirectory.po +++ b/nagios/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/nagios/locale/es_VE/fusiondirectory.po b/nagios/locale/es_VE/fusiondirectory.po index 0aefafc5c0..6868af60c3 100644 --- a/nagios/locale/es_VE/fusiondirectory.po +++ b/nagios/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/nagios/locale/fa_IR/fusiondirectory.po b/nagios/locale/fa_IR/fusiondirectory.po index 6783a3990f..525a73114d 100644 --- a/nagios/locale/fa_IR/fusiondirectory.po +++ b/nagios/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/nagios/locale/fi_FI/fusiondirectory.po b/nagios/locale/fi_FI/fusiondirectory.po index e7570d9e5c..a717840cf2 100644 --- a/nagios/locale/fi_FI/fusiondirectory.po +++ b/nagios/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/nagios/locale/fr/fusiondirectory.po b/nagios/locale/fr/fusiondirectory.po index 63a14d7f0b..ab0eddd155 100644 --- a/nagios/locale/fr/fusiondirectory.po +++ b/nagios/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/nagios/locale/hu_HU/fusiondirectory.po b/nagios/locale/hu_HU/fusiondirectory.po index 411d252e50..8fa8d7cac1 100644 --- a/nagios/locale/hu_HU/fusiondirectory.po +++ b/nagios/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/nagios/locale/id/fusiondirectory.po b/nagios/locale/id/fusiondirectory.po index 200ecab7b3..3946657748 100644 --- a/nagios/locale/id/fusiondirectory.po +++ b/nagios/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/nagios/locale/it_IT/fusiondirectory.po b/nagios/locale/it_IT/fusiondirectory.po index 957fa66e18..8139277ec3 100644 --- a/nagios/locale/it_IT/fusiondirectory.po +++ b/nagios/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/nagios/locale/lv/fusiondirectory.po b/nagios/locale/lv/fusiondirectory.po index 5efb0d3448..dc7590bcea 100644 --- a/nagios/locale/lv/fusiondirectory.po +++ b/nagios/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/nagios/locale/nb/fusiondirectory.po b/nagios/locale/nb/fusiondirectory.po index 2ff4c168a4..383fb70ea4 100644 --- a/nagios/locale/nb/fusiondirectory.po +++ b/nagios/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/nagios/locale/nl/fusiondirectory.po b/nagios/locale/nl/fusiondirectory.po index e421d49110..5ba4a77fc0 100644 --- a/nagios/locale/nl/fusiondirectory.po +++ b/nagios/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/nagios/locale/pl/fusiondirectory.po b/nagios/locale/pl/fusiondirectory.po index 2fe6233511..11b1a33de4 100644 --- a/nagios/locale/pl/fusiondirectory.po +++ b/nagios/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/nagios/locale/pt/fusiondirectory.po b/nagios/locale/pt/fusiondirectory.po index a1e3beecbc..7e062ea2bb 100644 --- a/nagios/locale/pt/fusiondirectory.po +++ b/nagios/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/nagios/locale/pt_BR/fusiondirectory.po b/nagios/locale/pt_BR/fusiondirectory.po index a12dd989c2..1c7bcb8db4 100644 --- a/nagios/locale/pt_BR/fusiondirectory.po +++ b/nagios/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/nagios/locale/ru/fusiondirectory.po b/nagios/locale/ru/fusiondirectory.po index 42ff9bafd9..4fcb7d7e82 100644 --- a/nagios/locale/ru/fusiondirectory.po +++ b/nagios/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/nagios/locale/ru@petr1708/fusiondirectory.po b/nagios/locale/ru@petr1708/fusiondirectory.po index b41dcb9e5b..3c88d6f8b2 100644 --- a/nagios/locale/ru@petr1708/fusiondirectory.po +++ b/nagios/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/nagios/locale/sv/fusiondirectory.po b/nagios/locale/sv/fusiondirectory.po index eaf5f94197..8cd2abfdf7 100644 --- a/nagios/locale/sv/fusiondirectory.po +++ b/nagios/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/nagios/locale/ug/fusiondirectory.po b/nagios/locale/ug/fusiondirectory.po index 2ce5541023..13fc213d62 100644 --- a/nagios/locale/ug/fusiondirectory.po +++ b/nagios/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/nagios/locale/vi_VN/fusiondirectory.po b/nagios/locale/vi_VN/fusiondirectory.po index 591447c25a..f823065f24 100644 --- a/nagios/locale/vi_VN/fusiondirectory.po +++ b/nagios/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/nagios/locale/zh/fusiondirectory.po b/nagios/locale/zh/fusiondirectory.po index 4cfe44db7d..dbfe50d1f3 100644 --- a/nagios/locale/zh/fusiondirectory.po +++ b/nagios/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-10 15:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/netgroups/locale/ar/fusiondirectory.po b/netgroups/locale/ar/fusiondirectory.po index 5bd80f3248..97aee978e3 100644 --- a/netgroups/locale/ar/fusiondirectory.po +++ b/netgroups/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/netgroups/locale/ca/fusiondirectory.po b/netgroups/locale/ca/fusiondirectory.po index 77ef05c5fb..9842920efa 100644 --- a/netgroups/locale/ca/fusiondirectory.po +++ b/netgroups/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/netgroups/locale/cs_CZ/fusiondirectory.po b/netgroups/locale/cs_CZ/fusiondirectory.po index d03d7e903d..49352c0ac8 100644 --- a/netgroups/locale/cs_CZ/fusiondirectory.po +++ b/netgroups/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/netgroups/locale/de/fusiondirectory.po b/netgroups/locale/de/fusiondirectory.po index 5466877513..0d533c8f62 100644 --- a/netgroups/locale/de/fusiondirectory.po +++ b/netgroups/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/netgroups/locale/el_GR/fusiondirectory.po b/netgroups/locale/el_GR/fusiondirectory.po index a7a7c68a1f..701130b6e1 100644 --- a/netgroups/locale/el_GR/fusiondirectory.po +++ b/netgroups/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/netgroups/locale/en/fusiondirectory.po b/netgroups/locale/en/fusiondirectory.po index 63827cf1ce..a7218f9f9d 100644 --- a/netgroups/locale/en/fusiondirectory.po +++ b/netgroups/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/netgroups/locale/es/fusiondirectory.po b/netgroups/locale/es/fusiondirectory.po index 064fa77b42..c24ab5ba25 100644 --- a/netgroups/locale/es/fusiondirectory.po +++ b/netgroups/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/netgroups/locale/es_CO/fusiondirectory.po b/netgroups/locale/es_CO/fusiondirectory.po index a659a01bc8..9e484653f5 100644 --- a/netgroups/locale/es_CO/fusiondirectory.po +++ b/netgroups/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/netgroups/locale/es_VE/fusiondirectory.po b/netgroups/locale/es_VE/fusiondirectory.po index e24093dfcc..f74061ea3b 100644 --- a/netgroups/locale/es_VE/fusiondirectory.po +++ b/netgroups/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/netgroups/locale/fa_IR/fusiondirectory.po b/netgroups/locale/fa_IR/fusiondirectory.po index cdb5458f81..2f29c6e015 100644 --- a/netgroups/locale/fa_IR/fusiondirectory.po +++ b/netgroups/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/netgroups/locale/fi_FI/fusiondirectory.po b/netgroups/locale/fi_FI/fusiondirectory.po index b3b4c7e5ae..f13d216d56 100644 --- a/netgroups/locale/fi_FI/fusiondirectory.po +++ b/netgroups/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/netgroups/locale/fr/fusiondirectory.po b/netgroups/locale/fr/fusiondirectory.po index 9bac25b235..09047f3155 100644 --- a/netgroups/locale/fr/fusiondirectory.po +++ b/netgroups/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/netgroups/locale/hu_HU/fusiondirectory.po b/netgroups/locale/hu_HU/fusiondirectory.po index e42648e067..96f8542911 100644 --- a/netgroups/locale/hu_HU/fusiondirectory.po +++ b/netgroups/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/netgroups/locale/id/fusiondirectory.po b/netgroups/locale/id/fusiondirectory.po index 56abde04b1..4bc41fdf17 100644 --- a/netgroups/locale/id/fusiondirectory.po +++ b/netgroups/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/netgroups/locale/it_IT/fusiondirectory.po b/netgroups/locale/it_IT/fusiondirectory.po index b1f27084ba..4c22a9c394 100644 --- a/netgroups/locale/it_IT/fusiondirectory.po +++ b/netgroups/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/netgroups/locale/lv/fusiondirectory.po b/netgroups/locale/lv/fusiondirectory.po index e3ebb558e5..f5f62ebdc8 100644 --- a/netgroups/locale/lv/fusiondirectory.po +++ b/netgroups/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/netgroups/locale/nb/fusiondirectory.po b/netgroups/locale/nb/fusiondirectory.po index 02b254e9f0..af36635899 100644 --- a/netgroups/locale/nb/fusiondirectory.po +++ b/netgroups/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/netgroups/locale/nl/fusiondirectory.po b/netgroups/locale/nl/fusiondirectory.po index 92e7f68e4a..3c3604ce98 100644 --- a/netgroups/locale/nl/fusiondirectory.po +++ b/netgroups/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/netgroups/locale/pl/fusiondirectory.po b/netgroups/locale/pl/fusiondirectory.po index 9685f8a41e..68cd17d98b 100644 --- a/netgroups/locale/pl/fusiondirectory.po +++ b/netgroups/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/netgroups/locale/pt/fusiondirectory.po b/netgroups/locale/pt/fusiondirectory.po index 08483cdf5b..774c810d8a 100644 --- a/netgroups/locale/pt/fusiondirectory.po +++ b/netgroups/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/netgroups/locale/pt_BR/fusiondirectory.po b/netgroups/locale/pt_BR/fusiondirectory.po index 90f2cada0f..cfd1cbdefe 100644 --- a/netgroups/locale/pt_BR/fusiondirectory.po +++ b/netgroups/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/netgroups/locale/ru/fusiondirectory.po b/netgroups/locale/ru/fusiondirectory.po index 579cf43086..e5e63a2ddd 100644 --- a/netgroups/locale/ru/fusiondirectory.po +++ b/netgroups/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/netgroups/locale/ru@petr1708/fusiondirectory.po b/netgroups/locale/ru@petr1708/fusiondirectory.po index f3cac13ac7..5f05069f77 100644 --- a/netgroups/locale/ru@petr1708/fusiondirectory.po +++ b/netgroups/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/netgroups/locale/sv/fusiondirectory.po b/netgroups/locale/sv/fusiondirectory.po index 0ac6766bed..b74ee6d3a1 100644 --- a/netgroups/locale/sv/fusiondirectory.po +++ b/netgroups/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/netgroups/locale/ug/fusiondirectory.po b/netgroups/locale/ug/fusiondirectory.po index 83eaa396ae..ff37defe07 100644 --- a/netgroups/locale/ug/fusiondirectory.po +++ b/netgroups/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:52+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/netgroups/locale/vi_VN/fusiondirectory.po b/netgroups/locale/vi_VN/fusiondirectory.po index 069519c5ea..e204fbf277 100644 --- a/netgroups/locale/vi_VN/fusiondirectory.po +++ b/netgroups/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/netgroups/locale/zh/fusiondirectory.po b/netgroups/locale/zh/fusiondirectory.po index 7086f0a2d3..a711a9a713 100644 --- a/netgroups/locale/zh/fusiondirectory.po +++ b/netgroups/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/newsletter/locale/ar/fusiondirectory.po b/newsletter/locale/ar/fusiondirectory.po index 165a0f636d..50e40444bc 100644 --- a/newsletter/locale/ar/fusiondirectory.po +++ b/newsletter/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/newsletter/locale/ca/fusiondirectory.po b/newsletter/locale/ca/fusiondirectory.po index 812e7eb26c..9837ced43e 100644 --- a/newsletter/locale/ca/fusiondirectory.po +++ b/newsletter/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/newsletter/locale/cs_CZ/fusiondirectory.po b/newsletter/locale/cs_CZ/fusiondirectory.po index 9c1a96bae5..a595aab5dc 100644 --- a/newsletter/locale/cs_CZ/fusiondirectory.po +++ b/newsletter/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/newsletter/locale/de/fusiondirectory.po b/newsletter/locale/de/fusiondirectory.po index b385e3c0db..c35ad4ef01 100644 --- a/newsletter/locale/de/fusiondirectory.po +++ b/newsletter/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/newsletter/locale/el_GR/fusiondirectory.po b/newsletter/locale/el_GR/fusiondirectory.po index 788757d7c9..cbcdaec129 100644 --- a/newsletter/locale/el_GR/fusiondirectory.po +++ b/newsletter/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/newsletter/locale/en/fusiondirectory.po b/newsletter/locale/en/fusiondirectory.po index 140eec8b25..1a62d9ed37 100644 --- a/newsletter/locale/en/fusiondirectory.po +++ b/newsletter/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/newsletter/locale/es/fusiondirectory.po b/newsletter/locale/es/fusiondirectory.po index 53d1d497bd..2d0624114b 100644 --- a/newsletter/locale/es/fusiondirectory.po +++ b/newsletter/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/newsletter/locale/es_CO/fusiondirectory.po b/newsletter/locale/es_CO/fusiondirectory.po index 1f68d4cfc5..1a88faea49 100644 --- a/newsletter/locale/es_CO/fusiondirectory.po +++ b/newsletter/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/newsletter/locale/es_VE/fusiondirectory.po b/newsletter/locale/es_VE/fusiondirectory.po index e82f8eb496..8222ddf8ea 100644 --- a/newsletter/locale/es_VE/fusiondirectory.po +++ b/newsletter/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/newsletter/locale/fa_IR/fusiondirectory.po b/newsletter/locale/fa_IR/fusiondirectory.po index 3a2db9392d..ee05985e8d 100644 --- a/newsletter/locale/fa_IR/fusiondirectory.po +++ b/newsletter/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/newsletter/locale/fi_FI/fusiondirectory.po b/newsletter/locale/fi_FI/fusiondirectory.po index 0bac43ad93..e14d2a8cb9 100644 --- a/newsletter/locale/fi_FI/fusiondirectory.po +++ b/newsletter/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/newsletter/locale/fr/fusiondirectory.po b/newsletter/locale/fr/fusiondirectory.po index 26d2a6c943..ef1884cc97 100644 --- a/newsletter/locale/fr/fusiondirectory.po +++ b/newsletter/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:27+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/newsletter/locale/hu_HU/fusiondirectory.po b/newsletter/locale/hu_HU/fusiondirectory.po index 3aabb6e687..21e1133231 100644 --- a/newsletter/locale/hu_HU/fusiondirectory.po +++ b/newsletter/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/newsletter/locale/id/fusiondirectory.po b/newsletter/locale/id/fusiondirectory.po index d5fde2fa0a..aa9d0f0714 100644 --- a/newsletter/locale/id/fusiondirectory.po +++ b/newsletter/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/newsletter/locale/it_IT/fusiondirectory.po b/newsletter/locale/it_IT/fusiondirectory.po index 31990fbd6e..ca1291516f 100644 --- a/newsletter/locale/it_IT/fusiondirectory.po +++ b/newsletter/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2016 +# Paola Penati <penati@avaya.com>, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:58+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/newsletter/locale/lv/fusiondirectory.po b/newsletter/locale/lv/fusiondirectory.po index 6f81ae0b33..740078427f 100644 --- a/newsletter/locale/lv/fusiondirectory.po +++ b/newsletter/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/newsletter/locale/nb/fusiondirectory.po b/newsletter/locale/nb/fusiondirectory.po index cd34cb3b77..9adce99b74 100644 --- a/newsletter/locale/nb/fusiondirectory.po +++ b/newsletter/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/newsletter/locale/nl/fusiondirectory.po b/newsletter/locale/nl/fusiondirectory.po index fdb92a938f..1dde94b925 100644 --- a/newsletter/locale/nl/fusiondirectory.po +++ b/newsletter/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/newsletter/locale/pl/fusiondirectory.po b/newsletter/locale/pl/fusiondirectory.po index 42536344ee..cbdd2fd339 100644 --- a/newsletter/locale/pl/fusiondirectory.po +++ b/newsletter/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/newsletter/locale/pt/fusiondirectory.po b/newsletter/locale/pt/fusiondirectory.po index 2519ca8b9d..cdbd18d013 100644 --- a/newsletter/locale/pt/fusiondirectory.po +++ b/newsletter/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/newsletter/locale/pt_BR/fusiondirectory.po b/newsletter/locale/pt_BR/fusiondirectory.po index c520ca1f66..8588a467b6 100644 --- a/newsletter/locale/pt_BR/fusiondirectory.po +++ b/newsletter/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/newsletter/locale/ru/fusiondirectory.po b/newsletter/locale/ru/fusiondirectory.po index d086c4b282..43be4d1c1c 100644 --- a/newsletter/locale/ru/fusiondirectory.po +++ b/newsletter/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/newsletter/locale/ru@petr1708/fusiondirectory.po b/newsletter/locale/ru@petr1708/fusiondirectory.po index 6ebdf4f794..bbe481f1e2 100644 --- a/newsletter/locale/ru@petr1708/fusiondirectory.po +++ b/newsletter/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/newsletter/locale/sv/fusiondirectory.po b/newsletter/locale/sv/fusiondirectory.po index 4f5707bf60..929ef387f0 100644 --- a/newsletter/locale/sv/fusiondirectory.po +++ b/newsletter/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/newsletter/locale/ug/fusiondirectory.po b/newsletter/locale/ug/fusiondirectory.po index 17b7a2afb8..a65309f885 100644 --- a/newsletter/locale/ug/fusiondirectory.po +++ b/newsletter/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/newsletter/locale/vi_VN/fusiondirectory.po b/newsletter/locale/vi_VN/fusiondirectory.po index 1df3aeaea8..5a4ebb8975 100644 --- a/newsletter/locale/vi_VN/fusiondirectory.po +++ b/newsletter/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/newsletter/locale/zh/fusiondirectory.po b/newsletter/locale/zh/fusiondirectory.po index 41b58f3c4c..597468638e 100644 --- a/newsletter/locale/zh/fusiondirectory.po +++ b/newsletter/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-07 12:15+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/opsi/locale/ar/fusiondirectory.po b/opsi/locale/ar/fusiondirectory.po index 8188e8d796..4bf56f41c0 100644 --- a/opsi/locale/ar/fusiondirectory.po +++ b/opsi/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/opsi/locale/ca/fusiondirectory.po b/opsi/locale/ca/fusiondirectory.po index 1f9acd5dc4..9fd8a615a9 100644 --- a/opsi/locale/ca/fusiondirectory.po +++ b/opsi/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/opsi/locale/cs_CZ/fusiondirectory.po b/opsi/locale/cs_CZ/fusiondirectory.po index 1eaa526d15..0bc558e77c 100644 --- a/opsi/locale/cs_CZ/fusiondirectory.po +++ b/opsi/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/opsi/locale/de/fusiondirectory.po b/opsi/locale/de/fusiondirectory.po index cd3da7f13d..a8b4d0ee54 100644 --- a/opsi/locale/de/fusiondirectory.po +++ b/opsi/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/opsi/locale/el_GR/fusiondirectory.po b/opsi/locale/el_GR/fusiondirectory.po index 92ae024c97..1efc1197cb 100644 --- a/opsi/locale/el_GR/fusiondirectory.po +++ b/opsi/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/opsi/locale/en/fusiondirectory.po b/opsi/locale/en/fusiondirectory.po index b8286d1ab6..0366fab4c6 100644 --- a/opsi/locale/en/fusiondirectory.po +++ b/opsi/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/opsi/locale/es/fusiondirectory.po b/opsi/locale/es/fusiondirectory.po index 509a39652f..cbff237f14 100644 --- a/opsi/locale/es/fusiondirectory.po +++ b/opsi/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/opsi/locale/es_CO/fusiondirectory.po b/opsi/locale/es_CO/fusiondirectory.po index f4b9f8f5c2..2669c165ec 100644 --- a/opsi/locale/es_CO/fusiondirectory.po +++ b/opsi/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/opsi/locale/es_VE/fusiondirectory.po b/opsi/locale/es_VE/fusiondirectory.po index 8ade9d32f8..cc9404cebc 100644 --- a/opsi/locale/es_VE/fusiondirectory.po +++ b/opsi/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/opsi/locale/fa_IR/fusiondirectory.po b/opsi/locale/fa_IR/fusiondirectory.po index 7cc4c7e1ca..bfa5147647 100644 --- a/opsi/locale/fa_IR/fusiondirectory.po +++ b/opsi/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/opsi/locale/fi_FI/fusiondirectory.po b/opsi/locale/fi_FI/fusiondirectory.po index ef4c2b097b..ae718a4fa5 100644 --- a/opsi/locale/fi_FI/fusiondirectory.po +++ b/opsi/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/opsi/locale/fr/fusiondirectory.po b/opsi/locale/fr/fusiondirectory.po index 70595a6aad..28bd5795bc 100644 --- a/opsi/locale/fr/fusiondirectory.po +++ b/opsi/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/opsi/locale/hu_HU/fusiondirectory.po b/opsi/locale/hu_HU/fusiondirectory.po index bd9a4a35c7..df99829021 100644 --- a/opsi/locale/hu_HU/fusiondirectory.po +++ b/opsi/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/opsi/locale/id/fusiondirectory.po b/opsi/locale/id/fusiondirectory.po index 2f14996467..e4e6fa8e42 100644 --- a/opsi/locale/id/fusiondirectory.po +++ b/opsi/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/opsi/locale/it_IT/fusiondirectory.po b/opsi/locale/it_IT/fusiondirectory.po index c974e06f29..c8d678191d 100644 --- a/opsi/locale/it_IT/fusiondirectory.po +++ b/opsi/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/opsi/locale/lv/fusiondirectory.po b/opsi/locale/lv/fusiondirectory.po index 474037787d..77641430c3 100644 --- a/opsi/locale/lv/fusiondirectory.po +++ b/opsi/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/opsi/locale/nb/fusiondirectory.po b/opsi/locale/nb/fusiondirectory.po index cde443dfa4..48a6d90db0 100644 --- a/opsi/locale/nb/fusiondirectory.po +++ b/opsi/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/opsi/locale/nl/fusiondirectory.po b/opsi/locale/nl/fusiondirectory.po index 3bc2f8801d..eb01a0e5c1 100644 --- a/opsi/locale/nl/fusiondirectory.po +++ b/opsi/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/opsi/locale/pl/fusiondirectory.po b/opsi/locale/pl/fusiondirectory.po index b5066e03c8..341226a0e2 100644 --- a/opsi/locale/pl/fusiondirectory.po +++ b/opsi/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/opsi/locale/pt/fusiondirectory.po b/opsi/locale/pt/fusiondirectory.po index 758f7b34a7..90fe39e015 100644 --- a/opsi/locale/pt/fusiondirectory.po +++ b/opsi/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/opsi/locale/pt_BR/fusiondirectory.po b/opsi/locale/pt_BR/fusiondirectory.po index 3dbe7b8dfd..3cf322cea3 100644 --- a/opsi/locale/pt_BR/fusiondirectory.po +++ b/opsi/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po index 80a918eb07..bf4ff9caf0 100644 --- a/opsi/locale/ru/fusiondirectory.po +++ b/opsi/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/opsi/locale/ru@petr1708/fusiondirectory.po b/opsi/locale/ru@petr1708/fusiondirectory.po index 3e3d5bbf88..4baf03c61e 100644 --- a/opsi/locale/ru@petr1708/fusiondirectory.po +++ b/opsi/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/opsi/locale/sv/fusiondirectory.po b/opsi/locale/sv/fusiondirectory.po index bec18c2f60..5d9ce45ff9 100644 --- a/opsi/locale/sv/fusiondirectory.po +++ b/opsi/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/opsi/locale/ug/fusiondirectory.po b/opsi/locale/ug/fusiondirectory.po index 75ba72a9b8..92046132e5 100644 --- a/opsi/locale/ug/fusiondirectory.po +++ b/opsi/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:53+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/opsi/locale/vi_VN/fusiondirectory.po b/opsi/locale/vi_VN/fusiondirectory.po index 7d9a24fb71..784ea4e13f 100644 --- a/opsi/locale/vi_VN/fusiondirectory.po +++ b/opsi/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/opsi/locale/zh/fusiondirectory.po b/opsi/locale/zh/fusiondirectory.po index 1b26ac12d5..b9aaa8ba62 100644 --- a/opsi/locale/zh/fusiondirectory.po +++ b/opsi/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/personal/locale/ar/fusiondirectory.po b/personal/locale/ar/fusiondirectory.po index 3fb86a3eea..5ba5d28e95 100644 --- a/personal/locale/ar/fusiondirectory.po +++ b/personal/locale/ar/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/ca/fusiondirectory.po b/personal/locale/ca/fusiondirectory.po index 671d45e939..83241e5940 100644 --- a/personal/locale/ca/fusiondirectory.po +++ b/personal/locale/ca/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/cs_CZ/fusiondirectory.po b/personal/locale/cs_CZ/fusiondirectory.po index 10138531d4..7af058ff5e 100644 --- a/personal/locale/cs_CZ/fusiondirectory.po +++ b/personal/locale/cs_CZ/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -143,6 +143,10 @@ msgstr "Diaspora*" msgid "Diaspora accounts must look like user@pod" msgstr "Diaspora úÄet má podobu uživatel@server" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "Osobnà nastavenÃ" diff --git a/personal/locale/de/fusiondirectory.po b/personal/locale/de/fusiondirectory.po index c1daed32d6..8d0af4cd47 100644 --- a/personal/locale/de/fusiondirectory.po +++ b/personal/locale/de/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" "MIME-Version: 1.0\n" @@ -143,6 +143,10 @@ msgstr "Diaspora*" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "Persönliche Konfiguration" diff --git a/personal/locale/el_GR/fusiondirectory.po b/personal/locale/el_GR/fusiondirectory.po index 00cd39bec2..ca14d9549e 100644 --- a/personal/locale/el_GR/fusiondirectory.po +++ b/personal/locale/el_GR/fusiondirectory.po @@ -4,12 +4,13 @@ # # Translators: # pkst <pkst@eellak.gr>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" "MIME-Version: 1.0\n" @@ -143,6 +144,10 @@ msgstr "Diaspora*" msgid "Diaspora accounts must look like user@pod" msgstr "Οι λογαÏιασμοί Diaspora Ï€ÏÎπει να μοιάζουν σαν user@pod" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "Î ÏοσωπικÎÏ‚ Ïυθμίσεις" diff --git a/personal/locale/en/fusiondirectory.po b/personal/locale/en/fusiondirectory.po index a60d27302b..6a208b2804 100644 --- a/personal/locale/en/fusiondirectory.po +++ b/personal/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -144,6 +144,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/es/fusiondirectory.po b/personal/locale/es/fusiondirectory.po index 9ceb22a8c6..79473179ae 100644 --- a/personal/locale/es/fusiondirectory.po +++ b/personal/locale/es/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/es_CO/fusiondirectory.po b/personal/locale/es_CO/fusiondirectory.po index eed9bd0483..6d562d076f 100644 --- a/personal/locale/es_CO/fusiondirectory.po +++ b/personal/locale/es_CO/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/es_VE/fusiondirectory.po b/personal/locale/es_VE/fusiondirectory.po index 35517b5221..d2c8c40bd8 100644 --- a/personal/locale/es_VE/fusiondirectory.po +++ b/personal/locale/es_VE/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/fa_IR/fusiondirectory.po b/personal/locale/fa_IR/fusiondirectory.po index 574dc9bdcd..48ca0cf4e5 100644 --- a/personal/locale/fa_IR/fusiondirectory.po +++ b/personal/locale/fa_IR/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/fi_FI/fusiondirectory.po b/personal/locale/fi_FI/fusiondirectory.po index fa9aeb8853..c73f42af7e 100644 --- a/personal/locale/fi_FI/fusiondirectory.po +++ b/personal/locale/fi_FI/fusiondirectory.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 15:54+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" +"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/fr/fusiondirectory.po b/personal/locale/fr/fusiondirectory.po index e6ca3ab0ff..e39d8dc7f6 100644 --- a/personal/locale/fr/fusiondirectory.po +++ b/personal/locale/fr/fusiondirectory.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:28+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:21+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" "MIME-Version: 1.0\n" @@ -144,6 +144,10 @@ msgstr "Diaspora*" msgid "Diaspora accounts must look like user@pod" msgstr "Les comptes Diaspora doivent être sous la forme user@pod" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "LinkedIn" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "Configuration du plugin personal" diff --git a/personal/locale/hu_HU/fusiondirectory.po b/personal/locale/hu_HU/fusiondirectory.po index 932e3d09ce..4d023d5cce 100644 --- a/personal/locale/hu_HU/fusiondirectory.po +++ b/personal/locale/hu_HU/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/id/fusiondirectory.po b/personal/locale/id/fusiondirectory.po index 659b3b87c1..8882e6ae1a 100644 --- a/personal/locale/id/fusiondirectory.po +++ b/personal/locale/id/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/it_IT/fusiondirectory.po b/personal/locale/it_IT/fusiondirectory.po index 148190e9e2..78e497098d 100644 --- a/personal/locale/it_IT/fusiondirectory.po +++ b/personal/locale/it_IT/fusiondirectory.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Benoit Mortier <benoit.mortier@opensides.be>, 2016 # Ilaria Montaruli <Ilaria.Montaruli@gmail.com>, 2015 # Maurizio Varriale <mavarriale@gmail.com>, 2015 # Paola Penati <penati@avaya.com>, 2015-2016 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-02 16:58+0000\n" -"Last-Translator: Paola Penati <penati@avaya.com>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:22+0000\n" +"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,6 +146,10 @@ msgstr "Diaspora*" msgid "Diaspora accounts must look like user@pod" msgstr "L'account di Diaspora deve essere impostato come user@pod" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "LinkedIn" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "Configurazione personale" diff --git a/personal/locale/lv/fusiondirectory.po b/personal/locale/lv/fusiondirectory.po index 3342b54cf9..6c731e5e93 100644 --- a/personal/locale/lv/fusiondirectory.po +++ b/personal/locale/lv/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/nb/fusiondirectory.po b/personal/locale/nb/fusiondirectory.po index 8d58ac4a84..21dc48b025 100644 --- a/personal/locale/nb/fusiondirectory.po +++ b/personal/locale/nb/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/nl/fusiondirectory.po b/personal/locale/nl/fusiondirectory.po index cd9c40cd98..bf860800e4 100644 --- a/personal/locale/nl/fusiondirectory.po +++ b/personal/locale/nl/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/pl/fusiondirectory.po b/personal/locale/pl/fusiondirectory.po index b2c7325866..7bb172b601 100644 --- a/personal/locale/pl/fusiondirectory.po +++ b/personal/locale/pl/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/pt/fusiondirectory.po b/personal/locale/pt/fusiondirectory.po index d39dd76169..64ac73fb68 100644 --- a/personal/locale/pt/fusiondirectory.po +++ b/personal/locale/pt/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/pt_BR/fusiondirectory.po b/personal/locale/pt_BR/fusiondirectory.po index edd76e4fc6..bc750ed9a8 100644 --- a/personal/locale/pt_BR/fusiondirectory.po +++ b/personal/locale/pt_BR/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/ru/fusiondirectory.po b/personal/locale/ru/fusiondirectory.po index 075158ffb3..c1f51773db 100644 --- a/personal/locale/ru/fusiondirectory.po +++ b/personal/locale/ru/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-04-18 13:23+0000\n" -"Last-Translator: Alexey Matveev\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" +"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,11 +66,11 @@ msgstr "Прозвище Ñтого пользователÑ" #: personal/personal/class_personalInfo.inc:114 msgid "Badge Number" -msgstr "" +msgstr "Ðомер пропуÑка" #: personal/personal/class_personalInfo.inc:114 msgid "Company badge number" -msgstr "" +msgstr "Ðомер пропуÑка в компании" #: personal/personal/class_personalInfo.inc:118 msgid "Date of birth" @@ -81,7 +82,7 @@ msgstr "Пол" #: personal/personal/class_personalInfo.inc:123 msgid "Gender" -msgstr "" +msgstr "Пол" #: personal/personal/class_personalInfo.inc:128 msgid "Country" @@ -143,13 +144,17 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" -msgstr "" +msgstr "Личные наÑтройки" #: config/personal/class_personalConfig.inc:29 msgid "FusionDirectory personal plugin configuration" -msgstr "" +msgstr "Личные наÑтройки плагинов FusionDirectory" #: config/personal/class_personalConfig.inc:45 msgid "Allow use of private email for password recovery" diff --git a/personal/locale/ru@petr1708/fusiondirectory.po b/personal/locale/ru@petr1708/fusiondirectory.po index 1e502f5acb..6f0ccd6388 100644 --- a/personal/locale/ru@petr1708/fusiondirectory.po +++ b/personal/locale/ru@petr1708/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/sv/fusiondirectory.po b/personal/locale/sv/fusiondirectory.po index 963f45073c..baa89d8e94 100644 --- a/personal/locale/sv/fusiondirectory.po +++ b/personal/locale/sv/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/ug/fusiondirectory.po b/personal/locale/ug/fusiondirectory.po index c77db20e21..d7ef7f34b9 100644 --- a/personal/locale/ug/fusiondirectory.po +++ b/personal/locale/ug/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/vi_VN/fusiondirectory.po b/personal/locale/vi_VN/fusiondirectory.po index 8affaa63ea..fea12aab5a 100644 --- a/personal/locale/vi_VN/fusiondirectory.po +++ b/personal/locale/vi_VN/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/personal/locale/zh/fusiondirectory.po b/personal/locale/zh/fusiondirectory.po index 17e5c2d9f1..fa522ad951 100644 --- a/personal/locale/zh/fusiondirectory.po +++ b/personal/locale/zh/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-01 17:15+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-11 19:12+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" "MIME-Version: 1.0\n" @@ -142,6 +142,10 @@ msgstr "" msgid "Diaspora accounts must look like user@pod" msgstr "" +#: personal/personal/class_socialHandlers.inc:141 +msgid "LinkedIn" +msgstr "" + #: config/personal/class_personalConfig.inc:28 msgid "Personal configuration" msgstr "" diff --git a/postfix/locale/ar/fusiondirectory.po b/postfix/locale/ar/fusiondirectory.po index 6be2330576..df8d82e351 100644 --- a/postfix/locale/ar/fusiondirectory.po +++ b/postfix/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/postfix/locale/ca/fusiondirectory.po b/postfix/locale/ca/fusiondirectory.po index 219ec69d3c..d937450b57 100644 --- a/postfix/locale/ca/fusiondirectory.po +++ b/postfix/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/postfix/locale/cs_CZ/fusiondirectory.po b/postfix/locale/cs_CZ/fusiondirectory.po index 38890c5498..f04fbbc523 100644 --- a/postfix/locale/cs_CZ/fusiondirectory.po +++ b/postfix/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/postfix/locale/de/fusiondirectory.po b/postfix/locale/de/fusiondirectory.po index 56fa87eefe..24a5d32248 100644 --- a/postfix/locale/de/fusiondirectory.po +++ b/postfix/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/postfix/locale/el_GR/fusiondirectory.po b/postfix/locale/el_GR/fusiondirectory.po index 0d44eab110..4be4663b12 100644 --- a/postfix/locale/el_GR/fusiondirectory.po +++ b/postfix/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/postfix/locale/en/fusiondirectory.po b/postfix/locale/en/fusiondirectory.po index 2fac97219f..2741d717ce 100644 --- a/postfix/locale/en/fusiondirectory.po +++ b/postfix/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/postfix/locale/es/fusiondirectory.po b/postfix/locale/es/fusiondirectory.po index 081e4b95b0..271b96f5b8 100644 --- a/postfix/locale/es/fusiondirectory.po +++ b/postfix/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/postfix/locale/es_CO/fusiondirectory.po b/postfix/locale/es_CO/fusiondirectory.po index aad26056ff..9781b3e5ab 100644 --- a/postfix/locale/es_CO/fusiondirectory.po +++ b/postfix/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/postfix/locale/es_VE/fusiondirectory.po b/postfix/locale/es_VE/fusiondirectory.po index 2b1dae4a72..6a1962418e 100644 --- a/postfix/locale/es_VE/fusiondirectory.po +++ b/postfix/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/postfix/locale/fa_IR/fusiondirectory.po b/postfix/locale/fa_IR/fusiondirectory.po index be6eccb63f..db21b95bc9 100644 --- a/postfix/locale/fa_IR/fusiondirectory.po +++ b/postfix/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/postfix/locale/fi_FI/fusiondirectory.po b/postfix/locale/fi_FI/fusiondirectory.po index 397b2a0d40..8ea661aaff 100644 --- a/postfix/locale/fi_FI/fusiondirectory.po +++ b/postfix/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/postfix/locale/fr/fusiondirectory.po b/postfix/locale/fr/fusiondirectory.po index 99812cb81b..c7e9bc354f 100644 --- a/postfix/locale/fr/fusiondirectory.po +++ b/postfix/locale/fr/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/postfix/locale/hu_HU/fusiondirectory.po b/postfix/locale/hu_HU/fusiondirectory.po index f5b4b0c1e7..cc2f2761e7 100644 --- a/postfix/locale/hu_HU/fusiondirectory.po +++ b/postfix/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/postfix/locale/id/fusiondirectory.po b/postfix/locale/id/fusiondirectory.po index c210c97e07..a9ad03da83 100644 --- a/postfix/locale/id/fusiondirectory.po +++ b/postfix/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/postfix/locale/it_IT/fusiondirectory.po b/postfix/locale/it_IT/fusiondirectory.po index e05c02de53..886ef42f71 100644 --- a/postfix/locale/it_IT/fusiondirectory.po +++ b/postfix/locale/it_IT/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/postfix/locale/lv/fusiondirectory.po b/postfix/locale/lv/fusiondirectory.po index f67fb74e1d..3fffda8586 100644 --- a/postfix/locale/lv/fusiondirectory.po +++ b/postfix/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/postfix/locale/nb/fusiondirectory.po b/postfix/locale/nb/fusiondirectory.po index 682433f1d5..74fb8c5b92 100644 --- a/postfix/locale/nb/fusiondirectory.po +++ b/postfix/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/postfix/locale/nl/fusiondirectory.po b/postfix/locale/nl/fusiondirectory.po index 1c6a38537a..95bb2c4507 100644 --- a/postfix/locale/nl/fusiondirectory.po +++ b/postfix/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/postfix/locale/pl/fusiondirectory.po b/postfix/locale/pl/fusiondirectory.po index 294df0241e..3d2490bde1 100644 --- a/postfix/locale/pl/fusiondirectory.po +++ b/postfix/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/postfix/locale/pt/fusiondirectory.po b/postfix/locale/pt/fusiondirectory.po index 5054d155b4..212ba6b572 100644 --- a/postfix/locale/pt/fusiondirectory.po +++ b/postfix/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/postfix/locale/pt_BR/fusiondirectory.po b/postfix/locale/pt_BR/fusiondirectory.po index 210f7f4df0..8262b1d4ae 100644 --- a/postfix/locale/pt_BR/fusiondirectory.po +++ b/postfix/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/postfix/locale/ru/fusiondirectory.po b/postfix/locale/ru/fusiondirectory.po index 9d534b1485..b51be1d64a 100644 --- a/postfix/locale/ru/fusiondirectory.po +++ b/postfix/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/postfix/locale/ru@petr1708/fusiondirectory.po b/postfix/locale/ru@petr1708/fusiondirectory.po index ba98b08e6b..6123c7c6dd 100644 --- a/postfix/locale/ru@petr1708/fusiondirectory.po +++ b/postfix/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/postfix/locale/sv/fusiondirectory.po b/postfix/locale/sv/fusiondirectory.po index 12cbd6b86c..d80b4fa62b 100644 --- a/postfix/locale/sv/fusiondirectory.po +++ b/postfix/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/postfix/locale/ug/fusiondirectory.po b/postfix/locale/ug/fusiondirectory.po index 5716514387..07605fa582 100644 --- a/postfix/locale/ug/fusiondirectory.po +++ b/postfix/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/postfix/locale/vi_VN/fusiondirectory.po b/postfix/locale/vi_VN/fusiondirectory.po index 8af411a5e9..e8cce8d365 100644 --- a/postfix/locale/vi_VN/fusiondirectory.po +++ b/postfix/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/postfix/locale/zh/fusiondirectory.po b/postfix/locale/zh/fusiondirectory.po index b7f40e57ac..ba9c4c103a 100644 --- a/postfix/locale/zh/fusiondirectory.po +++ b/postfix/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:07+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ppolicy/locale/ar/fusiondirectory.po b/ppolicy/locale/ar/fusiondirectory.po index 929cfb57bd..90fdffbf54 100644 --- a/ppolicy/locale/ar/fusiondirectory.po +++ b/ppolicy/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ppolicy/locale/ca/fusiondirectory.po b/ppolicy/locale/ca/fusiondirectory.po index 694de97b02..17c80336b7 100644 --- a/ppolicy/locale/ca/fusiondirectory.po +++ b/ppolicy/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ppolicy/locale/cs_CZ/fusiondirectory.po b/ppolicy/locale/cs_CZ/fusiondirectory.po index 213d11ea85..dda9ba8844 100644 --- a/ppolicy/locale/cs_CZ/fusiondirectory.po +++ b/ppolicy/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ppolicy/locale/de/fusiondirectory.po b/ppolicy/locale/de/fusiondirectory.po index 09227d97b1..aaa59b9436 100644 --- a/ppolicy/locale/de/fusiondirectory.po +++ b/ppolicy/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ppolicy/locale/el_GR/fusiondirectory.po b/ppolicy/locale/el_GR/fusiondirectory.po index 50a0f2bb8c..c6c1ce1078 100644 --- a/ppolicy/locale/el_GR/fusiondirectory.po +++ b/ppolicy/locale/el_GR/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # pkst <pkst@eellak.gr>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ppolicy/locale/en/fusiondirectory.po b/ppolicy/locale/en/fusiondirectory.po index 33e36dc6b6..1f7aa5933a 100644 --- a/ppolicy/locale/en/fusiondirectory.po +++ b/ppolicy/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ppolicy/locale/es/fusiondirectory.po b/ppolicy/locale/es/fusiondirectory.po index 03a9c675f7..1479b88c32 100644 --- a/ppolicy/locale/es/fusiondirectory.po +++ b/ppolicy/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ppolicy/locale/es_CO/fusiondirectory.po b/ppolicy/locale/es_CO/fusiondirectory.po index 5c8a4532e2..05e6836635 100644 --- a/ppolicy/locale/es_CO/fusiondirectory.po +++ b/ppolicy/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ppolicy/locale/es_VE/fusiondirectory.po b/ppolicy/locale/es_VE/fusiondirectory.po index 097aa90314..671a7dff78 100644 --- a/ppolicy/locale/es_VE/fusiondirectory.po +++ b/ppolicy/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ppolicy/locale/fa_IR/fusiondirectory.po b/ppolicy/locale/fa_IR/fusiondirectory.po index 502bcdb86d..ec23b219c8 100644 --- a/ppolicy/locale/fa_IR/fusiondirectory.po +++ b/ppolicy/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ppolicy/locale/fi_FI/fusiondirectory.po b/ppolicy/locale/fi_FI/fusiondirectory.po index 28ebb63d62..6bc4e0d7ab 100644 --- a/ppolicy/locale/fi_FI/fusiondirectory.po +++ b/ppolicy/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ppolicy/locale/fr/fusiondirectory.po b/ppolicy/locale/fr/fusiondirectory.po index 2102e2e815..368e930549 100644 --- a/ppolicy/locale/fr/fusiondirectory.po +++ b/ppolicy/locale/fr/fusiondirectory.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-08-02 06:57+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-02 07:07+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" "MIME-Version: 1.0\n" @@ -162,7 +162,7 @@ msgid "" "Name of a user supplied password quality check module that will be called to" " perform password quality checks and is only relevant if pwdCheckQuality is " "either 1 or 2" -msgstr "Nom du module de controle de qualité du mot de passe qui sera appelé à effectuer des contrôles de qualité n'est pertinent que si pwdCheckQuality est 1 ou 2" +msgstr "Nom du module de contrôle de qualité du mot de passe qui sera appelé à effectuer des contrôles de qualité n'est pertinent que si pwdCheckQuality est 1 ou 2" #: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" diff --git a/ppolicy/locale/hu_HU/fusiondirectory.po b/ppolicy/locale/hu_HU/fusiondirectory.po index 69459cfec2..bce8df0d18 100644 --- a/ppolicy/locale/hu_HU/fusiondirectory.po +++ b/ppolicy/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ppolicy/locale/id/fusiondirectory.po b/ppolicy/locale/id/fusiondirectory.po index f1d0fb281d..d2d33ad2ff 100644 --- a/ppolicy/locale/id/fusiondirectory.po +++ b/ppolicy/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ppolicy/locale/it_IT/fusiondirectory.po b/ppolicy/locale/it_IT/fusiondirectory.po index 5bc912a634..56b50d3e7d 100644 --- a/ppolicy/locale/it_IT/fusiondirectory.po +++ b/ppolicy/locale/it_IT/fusiondirectory.po @@ -4,15 +4,15 @@ # # Translators: # Ilaria Montaruli <Ilaria.Montaruli@gmail.com>, 2015 -# Paola Penati <penati@avaya.com>, 2016 +# Paola Penati <penati@avaya.com>, 2015-2016 # Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-08-02 06:53+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:17+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,11 +135,11 @@ msgstr "Se un utente deve inviare la password attuale durante l'operazione di mo #: admin/ppolicy/class_ppolicy.inc:104 msgid "Check quality" -msgstr "" +msgstr "Vérification la qualita'" #: admin/ppolicy/class_ppolicy.inc:104 msgid "Decides what to do if the function in \"Check module\" is not available" -msgstr "" +msgstr "Decide cosa fare se la funzione \"Controlla modulo\" non è disponibile" #: admin/ppolicy/class_ppolicy.inc:107 msgid "Disabled" @@ -151,18 +151,18 @@ msgstr "Ignorare gli errori" #: admin/ppolicy/class_ppolicy.inc:107 msgid "Reject on errors" -msgstr "" +msgstr "Rifiuta in caso di errori" #: admin/ppolicy/class_ppolicy.inc:110 msgid "Check module" -msgstr "" +msgstr "Verifica modulo " #: admin/ppolicy/class_ppolicy.inc:110 msgid "" "Name of a user supplied password quality check module that will be called to" " perform password quality checks and is only relevant if pwdCheckQuality is " "either 1 or 2" -msgstr "" +msgstr "Nome di un modulo di controllo di qualità password utente fornito che verrà chiamato a svolgere controlli di qualità delle password ed è rilevante solo se pwdCheckQuality è 1 o 2" #: admin/ppolicy/class_ppolicy.inc:116 msgid "Lock out" @@ -336,7 +336,7 @@ msgstr "Ciò che si mette come ppolicy default nella configurazione di sovrappos #: addons/dashboard/ppolicy_locked_accounts.tpl.c:2 msgid "There is one locked account" msgid_plural "There are %1 locked accounts" -msgstr[0] "Ci sono %1 di accounts bloccati" +msgstr[0] "C'é un account bloccato" msgstr[1] "Ci sono %1 di accounts bloccati" #: addons/dashboard/ppolicy_locked_accounts.tpl.c:5 diff --git a/ppolicy/locale/lv/fusiondirectory.po b/ppolicy/locale/lv/fusiondirectory.po index ee334dcdd1..b1066db9e2 100644 --- a/ppolicy/locale/lv/fusiondirectory.po +++ b/ppolicy/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ppolicy/locale/nb/fusiondirectory.po b/ppolicy/locale/nb/fusiondirectory.po index 21909585fc..7392efd48d 100644 --- a/ppolicy/locale/nb/fusiondirectory.po +++ b/ppolicy/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ppolicy/locale/nl/fusiondirectory.po b/ppolicy/locale/nl/fusiondirectory.po index 1fb7234136..02297dabb2 100644 --- a/ppolicy/locale/nl/fusiondirectory.po +++ b/ppolicy/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ppolicy/locale/pl/fusiondirectory.po b/ppolicy/locale/pl/fusiondirectory.po index 01cbd4f950..3e52b18354 100644 --- a/ppolicy/locale/pl/fusiondirectory.po +++ b/ppolicy/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ppolicy/locale/pt/fusiondirectory.po b/ppolicy/locale/pt/fusiondirectory.po index 15ff79640d..72172a5791 100644 --- a/ppolicy/locale/pt/fusiondirectory.po +++ b/ppolicy/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ppolicy/locale/pt_BR/fusiondirectory.po b/ppolicy/locale/pt_BR/fusiondirectory.po index 74d1fe1338..6e8f0f2d08 100644 --- a/ppolicy/locale/pt_BR/fusiondirectory.po +++ b/ppolicy/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ppolicy/locale/ru/fusiondirectory.po b/ppolicy/locale/ru/fusiondirectory.po index 275f6d2274..102f7c8710 100644 --- a/ppolicy/locale/ru/fusiondirectory.po +++ b/ppolicy/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ppolicy/locale/ru@petr1708/fusiondirectory.po b/ppolicy/locale/ru@petr1708/fusiondirectory.po index 69d78215a4..4c8073768d 100644 --- a/ppolicy/locale/ru@petr1708/fusiondirectory.po +++ b/ppolicy/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ppolicy/locale/sv/fusiondirectory.po b/ppolicy/locale/sv/fusiondirectory.po index 0d748962d6..e471ec6282 100644 --- a/ppolicy/locale/sv/fusiondirectory.po +++ b/ppolicy/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ppolicy/locale/ug/fusiondirectory.po b/ppolicy/locale/ug/fusiondirectory.po index 7f716d191a..cd3df0e0e3 100644 --- a/ppolicy/locale/ug/fusiondirectory.po +++ b/ppolicy/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ppolicy/locale/vi_VN/fusiondirectory.po b/ppolicy/locale/vi_VN/fusiondirectory.po index b2bf1e579f..28d01199d1 100644 --- a/ppolicy/locale/vi_VN/fusiondirectory.po +++ b/ppolicy/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ppolicy/locale/zh/fusiondirectory.po b/ppolicy/locale/zh/fusiondirectory.po index d5cafd2f5b..9b70ace1ec 100644 --- a/ppolicy/locale/zh/fusiondirectory.po +++ b/ppolicy/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-08-02 06:53+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/puppet/locale/ar/fusiondirectory.po b/puppet/locale/ar/fusiondirectory.po index af5084fdc5..8b0be9ef59 100644 --- a/puppet/locale/ar/fusiondirectory.po +++ b/puppet/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/puppet/locale/ca/fusiondirectory.po b/puppet/locale/ca/fusiondirectory.po index 76fe00c078..a2e9937d55 100644 --- a/puppet/locale/ca/fusiondirectory.po +++ b/puppet/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/puppet/locale/cs_CZ/fusiondirectory.po b/puppet/locale/cs_CZ/fusiondirectory.po index fde9661d22..b61ecfaf2c 100644 --- a/puppet/locale/cs_CZ/fusiondirectory.po +++ b/puppet/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/puppet/locale/de/fusiondirectory.po b/puppet/locale/de/fusiondirectory.po index e6dc640f80..c9d6335ee6 100644 --- a/puppet/locale/de/fusiondirectory.po +++ b/puppet/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/puppet/locale/el_GR/fusiondirectory.po b/puppet/locale/el_GR/fusiondirectory.po index 977c0e51db..ece82a0626 100644 --- a/puppet/locale/el_GR/fusiondirectory.po +++ b/puppet/locale/el_GR/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # pkst <pkst@eellak.gr>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/puppet/locale/en/fusiondirectory.po b/puppet/locale/en/fusiondirectory.po index fb021aba83..814834dfe2 100644 --- a/puppet/locale/en/fusiondirectory.po +++ b/puppet/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/puppet/locale/es/fusiondirectory.po b/puppet/locale/es/fusiondirectory.po index 3b21b7f66f..1949cd21d4 100644 --- a/puppet/locale/es/fusiondirectory.po +++ b/puppet/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/puppet/locale/es_CO/fusiondirectory.po b/puppet/locale/es_CO/fusiondirectory.po index 72022228e9..2f55c472d6 100644 --- a/puppet/locale/es_CO/fusiondirectory.po +++ b/puppet/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/puppet/locale/es_VE/fusiondirectory.po b/puppet/locale/es_VE/fusiondirectory.po index 98b2086f51..a976afb1be 100644 --- a/puppet/locale/es_VE/fusiondirectory.po +++ b/puppet/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/puppet/locale/fa_IR/fusiondirectory.po b/puppet/locale/fa_IR/fusiondirectory.po index c6da30bea6..b6ba021542 100644 --- a/puppet/locale/fa_IR/fusiondirectory.po +++ b/puppet/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/puppet/locale/fi_FI/fusiondirectory.po b/puppet/locale/fi_FI/fusiondirectory.po index b0687fee74..aac22c804f 100644 --- a/puppet/locale/fi_FI/fusiondirectory.po +++ b/puppet/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/puppet/locale/fr/fusiondirectory.po b/puppet/locale/fr/fusiondirectory.po index aab9e0e01b..3574ffd4f9 100644 --- a/puppet/locale/fr/fusiondirectory.po +++ b/puppet/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/puppet/locale/hu_HU/fusiondirectory.po b/puppet/locale/hu_HU/fusiondirectory.po index 9d46492e91..3445401be9 100644 --- a/puppet/locale/hu_HU/fusiondirectory.po +++ b/puppet/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/puppet/locale/id/fusiondirectory.po b/puppet/locale/id/fusiondirectory.po index bcfb3baae5..f5a245105f 100644 --- a/puppet/locale/id/fusiondirectory.po +++ b/puppet/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/puppet/locale/it_IT/fusiondirectory.po b/puppet/locale/it_IT/fusiondirectory.po index 393e0c5511..7390af59ea 100644 --- a/puppet/locale/it_IT/fusiondirectory.po +++ b/puppet/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/puppet/locale/lv/fusiondirectory.po b/puppet/locale/lv/fusiondirectory.po index 4336f6ce1b..790b3755e6 100644 --- a/puppet/locale/lv/fusiondirectory.po +++ b/puppet/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/puppet/locale/nb/fusiondirectory.po b/puppet/locale/nb/fusiondirectory.po index adda811d74..184b929c17 100644 --- a/puppet/locale/nb/fusiondirectory.po +++ b/puppet/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/puppet/locale/nl/fusiondirectory.po b/puppet/locale/nl/fusiondirectory.po index 038f0836ec..547c21b41a 100644 --- a/puppet/locale/nl/fusiondirectory.po +++ b/puppet/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/puppet/locale/pl/fusiondirectory.po b/puppet/locale/pl/fusiondirectory.po index 5a6002ac91..cbc4f36348 100644 --- a/puppet/locale/pl/fusiondirectory.po +++ b/puppet/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/puppet/locale/pt/fusiondirectory.po b/puppet/locale/pt/fusiondirectory.po index ecd33c1abe..8777f7dc87 100644 --- a/puppet/locale/pt/fusiondirectory.po +++ b/puppet/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/puppet/locale/pt_BR/fusiondirectory.po b/puppet/locale/pt_BR/fusiondirectory.po index f4111ed81e..0b009835d8 100644 --- a/puppet/locale/pt_BR/fusiondirectory.po +++ b/puppet/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/puppet/locale/ru/fusiondirectory.po b/puppet/locale/ru/fusiondirectory.po index 94baa5aef1..ceaaf2301c 100644 --- a/puppet/locale/ru/fusiondirectory.po +++ b/puppet/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/puppet/locale/ru@petr1708/fusiondirectory.po b/puppet/locale/ru@petr1708/fusiondirectory.po index afbcd1a7f2..4988b60aaa 100644 --- a/puppet/locale/ru@petr1708/fusiondirectory.po +++ b/puppet/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/puppet/locale/sv/fusiondirectory.po b/puppet/locale/sv/fusiondirectory.po index 16a77fba2b..8152bb2c7e 100644 --- a/puppet/locale/sv/fusiondirectory.po +++ b/puppet/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/puppet/locale/ug/fusiondirectory.po b/puppet/locale/ug/fusiondirectory.po index a352eb365e..94762114be 100644 --- a/puppet/locale/ug/fusiondirectory.po +++ b/puppet/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/puppet/locale/vi_VN/fusiondirectory.po b/puppet/locale/vi_VN/fusiondirectory.po index 4a5e7475cc..6264aa7bc9 100644 --- a/puppet/locale/vi_VN/fusiondirectory.po +++ b/puppet/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/puppet/locale/zh/fusiondirectory.po b/puppet/locale/zh/fusiondirectory.po index cc0a81050d..0fe4d5f253 100644 --- a/puppet/locale/zh/fusiondirectory.po +++ b/puppet/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:55+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/pureftpd/locale/ar/fusiondirectory.po b/pureftpd/locale/ar/fusiondirectory.po index 53b9ecfd6a..04891959a1 100644 --- a/pureftpd/locale/ar/fusiondirectory.po +++ b/pureftpd/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/pureftpd/locale/ca/fusiondirectory.po b/pureftpd/locale/ca/fusiondirectory.po index 4db9662a4a..aaac5ebcd7 100644 --- a/pureftpd/locale/ca/fusiondirectory.po +++ b/pureftpd/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/pureftpd/locale/cs_CZ/fusiondirectory.po b/pureftpd/locale/cs_CZ/fusiondirectory.po index 7754fcae7a..b03ae67062 100644 --- a/pureftpd/locale/cs_CZ/fusiondirectory.po +++ b/pureftpd/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/pureftpd/locale/de/fusiondirectory.po b/pureftpd/locale/de/fusiondirectory.po index a33ad6d9e3..db11a1c057 100644 --- a/pureftpd/locale/de/fusiondirectory.po +++ b/pureftpd/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/pureftpd/locale/el_GR/fusiondirectory.po b/pureftpd/locale/el_GR/fusiondirectory.po index 7d371873f1..2feda6a4e5 100644 --- a/pureftpd/locale/el_GR/fusiondirectory.po +++ b/pureftpd/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/pureftpd/locale/en/fusiondirectory.po b/pureftpd/locale/en/fusiondirectory.po index 210e6997c8..a87a7d8bfc 100644 --- a/pureftpd/locale/en/fusiondirectory.po +++ b/pureftpd/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/pureftpd/locale/es/fusiondirectory.po b/pureftpd/locale/es/fusiondirectory.po index aeaea95f87..557d7b2e3d 100644 --- a/pureftpd/locale/es/fusiondirectory.po +++ b/pureftpd/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/pureftpd/locale/es_CO/fusiondirectory.po b/pureftpd/locale/es_CO/fusiondirectory.po index 93327b0f98..69d58966e8 100644 --- a/pureftpd/locale/es_CO/fusiondirectory.po +++ b/pureftpd/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/pureftpd/locale/es_VE/fusiondirectory.po b/pureftpd/locale/es_VE/fusiondirectory.po index 4011d24db3..2a28fee7c7 100644 --- a/pureftpd/locale/es_VE/fusiondirectory.po +++ b/pureftpd/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/pureftpd/locale/fa_IR/fusiondirectory.po b/pureftpd/locale/fa_IR/fusiondirectory.po index a4e20ab79d..31fc115eba 100644 --- a/pureftpd/locale/fa_IR/fusiondirectory.po +++ b/pureftpd/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/pureftpd/locale/fi_FI/fusiondirectory.po b/pureftpd/locale/fi_FI/fusiondirectory.po index 46691133f7..7591732d06 100644 --- a/pureftpd/locale/fi_FI/fusiondirectory.po +++ b/pureftpd/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/pureftpd/locale/fr/fusiondirectory.po b/pureftpd/locale/fr/fusiondirectory.po index 56561da960..e44ae07ce7 100644 --- a/pureftpd/locale/fr/fusiondirectory.po +++ b/pureftpd/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/pureftpd/locale/hu_HU/fusiondirectory.po b/pureftpd/locale/hu_HU/fusiondirectory.po index bb1b1f1d2a..1912220b03 100644 --- a/pureftpd/locale/hu_HU/fusiondirectory.po +++ b/pureftpd/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/pureftpd/locale/id/fusiondirectory.po b/pureftpd/locale/id/fusiondirectory.po index f57aca1ff9..87b5716042 100644 --- a/pureftpd/locale/id/fusiondirectory.po +++ b/pureftpd/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/pureftpd/locale/it_IT/fusiondirectory.po b/pureftpd/locale/it_IT/fusiondirectory.po index 35963b18c6..ab9de7ed81 100644 --- a/pureftpd/locale/it_IT/fusiondirectory.po +++ b/pureftpd/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/pureftpd/locale/lv/fusiondirectory.po b/pureftpd/locale/lv/fusiondirectory.po index 0d7ac9d781..51e72178a1 100644 --- a/pureftpd/locale/lv/fusiondirectory.po +++ b/pureftpd/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/pureftpd/locale/nb/fusiondirectory.po b/pureftpd/locale/nb/fusiondirectory.po index 1a10d2a342..0ad8f0510b 100644 --- a/pureftpd/locale/nb/fusiondirectory.po +++ b/pureftpd/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/pureftpd/locale/nl/fusiondirectory.po b/pureftpd/locale/nl/fusiondirectory.po index b469b9123e..ee3eb32a43 100644 --- a/pureftpd/locale/nl/fusiondirectory.po +++ b/pureftpd/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/pureftpd/locale/pl/fusiondirectory.po b/pureftpd/locale/pl/fusiondirectory.po index 132a88a371..739db8ee56 100644 --- a/pureftpd/locale/pl/fusiondirectory.po +++ b/pureftpd/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/pureftpd/locale/pt/fusiondirectory.po b/pureftpd/locale/pt/fusiondirectory.po index f1427bf7b0..bfb2b5e61c 100644 --- a/pureftpd/locale/pt/fusiondirectory.po +++ b/pureftpd/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/pureftpd/locale/pt_BR/fusiondirectory.po b/pureftpd/locale/pt_BR/fusiondirectory.po index ab4d18ce94..0f23f2d758 100644 --- a/pureftpd/locale/pt_BR/fusiondirectory.po +++ b/pureftpd/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/pureftpd/locale/ru/fusiondirectory.po b/pureftpd/locale/ru/fusiondirectory.po index dc9320a892..c17eb0037f 100644 --- a/pureftpd/locale/ru/fusiondirectory.po +++ b/pureftpd/locale/ru/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 07:18+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,15 +47,15 @@ msgstr " (кб/Ñек)" #: personal/pureftpd/class_pureftpdAccount.inc:61 msgid "Download bandwidth" -msgstr "ПропуÑÐºÐ½Ð°Ñ ÑпоÑобноÑть (Ñ Ñервера)" +msgstr "ПропуÑÐºÐ½Ð°Ñ ÑпоÑобноÑть (от Ñервера)" #: personal/pureftpd/class_pureftpdAccount.inc:62 msgid "Download bandwidth in kb/sec" -msgstr "" +msgstr "ПропуÑÐºÐ½Ð°Ñ ÑпоÑобноÑть на Ñкачивание в кб/Ñек" #: personal/pureftpd/class_pureftpdAccount.inc:72 msgid "Ratio" -msgstr "Отношение" +msgstr "Соотношение" #: personal/pureftpd/class_pureftpdAccount.inc:75 #: personal/pureftpd/class_pureftpdAccount.inc:76 @@ -91,8 +93,8 @@ msgstr "Разное" #: personal/pureftpd/class_pureftpdAccount.inc:121 msgid "Enable FTP access" -msgstr "" +msgstr "Включить FTP доÑтуп" #: personal/pureftpd/class_pureftpdAccount.inc:121 msgid "Enable or disable FTP access" -msgstr "" +msgstr "Включение или отключение доÑтупа по FTP" diff --git a/pureftpd/locale/ru@petr1708/fusiondirectory.po b/pureftpd/locale/ru@petr1708/fusiondirectory.po index 7683e74a3b..b2e6d7689a 100644 --- a/pureftpd/locale/ru@petr1708/fusiondirectory.po +++ b/pureftpd/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/pureftpd/locale/sv/fusiondirectory.po b/pureftpd/locale/sv/fusiondirectory.po index bb82edd32d..7277191ab4 100644 --- a/pureftpd/locale/sv/fusiondirectory.po +++ b/pureftpd/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/pureftpd/locale/ug/fusiondirectory.po b/pureftpd/locale/ug/fusiondirectory.po index 352e3330af..abae1e50af 100644 --- a/pureftpd/locale/ug/fusiondirectory.po +++ b/pureftpd/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/pureftpd/locale/vi_VN/fusiondirectory.po b/pureftpd/locale/vi_VN/fusiondirectory.po index 6917eca685..2221d92783 100644 --- a/pureftpd/locale/vi_VN/fusiondirectory.po +++ b/pureftpd/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/pureftpd/locale/zh/fusiondirectory.po b/pureftpd/locale/zh/fusiondirectory.po index b4a689d235..9c1ca4cfb2 100644 --- a/pureftpd/locale/zh/fusiondirectory.po +++ b/pureftpd/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/quota/locale/ar/fusiondirectory.po b/quota/locale/ar/fusiondirectory.po index f388c7112e..b0ded2de1b 100644 --- a/quota/locale/ar/fusiondirectory.po +++ b/quota/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/quota/locale/ca/fusiondirectory.po b/quota/locale/ca/fusiondirectory.po index 850121ee5a..bc6c215489 100644 --- a/quota/locale/ca/fusiondirectory.po +++ b/quota/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/quota/locale/cs_CZ/fusiondirectory.po b/quota/locale/cs_CZ/fusiondirectory.po index 9f6aa69f5d..afdb162c3e 100644 --- a/quota/locale/cs_CZ/fusiondirectory.po +++ b/quota/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/quota/locale/de/fusiondirectory.po b/quota/locale/de/fusiondirectory.po index 0504115ab7..ba9d057e0b 100644 --- a/quota/locale/de/fusiondirectory.po +++ b/quota/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/quota/locale/el_GR/fusiondirectory.po b/quota/locale/el_GR/fusiondirectory.po index f3954be6d0..ee32063566 100644 --- a/quota/locale/el_GR/fusiondirectory.po +++ b/quota/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/quota/locale/en/fusiondirectory.po b/quota/locale/en/fusiondirectory.po index 49e936987c..e617e94bae 100644 --- a/quota/locale/en/fusiondirectory.po +++ b/quota/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/quota/locale/es/fusiondirectory.po b/quota/locale/es/fusiondirectory.po index e83955a607..e00f184fdf 100644 --- a/quota/locale/es/fusiondirectory.po +++ b/quota/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/quota/locale/es_CO/fusiondirectory.po b/quota/locale/es_CO/fusiondirectory.po index 5c1e05bf7c..b26866f38c 100644 --- a/quota/locale/es_CO/fusiondirectory.po +++ b/quota/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/quota/locale/es_VE/fusiondirectory.po b/quota/locale/es_VE/fusiondirectory.po index 6593b4e161..6fe9671a26 100644 --- a/quota/locale/es_VE/fusiondirectory.po +++ b/quota/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/quota/locale/fa_IR/fusiondirectory.po b/quota/locale/fa_IR/fusiondirectory.po index d590d7ed3e..e11290f147 100644 --- a/quota/locale/fa_IR/fusiondirectory.po +++ b/quota/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/quota/locale/fi_FI/fusiondirectory.po b/quota/locale/fi_FI/fusiondirectory.po index ca8f51c8fe..f82a6b6831 100644 --- a/quota/locale/fi_FI/fusiondirectory.po +++ b/quota/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -157,7 +157,7 @@ msgstr "" #: admin/systems/services/quota/class_serviceQuota.inc:154 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/systems/services/quota/class_serviceQuota.inc:154 #, php-format diff --git a/quota/locale/fr/fusiondirectory.po b/quota/locale/fr/fusiondirectory.po index dee4c54bfc..851ff7b533 100644 --- a/quota/locale/fr/fusiondirectory.po +++ b/quota/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/quota/locale/hu_HU/fusiondirectory.po b/quota/locale/hu_HU/fusiondirectory.po index 8dac7f0b08..1776403d56 100644 --- a/quota/locale/hu_HU/fusiondirectory.po +++ b/quota/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/quota/locale/id/fusiondirectory.po b/quota/locale/id/fusiondirectory.po index a3d89e4b39..6ee7055c72 100644 --- a/quota/locale/id/fusiondirectory.po +++ b/quota/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/quota/locale/it_IT/fusiondirectory.po b/quota/locale/it_IT/fusiondirectory.po index 6c792b6669..eaf3343c18 100644 --- a/quota/locale/it_IT/fusiondirectory.po +++ b/quota/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:48+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/quota/locale/lv/fusiondirectory.po b/quota/locale/lv/fusiondirectory.po index 069373415c..05dcf94344 100644 --- a/quota/locale/lv/fusiondirectory.po +++ b/quota/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/quota/locale/nb/fusiondirectory.po b/quota/locale/nb/fusiondirectory.po index fcb309f55f..e28f79a0f8 100644 --- a/quota/locale/nb/fusiondirectory.po +++ b/quota/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/quota/locale/nl/fusiondirectory.po b/quota/locale/nl/fusiondirectory.po index af3731cd52..afc880597f 100644 --- a/quota/locale/nl/fusiondirectory.po +++ b/quota/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/quota/locale/pl/fusiondirectory.po b/quota/locale/pl/fusiondirectory.po index 692fb279b8..2d7b22b7b5 100644 --- a/quota/locale/pl/fusiondirectory.po +++ b/quota/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/quota/locale/pt/fusiondirectory.po b/quota/locale/pt/fusiondirectory.po index 5d0cad0934..db16ab9bc8 100644 --- a/quota/locale/pt/fusiondirectory.po +++ b/quota/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/quota/locale/pt_BR/fusiondirectory.po b/quota/locale/pt_BR/fusiondirectory.po index 66f9d09cd6..f933915d16 100644 --- a/quota/locale/pt_BR/fusiondirectory.po +++ b/quota/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/quota/locale/ru/fusiondirectory.po b/quota/locale/ru/fusiondirectory.po index 09433a9dc3..bb91670f9b 100644 --- a/quota/locale/ru/fusiondirectory.po +++ b/quota/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-02-19 11:16+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:21+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,7 +28,7 @@ msgstr "СервиÑÑ‹" #: admin/systems/services/quota/class_serviceQuota.inc:43 msgid "Shares" -msgstr "" +msgstr "Шары" #: admin/systems/services/quota/class_serviceQuota.inc:47 msgid "Quotas for the shares this server hosts" diff --git a/quota/locale/ru@petr1708/fusiondirectory.po b/quota/locale/ru@petr1708/fusiondirectory.po index 6c0950d7c4..899e0187a1 100644 --- a/quota/locale/ru@petr1708/fusiondirectory.po +++ b/quota/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/quota/locale/sv/fusiondirectory.po b/quota/locale/sv/fusiondirectory.po index 9ddef8e0e2..c4d74d62ab 100644 --- a/quota/locale/sv/fusiondirectory.po +++ b/quota/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/quota/locale/ug/fusiondirectory.po b/quota/locale/ug/fusiondirectory.po index a3d0476291..c90ded4e8f 100644 --- a/quota/locale/ug/fusiondirectory.po +++ b/quota/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:56+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/quota/locale/vi_VN/fusiondirectory.po b/quota/locale/vi_VN/fusiondirectory.po index d9c6907e0b..57ca203085 100644 --- a/quota/locale/vi_VN/fusiondirectory.po +++ b/quota/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/quota/locale/zh/fusiondirectory.po b/quota/locale/zh/fusiondirectory.po index a17f7cda5c..e53b3ec7cc 100644 --- a/quota/locale/zh/fusiondirectory.po +++ b/quota/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/repository/locale/ar/fusiondirectory.po b/repository/locale/ar/fusiondirectory.po index 702301812d..5a282bb26f 100644 --- a/repository/locale/ar/fusiondirectory.po +++ b/repository/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/repository/locale/ca/fusiondirectory.po b/repository/locale/ca/fusiondirectory.po index 3e0ab79a4c..c7decf8362 100644 --- a/repository/locale/ca/fusiondirectory.po +++ b/repository/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/repository/locale/cs_CZ/fusiondirectory.po b/repository/locale/cs_CZ/fusiondirectory.po index f6285f7f0c..959204a1f3 100644 --- a/repository/locale/cs_CZ/fusiondirectory.po +++ b/repository/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/repository/locale/de/fusiondirectory.po b/repository/locale/de/fusiondirectory.po index 1d75d7ed25..c90bf45493 100644 --- a/repository/locale/de/fusiondirectory.po +++ b/repository/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/repository/locale/el_GR/fusiondirectory.po b/repository/locale/el_GR/fusiondirectory.po index 1bf3044dd2..f570469ccb 100644 --- a/repository/locale/el_GR/fusiondirectory.po +++ b/repository/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/repository/locale/en/fusiondirectory.po b/repository/locale/en/fusiondirectory.po index f9c89ac5c3..911ca5de79 100644 --- a/repository/locale/en/fusiondirectory.po +++ b/repository/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/repository/locale/es/fusiondirectory.po b/repository/locale/es/fusiondirectory.po index 3391946afd..08be7042cd 100644 --- a/repository/locale/es/fusiondirectory.po +++ b/repository/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/repository/locale/es_CO/fusiondirectory.po b/repository/locale/es_CO/fusiondirectory.po index a093d49f3e..0dd8c981fd 100644 --- a/repository/locale/es_CO/fusiondirectory.po +++ b/repository/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/repository/locale/es_VE/fusiondirectory.po b/repository/locale/es_VE/fusiondirectory.po index 18257b7ceb..9cc7a5a080 100644 --- a/repository/locale/es_VE/fusiondirectory.po +++ b/repository/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/repository/locale/fa_IR/fusiondirectory.po b/repository/locale/fa_IR/fusiondirectory.po index 138097a2df..5519688349 100644 --- a/repository/locale/fa_IR/fusiondirectory.po +++ b/repository/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:59+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/repository/locale/fi_FI/fusiondirectory.po b/repository/locale/fi_FI/fusiondirectory.po index 812f15f025..cb97becdf9 100644 --- a/repository/locale/fi_FI/fusiondirectory.po +++ b/repository/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/repository/locale/fr/fusiondirectory.po b/repository/locale/fr/fusiondirectory.po index e748c68a20..7295263110 100644 --- a/repository/locale/fr/fusiondirectory.po +++ b/repository/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/repository/locale/hu_HU/fusiondirectory.po b/repository/locale/hu_HU/fusiondirectory.po index c4c397a3a3..7cc3ad3122 100644 --- a/repository/locale/hu_HU/fusiondirectory.po +++ b/repository/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/repository/locale/id/fusiondirectory.po b/repository/locale/id/fusiondirectory.po index cf5451af07..d507d6ee95 100644 --- a/repository/locale/id/fusiondirectory.po +++ b/repository/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/repository/locale/it_IT/fusiondirectory.po b/repository/locale/it_IT/fusiondirectory.po index 1b29cedbed..738ff93ac9 100644 --- a/repository/locale/it_IT/fusiondirectory.po +++ b/repository/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:48+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/repository/locale/lv/fusiondirectory.po b/repository/locale/lv/fusiondirectory.po index 0e9234055a..7e68b92b10 100644 --- a/repository/locale/lv/fusiondirectory.po +++ b/repository/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/repository/locale/nb/fusiondirectory.po b/repository/locale/nb/fusiondirectory.po index de11c3d037..166a5a1033 100644 --- a/repository/locale/nb/fusiondirectory.po +++ b/repository/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/repository/locale/nl/fusiondirectory.po b/repository/locale/nl/fusiondirectory.po index 8418011020..c1f1797665 100644 --- a/repository/locale/nl/fusiondirectory.po +++ b/repository/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/repository/locale/pl/fusiondirectory.po b/repository/locale/pl/fusiondirectory.po index 32e9c1c31c..44cb8d0ecf 100644 --- a/repository/locale/pl/fusiondirectory.po +++ b/repository/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/repository/locale/pt/fusiondirectory.po b/repository/locale/pt/fusiondirectory.po index 331448463a..bf5efdd7eb 100644 --- a/repository/locale/pt/fusiondirectory.po +++ b/repository/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/repository/locale/pt_BR/fusiondirectory.po b/repository/locale/pt_BR/fusiondirectory.po index 4bb67c890e..2d1671a012 100644 --- a/repository/locale/pt_BR/fusiondirectory.po +++ b/repository/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/repository/locale/ru/fusiondirectory.po b/repository/locale/ru/fusiondirectory.po index f6987ba256..a167a10c9e 100644 --- a/repository/locale/ru/fusiondirectory.po +++ b/repository/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/repository/locale/ru@petr1708/fusiondirectory.po b/repository/locale/ru@petr1708/fusiondirectory.po index cc42b5f0b4..6bfc46c5e9 100644 --- a/repository/locale/ru@petr1708/fusiondirectory.po +++ b/repository/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/repository/locale/sv/fusiondirectory.po b/repository/locale/sv/fusiondirectory.po index a8ce914500..928347fdb7 100644 --- a/repository/locale/sv/fusiondirectory.po +++ b/repository/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/repository/locale/ug/fusiondirectory.po b/repository/locale/ug/fusiondirectory.po index 1f1e9e4404..11eb2776fb 100644 --- a/repository/locale/ug/fusiondirectory.po +++ b/repository/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:58+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/repository/locale/vi_VN/fusiondirectory.po b/repository/locale/vi_VN/fusiondirectory.po index c6eb59de50..accd4898c4 100644 --- a/repository/locale/vi_VN/fusiondirectory.po +++ b/repository/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/repository/locale/zh/fusiondirectory.po b/repository/locale/zh/fusiondirectory.po index 721866b1f8..20207f8cb4 100644 --- a/repository/locale/zh/fusiondirectory.po +++ b/repository/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/samba/locale/ar/fusiondirectory.po b/samba/locale/ar/fusiondirectory.po index cd814986fb..32200ebcae 100644 --- a/samba/locale/ar/fusiondirectory.po +++ b/samba/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/samba/locale/ca/fusiondirectory.po b/samba/locale/ca/fusiondirectory.po index 7bf65cf5af..f113e5e728 100644 --- a/samba/locale/ca/fusiondirectory.po +++ b/samba/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/samba/locale/cs_CZ/fusiondirectory.po b/samba/locale/cs_CZ/fusiondirectory.po index 6fcf919086..c25f785bfa 100644 --- a/samba/locale/cs_CZ/fusiondirectory.po +++ b/samba/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/samba/locale/de/fusiondirectory.po b/samba/locale/de/fusiondirectory.po index 312da58206..1524d8fc53 100644 --- a/samba/locale/de/fusiondirectory.po +++ b/samba/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/samba/locale/el_GR/fusiondirectory.po b/samba/locale/el_GR/fusiondirectory.po index 5f1c6f4338..64e4ba64af 100644 --- a/samba/locale/el_GR/fusiondirectory.po +++ b/samba/locale/el_GR/fusiondirectory.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/samba/locale/en/fusiondirectory.po b/samba/locale/en/fusiondirectory.po index a5bedd72d0..4216906d2d 100644 --- a/samba/locale/en/fusiondirectory.po +++ b/samba/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/samba/locale/es/fusiondirectory.po b/samba/locale/es/fusiondirectory.po index c6a88970d0..0b805ae704 100644 --- a/samba/locale/es/fusiondirectory.po +++ b/samba/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/samba/locale/es_CO/fusiondirectory.po b/samba/locale/es_CO/fusiondirectory.po index d79af8d755..5807954149 100644 --- a/samba/locale/es_CO/fusiondirectory.po +++ b/samba/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/samba/locale/es_VE/fusiondirectory.po b/samba/locale/es_VE/fusiondirectory.po index f483e107f3..2ef8adff6a 100644 --- a/samba/locale/es_VE/fusiondirectory.po +++ b/samba/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/samba/locale/fa_IR/fusiondirectory.po b/samba/locale/fa_IR/fusiondirectory.po index 97eb8c025d..3bcab81c78 100644 --- a/samba/locale/fa_IR/fusiondirectory.po +++ b/samba/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po index 3810afc478..3985b0e9ad 100644 --- a/samba/locale/fi_FI/fusiondirectory.po +++ b/samba/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 15:59+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -88,7 +88,7 @@ msgstr "" #: personal/samba/class_sambaAccount.inc:531 #: personal/samba/class_sambaAccount.inc:551 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/groups/samba/class_sambaGroup.inc:135 #: personal/samba/class_sambaAccount.inc:505 diff --git a/samba/locale/fr/fusiondirectory.po b/samba/locale/fr/fusiondirectory.po index 5c534bff13..dc451000f4 100644 --- a/samba/locale/fr/fusiondirectory.po +++ b/samba/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/samba/locale/hu_HU/fusiondirectory.po b/samba/locale/hu_HU/fusiondirectory.po index 51fd918fd6..620feb2703 100644 --- a/samba/locale/hu_HU/fusiondirectory.po +++ b/samba/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/samba/locale/id/fusiondirectory.po b/samba/locale/id/fusiondirectory.po index aec7798cd1..d3264c548e 100644 --- a/samba/locale/id/fusiondirectory.po +++ b/samba/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/samba/locale/it_IT/fusiondirectory.po b/samba/locale/it_IT/fusiondirectory.po index e14bcc6825..0b62711b28 100644 --- a/samba/locale/it_IT/fusiondirectory.po +++ b/samba/locale/it_IT/fusiondirectory.po @@ -4,14 +4,15 @@ # # Translators: # Ilaria Montaruli <Ilaria.Montaruli@gmail.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015-2016 # Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-03-25 18:07+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:48+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "Samba" #: admin/groups/samba/class_sambaGroup.inc:30 msgid "Samba group settings" -msgstr "Impostazioni di Samba" +msgstr "Impostazioni di gruppi Samba" #: admin/groups/samba/class_sambaGroup.inc:42 #: admin/groups/samba/class_sambaGroup.inc:45 diff --git a/samba/locale/lv/fusiondirectory.po b/samba/locale/lv/fusiondirectory.po index f45d47ee5f..8b9c0ee435 100644 --- a/samba/locale/lv/fusiondirectory.po +++ b/samba/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/samba/locale/nb/fusiondirectory.po b/samba/locale/nb/fusiondirectory.po index 43ebd16f1a..4c33eb1169 100644 --- a/samba/locale/nb/fusiondirectory.po +++ b/samba/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/samba/locale/nl/fusiondirectory.po b/samba/locale/nl/fusiondirectory.po index 985759cd37..84b40481cf 100644 --- a/samba/locale/nl/fusiondirectory.po +++ b/samba/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/samba/locale/pl/fusiondirectory.po b/samba/locale/pl/fusiondirectory.po index 997c2d629d..76d3f53dce 100644 --- a/samba/locale/pl/fusiondirectory.po +++ b/samba/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/samba/locale/pt/fusiondirectory.po b/samba/locale/pt/fusiondirectory.po index 2c6101df45..fa09800982 100644 --- a/samba/locale/pt/fusiondirectory.po +++ b/samba/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/samba/locale/pt_BR/fusiondirectory.po b/samba/locale/pt_BR/fusiondirectory.po index bc9987bc29..c8ecc1a5d0 100644 --- a/samba/locale/pt_BR/fusiondirectory.po +++ b/samba/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/samba/locale/ru/fusiondirectory.po b/samba/locale/ru/fusiondirectory.po index 56ea32d19b..24ec6794f8 100644 --- a/samba/locale/ru/fusiondirectory.po +++ b/samba/locale/ru/fusiondirectory.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-04-08 19:09+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 09:21+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +38,7 @@ msgstr "Домен" #: admin/groups/samba/class_sambaGroup.inc:45 msgid "Samba domain" -msgstr "" +msgstr "Домен Samba" #: admin/groups/samba/class_sambaGroup.inc:49 msgid "Samba informations" @@ -44,7 +46,7 @@ msgstr "" #: admin/groups/samba/class_sambaGroup.inc:56 msgid "Group type" -msgstr "" +msgstr "Тип группы" #: admin/groups/samba/class_sambaGroup.inc:56 msgid "Samba group type" @@ -317,7 +319,7 @@ msgstr "Профиль Samba" #: personal/samba/class_sambaAccount.inc:189 #: personal/samba/class_sambaAccount.inc:222 msgid "Home directory drive" -msgstr "Ðазвание диÑка домашнего каталога" +msgstr "ДиÑк Ð´Ð»Ñ Ð´Ð¾Ð¼Ð°ÑˆÐ½ÐµÐ³Ð¾ каталога" #: personal/samba/class_sambaAccount.inc:189 #: personal/samba/class_sambaAccount.inc:222 @@ -332,7 +334,7 @@ msgstr "Путь к домашней директории" #: personal/samba/class_sambaAccount.inc:194 #: personal/samba/class_sambaAccount.inc:227 msgid "UNC path for the home drive" -msgstr "" +msgstr "UNC путь к домашнему диÑку" #: personal/samba/class_sambaAccount.inc:203 msgid "Script path" @@ -350,7 +352,7 @@ msgstr "Путь к профилю" #: personal/samba/class_sambaAccount.inc:207 #: personal/samba/class_sambaAccount.inc:232 msgid "UNC profile path" -msgstr "" +msgstr "UNC путь к профилю" #: personal/samba/class_sambaAccount.inc:214 msgid "Terminal server" @@ -592,7 +594,7 @@ msgstr "" #: config/samba/class_sambaPluginConfig.inc:44 msgid "The location where FusionDirectory looks for new samba workstations." -msgstr "" +msgstr "МеÑто, где FusionDirectory ищет новые рабочие Ñтанции samba." #: config/samba/class_sambaPluginConfig.inc:49 msgid "Samba ID mapping" diff --git a/samba/locale/ru@petr1708/fusiondirectory.po b/samba/locale/ru@petr1708/fusiondirectory.po index 63d14643e1..769d5a0a18 100644 --- a/samba/locale/ru@petr1708/fusiondirectory.po +++ b/samba/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/samba/locale/sv/fusiondirectory.po b/samba/locale/sv/fusiondirectory.po index 82c8854079..032ccb3542 100644 --- a/samba/locale/sv/fusiondirectory.po +++ b/samba/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/samba/locale/ug/fusiondirectory.po b/samba/locale/ug/fusiondirectory.po index 6dd7fe4fc8..9b046bc5cd 100644 --- a/samba/locale/ug/fusiondirectory.po +++ b/samba/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/samba/locale/vi_VN/fusiondirectory.po b/samba/locale/vi_VN/fusiondirectory.po index af5922bb37..5a84935a1f 100644 --- a/samba/locale/vi_VN/fusiondirectory.po +++ b/samba/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/samba/locale/zh/fusiondirectory.po b/samba/locale/zh/fusiondirectory.po index eae3ef3843..32c85838fc 100644 --- a/samba/locale/zh/fusiondirectory.po +++ b/samba/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-25 18:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sogo/locale/ar/fusiondirectory.po b/sogo/locale/ar/fusiondirectory.po index a3ea106783..e45e7f8bea 100644 --- a/sogo/locale/ar/fusiondirectory.po +++ b/sogo/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sogo/locale/ca/fusiondirectory.po b/sogo/locale/ca/fusiondirectory.po index 78458eceda..091073a3c7 100644 --- a/sogo/locale/ca/fusiondirectory.po +++ b/sogo/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sogo/locale/cs_CZ/fusiondirectory.po b/sogo/locale/cs_CZ/fusiondirectory.po index 71edd12650..ae4a1ab109 100644 --- a/sogo/locale/cs_CZ/fusiondirectory.po +++ b/sogo/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sogo/locale/de/fusiondirectory.po b/sogo/locale/de/fusiondirectory.po index 8a24dfdd1a..f45faed5b9 100644 --- a/sogo/locale/de/fusiondirectory.po +++ b/sogo/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sogo/locale/el_GR/fusiondirectory.po b/sogo/locale/el_GR/fusiondirectory.po index 7469ea016b..96935c8169 100644 --- a/sogo/locale/el_GR/fusiondirectory.po +++ b/sogo/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sogo/locale/en/fusiondirectory.po b/sogo/locale/en/fusiondirectory.po index 8d73c20a6e..8dad21e48a 100644 --- a/sogo/locale/en/fusiondirectory.po +++ b/sogo/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sogo/locale/es/fusiondirectory.po b/sogo/locale/es/fusiondirectory.po index d3d3dcdc01..4a902022f9 100644 --- a/sogo/locale/es/fusiondirectory.po +++ b/sogo/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sogo/locale/es_CO/fusiondirectory.po b/sogo/locale/es_CO/fusiondirectory.po index e5938e4f17..4a243b2b17 100644 --- a/sogo/locale/es_CO/fusiondirectory.po +++ b/sogo/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sogo/locale/es_VE/fusiondirectory.po b/sogo/locale/es_VE/fusiondirectory.po index 36376eb164..454200e9a2 100644 --- a/sogo/locale/es_VE/fusiondirectory.po +++ b/sogo/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sogo/locale/fa_IR/fusiondirectory.po b/sogo/locale/fa_IR/fusiondirectory.po index 892a7ccac9..50b10e9b55 100644 --- a/sogo/locale/fa_IR/fusiondirectory.po +++ b/sogo/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sogo/locale/fi_FI/fusiondirectory.po b/sogo/locale/fi_FI/fusiondirectory.po index 304c71f8ee..831cbe83d1 100644 --- a/sogo/locale/fi_FI/fusiondirectory.po +++ b/sogo/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sogo/locale/fr/fusiondirectory.po b/sogo/locale/fr/fusiondirectory.po index af6b511cc5..7ce1b61129 100644 --- a/sogo/locale/fr/fusiondirectory.po +++ b/sogo/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sogo/locale/hu_HU/fusiondirectory.po b/sogo/locale/hu_HU/fusiondirectory.po index c1acca28e4..b1eb6c4965 100644 --- a/sogo/locale/hu_HU/fusiondirectory.po +++ b/sogo/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sogo/locale/id/fusiondirectory.po b/sogo/locale/id/fusiondirectory.po index 4670ef4834..69e02c3495 100644 --- a/sogo/locale/id/fusiondirectory.po +++ b/sogo/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sogo/locale/it_IT/fusiondirectory.po b/sogo/locale/it_IT/fusiondirectory.po index 414a382340..51ce68e583 100644 --- a/sogo/locale/it_IT/fusiondirectory.po +++ b/sogo/locale/it_IT/fusiondirectory.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Paola Penati <penati@avaya.com>, 2015-2016 # Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:00+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:48+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "Risorsa di SOGo" #: admin/sogo/class_sogoResource.inc:57 msgid "Entry name" -msgstr "nome della voce" +msgstr "Nome della voce" #: admin/sogo/class_sogoResource.inc:57 msgid "Account name" diff --git a/sogo/locale/lv/fusiondirectory.po b/sogo/locale/lv/fusiondirectory.po index a05f0b8716..d50e93c945 100644 --- a/sogo/locale/lv/fusiondirectory.po +++ b/sogo/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sogo/locale/nb/fusiondirectory.po b/sogo/locale/nb/fusiondirectory.po index 6e8a621852..8808f8c14e 100644 --- a/sogo/locale/nb/fusiondirectory.po +++ b/sogo/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sogo/locale/nl/fusiondirectory.po b/sogo/locale/nl/fusiondirectory.po index c1b021b538..4bfb4a10f7 100644 --- a/sogo/locale/nl/fusiondirectory.po +++ b/sogo/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sogo/locale/pl/fusiondirectory.po b/sogo/locale/pl/fusiondirectory.po index 4aa80ee687..caa7a2b7d4 100644 --- a/sogo/locale/pl/fusiondirectory.po +++ b/sogo/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sogo/locale/pt/fusiondirectory.po b/sogo/locale/pt/fusiondirectory.po index b63188a5d0..c8d2037eda 100644 --- a/sogo/locale/pt/fusiondirectory.po +++ b/sogo/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sogo/locale/pt_BR/fusiondirectory.po b/sogo/locale/pt_BR/fusiondirectory.po index 6f7a2eeb7e..2d6ccf2794 100644 --- a/sogo/locale/pt_BR/fusiondirectory.po +++ b/sogo/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sogo/locale/ru/fusiondirectory.po b/sogo/locale/ru/fusiondirectory.po index 43b52d15a3..f57f5dd5bc 100644 --- a/sogo/locale/ru/fusiondirectory.po +++ b/sogo/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sogo/locale/ru@petr1708/fusiondirectory.po b/sogo/locale/ru@petr1708/fusiondirectory.po index bbcbb9817b..358863104b 100644 --- a/sogo/locale/ru@petr1708/fusiondirectory.po +++ b/sogo/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sogo/locale/sv/fusiondirectory.po b/sogo/locale/sv/fusiondirectory.po index 7891e2fa3f..c5a942f72d 100644 --- a/sogo/locale/sv/fusiondirectory.po +++ b/sogo/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sogo/locale/ug/fusiondirectory.po b/sogo/locale/ug/fusiondirectory.po index 1173908872..2078b1665a 100644 --- a/sogo/locale/ug/fusiondirectory.po +++ b/sogo/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sogo/locale/vi_VN/fusiondirectory.po b/sogo/locale/vi_VN/fusiondirectory.po index dafa250eab..1a89954f04 100644 --- a/sogo/locale/vi_VN/fusiondirectory.po +++ b/sogo/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sogo/locale/zh/fusiondirectory.po b/sogo/locale/zh/fusiondirectory.po index 44cf966658..3e440b1d58 100644 --- a/sogo/locale/zh/fusiondirectory.po +++ b/sogo/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:00+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/spamassassin/locale/ar/fusiondirectory.po b/spamassassin/locale/ar/fusiondirectory.po index e01f849a60..0b337209c5 100644 --- a/spamassassin/locale/ar/fusiondirectory.po +++ b/spamassassin/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/spamassassin/locale/ca/fusiondirectory.po b/spamassassin/locale/ca/fusiondirectory.po index 6ed19a9e23..c4dfd545af 100644 --- a/spamassassin/locale/ca/fusiondirectory.po +++ b/spamassassin/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/spamassassin/locale/cs_CZ/fusiondirectory.po b/spamassassin/locale/cs_CZ/fusiondirectory.po index aec5e3fbf2..00a566970a 100644 --- a/spamassassin/locale/cs_CZ/fusiondirectory.po +++ b/spamassassin/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/spamassassin/locale/de/fusiondirectory.po b/spamassassin/locale/de/fusiondirectory.po index bf5a08c427..4d834f40c3 100644 --- a/spamassassin/locale/de/fusiondirectory.po +++ b/spamassassin/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/spamassassin/locale/el_GR/fusiondirectory.po b/spamassassin/locale/el_GR/fusiondirectory.po index d861836295..7cc38c0a0c 100644 --- a/spamassassin/locale/el_GR/fusiondirectory.po +++ b/spamassassin/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/spamassassin/locale/en/fusiondirectory.po b/spamassassin/locale/en/fusiondirectory.po index d0339d0625..c2739aea50 100644 --- a/spamassassin/locale/en/fusiondirectory.po +++ b/spamassassin/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/spamassassin/locale/es/fusiondirectory.po b/spamassassin/locale/es/fusiondirectory.po index 0082d7f6a9..c8f559a6da 100644 --- a/spamassassin/locale/es/fusiondirectory.po +++ b/spamassassin/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/spamassassin/locale/es_CO/fusiondirectory.po b/spamassassin/locale/es_CO/fusiondirectory.po index 1c1855076c..1803a74a33 100644 --- a/spamassassin/locale/es_CO/fusiondirectory.po +++ b/spamassassin/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/spamassassin/locale/es_VE/fusiondirectory.po b/spamassassin/locale/es_VE/fusiondirectory.po index 906a875f7e..0d22490f36 100644 --- a/spamassassin/locale/es_VE/fusiondirectory.po +++ b/spamassassin/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/spamassassin/locale/fa_IR/fusiondirectory.po b/spamassassin/locale/fa_IR/fusiondirectory.po index 739bd97510..d05fb5f6a8 100644 --- a/spamassassin/locale/fa_IR/fusiondirectory.po +++ b/spamassassin/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/spamassassin/locale/fi_FI/fusiondirectory.po b/spamassassin/locale/fi_FI/fusiondirectory.po index 0b16af8e5c..680eff1515 100644 --- a/spamassassin/locale/fi_FI/fusiondirectory.po +++ b/spamassassin/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-13 13:29+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/spamassassin/locale/fr/fusiondirectory.po b/spamassassin/locale/fr/fusiondirectory.po index 561c75292b..96554defd9 100644 --- a/spamassassin/locale/fr/fusiondirectory.po +++ b/spamassassin/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:26+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/spamassassin/locale/hu_HU/fusiondirectory.po b/spamassassin/locale/hu_HU/fusiondirectory.po index 3fd81e21a5..463bd22844 100644 --- a/spamassassin/locale/hu_HU/fusiondirectory.po +++ b/spamassassin/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/spamassassin/locale/id/fusiondirectory.po b/spamassassin/locale/id/fusiondirectory.po index af249f211d..67c05d814e 100644 --- a/spamassassin/locale/id/fusiondirectory.po +++ b/spamassassin/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/spamassassin/locale/it_IT/fusiondirectory.po b/spamassassin/locale/it_IT/fusiondirectory.po index 17b7c0012b..279aa339c5 100644 --- a/spamassassin/locale/it_IT/fusiondirectory.po +++ b/spamassassin/locale/it_IT/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-05-02 07:45+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/spamassassin/locale/lv/fusiondirectory.po b/spamassassin/locale/lv/fusiondirectory.po index 97b90a4295..8321286cba 100644 --- a/spamassassin/locale/lv/fusiondirectory.po +++ b/spamassassin/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/spamassassin/locale/nb/fusiondirectory.po b/spamassassin/locale/nb/fusiondirectory.po index 1f1448092a..fdbbbdfec2 100644 --- a/spamassassin/locale/nb/fusiondirectory.po +++ b/spamassassin/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/spamassassin/locale/nl/fusiondirectory.po b/spamassassin/locale/nl/fusiondirectory.po index 3ab7afc06f..003ac310b9 100644 --- a/spamassassin/locale/nl/fusiondirectory.po +++ b/spamassassin/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/spamassassin/locale/pl/fusiondirectory.po b/spamassassin/locale/pl/fusiondirectory.po index 03b7f74c80..4c900d3346 100644 --- a/spamassassin/locale/pl/fusiondirectory.po +++ b/spamassassin/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/spamassassin/locale/pt/fusiondirectory.po b/spamassassin/locale/pt/fusiondirectory.po index 8bbadaf568..25187abdce 100644 --- a/spamassassin/locale/pt/fusiondirectory.po +++ b/spamassassin/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/spamassassin/locale/pt_BR/fusiondirectory.po b/spamassassin/locale/pt_BR/fusiondirectory.po index 20d4fb9598..5648089d83 100644 --- a/spamassassin/locale/pt_BR/fusiondirectory.po +++ b/spamassassin/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/spamassassin/locale/ru/fusiondirectory.po b/spamassassin/locale/ru/fusiondirectory.po index 123d527432..835672dea7 100644 --- a/spamassassin/locale/ru/fusiondirectory.po +++ b/spamassassin/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/spamassassin/locale/ru@petr1708/fusiondirectory.po b/spamassassin/locale/ru@petr1708/fusiondirectory.po index 15e4fca83f..c93363d1a0 100644 --- a/spamassassin/locale/ru@petr1708/fusiondirectory.po +++ b/spamassassin/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/spamassassin/locale/sv/fusiondirectory.po b/spamassassin/locale/sv/fusiondirectory.po index 8e4c71e8b3..5ff62bee6f 100644 --- a/spamassassin/locale/sv/fusiondirectory.po +++ b/spamassassin/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/spamassassin/locale/ug/fusiondirectory.po b/spamassassin/locale/ug/fusiondirectory.po index 7a79b6e5bf..5263e65743 100644 --- a/spamassassin/locale/ug/fusiondirectory.po +++ b/spamassassin/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/spamassassin/locale/vi_VN/fusiondirectory.po b/spamassassin/locale/vi_VN/fusiondirectory.po index 493a864c0d..d22a289693 100644 --- a/spamassassin/locale/vi_VN/fusiondirectory.po +++ b/spamassassin/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/spamassassin/locale/zh/fusiondirectory.po b/spamassassin/locale/zh/fusiondirectory.po index ada5519285..67d887cc8f 100644 --- a/spamassassin/locale/zh/fusiondirectory.po +++ b/spamassassin/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-27 20:18+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/squid/locale/ar/fusiondirectory.po b/squid/locale/ar/fusiondirectory.po index 7d2d37d3d4..c48563f7a7 100644 --- a/squid/locale/ar/fusiondirectory.po +++ b/squid/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/squid/locale/ca/fusiondirectory.po b/squid/locale/ca/fusiondirectory.po index 058b2f1f58..8608ad1fed 100644 --- a/squid/locale/ca/fusiondirectory.po +++ b/squid/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/squid/locale/cs_CZ/fusiondirectory.po b/squid/locale/cs_CZ/fusiondirectory.po index a9e5924abc..fbe7a2ce0c 100644 --- a/squid/locale/cs_CZ/fusiondirectory.po +++ b/squid/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/squid/locale/de/fusiondirectory.po b/squid/locale/de/fusiondirectory.po index ea5a5bc50b..ad7ae29fa3 100644 --- a/squid/locale/de/fusiondirectory.po +++ b/squid/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/squid/locale/el_GR/fusiondirectory.po b/squid/locale/el_GR/fusiondirectory.po index 934b323428..894d702be7 100644 --- a/squid/locale/el_GR/fusiondirectory.po +++ b/squid/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/squid/locale/en/fusiondirectory.po b/squid/locale/en/fusiondirectory.po index 77103d3708..5b4ddf76bd 100644 --- a/squid/locale/en/fusiondirectory.po +++ b/squid/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/squid/locale/es/fusiondirectory.po b/squid/locale/es/fusiondirectory.po index 29d78740a1..249b4570f5 100644 --- a/squid/locale/es/fusiondirectory.po +++ b/squid/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/squid/locale/es_CO/fusiondirectory.po b/squid/locale/es_CO/fusiondirectory.po index d9adb05453..a07e6ea848 100644 --- a/squid/locale/es_CO/fusiondirectory.po +++ b/squid/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/squid/locale/es_VE/fusiondirectory.po b/squid/locale/es_VE/fusiondirectory.po index b8cfd925a9..4a53910252 100644 --- a/squid/locale/es_VE/fusiondirectory.po +++ b/squid/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/squid/locale/fa_IR/fusiondirectory.po b/squid/locale/fa_IR/fusiondirectory.po index 4676004876..528ac244d3 100644 --- a/squid/locale/fa_IR/fusiondirectory.po +++ b/squid/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/squid/locale/fi_FI/fusiondirectory.po b/squid/locale/fi_FI/fusiondirectory.po index 67aaed7300..cd67b5bc78 100644 --- a/squid/locale/fi_FI/fusiondirectory.po +++ b/squid/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/squid/locale/fr/fusiondirectory.po b/squid/locale/fr/fusiondirectory.po index 08885b5b78..fa5788d7a1 100644 --- a/squid/locale/fr/fusiondirectory.po +++ b/squid/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/squid/locale/hu_HU/fusiondirectory.po b/squid/locale/hu_HU/fusiondirectory.po index 60dbe9e057..642478e5f1 100644 --- a/squid/locale/hu_HU/fusiondirectory.po +++ b/squid/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/squid/locale/id/fusiondirectory.po b/squid/locale/id/fusiondirectory.po index d496f6dd2a..77253e09ca 100644 --- a/squid/locale/id/fusiondirectory.po +++ b/squid/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/squid/locale/it_IT/fusiondirectory.po b/squid/locale/it_IT/fusiondirectory.po index 0112a67e61..de21dfe760 100644 --- a/squid/locale/it_IT/fusiondirectory.po +++ b/squid/locale/it_IT/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:01+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:49+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/squid/locale/lv/fusiondirectory.po b/squid/locale/lv/fusiondirectory.po index 6544891f59..5b8d4bfd4b 100644 --- a/squid/locale/lv/fusiondirectory.po +++ b/squid/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/squid/locale/nb/fusiondirectory.po b/squid/locale/nb/fusiondirectory.po index 82a4e67918..f758658c50 100644 --- a/squid/locale/nb/fusiondirectory.po +++ b/squid/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/squid/locale/nl/fusiondirectory.po b/squid/locale/nl/fusiondirectory.po index 1b38a50b7f..5a0f42cedc 100644 --- a/squid/locale/nl/fusiondirectory.po +++ b/squid/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/squid/locale/pl/fusiondirectory.po b/squid/locale/pl/fusiondirectory.po index a6e3407aea..87c8bc2944 100644 --- a/squid/locale/pl/fusiondirectory.po +++ b/squid/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/squid/locale/pt/fusiondirectory.po b/squid/locale/pt/fusiondirectory.po index 8e4f6e750c..3f533385b5 100644 --- a/squid/locale/pt/fusiondirectory.po +++ b/squid/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/squid/locale/pt_BR/fusiondirectory.po b/squid/locale/pt_BR/fusiondirectory.po index a918641ad3..29f52680cf 100644 --- a/squid/locale/pt_BR/fusiondirectory.po +++ b/squid/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/squid/locale/ru/fusiondirectory.po b/squid/locale/ru/fusiondirectory.po index af4f6c5f9c..be2bcce286 100644 --- a/squid/locale/ru/fusiondirectory.po +++ b/squid/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/squid/locale/ru@petr1708/fusiondirectory.po b/squid/locale/ru@petr1708/fusiondirectory.po index 10772fc6e1..c54802fda5 100644 --- a/squid/locale/ru@petr1708/fusiondirectory.po +++ b/squid/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/squid/locale/sv/fusiondirectory.po b/squid/locale/sv/fusiondirectory.po index e682d6f559..f6bec9f93b 100644 --- a/squid/locale/sv/fusiondirectory.po +++ b/squid/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/squid/locale/ug/fusiondirectory.po b/squid/locale/ug/fusiondirectory.po index 629dce53e9..83f99b409e 100644 --- a/squid/locale/ug/fusiondirectory.po +++ b/squid/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/squid/locale/vi_VN/fusiondirectory.po b/squid/locale/vi_VN/fusiondirectory.po index 340b01f609..a15d65cb58 100644 --- a/squid/locale/vi_VN/fusiondirectory.po +++ b/squid/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/squid/locale/zh/fusiondirectory.po b/squid/locale/zh/fusiondirectory.po index ff3509e91e..4d86a5b02f 100644 --- a/squid/locale/zh/fusiondirectory.po +++ b/squid/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:01+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/ssh/locale/ar/fusiondirectory.po b/ssh/locale/ar/fusiondirectory.po index 74980b5dd8..24779de9bb 100644 --- a/ssh/locale/ar/fusiondirectory.po +++ b/ssh/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/ssh/locale/ca/fusiondirectory.po b/ssh/locale/ca/fusiondirectory.po index dfea12cad9..8358a61521 100644 --- a/ssh/locale/ca/fusiondirectory.po +++ b/ssh/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/ssh/locale/cs_CZ/fusiondirectory.po b/ssh/locale/cs_CZ/fusiondirectory.po index 54938a9ee3..0a29b9195c 100644 --- a/ssh/locale/cs_CZ/fusiondirectory.po +++ b/ssh/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/ssh/locale/de/fusiondirectory.po b/ssh/locale/de/fusiondirectory.po index 57341e9232..aa7f3a5ff9 100644 --- a/ssh/locale/de/fusiondirectory.po +++ b/ssh/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/ssh/locale/el_GR/fusiondirectory.po b/ssh/locale/el_GR/fusiondirectory.po index d9287203e3..d1bd8de112 100644 --- a/ssh/locale/el_GR/fusiondirectory.po +++ b/ssh/locale/el_GR/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # pkst <pkst@eellak.gr>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/ssh/locale/en/fusiondirectory.po b/ssh/locale/en/fusiondirectory.po index 83a4d67cbc..7d7cfbf0e6 100644 --- a/ssh/locale/en/fusiondirectory.po +++ b/ssh/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/ssh/locale/es/fusiondirectory.po b/ssh/locale/es/fusiondirectory.po index b942633219..759f91fc50 100644 --- a/ssh/locale/es/fusiondirectory.po +++ b/ssh/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/ssh/locale/es_CO/fusiondirectory.po b/ssh/locale/es_CO/fusiondirectory.po index ebcf25dc51..083bb9b74e 100644 --- a/ssh/locale/es_CO/fusiondirectory.po +++ b/ssh/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/ssh/locale/es_VE/fusiondirectory.po b/ssh/locale/es_VE/fusiondirectory.po index 2d0eb76e6f..1d87da206f 100644 --- a/ssh/locale/es_VE/fusiondirectory.po +++ b/ssh/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/ssh/locale/fa_IR/fusiondirectory.po b/ssh/locale/fa_IR/fusiondirectory.po index 0096ac01f6..a515f70105 100644 --- a/ssh/locale/fa_IR/fusiondirectory.po +++ b/ssh/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/ssh/locale/fi_FI/fusiondirectory.po b/ssh/locale/fi_FI/fusiondirectory.po index 63d4202588..a7a58ea503 100644 --- a/ssh/locale/fi_FI/fusiondirectory.po +++ b/ssh/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/ssh/locale/fr/fusiondirectory.po b/ssh/locale/fr/fusiondirectory.po index 63b4b9f81d..144c087c40 100644 --- a/ssh/locale/fr/fusiondirectory.po +++ b/ssh/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/ssh/locale/hu_HU/fusiondirectory.po b/ssh/locale/hu_HU/fusiondirectory.po index 8cbceae405..d451211860 100644 --- a/ssh/locale/hu_HU/fusiondirectory.po +++ b/ssh/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/ssh/locale/id/fusiondirectory.po b/ssh/locale/id/fusiondirectory.po index e4dbef884b..44679637e5 100644 --- a/ssh/locale/id/fusiondirectory.po +++ b/ssh/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/ssh/locale/it_IT/fusiondirectory.po b/ssh/locale/it_IT/fusiondirectory.po index 553a887169..580bbbf820 100644 --- a/ssh/locale/it_IT/fusiondirectory.po +++ b/ssh/locale/it_IT/fusiondirectory.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Paola Penati <penati@avaya.com>, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:02+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:49+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgstr "Errore di caricamento" #: personal/ssh/class_sshAccount.inc:58 msgid "Unknown public key format!" -msgstr "Formato di chiave pubblica sconosciuto !" +msgstr "Formato di chiave pubblica sconosciuto!" #: personal/ssh/class_sshAccount.inc:81 msgid "SSH Keys" diff --git a/ssh/locale/lv/fusiondirectory.po b/ssh/locale/lv/fusiondirectory.po index 2b75b0308c..5d2ea16120 100644 --- a/ssh/locale/lv/fusiondirectory.po +++ b/ssh/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/ssh/locale/nb/fusiondirectory.po b/ssh/locale/nb/fusiondirectory.po index c6ad8569fa..a861b0be82 100644 --- a/ssh/locale/nb/fusiondirectory.po +++ b/ssh/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/ssh/locale/nl/fusiondirectory.po b/ssh/locale/nl/fusiondirectory.po index 784df39ad5..88454f1449 100644 --- a/ssh/locale/nl/fusiondirectory.po +++ b/ssh/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/ssh/locale/pl/fusiondirectory.po b/ssh/locale/pl/fusiondirectory.po index d1740aedd6..7434bf0122 100644 --- a/ssh/locale/pl/fusiondirectory.po +++ b/ssh/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/ssh/locale/pt/fusiondirectory.po b/ssh/locale/pt/fusiondirectory.po index 6ac56e4673..a06ba1a633 100644 --- a/ssh/locale/pt/fusiondirectory.po +++ b/ssh/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/ssh/locale/pt_BR/fusiondirectory.po b/ssh/locale/pt_BR/fusiondirectory.po index b7f55bd4cc..6e15481fff 100644 --- a/ssh/locale/pt_BR/fusiondirectory.po +++ b/ssh/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/ssh/locale/ru/fusiondirectory.po b/ssh/locale/ru/fusiondirectory.po index 75d0eed1cc..2ca8e18d83 100644 --- a/ssh/locale/ru/fusiondirectory.po +++ b/ssh/locale/ru/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-11 15:54+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/ssh/locale/ru@petr1708/fusiondirectory.po b/ssh/locale/ru@petr1708/fusiondirectory.po index bb16682ef7..ed4c69d759 100644 --- a/ssh/locale/ru@petr1708/fusiondirectory.po +++ b/ssh/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/ssh/locale/sv/fusiondirectory.po b/ssh/locale/sv/fusiondirectory.po index 9a5d764f60..de5cd60399 100644 --- a/ssh/locale/sv/fusiondirectory.po +++ b/ssh/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/ssh/locale/ug/fusiondirectory.po b/ssh/locale/ug/fusiondirectory.po index efd48a4456..821f6c3dd5 100644 --- a/ssh/locale/ug/fusiondirectory.po +++ b/ssh/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/ssh/locale/vi_VN/fusiondirectory.po b/ssh/locale/vi_VN/fusiondirectory.po index 442c1387f2..6d42d10c0f 100644 --- a/ssh/locale/vi_VN/fusiondirectory.po +++ b/ssh/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/ssh/locale/zh/fusiondirectory.po b/ssh/locale/zh/fusiondirectory.po index 261902ed1d..98dac9e4d0 100644 --- a/ssh/locale/zh/fusiondirectory.po +++ b/ssh/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:02+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/subcontracting/locale/ar/fusiondirectory.po b/subcontracting/locale/ar/fusiondirectory.po index fbcec1fdc2..196d4551c9 100644 --- a/subcontracting/locale/ar/fusiondirectory.po +++ b/subcontracting/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/subcontracting/locale/ca/fusiondirectory.po b/subcontracting/locale/ca/fusiondirectory.po index 0a7d36316d..97e367fc9d 100644 --- a/subcontracting/locale/ca/fusiondirectory.po +++ b/subcontracting/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/subcontracting/locale/cs_CZ/fusiondirectory.po b/subcontracting/locale/cs_CZ/fusiondirectory.po index 9496b18a01..ec209f60ff 100644 --- a/subcontracting/locale/cs_CZ/fusiondirectory.po +++ b/subcontracting/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/subcontracting/locale/de/fusiondirectory.po b/subcontracting/locale/de/fusiondirectory.po index 97ccab2381..6b8835826f 100644 --- a/subcontracting/locale/de/fusiondirectory.po +++ b/subcontracting/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/subcontracting/locale/el_GR/fusiondirectory.po b/subcontracting/locale/el_GR/fusiondirectory.po index 2710598637..ad9298d7ca 100644 --- a/subcontracting/locale/el_GR/fusiondirectory.po +++ b/subcontracting/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/subcontracting/locale/en/fusiondirectory.po b/subcontracting/locale/en/fusiondirectory.po index f198dafe38..35d38e163c 100644 --- a/subcontracting/locale/en/fusiondirectory.po +++ b/subcontracting/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/subcontracting/locale/es/fusiondirectory.po b/subcontracting/locale/es/fusiondirectory.po index 0c33eed442..1797d6516b 100644 --- a/subcontracting/locale/es/fusiondirectory.po +++ b/subcontracting/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/subcontracting/locale/es_CO/fusiondirectory.po b/subcontracting/locale/es_CO/fusiondirectory.po index 3020bd3f40..fbfee03126 100644 --- a/subcontracting/locale/es_CO/fusiondirectory.po +++ b/subcontracting/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/subcontracting/locale/es_VE/fusiondirectory.po b/subcontracting/locale/es_VE/fusiondirectory.po index 3143e9a13a..16187a93b7 100644 --- a/subcontracting/locale/es_VE/fusiondirectory.po +++ b/subcontracting/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/subcontracting/locale/fa_IR/fusiondirectory.po b/subcontracting/locale/fa_IR/fusiondirectory.po index b14df553af..ce80a3aa7f 100644 --- a/subcontracting/locale/fa_IR/fusiondirectory.po +++ b/subcontracting/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/subcontracting/locale/fi_FI/fusiondirectory.po b/subcontracting/locale/fi_FI/fusiondirectory.po index 30477e08ac..a0cc6ccbc0 100644 --- a/subcontracting/locale/fi_FI/fusiondirectory.po +++ b/subcontracting/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-02-25 10:29+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/subcontracting/locale/fr/fusiondirectory.po b/subcontracting/locale/fr/fusiondirectory.po index d0f276c849..8b69dac703 100644 --- a/subcontracting/locale/fr/fusiondirectory.po +++ b/subcontracting/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:28+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/subcontracting/locale/hu_HU/fusiondirectory.po b/subcontracting/locale/hu_HU/fusiondirectory.po index fa80941a20..215a9e5e21 100644 --- a/subcontracting/locale/hu_HU/fusiondirectory.po +++ b/subcontracting/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/subcontracting/locale/id/fusiondirectory.po b/subcontracting/locale/id/fusiondirectory.po index 2ec5995a84..cb39886b46 100644 --- a/subcontracting/locale/id/fusiondirectory.po +++ b/subcontracting/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/subcontracting/locale/it_IT/fusiondirectory.po b/subcontracting/locale/it_IT/fusiondirectory.po index 2942fd9d91..9e8de7a0e4 100644 --- a/subcontracting/locale/it_IT/fusiondirectory.po +++ b/subcontracting/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2016 +# Paola Penati <penati@avaya.com>, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:53+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/subcontracting/locale/lv/fusiondirectory.po b/subcontracting/locale/lv/fusiondirectory.po index ce9636d9d5..dcc917b606 100644 --- a/subcontracting/locale/lv/fusiondirectory.po +++ b/subcontracting/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/subcontracting/locale/nb/fusiondirectory.po b/subcontracting/locale/nb/fusiondirectory.po index 4a3e96fe13..11b1b8d7b8 100644 --- a/subcontracting/locale/nb/fusiondirectory.po +++ b/subcontracting/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/subcontracting/locale/nl/fusiondirectory.po b/subcontracting/locale/nl/fusiondirectory.po index e7f31defb3..95ac7d00fc 100644 --- a/subcontracting/locale/nl/fusiondirectory.po +++ b/subcontracting/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/subcontracting/locale/pl/fusiondirectory.po b/subcontracting/locale/pl/fusiondirectory.po index dce1254486..27f0a2af81 100644 --- a/subcontracting/locale/pl/fusiondirectory.po +++ b/subcontracting/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/subcontracting/locale/pt/fusiondirectory.po b/subcontracting/locale/pt/fusiondirectory.po index 97db6984d1..02ed2ecfc1 100644 --- a/subcontracting/locale/pt/fusiondirectory.po +++ b/subcontracting/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/subcontracting/locale/pt_BR/fusiondirectory.po b/subcontracting/locale/pt_BR/fusiondirectory.po index 7f2deb4ada..ee4c4ad833 100644 --- a/subcontracting/locale/pt_BR/fusiondirectory.po +++ b/subcontracting/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/subcontracting/locale/ru/fusiondirectory.po b/subcontracting/locale/ru/fusiondirectory.po index 16bf7e3a6c..7ff533679d 100644 --- a/subcontracting/locale/ru/fusiondirectory.po +++ b/subcontracting/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/subcontracting/locale/ru@petr1708/fusiondirectory.po b/subcontracting/locale/ru@petr1708/fusiondirectory.po index e35ac68d4e..94f3ee09d2 100644 --- a/subcontracting/locale/ru@petr1708/fusiondirectory.po +++ b/subcontracting/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/subcontracting/locale/sv/fusiondirectory.po b/subcontracting/locale/sv/fusiondirectory.po index 5f3192cd8e..2757d2f034 100644 --- a/subcontracting/locale/sv/fusiondirectory.po +++ b/subcontracting/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/subcontracting/locale/ug/fusiondirectory.po b/subcontracting/locale/ug/fusiondirectory.po index fb78c63dea..9b8afaf040 100644 --- a/subcontracting/locale/ug/fusiondirectory.po +++ b/subcontracting/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/subcontracting/locale/vi_VN/fusiondirectory.po b/subcontracting/locale/vi_VN/fusiondirectory.po index 86ef982dda..9e8fe2d4ef 100644 --- a/subcontracting/locale/vi_VN/fusiondirectory.po +++ b/subcontracting/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/subcontracting/locale/zh/fusiondirectory.po b/subcontracting/locale/zh/fusiondirectory.po index e38edab693..7cfc36f20c 100644 --- a/subcontracting/locale/zh/fusiondirectory.po +++ b/subcontracting/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-03-01 17:15+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sudo/locale/ar/fusiondirectory.po b/sudo/locale/ar/fusiondirectory.po index 5827e729fc..f4f76f24df 100644 --- a/sudo/locale/ar/fusiondirectory.po +++ b/sudo/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sudo/locale/ca/fusiondirectory.po b/sudo/locale/ca/fusiondirectory.po index c1e4c0f200..eb916cfd70 100644 --- a/sudo/locale/ca/fusiondirectory.po +++ b/sudo/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sudo/locale/cs_CZ/fusiondirectory.po b/sudo/locale/cs_CZ/fusiondirectory.po index e67286ffea..b2f55d1542 100644 --- a/sudo/locale/cs_CZ/fusiondirectory.po +++ b/sudo/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sudo/locale/de/fusiondirectory.po b/sudo/locale/de/fusiondirectory.po index 01c4b161d6..11ab61b6ac 100644 --- a/sudo/locale/de/fusiondirectory.po +++ b/sudo/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sudo/locale/el_GR/fusiondirectory.po b/sudo/locale/el_GR/fusiondirectory.po index 83224bffb9..60838455bd 100644 --- a/sudo/locale/el_GR/fusiondirectory.po +++ b/sudo/locale/el_GR/fusiondirectory.po @@ -5,11 +5,12 @@ # Translators: # pkst <pkst@eellak.gr>, 2015 # Manolis Saldaris <Ustramator@gmail.com>, 2015 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sudo/locale/en/fusiondirectory.po b/sudo/locale/en/fusiondirectory.po index a06d406517..06c761f07b 100644 --- a/sudo/locale/en/fusiondirectory.po +++ b/sudo/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sudo/locale/es/fusiondirectory.po b/sudo/locale/es/fusiondirectory.po index c470864ccf..bd39ca8d64 100644 --- a/sudo/locale/es/fusiondirectory.po +++ b/sudo/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sudo/locale/es_CO/fusiondirectory.po b/sudo/locale/es_CO/fusiondirectory.po index affd5ae9ef..e8a92b8e2f 100644 --- a/sudo/locale/es_CO/fusiondirectory.po +++ b/sudo/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sudo/locale/es_VE/fusiondirectory.po b/sudo/locale/es_VE/fusiondirectory.po index 3222db39f1..92cb21f96f 100644 --- a/sudo/locale/es_VE/fusiondirectory.po +++ b/sudo/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sudo/locale/fa_IR/fusiondirectory.po b/sudo/locale/fa_IR/fusiondirectory.po index 70e0c2da8c..c84b760cf7 100644 --- a/sudo/locale/fa_IR/fusiondirectory.po +++ b/sudo/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sudo/locale/fi_FI/fusiondirectory.po b/sudo/locale/fi_FI/fusiondirectory.po index 0085dacede..12a497f06b 100644 --- a/sudo/locale/fi_FI/fusiondirectory.po +++ b/sudo/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sudo/locale/fr/fusiondirectory.po b/sudo/locale/fr/fusiondirectory.po index aafde0c2e7..ad4780e716 100644 --- a/sudo/locale/fr/fusiondirectory.po +++ b/sudo/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sudo/locale/hu_HU/fusiondirectory.po b/sudo/locale/hu_HU/fusiondirectory.po index 9469e415e9..783568e647 100644 --- a/sudo/locale/hu_HU/fusiondirectory.po +++ b/sudo/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sudo/locale/id/fusiondirectory.po b/sudo/locale/id/fusiondirectory.po index 3938a2f52d..ceff397c89 100644 --- a/sudo/locale/id/fusiondirectory.po +++ b/sudo/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sudo/locale/it_IT/fusiondirectory.po b/sudo/locale/it_IT/fusiondirectory.po index 9469d53175..e1f2f84eb9 100644 --- a/sudo/locale/it_IT/fusiondirectory.po +++ b/sudo/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/sudo/locale/lv/fusiondirectory.po b/sudo/locale/lv/fusiondirectory.po index 89efb41b90..fa313cd4c5 100644 --- a/sudo/locale/lv/fusiondirectory.po +++ b/sudo/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sudo/locale/nb/fusiondirectory.po b/sudo/locale/nb/fusiondirectory.po index 3b1fab193f..b3939b5900 100644 --- a/sudo/locale/nb/fusiondirectory.po +++ b/sudo/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sudo/locale/nl/fusiondirectory.po b/sudo/locale/nl/fusiondirectory.po index 41e930249a..c05cdf97ae 100644 --- a/sudo/locale/nl/fusiondirectory.po +++ b/sudo/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sudo/locale/pl/fusiondirectory.po b/sudo/locale/pl/fusiondirectory.po index fb18770692..978a948bd9 100644 --- a/sudo/locale/pl/fusiondirectory.po +++ b/sudo/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sudo/locale/pt/fusiondirectory.po b/sudo/locale/pt/fusiondirectory.po index 3c64410e0c..04faf78f01 100644 --- a/sudo/locale/pt/fusiondirectory.po +++ b/sudo/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sudo/locale/pt_BR/fusiondirectory.po b/sudo/locale/pt_BR/fusiondirectory.po index 0e453e66c6..544c68804d 100644 --- a/sudo/locale/pt_BR/fusiondirectory.po +++ b/sudo/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sudo/locale/ru/fusiondirectory.po b/sudo/locale/ru/fusiondirectory.po index 1b490fd9f3..448a78b5fb 100644 --- a/sudo/locale/ru/fusiondirectory.po +++ b/sudo/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sudo/locale/ru@petr1708/fusiondirectory.po b/sudo/locale/ru@petr1708/fusiondirectory.po index b9200d4a32..1629508f53 100644 --- a/sudo/locale/ru@petr1708/fusiondirectory.po +++ b/sudo/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sudo/locale/sv/fusiondirectory.po b/sudo/locale/sv/fusiondirectory.po index b663cf98b1..51a0818884 100644 --- a/sudo/locale/sv/fusiondirectory.po +++ b/sudo/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sudo/locale/ug/fusiondirectory.po b/sudo/locale/ug/fusiondirectory.po index 4aad1650d9..ddb6cfbfed 100644 --- a/sudo/locale/ug/fusiondirectory.po +++ b/sudo/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sudo/locale/vi_VN/fusiondirectory.po b/sudo/locale/vi_VN/fusiondirectory.po index 00bf88c53a..81b4503de6 100644 --- a/sudo/locale/vi_VN/fusiondirectory.po +++ b/sudo/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sudo/locale/zh/fusiondirectory.po b/sudo/locale/zh/fusiondirectory.po index b49c8e4677..260461a344 100644 --- a/sudo/locale/zh/fusiondirectory.po +++ b/sudo/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/supann/locale/ar/fusiondirectory.po b/supann/locale/ar/fusiondirectory.po index 9567b4aad1..fba8bd82c7 100644 --- a/supann/locale/ar/fusiondirectory.po +++ b/supann/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/supann/locale/ca/fusiondirectory.po b/supann/locale/ca/fusiondirectory.po index 7ff41f1973..c2e69e215d 100644 --- a/supann/locale/ca/fusiondirectory.po +++ b/supann/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/supann/locale/cs_CZ/fusiondirectory.po b/supann/locale/cs_CZ/fusiondirectory.po index 6cc55253d5..2a900cd01d 100644 --- a/supann/locale/cs_CZ/fusiondirectory.po +++ b/supann/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/supann/locale/de/fusiondirectory.po b/supann/locale/de/fusiondirectory.po index eac2089daa..692633c640 100644 --- a/supann/locale/de/fusiondirectory.po +++ b/supann/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/supann/locale/el_GR/fusiondirectory.po b/supann/locale/el_GR/fusiondirectory.po index 9052dbab16..9c7333ad35 100644 --- a/supann/locale/el_GR/fusiondirectory.po +++ b/supann/locale/el_GR/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/supann/locale/en/fusiondirectory.po b/supann/locale/en/fusiondirectory.po index bacf96c22a..23a0873255 100644 --- a/supann/locale/en/fusiondirectory.po +++ b/supann/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/supann/locale/es/fusiondirectory.po b/supann/locale/es/fusiondirectory.po index 2154a685bf..0547519c10 100644 --- a/supann/locale/es/fusiondirectory.po +++ b/supann/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/supann/locale/es_CO/fusiondirectory.po b/supann/locale/es_CO/fusiondirectory.po index 14ba1f5310..b28ffc495c 100644 --- a/supann/locale/es_CO/fusiondirectory.po +++ b/supann/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/supann/locale/es_VE/fusiondirectory.po b/supann/locale/es_VE/fusiondirectory.po index 1a1bd1926e..21bf1f7e5b 100644 --- a/supann/locale/es_VE/fusiondirectory.po +++ b/supann/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/supann/locale/fa_IR/fusiondirectory.po b/supann/locale/fa_IR/fusiondirectory.po index 51d5698635..1b0effe542 100644 --- a/supann/locale/fa_IR/fusiondirectory.po +++ b/supann/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po index 5ae98a4918..8b79c66568 100644 --- a/supann/locale/fi_FI/fusiondirectory.po +++ b/supann/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/supann/locale/fr/fusiondirectory.po b/supann/locale/fr/fusiondirectory.po index b5e595f4c4..0a114d40c2 100644 --- a/supann/locale/fr/fusiondirectory.po +++ b/supann/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/supann/locale/hu_HU/fusiondirectory.po b/supann/locale/hu_HU/fusiondirectory.po index 0bcac74df1..6042bfdd0b 100644 --- a/supann/locale/hu_HU/fusiondirectory.po +++ b/supann/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/supann/locale/id/fusiondirectory.po b/supann/locale/id/fusiondirectory.po index e86c24e8b3..ea4c011a29 100644 --- a/supann/locale/id/fusiondirectory.po +++ b/supann/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/supann/locale/it_IT/fusiondirectory.po b/supann/locale/it_IT/fusiondirectory.po index df207dd811..b9850aa39e 100644 --- a/supann/locale/it_IT/fusiondirectory.po +++ b/supann/locale/it_IT/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:51+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/supann/locale/lv/fusiondirectory.po b/supann/locale/lv/fusiondirectory.po index 447f2d7575..21f20e6199 100644 --- a/supann/locale/lv/fusiondirectory.po +++ b/supann/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/supann/locale/nb/fusiondirectory.po b/supann/locale/nb/fusiondirectory.po index 31971c17cd..0539c37ce7 100644 --- a/supann/locale/nb/fusiondirectory.po +++ b/supann/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/supann/locale/nl/fusiondirectory.po b/supann/locale/nl/fusiondirectory.po index a1ab60ae4d..22e1adff14 100644 --- a/supann/locale/nl/fusiondirectory.po +++ b/supann/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/supann/locale/pl/fusiondirectory.po b/supann/locale/pl/fusiondirectory.po index 633ab26aff..d8a611bf83 100644 --- a/supann/locale/pl/fusiondirectory.po +++ b/supann/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/supann/locale/pt/fusiondirectory.po b/supann/locale/pt/fusiondirectory.po index 056bcda895..ca198c380e 100644 --- a/supann/locale/pt/fusiondirectory.po +++ b/supann/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/supann/locale/pt_BR/fusiondirectory.po b/supann/locale/pt_BR/fusiondirectory.po index 34837ff6e1..1b311206d9 100644 --- a/supann/locale/pt_BR/fusiondirectory.po +++ b/supann/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/supann/locale/ru/fusiondirectory.po b/supann/locale/ru/fusiondirectory.po index 96b49b579b..be19347a39 100644 --- a/supann/locale/ru/fusiondirectory.po +++ b/supann/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/supann/locale/ru@petr1708/fusiondirectory.po b/supann/locale/ru@petr1708/fusiondirectory.po index fcbbbb71c0..bf67f9ece6 100644 --- a/supann/locale/ru@petr1708/fusiondirectory.po +++ b/supann/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/supann/locale/sv/fusiondirectory.po b/supann/locale/sv/fusiondirectory.po index 261d06e783..cf1468cb75 100644 --- a/supann/locale/sv/fusiondirectory.po +++ b/supann/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/supann/locale/ug/fusiondirectory.po b/supann/locale/ug/fusiondirectory.po index 69787a6f6f..52df1789d0 100644 --- a/supann/locale/ug/fusiondirectory.po +++ b/supann/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:03+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/supann/locale/vi_VN/fusiondirectory.po b/supann/locale/vi_VN/fusiondirectory.po index 623077a1d2..b41d39eb67 100644 --- a/supann/locale/vi_VN/fusiondirectory.po +++ b/supann/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/supann/locale/zh/fusiondirectory.po b/supann/locale/zh/fusiondirectory.po index 210bd1c34b..70be6dcc2e 100644 --- a/supann/locale/zh/fusiondirectory.po +++ b/supann/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/sympa/locale/ar/fusiondirectory.po b/sympa/locale/ar/fusiondirectory.po index fce89f6ef1..209b7dfb7f 100644 --- a/sympa/locale/ar/fusiondirectory.po +++ b/sympa/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/sympa/locale/ca/fusiondirectory.po b/sympa/locale/ca/fusiondirectory.po index 0bd01331df..259a3afae4 100644 --- a/sympa/locale/ca/fusiondirectory.po +++ b/sympa/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/sympa/locale/cs_CZ/fusiondirectory.po b/sympa/locale/cs_CZ/fusiondirectory.po index 26d4898e9a..29ecbc795f 100644 --- a/sympa/locale/cs_CZ/fusiondirectory.po +++ b/sympa/locale/cs_CZ/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/sympa/locale/de/fusiondirectory.po b/sympa/locale/de/fusiondirectory.po index 5d39bfabfa..fa32e82de6 100644 --- a/sympa/locale/de/fusiondirectory.po +++ b/sympa/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/sympa/locale/el_GR/fusiondirectory.po b/sympa/locale/el_GR/fusiondirectory.po index c2e97522bb..0bf07d2b6a 100644 --- a/sympa/locale/el_GR/fusiondirectory.po +++ b/sympa/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/sympa/locale/en/fusiondirectory.po b/sympa/locale/en/fusiondirectory.po index 0682202178..4c5b168463 100644 --- a/sympa/locale/en/fusiondirectory.po +++ b/sympa/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/sympa/locale/es/fusiondirectory.po b/sympa/locale/es/fusiondirectory.po index de3228e71f..c9e0cce241 100644 --- a/sympa/locale/es/fusiondirectory.po +++ b/sympa/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 17:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/sympa/locale/es_CO/fusiondirectory.po b/sympa/locale/es_CO/fusiondirectory.po index a35b5b3e5f..133f8ac124 100644 --- a/sympa/locale/es_CO/fusiondirectory.po +++ b/sympa/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/sympa/locale/es_VE/fusiondirectory.po b/sympa/locale/es_VE/fusiondirectory.po index fe5a6e6a0a..12367951b4 100644 --- a/sympa/locale/es_VE/fusiondirectory.po +++ b/sympa/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/sympa/locale/fa_IR/fusiondirectory.po b/sympa/locale/fa_IR/fusiondirectory.po index f008b41d24..91fcab46d5 100644 --- a/sympa/locale/fa_IR/fusiondirectory.po +++ b/sympa/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/sympa/locale/fi_FI/fusiondirectory.po b/sympa/locale/fi_FI/fusiondirectory.po index 08951030d8..e513ad7604 100644 --- a/sympa/locale/fi_FI/fusiondirectory.po +++ b/sympa/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/sympa/locale/fr/fusiondirectory.po b/sympa/locale/fr/fusiondirectory.po index 18d6be8987..3fcab23ef7 100644 --- a/sympa/locale/fr/fusiondirectory.po +++ b/sympa/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/sympa/locale/hu_HU/fusiondirectory.po b/sympa/locale/hu_HU/fusiondirectory.po index 01269e8f10..9d4d9e8d98 100644 --- a/sympa/locale/hu_HU/fusiondirectory.po +++ b/sympa/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/sympa/locale/id/fusiondirectory.po b/sympa/locale/id/fusiondirectory.po index b8d2b004fd..708bd9849a 100644 --- a/sympa/locale/id/fusiondirectory.po +++ b/sympa/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/sympa/locale/it_IT/fusiondirectory.po b/sympa/locale/it_IT/fusiondirectory.po index 27285fc526..7271a0a276 100644 --- a/sympa/locale/it_IT/fusiondirectory.po +++ b/sympa/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/sympa/locale/lv/fusiondirectory.po b/sympa/locale/lv/fusiondirectory.po index 5ecfad4cfc..0a4d4e5a9f 100644 --- a/sympa/locale/lv/fusiondirectory.po +++ b/sympa/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/sympa/locale/nb/fusiondirectory.po b/sympa/locale/nb/fusiondirectory.po index 7c6ee95397..4c2238de12 100644 --- a/sympa/locale/nb/fusiondirectory.po +++ b/sympa/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/sympa/locale/nl/fusiondirectory.po b/sympa/locale/nl/fusiondirectory.po index cefd3c46cc..6af43649c1 100644 --- a/sympa/locale/nl/fusiondirectory.po +++ b/sympa/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/sympa/locale/pl/fusiondirectory.po b/sympa/locale/pl/fusiondirectory.po index 626f4f70b2..3f75047dda 100644 --- a/sympa/locale/pl/fusiondirectory.po +++ b/sympa/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/sympa/locale/pt/fusiondirectory.po b/sympa/locale/pt/fusiondirectory.po index cb7adc8248..8a4effea0d 100644 --- a/sympa/locale/pt/fusiondirectory.po +++ b/sympa/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/sympa/locale/pt_BR/fusiondirectory.po b/sympa/locale/pt_BR/fusiondirectory.po index 4b984a7e2a..c08ed027e8 100644 --- a/sympa/locale/pt_BR/fusiondirectory.po +++ b/sympa/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po index 0434d33fda..85bc7ec845 100644 --- a/sympa/locale/ru/fusiondirectory.po +++ b/sympa/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-04-08 19:09+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/sympa/locale/ru@petr1708/fusiondirectory.po b/sympa/locale/ru@petr1708/fusiondirectory.po index 8300afc2be..36a00ca684 100644 --- a/sympa/locale/ru@petr1708/fusiondirectory.po +++ b/sympa/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/sympa/locale/sv/fusiondirectory.po b/sympa/locale/sv/fusiondirectory.po index c4cc894694..92ac0dbab8 100644 --- a/sympa/locale/sv/fusiondirectory.po +++ b/sympa/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/sympa/locale/ug/fusiondirectory.po b/sympa/locale/ug/fusiondirectory.po index 7c53865ac2..4133a0cdd5 100644 --- a/sympa/locale/ug/fusiondirectory.po +++ b/sympa/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:04+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/sympa/locale/vi_VN/fusiondirectory.po b/sympa/locale/vi_VN/fusiondirectory.po index 7e3ac5aa23..75e2febb9a 100644 --- a/sympa/locale/vi_VN/fusiondirectory.po +++ b/sympa/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/sympa/locale/zh/fusiondirectory.po b/sympa/locale/zh/fusiondirectory.po index 70c8e9bfd2..7e92d9f7bd 100644 --- a/sympa/locale/zh/fusiondirectory.po +++ b/sympa/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/systems/locale/ar/fusiondirectory.po b/systems/locale/ar/fusiondirectory.po index 6c89b7ae90..5e2939f371 100644 --- a/systems/locale/ar/fusiondirectory.po +++ b/systems/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/systems/locale/ca/fusiondirectory.po b/systems/locale/ca/fusiondirectory.po index b537f8c398..6e1bfaa460 100644 --- a/systems/locale/ca/fusiondirectory.po +++ b/systems/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/systems/locale/cs_CZ/fusiondirectory.po b/systems/locale/cs_CZ/fusiondirectory.po index 3ea4890b54..733d347340 100644 --- a/systems/locale/cs_CZ/fusiondirectory.po +++ b/systems/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/systems/locale/de/fusiondirectory.po b/systems/locale/de/fusiondirectory.po index 219034e7ba..8f0e54cefb 100644 --- a/systems/locale/de/fusiondirectory.po +++ b/systems/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/systems/locale/el_GR/fusiondirectory.po b/systems/locale/el_GR/fusiondirectory.po index 2d6c4b8d10..b4078bb19b 100644 --- a/systems/locale/el_GR/fusiondirectory.po +++ b/systems/locale/el_GR/fusiondirectory.po @@ -5,11 +5,12 @@ # Translators: # pkst <pkst@eellak.gr>, 2015 # Nikos Charonitakis <charosn@her.forthnet.gr>, 2005 +# pkst <pkst@eellak.gr>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/systems/locale/en/fusiondirectory.po b/systems/locale/en/fusiondirectory.po index 6b78f89bea..51655b57bd 100644 --- a/systems/locale/en/fusiondirectory.po +++ b/systems/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/systems/locale/es/fusiondirectory.po b/systems/locale/es/fusiondirectory.po index d3de1bf33f..a894abc0ee 100644 --- a/systems/locale/es/fusiondirectory.po +++ b/systems/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/systems/locale/es_CO/fusiondirectory.po b/systems/locale/es_CO/fusiondirectory.po index 66e4839f9a..bd5e679c5e 100644 --- a/systems/locale/es_CO/fusiondirectory.po +++ b/systems/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/systems/locale/es_VE/fusiondirectory.po b/systems/locale/es_VE/fusiondirectory.po index 0d9b111c88..3c018f295d 100644 --- a/systems/locale/es_VE/fusiondirectory.po +++ b/systems/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/systems/locale/fa_IR/fusiondirectory.po b/systems/locale/fa_IR/fusiondirectory.po index cf62ed4d78..a3e1cef357 100644 --- a/systems/locale/fa_IR/fusiondirectory.po +++ b/systems/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po index 2ec613912f..486b6b1189 100644 --- a/systems/locale/fi_FI/fusiondirectory.po +++ b/systems/locale/fi_FI/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-07-08 12:18+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-02 16:38+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -270,11 +270,11 @@ msgstr "" #: admin/systems/system-list.xml:168 admin/systems/serverService-list.xml:43 #: admin/systems/phoneSelect/phoneSelect-list.xml:70 msgid "Actions" -msgstr "" +msgstr "Toiminnot" #: admin/systems/system-list.xml:179 admin/systems/serverService-list.xml:54 msgid "Create" -msgstr "" +msgstr "Luo" #: admin/systems/system-list.xml:209 msgid "winStation" @@ -304,7 +304,7 @@ msgstr "" #: admin/systems/system-list.xml:272 admin/systems/serverService-list.xml:69 msgid "Remove" -msgstr "" +msgstr "Poista" #: admin/systems/system-list.xml:303 msgid "Edit system" @@ -855,7 +855,7 @@ msgstr "" #: admin/systems/services/shares/class_serviceShare.inc:111 #: admin/ogroups/goto/termgroup.tpl.c:2 admin/systems/remove.tpl.c:2 msgid "Warning" -msgstr "" +msgstr "Varoitus" #: admin/systems/services/shares/class_serviceShare.inc:111 #, php-format diff --git a/systems/locale/fr/fusiondirectory.po b/systems/locale/fr/fusiondirectory.po index cc06033e45..6e8c28e1f6 100644 --- a/systems/locale/fr/fusiondirectory.po +++ b/systems/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:10+0000\n" "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/systems/locale/hu_HU/fusiondirectory.po b/systems/locale/hu_HU/fusiondirectory.po index 5197a26d20..fcba6f104c 100644 --- a/systems/locale/hu_HU/fusiondirectory.po +++ b/systems/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/systems/locale/id/fusiondirectory.po b/systems/locale/id/fusiondirectory.po index 7563688050..88cfb5f72d 100644 --- a/systems/locale/id/fusiondirectory.po +++ b/systems/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/systems/locale/it_IT/fusiondirectory.po b/systems/locale/it_IT/fusiondirectory.po index 805b3770fd..0c5d8e59c9 100644 --- a/systems/locale/it_IT/fusiondirectory.po +++ b/systems/locale/it_IT/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 17:23+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:51+0000\n" "Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -1273,7 +1273,7 @@ msgstr "C'è un server Argonaut in esecuzione su % 1 (%3://%2:%4)" #: addons/dashboard/systems_stats.tpl.c:8 msgid "Only one system is configured to run an argonaut client." msgid_plural "%1 systems are configured to run an argonaut client." -msgstr[0] "1% dei sistemi sono configurati per eseguire un cliente Argonaut" +msgstr[0] "Solo un sistema é configurato per eseguire un cliente Argonaut" msgstr[1] "1% dei sistemi sono configurati per eseguire un cliente Argonaut" #: addons/dashboard/systems_stats.tpl.c:11 @@ -1287,5 +1287,5 @@ msgid "" msgid_plural "" "%1 systems are configured to run an argonaut client, but there is no " "argonaut server configured!" -msgstr[0] " 1% dei sistemi sono configurati per eseguire un cliente Argonaut, ma non c'é alcun server configurato!" +msgstr[0] " Un sistema é configurato per eseguire un cliente Argonaut, ma non c'é alcun server configurato!" msgstr[1] " 1% dei sistemi sono configurati per eseguire un cliente Argonaut, ma non c'é alcun server configurato!" diff --git a/systems/locale/lv/fusiondirectory.po b/systems/locale/lv/fusiondirectory.po index 159a5573e8..43119d47bc 100644 --- a/systems/locale/lv/fusiondirectory.po +++ b/systems/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/systems/locale/nb/fusiondirectory.po b/systems/locale/nb/fusiondirectory.po index d9b8173094..3d55b0ae51 100644 --- a/systems/locale/nb/fusiondirectory.po +++ b/systems/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/systems/locale/nl/fusiondirectory.po b/systems/locale/nl/fusiondirectory.po index fca26f6443..ea245a9bdd 100644 --- a/systems/locale/nl/fusiondirectory.po +++ b/systems/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/systems/locale/pl/fusiondirectory.po b/systems/locale/pl/fusiondirectory.po index bd4aa28a84..1fdf6848e4 100644 --- a/systems/locale/pl/fusiondirectory.po +++ b/systems/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/systems/locale/pt/fusiondirectory.po b/systems/locale/pt/fusiondirectory.po index addb98b9c2..02849b13d0 100644 --- a/systems/locale/pt/fusiondirectory.po +++ b/systems/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/systems/locale/pt_BR/fusiondirectory.po b/systems/locale/pt_BR/fusiondirectory.po index ffe5a7ce32..4a4925c3b4 100644 --- a/systems/locale/pt_BR/fusiondirectory.po +++ b/systems/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/systems/locale/ru/fusiondirectory.po b/systems/locale/ru/fusiondirectory.po index 8754f45f4b..0db81d9146 100644 --- a/systems/locale/ru/fusiondirectory.po +++ b/systems/locale/ru/fusiondirectory.po @@ -4,13 +4,14 @@ # # Translators: # Alexey Matveev, 2016 +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:22+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -297,11 +298,11 @@ msgstr "Мобильный телефон" #: admin/systems/system-list.xml:253 msgid "Trigger action" -msgstr "" +msgstr "ДейÑтвие по триггеру" #: admin/systems/system-list.xml:260 msgid "Schedule action" -msgstr "" +msgstr "ДейÑтвие по раÑпиÑанию" #: admin/systems/system-list.xml:272 admin/systems/serverService-list.xml:69 msgid "Remove" @@ -371,7 +372,7 @@ msgstr "Сетевые наÑтройки" #: admin/systems/class_phoneGeneric.inc:37 msgid "Phone information" -msgstr "" +msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± телеофоне" #: admin/systems/class_phoneGeneric.inc:41 msgid "Phone hardware" @@ -379,11 +380,11 @@ msgstr "" #: admin/systems/class_phoneGeneric.inc:59 msgid "The name of the phone" -msgstr "" +msgstr "Ðазвание телефона" #: admin/systems/class_phoneGeneric.inc:63 msgid "A short description of the phone" -msgstr "" +msgstr "Краткое опиÑание телефона" #: admin/systems/class_phoneGeneric.inc:73 #: admin/systems/class_mobilePhoneGeneric.inc:77 @@ -392,7 +393,7 @@ msgstr "Серийный номер" #: admin/systems/class_phoneGeneric.inc:73 msgid "The serial number of the phone" -msgstr "" +msgstr "Серийный номер телефона" #: admin/systems/class_phoneGeneric.inc:77 #: admin/systems/class_mobilePhoneGeneric.inc:95 @@ -401,7 +402,7 @@ msgstr "Ðомер телефона" #: admin/systems/class_phoneGeneric.inc:77 msgid "The telephone number of the phone" -msgstr "" +msgstr "Телефонный номер у Ñтого телефона" #: admin/systems/class_printGeneric.inc:31 msgid "Printer information" @@ -409,11 +410,11 @@ msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ принтере" #: admin/systems/class_printGeneric.inc:62 msgid "The name of the printer" -msgstr "" +msgstr "Ðазвание принтера" #: admin/systems/class_printGeneric.inc:66 msgid "A short description of the printer" -msgstr "" +msgstr "Краткое опиÑание принтера" #: admin/systems/class_printGeneric.inc:72 msgid "Details" @@ -425,7 +426,7 @@ msgstr "МеÑтонахождение принтера" #: admin/systems/class_printGeneric.inc:75 msgid "The location of the printer" -msgstr "" +msgstr "РаÑположение принтера" #: admin/systems/class_printGeneric.inc:79 msgid "Printer URL" @@ -433,7 +434,7 @@ msgstr "URL принтера" #: admin/systems/class_printGeneric.inc:79 msgid "The URL of the printer" -msgstr "" +msgstr "URL принтера" #: admin/systems/class_printGeneric.inc:85 #: admin/systems/class_printGeneric.inc:88 @@ -471,23 +472,23 @@ msgstr "Пути windows" #: admin/systems/class_printGeneric.inc:123 msgid "Inf file" -msgstr "" +msgstr "Inf файл" #: admin/systems/class_printGeneric.inc:123 msgid "Path to windows inf file for this printer" -msgstr "" +msgstr "Путь к inf файлу windows Ð´Ð»Ñ Ñтого принтера" #: admin/systems/class_printGeneric.inc:127 msgid "Driver directory" -msgstr "" +msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð´Ñ€Ð°Ð¹Ð²ÐµÑ€Ð°" #: admin/systems/class_printGeneric.inc:127 msgid "Path to directory that contains windows drivers for this printer" -msgstr "" +msgstr "Путь к директории, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ñодержит windows драйвер Ð´Ð»Ñ Ñтого принтера" #: admin/systems/class_printGeneric.inc:131 msgid "Driver name" -msgstr "" +msgstr "Ð˜Ð¼Ñ Ð´Ñ€Ð°Ð¹Ð²ÐµÑ€Ð°" #: admin/systems/class_printGeneric.inc:131 msgid "Windows name of the printer driver" @@ -1043,11 +1044,11 @@ msgstr "" #: config/systems/class_systemsPluginConfig.inc:43 msgid "Systems RDN" -msgstr "" +msgstr "RDN Ð´Ð»Ñ ÑиÑтем" #: config/systems/class_systemsPluginConfig.inc:43 msgid "Branch in which systems will be stored" -msgstr "" +msgstr "Ветка, в которой ÑиÑтемы будут хранитьÑÑ" #: config/systems/class_systemsPluginConfig.inc:48 msgid "Server RDN" @@ -1083,7 +1084,7 @@ msgstr "Ветка в которой будут хранитьÑÑ Ð¿Ñ€Ð¸Ð½Ñ‚Ðµ #: config/systems/class_systemsPluginConfig.inc:68 msgid "Component RDN" -msgstr "" +msgstr "RDN Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð½ÐµÐ½Ñ‚Ð¾Ð²" #: config/systems/class_systemsPluginConfig.inc:68 msgid "Branch in which network devices will be stored" @@ -1091,11 +1092,11 @@ msgstr "Ветка в которой Ñетевые уÑтройÑтва буд #: config/systems/class_systemsPluginConfig.inc:73 msgid "Phone RDN" -msgstr "" +msgstr "RDN Ð´Ð»Ñ Ñ‚ÐµÐ»ÐµÑ„Ð¾Ð½Ð¾Ð²" #: config/systems/class_systemsPluginConfig.inc:73 msgid "Branch in which phones will be stored" -msgstr "" +msgstr "Ветка, в которой телефоны будут хранитьÑÑ" #: config/systems/class_systemsPluginConfig.inc:78 msgid "Mobile phone RDN" @@ -1131,7 +1132,7 @@ msgstr "Отображаемое Ð¸Ð¼Ñ ÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²ÐºÐ¸" #: config/systems/class_systemsPluginConfig.inc:106 msgid "Encodings" -msgstr "" +msgstr "Кодировки" #: admin/ogroups/goto/termgroup.tpl.c:5 msgid "" diff --git a/systems/locale/ru@petr1708/fusiondirectory.po b/systems/locale/ru@petr1708/fusiondirectory.po index 8898571033..98413a9349 100644 --- a/systems/locale/ru@petr1708/fusiondirectory.po +++ b/systems/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/systems/locale/sv/fusiondirectory.po b/systems/locale/sv/fusiondirectory.po index 3c4aaa0094..66a6a44659 100644 --- a/systems/locale/sv/fusiondirectory.po +++ b/systems/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/systems/locale/ug/fusiondirectory.po b/systems/locale/ug/fusiondirectory.po index 5bf3df1b04..8d2879c417 100644 --- a/systems/locale/ug/fusiondirectory.po +++ b/systems/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/systems/locale/vi_VN/fusiondirectory.po b/systems/locale/vi_VN/fusiondirectory.po index fe32c741aa..7f50dd6609 100644 --- a/systems/locale/vi_VN/fusiondirectory.po +++ b/systems/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/systems/locale/zh/fusiondirectory.po b/systems/locale/zh/fusiondirectory.po index db21bf40b2..68f1f8926d 100644 --- a/systems/locale/zh/fusiondirectory.po +++ b/systems/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/user-reminder/locale/ar/fusiondirectory.po b/user-reminder/locale/ar/fusiondirectory.po index 5d15609e72..0f80f36524 100644 --- a/user-reminder/locale/ar/fusiondirectory.po +++ b/user-reminder/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/ca/fusiondirectory.po b/user-reminder/locale/ca/fusiondirectory.po index 21157accf8..7d7636d936 100644 --- a/user-reminder/locale/ca/fusiondirectory.po +++ b/user-reminder/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/cs_CZ/fusiondirectory.po b/user-reminder/locale/cs_CZ/fusiondirectory.po index 974a4ddb70..a182606eb7 100644 --- a/user-reminder/locale/cs_CZ/fusiondirectory.po +++ b/user-reminder/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "tato poukázka (token) je neplatná" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Nastal problém s poÅ¡tovnÃm serverem – obraÅ¥te se na svého správce systémů." -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "ÚÄet s uživatelským jménem %s nebyl nalezen" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "Bylo nalezeno hned nÄ›kolik úÄtů s uživatelským jménem %s" diff --git a/user-reminder/locale/de/fusiondirectory.po b/user-reminder/locale/de/fusiondirectory.po index 88cbb4b511..87bedf69aa 100644 --- a/user-reminder/locale/de/fusiondirectory.po +++ b/user-reminder/locale/de/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "Das Token ist nicht gültig" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Kontaktieren Sie Ihren Administrator, es gab ein Problem mit dem Mailserver" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/el_GR/fusiondirectory.po b/user-reminder/locale/el_GR/fusiondirectory.po index eb3dcf69a9..498cc51b49 100644 --- a/user-reminder/locale/el_GR/fusiondirectory.po +++ b/user-reminder/locale/el_GR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/en/fusiondirectory.po b/user-reminder/locale/en/fusiondirectory.po index ee94b799e0..f4fdc8f848 100644 --- a/user-reminder/locale/en/fusiondirectory.po +++ b/user-reminder/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/es/fusiondirectory.po b/user-reminder/locale/es/fusiondirectory.po index 71ce808073..c3360019e3 100644 --- a/user-reminder/locale/es/fusiondirectory.po +++ b/user-reminder/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "Esta prenda es invalida" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contacte a su administrador, hubo un problema con el servidor de correo" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/es_CO/fusiondirectory.po b/user-reminder/locale/es_CO/fusiondirectory.po index 9e42b4c375..f90531c271 100644 --- a/user-reminder/locale/es_CO/fusiondirectory.po +++ b/user-reminder/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "Este token es inválido" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contacte a su administrador, hubo un problema con el servidor de correo." -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "No se encontró la cuenta de usuario: \"%s\"" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "Se encontraron varias cuentas identificadas como: \"%s\"" diff --git a/user-reminder/locale/es_VE/fusiondirectory.po b/user-reminder/locale/es_VE/fusiondirectory.po index 1f2ab43d09..26d1e59a45 100644 --- a/user-reminder/locale/es_VE/fusiondirectory.po +++ b/user-reminder/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "Esta prenda es invalida" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contacte a su administrador, hubo un problema con el servidor de correo" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/fa_IR/fusiondirectory.po b/user-reminder/locale/fa_IR/fusiondirectory.po index 2a68f4bc08..1acece4d88 100644 --- a/user-reminder/locale/fa_IR/fusiondirectory.po +++ b/user-reminder/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/fi_FI/fusiondirectory.po b/user-reminder/locale/fi_FI/fusiondirectory.po index 0b5ee67630..e52c112b8b 100644 --- a/user-reminder/locale/fi_FI/fusiondirectory.po +++ b/user-reminder/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/fr/fusiondirectory.po b/user-reminder/locale/fr/fusiondirectory.po index c526b0a5d8..3f04887467 100644 --- a/user-reminder/locale/fr/fusiondirectory.po +++ b/user-reminder/locale/fr/fusiondirectory.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 08:30+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" "MIME-Version: 1.0\n" @@ -22,16 +22,16 @@ msgstr "" msgid "This token is invalid" msgstr "Le jeton n'est pas valide" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contactez votre administrateur système, il y a eu un problème avec le serveur de courriel" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "Aucun compte utilisateur trouvé avec l'identifiant \"%s\"" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "Plusieurs comptes trouvés avec l’identifiant \"%s\"" diff --git a/user-reminder/locale/hu_HU/fusiondirectory.po b/user-reminder/locale/hu_HU/fusiondirectory.po index 5297e21a61..e7b9972780 100644 --- a/user-reminder/locale/hu_HU/fusiondirectory.po +++ b/user-reminder/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/id/fusiondirectory.po b/user-reminder/locale/id/fusiondirectory.po index 4d753ea8ef..2e93001605 100644 --- a/user-reminder/locale/id/fusiondirectory.po +++ b/user-reminder/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/it_IT/fusiondirectory.po b/user-reminder/locale/it_IT/fusiondirectory.po index c464c85011..3104e2656b 100644 --- a/user-reminder/locale/it_IT/fusiondirectory.po +++ b/user-reminder/locale/it_IT/fusiondirectory.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-10 16:51+0000\n" +"Last-Translator: Paola Penati <penati@avaya.com>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,16 +22,16 @@ msgstr "" msgid "This token is invalid" msgstr "Questo token non è valido" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contattare l'amministratore, c'è stato un problema con il server di posta elettronica" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "Alcun account trovato con login \"%s\" " -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "Trovati più accounts con login \"%s\"" diff --git a/user-reminder/locale/lv/fusiondirectory.po b/user-reminder/locale/lv/fusiondirectory.po index b17abf1daa..5a7ef39968 100644 --- a/user-reminder/locale/lv/fusiondirectory.po +++ b/user-reminder/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/nb/fusiondirectory.po b/user-reminder/locale/nb/fusiondirectory.po index 9b4bc9ae1b..1501c2390e 100644 --- a/user-reminder/locale/nb/fusiondirectory.po +++ b/user-reminder/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/nl/fusiondirectory.po b/user-reminder/locale/nl/fusiondirectory.po index 43b48a2a80..67f3edf35d 100644 --- a/user-reminder/locale/nl/fusiondirectory.po +++ b/user-reminder/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "Deze token is niet geldig" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Contacteer je systeembeheerder, er was een probleem met de mailserver" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/pl/fusiondirectory.po b/user-reminder/locale/pl/fusiondirectory.po index a3e0bd88f5..ac4248d190 100644 --- a/user-reminder/locale/pl/fusiondirectory.po +++ b/user-reminder/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/pt/fusiondirectory.po b/user-reminder/locale/pt/fusiondirectory.po index 0acd2a7619..1e965ad09c 100644 --- a/user-reminder/locale/pt/fusiondirectory.po +++ b/user-reminder/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/pt_BR/fusiondirectory.po b/user-reminder/locale/pt_BR/fusiondirectory.po index 8685adb547..c2b32f163b 100644 --- a/user-reminder/locale/pt_BR/fusiondirectory.po +++ b/user-reminder/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Entre em contato com o administrador, houve um problema com o servidor de e-mail." -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po index f664d156f4..70e1f506df 100644 --- a/user-reminder/locale/ru/fusiondirectory.po +++ b/user-reminder/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "СвÑжитеÑÑŒ Ñ Ð²Ð°ÑˆÐ¸Ð¼ ÑиÑтемным админиÑтратором, были проблемы Ñ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¼ Ñервером" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" -msgstr "" +msgstr "Ðе найден аккаунт Ñ Ð»Ð¾Ð³Ð¸Ð½Ð¾Ð¼ \"%s\"" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "Ðайдено множеÑтво учетных запиÑей Ñ Ð»Ð¾Ð³Ð¸Ð½Ð¾Ð¼ \"%s\"" diff --git a/user-reminder/locale/ru@petr1708/fusiondirectory.po b/user-reminder/locale/ru@petr1708/fusiondirectory.po index 9d584b10e5..c7b2326c92 100644 --- a/user-reminder/locale/ru@petr1708/fusiondirectory.po +++ b/user-reminder/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/sv/fusiondirectory.po b/user-reminder/locale/sv/fusiondirectory.po index ef9eedb849..03bc211d30 100644 --- a/user-reminder/locale/sv/fusiondirectory.po +++ b/user-reminder/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "Kontakta din administratör, det uppstod ett problem med epostservern" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/ug/fusiondirectory.po b/user-reminder/locale/ug/fusiondirectory.po index bf66b4f8a0..a6501b6543 100644 --- a/user-reminder/locale/ug/fusiondirectory.po +++ b/user-reminder/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/vi_VN/fusiondirectory.po b/user-reminder/locale/vi_VN/fusiondirectory.po index ec1779bca2..4127610abe 100644 --- a/user-reminder/locale/vi_VN/fusiondirectory.po +++ b/user-reminder/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/user-reminder/locale/zh/fusiondirectory.po b/user-reminder/locale/zh/fusiondirectory.po index f8c294cb3f..d2eaa26f2b 100644 --- a/user-reminder/locale/zh/fusiondirectory.po +++ b/user-reminder/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" @@ -21,16 +21,16 @@ msgstr "" msgid "This token is invalid" msgstr "" -#: html/class_expiredUserPostpone.inc:193 +#: html/class_expiredUserPostpone.inc:195 msgid "Contact your administrator, there was a problem with mail server" msgstr "" -#: html/class_expiredUserPostpone.inc:204 +#: html/class_expiredUserPostpone.inc:206 #, php-format msgid "Did not find an account with login \"%s\"" msgstr "" -#: html/class_expiredUserPostpone.inc:207 +#: html/class_expiredUserPostpone.inc:209 #, php-format msgid "Found multiple accounts with login \"%s\"" msgstr "" diff --git a/weblink/locale/ar/fusiondirectory.po b/weblink/locale/ar/fusiondirectory.po index 9783a6c7a9..74c9212c2a 100644 --- a/weblink/locale/ar/fusiondirectory.po +++ b/weblink/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/weblink/locale/ca/fusiondirectory.po b/weblink/locale/ca/fusiondirectory.po index a2febb2226..0f84b553b2 100644 --- a/weblink/locale/ca/fusiondirectory.po +++ b/weblink/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/weblink/locale/cs_CZ/fusiondirectory.po b/weblink/locale/cs_CZ/fusiondirectory.po index 1855c0c813..111e648b73 100644 --- a/weblink/locale/cs_CZ/fusiondirectory.po +++ b/weblink/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/weblink/locale/de/fusiondirectory.po b/weblink/locale/de/fusiondirectory.po index ead224bcb6..0f2582b4be 100644 --- a/weblink/locale/de/fusiondirectory.po +++ b/weblink/locale/de/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/weblink/locale/el_GR/fusiondirectory.po b/weblink/locale/el_GR/fusiondirectory.po index 8edf5c3594..6fcb4edd7c 100644 --- a/weblink/locale/el_GR/fusiondirectory.po +++ b/weblink/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/weblink/locale/en/fusiondirectory.po b/weblink/locale/en/fusiondirectory.po index bbc4fb59f1..7ef7251019 100644 --- a/weblink/locale/en/fusiondirectory.po +++ b/weblink/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/weblink/locale/es/fusiondirectory.po b/weblink/locale/es/fusiondirectory.po index cf3f31da92..17e8578bc8 100644 --- a/weblink/locale/es/fusiondirectory.po +++ b/weblink/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/weblink/locale/es_CO/fusiondirectory.po b/weblink/locale/es_CO/fusiondirectory.po index 5bda262ff3..4f6b9e7265 100644 --- a/weblink/locale/es_CO/fusiondirectory.po +++ b/weblink/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/weblink/locale/es_VE/fusiondirectory.po b/weblink/locale/es_VE/fusiondirectory.po index 951c3eb8a5..6a195aad09 100644 --- a/weblink/locale/es_VE/fusiondirectory.po +++ b/weblink/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/weblink/locale/fa_IR/fusiondirectory.po b/weblink/locale/fa_IR/fusiondirectory.po index a785b22f12..b45157153e 100644 --- a/weblink/locale/fa_IR/fusiondirectory.po +++ b/weblink/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/weblink/locale/fi_FI/fusiondirectory.po b/weblink/locale/fi_FI/fusiondirectory.po index 282ddf5c5c..98d73a4c4b 100644 --- a/weblink/locale/fi_FI/fusiondirectory.po +++ b/weblink/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/weblink/locale/fr/fusiondirectory.po b/weblink/locale/fr/fusiondirectory.po index 9ba1703e1a..70de6f50d1 100644 --- a/weblink/locale/fr/fusiondirectory.po +++ b/weblink/locale/fr/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/weblink/locale/hu_HU/fusiondirectory.po b/weblink/locale/hu_HU/fusiondirectory.po index e387a83dcd..8f4d079993 100644 --- a/weblink/locale/hu_HU/fusiondirectory.po +++ b/weblink/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/weblink/locale/id/fusiondirectory.po b/weblink/locale/id/fusiondirectory.po index ebc6ed94bd..9d4346169e 100644 --- a/weblink/locale/id/fusiondirectory.po +++ b/weblink/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/weblink/locale/it_IT/fusiondirectory.po b/weblink/locale/it_IT/fusiondirectory.po index 095eba3e35..c067a6e27e 100644 --- a/weblink/locale/it_IT/fusiondirectory.po +++ b/weblink/locale/it_IT/fusiondirectory.po @@ -4,11 +4,12 @@ # # Translators: # Paola Penati <penati@avaya.com>, 2015 +# Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/weblink/locale/lv/fusiondirectory.po b/weblink/locale/lv/fusiondirectory.po index b32a21c5a9..f0e791e622 100644 --- a/weblink/locale/lv/fusiondirectory.po +++ b/weblink/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/weblink/locale/nb/fusiondirectory.po b/weblink/locale/nb/fusiondirectory.po index 617d132a94..62a8786c68 100644 --- a/weblink/locale/nb/fusiondirectory.po +++ b/weblink/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/weblink/locale/nl/fusiondirectory.po b/weblink/locale/nl/fusiondirectory.po index a3e8fe366c..bdfb15b313 100644 --- a/weblink/locale/nl/fusiondirectory.po +++ b/weblink/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/weblink/locale/pl/fusiondirectory.po b/weblink/locale/pl/fusiondirectory.po index 82c2ea03c6..0e674b3568 100644 --- a/weblink/locale/pl/fusiondirectory.po +++ b/weblink/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/weblink/locale/pt/fusiondirectory.po b/weblink/locale/pt/fusiondirectory.po index ce5834df63..52fd53ab98 100644 --- a/weblink/locale/pt/fusiondirectory.po +++ b/weblink/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/weblink/locale/pt_BR/fusiondirectory.po b/weblink/locale/pt_BR/fusiondirectory.po index 3e9c8149b7..1992aaf211 100644 --- a/weblink/locale/pt_BR/fusiondirectory.po +++ b/weblink/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:06+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/weblink/locale/ru/fusiondirectory.po b/weblink/locale/ru/fusiondirectory.po index 8c2f960fb1..eafab49672 100644 --- a/weblink/locale/ru/fusiondirectory.po +++ b/weblink/locale/ru/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:07+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" diff --git a/weblink/locale/ru@petr1708/fusiondirectory.po b/weblink/locale/ru@petr1708/fusiondirectory.po index 53e835c4ef..0dec0b18cf 100644 --- a/weblink/locale/ru@petr1708/fusiondirectory.po +++ b/weblink/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/weblink/locale/sv/fusiondirectory.po b/weblink/locale/sv/fusiondirectory.po index 95b3a63554..43436d8b62 100644 --- a/weblink/locale/sv/fusiondirectory.po +++ b/weblink/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/weblink/locale/ug/fusiondirectory.po b/weblink/locale/ug/fusiondirectory.po index bc99660d42..4179799c54 100644 --- a/weblink/locale/ug/fusiondirectory.po +++ b/weblink/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/weblink/locale/vi_VN/fusiondirectory.po b/weblink/locale/vi_VN/fusiondirectory.po index e004a2add1..233f604ac9 100644 --- a/weblink/locale/vi_VN/fusiondirectory.po +++ b/weblink/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/weblink/locale/zh/fusiondirectory.po b/weblink/locale/zh/fusiondirectory.po index 7586df472d..4f962c660d 100644 --- a/weblink/locale/zh/fusiondirectory.po +++ b/weblink/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-01-22 16:05+0000\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" diff --git a/webservice/locale/ar/fusiondirectory.po b/webservice/locale/ar/fusiondirectory.po index 47d289dfe5..f12ef886ff 100644 --- a/webservice/locale/ar/fusiondirectory.po +++ b/webservice/locale/ar/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" diff --git a/webservice/locale/ca/fusiondirectory.po b/webservice/locale/ca/fusiondirectory.po index 14287c823c..21816f9af9 100644 --- a/webservice/locale/ca/fusiondirectory.po +++ b/webservice/locale/ca/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" diff --git a/webservice/locale/cs_CZ/fusiondirectory.po b/webservice/locale/cs_CZ/fusiondirectory.po index 5289b8a3ae..19d609ee9f 100644 --- a/webservice/locale/cs_CZ/fusiondirectory.po +++ b/webservice/locale/cs_CZ/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" diff --git a/webservice/locale/de/fusiondirectory.po b/webservice/locale/de/fusiondirectory.po index 90b12d74c5..9cbd7bdbff 100644 --- a/webservice/locale/de/fusiondirectory.po +++ b/webservice/locale/de/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" diff --git a/webservice/locale/el_GR/fusiondirectory.po b/webservice/locale/el_GR/fusiondirectory.po index d2f4d48ef2..6bb29623e2 100644 --- a/webservice/locale/el_GR/fusiondirectory.po +++ b/webservice/locale/el_GR/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" diff --git a/webservice/locale/en/fusiondirectory.po b/webservice/locale/en/fusiondirectory.po index 6932b8b478..0da2ea7376 100644 --- a/webservice/locale/en/fusiondirectory.po +++ b/webservice/locale/en/fusiondirectory.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory VERSION\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" "Language-Team: English\n" diff --git a/webservice/locale/es/fusiondirectory.po b/webservice/locale/es/fusiondirectory.po index a113d1a8e4..196900f805 100644 --- a/webservice/locale/es/fusiondirectory.po +++ b/webservice/locale/es/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" diff --git a/webservice/locale/es_CO/fusiondirectory.po b/webservice/locale/es_CO/fusiondirectory.po index 6285c15143..020460dc56 100644 --- a/webservice/locale/es_CO/fusiondirectory.po +++ b/webservice/locale/es_CO/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" diff --git a/webservice/locale/es_VE/fusiondirectory.po b/webservice/locale/es_VE/fusiondirectory.po index 783cbcd7f8..d2c026e42f 100644 --- a/webservice/locale/es_VE/fusiondirectory.po +++ b/webservice/locale/es_VE/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" diff --git a/webservice/locale/fa_IR/fusiondirectory.po b/webservice/locale/fa_IR/fusiondirectory.po index f901726fdd..2770c2ac6f 100644 --- a/webservice/locale/fa_IR/fusiondirectory.po +++ b/webservice/locale/fa_IR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" diff --git a/webservice/locale/fi_FI/fusiondirectory.po b/webservice/locale/fi_FI/fusiondirectory.po index de5d66aaba..4030b95d49 100644 --- a/webservice/locale/fi_FI/fusiondirectory.po +++ b/webservice/locale/fi_FI/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" diff --git a/webservice/locale/fr/fusiondirectory.po b/webservice/locale/fr/fusiondirectory.po index 3f5b87dfa4..2c41dcd43c 100644 --- a/webservice/locale/fr/fusiondirectory.po +++ b/webservice/locale/fr/fusiondirectory.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" diff --git a/webservice/locale/hu_HU/fusiondirectory.po b/webservice/locale/hu_HU/fusiondirectory.po index 09e919c3b1..c360ed6bf0 100644 --- a/webservice/locale/hu_HU/fusiondirectory.po +++ b/webservice/locale/hu_HU/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" diff --git a/webservice/locale/id/fusiondirectory.po b/webservice/locale/id/fusiondirectory.po index 86a7380038..87a10f843f 100644 --- a/webservice/locale/id/fusiondirectory.po +++ b/webservice/locale/id/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" diff --git a/webservice/locale/it_IT/fusiondirectory.po b/webservice/locale/it_IT/fusiondirectory.po index a320bb8d79..d5b738fc87 100644 --- a/webservice/locale/it_IT/fusiondirectory.po +++ b/webservice/locale/it_IT/fusiondirectory.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Paola Penati <penati@avaya.com>, 2016 +# Paola Penati <penati@avaya.com>, 2015-2016 # Paola Penati <penati@avaya.com>, 2015 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" diff --git a/webservice/locale/lv/fusiondirectory.po b/webservice/locale/lv/fusiondirectory.po index 3e81e8e01d..9e87ee37d5 100644 --- a/webservice/locale/lv/fusiondirectory.po +++ b/webservice/locale/lv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" diff --git a/webservice/locale/nb/fusiondirectory.po b/webservice/locale/nb/fusiondirectory.po index afa841e6da..a6cbf329bd 100644 --- a/webservice/locale/nb/fusiondirectory.po +++ b/webservice/locale/nb/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" diff --git a/webservice/locale/nl/fusiondirectory.po b/webservice/locale/nl/fusiondirectory.po index 7679d1eb69..036a40f6a3 100644 --- a/webservice/locale/nl/fusiondirectory.po +++ b/webservice/locale/nl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" diff --git a/webservice/locale/pl/fusiondirectory.po b/webservice/locale/pl/fusiondirectory.po index 4441c6c2ed..844ce0b7d3 100644 --- a/webservice/locale/pl/fusiondirectory.po +++ b/webservice/locale/pl/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" diff --git a/webservice/locale/pt/fusiondirectory.po b/webservice/locale/pt/fusiondirectory.po index 45ed1613d6..c5919f2b21 100644 --- a/webservice/locale/pt/fusiondirectory.po +++ b/webservice/locale/pt/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" diff --git a/webservice/locale/pt_BR/fusiondirectory.po b/webservice/locale/pt_BR/fusiondirectory.po index 88bf904ca7..a3a047326d 100644 --- a/webservice/locale/pt_BR/fusiondirectory.po +++ b/webservice/locale/pt_BR/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" diff --git a/webservice/locale/ru/fusiondirectory.po b/webservice/locale/ru/fusiondirectory.po index df72f21fb1..686e5140e3 100644 --- a/webservice/locale/ru/fusiondirectory.po +++ b/webservice/locale/ru/fusiondirectory.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" +"PO-Revision-Date: 2016-08-08 19:04+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: html/jsonrpc.php:52 #, php-format msgid "FusionDirectory configuration %s/%s is not readable. Aborted." -msgstr "" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ FusionDirectory %s/%s не читаема. Прервано." #: html/jsonrpc.php:62 #, php-format diff --git a/webservice/locale/ru@petr1708/fusiondirectory.po b/webservice/locale/ru@petr1708/fusiondirectory.po index 5e768117fd..c13d1eaad5 100644 --- a/webservice/locale/ru@petr1708/fusiondirectory.po +++ b/webservice/locale/ru@petr1708/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" diff --git a/webservice/locale/sv/fusiondirectory.po b/webservice/locale/sv/fusiondirectory.po index da7d142e9b..f36710ce56 100644 --- a/webservice/locale/sv/fusiondirectory.po +++ b/webservice/locale/sv/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" diff --git a/webservice/locale/ug/fusiondirectory.po b/webservice/locale/ug/fusiondirectory.po index f535e38c20..c58fd1b70a 100644 --- a/webservice/locale/ug/fusiondirectory.po +++ b/webservice/locale/ug/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" diff --git a/webservice/locale/vi_VN/fusiondirectory.po b/webservice/locale/vi_VN/fusiondirectory.po index 2a385ede9e..d33eb2cbba 100644 --- a/webservice/locale/vi_VN/fusiondirectory.po +++ b/webservice/locale/vi_VN/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" diff --git a/webservice/locale/zh/fusiondirectory.po b/webservice/locale/zh/fusiondirectory.po index f029f60939..9730402389 100644 --- a/webservice/locale/zh/fusiondirectory.po +++ b/webservice/locale/zh/fusiondirectory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-02 08:56+0200\n" +"POT-Creation-Date: 2016-08-11 21:08+0200\n" "PO-Revision-Date: 2016-06-28 11:05+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" -- GitLab From 3060c21a2515c40a34a5f33269d65f6165980c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 16 Aug 2016 10:50:25 +0200 Subject: [PATCH 17/25] Fixes #5068 Removed PHP4 styled constructor in FAI plugin --- fai/admin/fai/packageSelect/class_filterFAIcustoms.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc b/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc index 82311f4717..deddbede5f 100644 --- a/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc +++ b/fai/admin/fai/packageSelect/class_filterFAIcustoms.inc @@ -18,16 +18,16 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ -class filterFAIcustoms extends filter { - +class filterFAIcustoms extends filter +{ var $customs = array(); - function filterFAIcustoms($filename) + function __construct($filename) { $release = session::get('packageSelect_Release'); $this->customs = serviceRepository::getCustomReleases($release); - parent::filter($filename); + parent::__construct($filename); } function load($filename) @@ -57,6 +57,6 @@ class filterFAIcustoms extends filter { } $smarty->assign('customs', $customs); - return filter::render(); + return parent::render(); } } -- GitLab From 1ce2804e9c816512b416edefef2c5256327e6e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 16 Aug 2016 10:55:40 +0200 Subject: [PATCH 18/25] Fixes #5069 Removed PHP4 styled constructor in sieve class --- mail/personal/mail/class_sieve.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail/personal/mail/class_sieve.inc b/mail/personal/mail/class_sieve.inc index 559508c00f..1253ebee57 100644 --- a/mail/personal/mail/class_sieve.inc +++ b/mail/personal/mail/class_sieve.inc @@ -200,7 +200,7 @@ class sieve } /* end else */ } /* end get_response() */ - function sieve($host, $port, $user, $pass, $auth="",$options ="", $auth_types="PLAIN DIGEST-MD5") + function __construct($host, $port, $user, $pass, $auth="",$options ="", $auth_types="PLAIN DIGEST-MD5") { $this->host=$host; $this->port=$port; -- GitLab From 17f8384436e03dc4529d247f1d06d5bec253cfda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 17 Aug 2016 09:43:11 +0200 Subject: [PATCH 19/25] Removed unused phoneSelect --- .../systems/phoneSelect/class_phoneSelect.inc | 58 ------------- .../phoneSelect/phoneSelect-filter.tpl | 40 --------- .../phoneSelect/phoneSelect-filter.xml | 56 ------------ .../systems/phoneSelect/phoneSelect-list.tpl | 30 ------- .../systems/phoneSelect/phoneSelect-list.xml | 86 ------------------- 5 files changed, 270 deletions(-) delete mode 100644 systems/admin/systems/phoneSelect/class_phoneSelect.inc delete mode 100644 systems/admin/systems/phoneSelect/phoneSelect-filter.tpl delete mode 100644 systems/admin/systems/phoneSelect/phoneSelect-filter.xml delete mode 100644 systems/admin/systems/phoneSelect/phoneSelect-list.tpl delete mode 100644 systems/admin/systems/phoneSelect/phoneSelect-list.xml diff --git a/systems/admin/systems/phoneSelect/class_phoneSelect.inc b/systems/admin/systems/phoneSelect/class_phoneSelect.inc deleted file mode 100644 index 7206ce8cf4..0000000000 --- a/systems/admin/systems/phoneSelect/class_phoneSelect.inc +++ /dev/null @@ -1,58 +0,0 @@ -<?php -/* - This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2013-2016 FusionDirectory - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -class phoneSelect extends management -{ - protected $skipFooter = TRUE; - protected $skipHeader = TRUE; - protected $USE_phones; - protected $USE_mobiles; - public $mobileDialog; - - function __construct($mobileDialog) - { - $this->mobileDialog = $mobileDialog; - $this->USE_phones = !$mobileDialog; - $this->USE_mobiles = class_available('mobilePhoneGeneric'); - - $this->storagePoints = array(get_ou("phoneRDN"), get_ou("mobilePhoneRDN")); - - $filter = new filter(get_template_path("phoneSelect-filter.xml", TRUE, dirname(__FILE__))); - $filter->setObjectStorage($this->storagePoints); - - $filter->elementValues['PHONE'] = $this->USE_phones; - $filter->elementValues['MOBILEPHONE'] = $this->mobileDialog; - $this->setFilter($filter); - - // Build headpage - $headpage = new listing(get_template_path("phoneSelect-list.xml", TRUE, dirname(__FILE__))); - $headpage->setFilter($filter); - parent::__construct("phones", $headpage); - } - - function execute() - { - $smarty = get_smarty(); - $smarty->assign('USE_phones', $this->USE_phones); - $smarty->assign('USE_mobiles', $this->USE_mobiles); - return parent::execute(); - } -} -?> diff --git a/systems/admin/systems/phoneSelect/phoneSelect-filter.tpl b/systems/admin/systems/phoneSelect/phoneSelect-filter.tpl deleted file mode 100644 index 0e695d4238..0000000000 --- a/systems/admin/systems/phoneSelect/phoneSelect-filter.tpl +++ /dev/null @@ -1,40 +0,0 @@ -<div class="contentboxh"> - <p class="contentboxh"> - {t}Filter{/t} - </p> -</div> - -<div class="contentboxb"> - - {if $USE_phones} - {if $USE_mobiles} - {$PHONE}<label for="PHONE"> {t}Show phones{/t}</label><br/> - {$MOBILEPHONE}<label for="MOBILEPHONE"> {t}Show mobile phones{/t}</label><br/> - {/if} - {/if} - - <div style="display:block;width=100%;border-top:1px solid #AAAAAA;"></div> - - {$SCOPE} - - <table style="width:100%;border-top:1px solid #B0B0B0;"> - <tr> - <td> - <label for="NAME"> - <img src="geticon.php?context=actions&icon=system-search&size=16" align=middle> {t}Name{/t} - </label> - </td> - <td> - {$NAME} - </td> - </tr> - </table> - - <table width="100%" style="background:#EEEEEE;border-top:1px solid #B0B0B0;"> - <tr> - <td style="width:100%;text-align:right;"> - {$APPLY} - </td> - </tr> - </table> -</div> diff --git a/systems/admin/systems/phoneSelect/phoneSelect-filter.xml b/systems/admin/systems/phoneSelect/phoneSelect-filter.xml deleted file mode 100644 index 33e8135561..0000000000 --- a/systems/admin/systems/phoneSelect/phoneSelect-filter.xml +++ /dev/null @@ -1,56 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<filterdef> - <definition> - <category>systems</category> - <template>../plugins/admin/systems/phoneSelect/phoneSelect-filter.tpl</template> - <initial>true</initial> - </definition> - - <search> - <query> - <backend>LDAPBlacklist</backend> - <filter>(&(|$PHONE$MOBILEPHONE)$NAME)</filter> - <attribute>dn</attribute> - <attribute>objectClass</attribute> - <attribute>cn</attribute> - <attribute>telephoneNumber</attribute> - <attribute>ipHostNumber</attribute> - </query> - <scope>auto</scope> - </search> - - <element> - <type>textfield</type> - <tag>NAME</tag> - <size>20</size> - <maxlength>60</maxlength> - <default></default> - <unset></unset> - <set>(|(cn=*$*)(goFonMSN=*$*)(goFonDefaultIP=*$*)(telephoneNumber=*$*)(ipHostNumber=*$*))</set> - <alphabet>true</alphabet> - <autocomplete> - <backend>LDAPBlacklist</backend> - <filter>(|(cn=*$NAME*)(goFonMSN=*$NAME*)(goFonDefaultIP=*$NAME*)(telephoneNumber=*$NAME*)(ipHostNumber=*$NAME*))</filter> - <attribute>cn</attribute> - <frequency>0.5</frequency> - <characters>3</characters> - </autocomplete> - </element> - - <element> - <type>checkbox</type> - <tag>PHONE</tag> - <default>true</default> - <unset></unset> - <set>(objectClass=fdPhone)</set> - </element> - - <element> - <type>checkbox</type> - <tag>MOBILEPHONE</tag> - <default>false</default> - <unset></unset> - <set>(objectClass=fdMobilePhone)</set> - </element> -</filterdef> diff --git a/systems/admin/systems/phoneSelect/phoneSelect-list.tpl b/systems/admin/systems/phoneSelect/phoneSelect-list.tpl deleted file mode 100644 index 63ce1a56f9..0000000000 --- a/systems/admin/systems/phoneSelect/phoneSelect-list.tpl +++ /dev/null @@ -1,30 +0,0 @@ -<table style="width:100%;height:100%; vertical-align:top; text-align:left;" cellpadding=2> - <tr> - <td style="vertical-align:top; width:100%;"> - <div class="contentboxh"> - <p class="contentboxh"> {$HEADLINE} {$SIZELIMIT}</p> - </div> - - <div class="contentboxb"> - <div style='background:white;padding:3px;'> - <table><tr> - <td>{$ROOT} </td><td>{$BACK} </td><td>{$HOME} </td><td>{$RELOAD} </td><td>{$SEPARATOR} </td><td>{t}Base{/t} {$BASE} </td> - </tr></table> - </div> - </div> - - <div style='height:4px;'> - </div> - {$LIST} - </td> - <td style='vertical-align:top;min-width:250px'> - {$FILTER} - </td> - </tr> -</table> - -<p class="plugbottom"> - <input type=submit name="select_phone_cancel" value="{msgPool type=cancelButton}"/> -</p> - -<input type="hidden" name="ignore"> diff --git a/systems/admin/systems/phoneSelect/phoneSelect-list.xml b/systems/admin/systems/phoneSelect/phoneSelect-list.xml deleted file mode 100644 index 7b4430754f..0000000000 --- a/systems/admin/systems/phoneSelect/phoneSelect-list.xml +++ /dev/null @@ -1,86 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<list> - <definition> - <departmentBrowser>true</departmentBrowser> - <departmentRootVisible>false</departmentRootVisible> - <baseMode>true</baseMode> - <multiSelect>false</multiSelect> - <template>../plugins/admin/systems/phoneSelect/phoneSelect-list.tpl</template> - <label>Please select the desired entries</label> - <defaultSortColumn>1</defaultSortColumn> - - <objectType> - <label>Phone</label> - <objectClass>fdPhone</objectClass> - <category>phone</category> - <class>phoneGeneric</class> - <image>geticon.php?context=devices&icon=telephone&size=16</image> - </objectType> - - <objectType> - <label>Mobile phone</label> - <objectClass>fdMobilePhone</objectClass> - <category>mobilePhone</category> - <class>mobilePhoneGeneric</class> - <image>geticon.php?context=devices&icon=phone&size=16</image> - </objectType> - - </definition> - - <table> - <layout>|20px;c||||80px;r|</layout> - - <department> - <value>%{filter:objectType(dn,objectClass)}</value> - </department> - - <department> - <value>%{filter:departmentLink(row,dn,description)}</value> - <span>1</span> - </department> - - <column> - <value>%{filter:objectType(dn,objectClass)}</value> - </column> - - <column> - <label>Name</label> - <sortAttribute>cn</sortAttribute> - <sortType>string</sortType> - <value>%{cn}</value> - <export>true</export> - </column> - - <column> - <label>Number</label> - <sortType>string</sortType> - <value>%{telephoneNumber}%{goFonMSN}</value> - <export>true</export> - </column> - - <column> - <label>IP</label> - <sortType>string</sortType> - <value>%{ipHostNumber}%{goFonDefaultIP}</value> - <export>true</export> - </column> - - <column> - <label>Actions</label> - <value>%{filter:actions(dn,row,objectClass)}</value> - </column> - </table> - - <actionmenu> - </actionmenu> - - <actiontriggers snapshot="false" copypaste="false"> - <action> - <name>selectPhone</name> - <type>entry</type> - <image>geticon.php?context=actions&icon=document-edit&size=16</image> - <label>Select this number</label> - </action> - </actiontriggers> -</list> -- GitLab From e5bbe6987773c8b7f23f518237e64d7924e530a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 3 Aug 2016 09:39:14 +0200 Subject: [PATCH 20/25] Fixes #5045 Removed apache2 plugin Conflicts: apache2/locale/ar/fusiondirectory.po apache2/locale/ca/fusiondirectory.po apache2/locale/cs_CZ/fusiondirectory.po apache2/locale/de/fusiondirectory.po apache2/locale/el_GR/fusiondirectory.po apache2/locale/en/fusiondirectory.po apache2/locale/es/fusiondirectory.po apache2/locale/es_VE/fusiondirectory.po apache2/locale/fa_IR/fusiondirectory.po apache2/locale/fr/fusiondirectory.po apache2/locale/id/fusiondirectory.po apache2/locale/it_IT/fusiondirectory.po apache2/locale/lv/fusiondirectory.po apache2/locale/nb/fusiondirectory.po apache2/locale/nl/fusiondirectory.po apache2/locale/pl/fusiondirectory.po apache2/locale/pt/fusiondirectory.po apache2/locale/pt_BR/fusiondirectory.po apache2/locale/ru/fusiondirectory.po apache2/locale/ru@petr1708/fusiondirectory.po apache2/locale/sv/fusiondirectory.po apache2/locale/ug/fusiondirectory.po apache2/locale/vi_VN/fusiondirectory.po apache2/locale/zh/fusiondirectory.po --- .../apache2/class_serviceApacheVhost.inc | 90 ---- .../apache2/class_serviceApacheVhostEdit.inc | 138 ----- .../class_serviceApacheVhostManagement.inc | 96 ---- .../admin/systems/services/apache2/remove.tpl | 18 - .../apache2/serviceApacheVhostEdit-filter.tpl | 31 -- .../apache2/serviceApacheVhostEdit-filter.xml | 40 -- .../apache2/serviceApacheVhostEdit-list.tpl | 34 -- .../apache2/serviceApacheVhostEdit-list.xml | 127 ----- .../apache2/serviceApacheVhostEditFooter.tpl | 6 - .../apache2/tabs_serviceApacheVhostEdit.inc | 26 - .../contrib/openldap/mod_vhost_ldap.schema | 68 --- .../themes/breezy/icons/16/apps/apache.png | Bin 571 -> 0 bytes .../themes/breezy/icons/48/apps/apache.png | Bin 1959 -> 0 bytes .../html/themes/breezy/svg/16/apps/apache.svg | 502 ------------------ .../html/themes/breezy/svg/48/apps/apache.svg | 502 ------------------ .../html/themes/legacy/icons/16/apache.png | Bin 556 -> 0 bytes .../html/themes/legacy/icons/48/apache.png | Bin 4507 -> 0 bytes apache2/locale/ar/fusiondirectory.po | 189 ------- apache2/locale/ca/fusiondirectory.po | 189 ------- apache2/locale/cs_CZ/fusiondirectory.po | 190 ------- apache2/locale/de/fusiondirectory.po | 189 ------- apache2/locale/el_GR/fusiondirectory.po | 191 ------- apache2/locale/en/fusiondirectory.po | 189 ------- apache2/locale/es/fusiondirectory.po | 189 ------- apache2/locale/es_CO/fusiondirectory.po | 189 ------- apache2/locale/es_VE/fusiondirectory.po | 189 ------- apache2/locale/fa_IR/fusiondirectory.po | 189 ------- apache2/locale/fi_FI/fusiondirectory.po | 191 ------- apache2/locale/fr/fusiondirectory.po | 190 ------- apache2/locale/hu_HU/fusiondirectory.po | 189 ------- apache2/locale/id/fusiondirectory.po | 189 ------- apache2/locale/it_IT/fusiondirectory.po | 191 ------- apache2/locale/lv/fusiondirectory.po | 189 ------- apache2/locale/nb/fusiondirectory.po | 189 ------- apache2/locale/nl/fusiondirectory.po | 189 ------- apache2/locale/pl/fusiondirectory.po | 189 ------- apache2/locale/pt/fusiondirectory.po | 189 ------- apache2/locale/pt_BR/fusiondirectory.po | 189 ------- apache2/locale/ru/fusiondirectory.po | 189 ------- apache2/locale/ru@petr1708/fusiondirectory.po | 189 ------- apache2/locale/sv/fusiondirectory.po | 189 ------- apache2/locale/ug/fusiondirectory.po | 189 ------- apache2/locale/vi_VN/fusiondirectory.po | 189 ------- apache2/locale/zh/fusiondirectory.po | 189 ------- 44 files changed, 6789 deletions(-) delete mode 100644 apache2/admin/systems/services/apache2/class_serviceApacheVhost.inc delete mode 100644 apache2/admin/systems/services/apache2/class_serviceApacheVhostEdit.inc delete mode 100644 apache2/admin/systems/services/apache2/class_serviceApacheVhostManagement.inc delete mode 100644 apache2/admin/systems/services/apache2/remove.tpl delete mode 100644 apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl delete mode 100644 apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.xml delete mode 100644 apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl delete mode 100644 apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.xml delete mode 100644 apache2/admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl delete mode 100644 apache2/admin/systems/services/apache2/tabs_serviceApacheVhostEdit.inc delete mode 100644 apache2/contrib/openldap/mod_vhost_ldap.schema delete mode 100644 apache2/html/themes/breezy/icons/16/apps/apache.png delete mode 100644 apache2/html/themes/breezy/icons/48/apps/apache.png delete mode 100644 apache2/html/themes/breezy/svg/16/apps/apache.svg delete mode 100644 apache2/html/themes/breezy/svg/48/apps/apache.svg delete mode 100644 apache2/html/themes/legacy/icons/16/apache.png delete mode 100644 apache2/html/themes/legacy/icons/48/apache.png delete mode 100644 apache2/locale/ar/fusiondirectory.po delete mode 100644 apache2/locale/ca/fusiondirectory.po delete mode 100644 apache2/locale/cs_CZ/fusiondirectory.po delete mode 100644 apache2/locale/de/fusiondirectory.po delete mode 100644 apache2/locale/el_GR/fusiondirectory.po delete mode 100644 apache2/locale/en/fusiondirectory.po delete mode 100644 apache2/locale/es/fusiondirectory.po delete mode 100644 apache2/locale/es_CO/fusiondirectory.po delete mode 100644 apache2/locale/es_VE/fusiondirectory.po delete mode 100644 apache2/locale/fa_IR/fusiondirectory.po delete mode 100644 apache2/locale/fi_FI/fusiondirectory.po delete mode 100644 apache2/locale/fr/fusiondirectory.po delete mode 100644 apache2/locale/hu_HU/fusiondirectory.po delete mode 100644 apache2/locale/id/fusiondirectory.po delete mode 100644 apache2/locale/it_IT/fusiondirectory.po delete mode 100644 apache2/locale/lv/fusiondirectory.po delete mode 100644 apache2/locale/nb/fusiondirectory.po delete mode 100644 apache2/locale/nl/fusiondirectory.po delete mode 100644 apache2/locale/pl/fusiondirectory.po delete mode 100644 apache2/locale/pt/fusiondirectory.po delete mode 100644 apache2/locale/pt_BR/fusiondirectory.po delete mode 100644 apache2/locale/ru/fusiondirectory.po delete mode 100644 apache2/locale/ru@petr1708/fusiondirectory.po delete mode 100644 apache2/locale/sv/fusiondirectory.po delete mode 100644 apache2/locale/ug/fusiondirectory.po delete mode 100644 apache2/locale/vi_VN/fusiondirectory.po delete mode 100644 apache2/locale/zh/fusiondirectory.po diff --git a/apache2/admin/systems/services/apache2/class_serviceApacheVhost.inc b/apache2/admin/systems/services/apache2/class_serviceApacheVhost.inc deleted file mode 100644 index a748ad7fdc..0000000000 --- a/apache2/admin/systems/services/apache2/class_serviceApacheVhost.inc +++ /dev/null @@ -1,90 +0,0 @@ -<?php - -/* - This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2003-2010 Cajus Pollmeier - Copyright (C) 2011-2016 FusionDirectory - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -class serviceApache extends simpleService -{ - var $objectclasses = array('whatever'); - - function __construct ($dn = NULL, $parent = NULL) - { - global $config; - parent::__construct ($dn, $parent, array()); - - if (($dn != 'new') && ($dn != NULL)) { - - $dn_without_base = preg_replace("/,".preg_quote($config->current['BASE'], '/')."$/", "", $this->dn); - - $this->vhostList = new serviceApacheVhostManagement($dn_without_base); - - /* If there is at least one entry in this -> types, we have apache vhosts enabled */ - - if ($this->vhostList->count() == 0) { - $this->is_account = FALSE; - } else { - $this->is_account = TRUE; - } - } else { - $this->is_account = FALSE; - } - - $this->initially_was_account = $this->is_account; - } - - - function execute() - { - if (isset($_POST['SaveVhostChanges'])) { - $_POST['edit_finish'] = $_POST['SaveVhostChanges']; // So that the management execute save the entry - } - if (isset($_POST['CancelVhostChanges'])) { - $_POST['edit_cancel'] = $_POST['CancelVhostChanges']; // So that the management execute cancel the entry - } - if (isset($_POST['vhost_delete_confirmed'])) { - $_POST['delete_confirmed'] = $_POST['vhost_delete_confirmed']; // So that the management execute delete the entry - } - if (isset($_POST['vhost_delete_canceled'])) { - $_POST['delete_canceled'] = $_POST['vhost_delete_canceled']; - } - return $this->vhostList->execute(); - } - - function save() - { - } - - /* \brief Return plugin information used by the ACL handling. - @return Array ACL infos. - */ - static function plInfo() - { - return array( - "plShortName" => _("Apache service"), - "plDescription" => _("Apache virtual host service")." ("._("Services").")", - "plIcon" => "geticon.php?context=applications&icon=apache&size=16", - - "plProvidedAcls" => array( - "VirtualHost" => _("Virtual hosts") - ) - ); - } -} -?> diff --git a/apache2/admin/systems/services/apache2/class_serviceApacheVhostEdit.inc b/apache2/admin/systems/services/apache2/class_serviceApacheVhostEdit.inc deleted file mode 100644 index d764daf562..0000000000 --- a/apache2/admin/systems/services/apache2/class_serviceApacheVhostEdit.inc +++ /dev/null @@ -1,138 +0,0 @@ -<?php -/* - This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2003-2010 Cajus Pollmeier - Copyright (C) 2011-2016 FusionDirectory - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -/* Composite attributes that returns an empty value when all fields are empty */ -class CompositeScriptAliasAttribute extends CompositeAttribute -{ - function writeValues($values) - { - if (($values[0] == "") && ($values[1] == "")) { - return ""; - } else { - return parent::writeValues($values); - } - } -} - -class serviceApacheVhostEdit extends simplePlugin -{ - var $displayHeader = FALSE; - var $mainTab = TRUE; - var $objectclasses = array("apacheConfig"); - var $cn = ""; - - /*! - * \brief Plugin information - */ - static function plInfo () - { - return array( - 'plHeadline' => _('Apache2'), - 'plShortName' => _('Apache2'), - 'plDescription' => _('This Plugin is for Apache server'), - 'plObjectType' => array('apacheVhost' => array( - 'name' => _('Apache Vhost'), - 'filter' => 'objectClass=apacheConfig', - 'aclCategory' => 'server', - 'icon' => 'geticon.php?context=applications&icon=apache&size=16', - )), - - 'plProvidedAcls' => parent::generatePlProvidedAcls(self::getAttributesInfo()) - ); - } - - /*! - * \brief The main function : information about attributes - */ - static function getAttributesInfo () - { - return array( - 'section1' => array ( - 'name' => _('Informations'), - 'class' => array('fullwidth'), - 'attrs' => array( - new StringAttribute ( - _('Virtual host name'), - _('The Virtual host name'), - 'apacheServerName', - TRUE - ), - new StringAttribute ( - _('Document root'), - _('Document root for the apache web server'), - 'apacheDocumentRoot', - TRUE - ), - new StringAttribute ( - _('Admin mail address'), - _('Apache admin mail address'), - 'apacheServerAdmin', - TRUE - ), - new CompositeScriptAliasAttribute ( - _('Script Alias'), - 'apacheScriptAlias', - array( - new StringAttribute (_('Alias'), _('Alias Directory'), 'aliasdir'), - new StringAttribute (_('Script'), _('Script Directory'), 'scriptdir'), - ), - '/^(\S*) (\S*)$/', - '%s %s', - '', - _('Script Alias') - ), - new SetAttribute ( - new CompositeAttribute ( - _('Server Alias'), - 'apacheServerAlias', - array( - new StringAttribute (_('URL Alias'), _('URL Alias'), 'urlalias'), - new StringAttribute (_('Directory Path'), _('Directory Path'), 'pathdir'), - ), - '/^(\S*) (\S*)$/', - '%s %s', - '', - _('Server Alias') - ) - ) - ) - ) - ); - } - - function __construct ($dn = NULL, $object = NULL) - { - parent::__construct($dn, $object); - $this->attributesInfo['section1']['attrs']['apacheScriptAlias']->setLinearRendering(TRUE); - } - - function compute_dn () - { - return 'apacheServerName='.ldap_escape($this->apacheServerName, '', LDAP_ESCAPE_DN).','.session::get('serviceApacheVhostEditDN'); - } - - function execute () - { - $smarty = get_smarty(); - return parent::execute().$smarty->fetch(get_template_path('serviceApacheVhostEditFooter.tpl', TRUE, dirname(__FILE__))); - } -} -?> diff --git a/apache2/admin/systems/services/apache2/class_serviceApacheVhostManagement.inc b/apache2/admin/systems/services/apache2/class_serviceApacheVhostManagement.inc deleted file mode 100644 index c1c0f8f2fd..0000000000 --- a/apache2/admin/systems/services/apache2/class_serviceApacheVhostManagement.inc +++ /dev/null @@ -1,96 +0,0 @@ -<?php -/* - This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2003-2010 Cajus Pollmeier - Copyright (C) 2011-2016 FusionDirectory - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -class serviceApacheVhostManagement extends management -{ - var $plHeadline = "Vhosts"; - var $plDescription = "Apache vhosts management"; - var $plIcon = "geticon.php?context=applications&icon=apache&size=16"; - - // Tab definition - protected $tabClass = "apachevhosttabs"; - protected $tabType = "APACHEVHOSTTABS"; - protected $aclCategory = "serviceApacheVhostEdit"; - protected $aclPlugin = "serviceApacheVhostEdit"; - protected $objectName = "serviceApacheVhostEdit"; - - function __construct ($storagePoint = NULL) - { - global $config; - - @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__,$storagePoint,"Storage point"); - session::set('serviceApacheVhostEditDN',$storagePoint.','.$config->current['BASE']); - if (!empty($storagePoint)) { - $this->storagePoints = array($storagePoint); - } else { - trigger_error("Error : did not received any storage point"); - } - - // Build filter - $filter = new filter(get_template_path("serviceApacheVhostEdit-filter.xml", TRUE, dirname(__FILE__))); - $filter->setObjectStorage($this->storagePoints); - $this->setFilter($filter); - - // Build headpage - $headpage = new listing(get_template_path("serviceApacheVhostEdit-list.xml", TRUE, dirname(__FILE__))); - $headpage->setFilter($filter); - - parent::__construct("serviceApacheVhostEdit", $headpage); - - /* We don't want the normal footer, we have our own at the end of the tpl file, - * that allow us to differenciate plugin saving from service saving */ - $this->skipFooter = TRUE; - } - - function execute () - { - $this->skipFooter = TRUE; - return parent::execute(); - } - - function count () - { - $this->getHeadpage()->update(); - return count($this->getHeadpage()->getEntries()); - } - - /*! - * \brief Initiates the removal for the given entries - * and displays a confirmation dialog. - * - * \param String $action The name of the action which was the used as trigger. - * - * \param Array $target A list of object dns, which should be affected by this method. - * - * \param Array $all A combination of both 'action' and 'target'. - */ - protected function removeEntryRequested($action = "",$target = array(),$all = array()) - { - $ret = parent::removeEntryRequested($action, $target, $all); - - // We've at least one entry to delete. - if (!empty($ret)) { - $smarty = get_smarty(); - return $smarty->fetch(get_template_path('remove.tpl', TRUE, dirname(__FILE__))); - } - } -} -?> diff --git a/apache2/admin/systems/services/apache2/remove.tpl b/apache2/admin/systems/services/apache2/remove.tpl deleted file mode 100644 index a1571d0297..0000000000 --- a/apache2/admin/systems/services/apache2/remove.tpl +++ /dev/null @@ -1,18 +0,0 @@ -<div style="font-size:18px;"> - <img alt="" src="geticon.php?context=status&icon=dialog-warning&size=32" align=top> {t}Warning{/t} -</div> -<p> - {$info} - {t}This includes all account data, system access rules, imap settings, etc. for this user. Please double check if your really want to do this since there is no way for FusionDirectory to get your data back.{/t} -</p> - -<p> - {t}So - if you're sure - press 'Delete' to continue or 'Cancel' to abort.{/t} -</p> - -<p class="plugbottom"> - <input type=submit name="vhost_delete_confirmed" value="{msgPool type=delButton}"> - <input type=submit name="vhost_delete_cancel" value="{msgPool type=cancelButton}"> - -</p> - diff --git a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl b/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl deleted file mode 100644 index 33ef859b76..0000000000 --- a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl +++ /dev/null @@ -1,31 +0,0 @@ -<div class="contentboxh"> - <p class="contentboxh"> - {t}Filter{/t} - </p> -</div> - -<div class="contentboxb"> - - {$SCOPE} - - <table style="width:100%;border-top:1px solid #B0B0B0;"> - <tr> - <td> - <label for="NAME"> - <img src="geticon.php?context=actions&icon=system-search&size=16" align=middle> {t}Name{/t} - </label> - </td> - <td> - {$NAME} - </td> - </tr> - </table> - - <table width="100%" style="background:#EEEEEE;border-top:1px solid #B0B0B0;"> - <tr> - <td style="width:100%;text-align:right;"> - {$APPLY} - </td> - </tr> - </table> -</div> diff --git a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.xml b/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.xml deleted file mode 100644 index 726a81db08..0000000000 --- a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-filter.xml +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<filterdef> - <definition> - <category>serviceApacheVhostEdit</category> - <template>services/apache2/serviceApacheVhostEdit-filter.tpl</template> - <initial>true</initial> - </definition> - - <search> - <query> - <backend>LDAP</backend> - <filter>(&(objectClass=apacheConfig)$NAME)</filter> - <attribute>dn</attribute> - <attribute>objectClass</attribute> - <attribute>apacheServerName</attribute> - <attribute>apacheDocumentRoot</attribute> - </query> - <scope>one</scope> - </search> - - <element> - <type>textfield</type> - <tag>NAME</tag> - <size>20</size> - <maxlength>60</maxlength> - <default></default> - <unset></unset> - <set>(|(apacheServerName=*$*)(apacheDocumentRoot=*$*))</set> - <alphabet>true</alphabet> - <autocomplete> - <backend>LDAP</backend> - <filter>(&(objectClass=apacheConfig)(|(apacheServerName=*$NAME*)(apacheDocumentRoot=*$NAME*)))</filter> - <attribute>apacheServerName</attribute> - <frequency>0.5</frequency> - <characters>3</characters> - </autocomplete> - </element> - -</filterdef> diff --git a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl b/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl deleted file mode 100644 index b0e9df458f..0000000000 --- a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl +++ /dev/null @@ -1,34 +0,0 @@ -<table style="width:100%;height:100%; vertical-align:top; text-align:left;"> - <tr> - <td style="vertical-align:top; width:100%;"> - <div class="contentboxh"> - <p class="contentboxh"> {$HEADLINE} {$SIZELIMIT}</p> - </div> - - <div class="contentboxb" style="background:white;"> - <table> - <tbody> - <tr> - <td>{$ROOT} </td><td>{$BACK} </td><td>{$HOME} </td><td class="optional">{$RELOAD} </td><td>{$SEPARATOR} </td> - {if $BASE}<td>{t}Base{/t} {$BASE} </td><td>{$SEPARATOR} </td>{/if} - <td>{$ACTIONS}</td> - </tr> - </tbody> - </table> - </div> - - <div style='height:4px;'> - </div> - {$LIST} - </td> - <td style='vertical-align:top;min-width:250px'> - {$FILTER} - </td> - </tr> -</table> - -<p class="plugbottom"> - <input type=submit name="SaveService" value="{msgPool type=saveButton}"> -</p> - -<input type="hidden" name="ignore"> diff --git a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.xml b/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.xml deleted file mode 100644 index 46b27b8bb6..0000000000 --- a/apache2/admin/systems/services/apache2/serviceApacheVhostEdit-list.xml +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<list> - <definition> - <departmentBrowser>false</departmentBrowser> - <departmentRootVisible>false</departmentRootVisible> - <baseMode>false</baseMode> - <multiSelect>true</multiSelect> - <template>services/apache2/serviceApacheVhostEdit-list.tpl</template> - <module>serviceApacheVhostEdit</module> - <label>List of Apache Vhost</label> - <defaultSortColumn>1</defaultSortColumn> - - <objectType> - <label>Template entry</label> - <objectClass>apacheConfig</objectClass> - <category>serviceApacheVhostEdit</category> - <class>serviceApacheVhostEdit</class> - <image>geticon.php?context=applications&icon=apache&size=16</image> - </objectType> - - </definition> - - <table> - <layout>|20px;c|||150px;r|</layout> - - <column> - <value>%{filter:objectType(dn,objectClass)}</value> - </column> - - <column> - <label>Server name</label> - <sortAttribute>apacheServerName</sortAttribute> - <sortType>string</sortType> - <value>%{filter:link(row,dn,"%s",apacheServerName)}</value> - <export>true</export> - </column> - - <column> - <label>Document root</label> - <sortAttribute>apacheDocumentRoot</sortAttribute> - <sortType>string</sortType> - <value>%{filter:link(row,dn,"%s",apacheDocumentRoot)}</value> - <export>true</export> - </column> - - <column> - <label>Actions</label> - <value>%{filter:actions(dn,row,objectClass)}</value> - </column> - - </table> - - <actionmenu> - - <action> - <type>sub</type> - <image>geticon.php?context=actions&icon=document-new&size=16</image> - <label>Create</label> - - <action> - <name>new</name> - <type>entry</type> - <image>geticon.php?context=applications&icon=apache&size=16</image> - <label>serviceApacheVhostEdit</label> - </action> - </action> - - <action> - <type>separator</type> - </action> - - <action> - <name>remove</name> - <type>entry</type> - <image>geticon.php?context=actions&icon=edit-delete&size=16</image> - <label>Remove</label> - </action> - - <action> - <type>exporter</type> - </action> - - <action> - <type>separator</type> - </action> - - <action> - <type>copypaste</type> - </action> - - <action> - <type>snapshot</type> - </action> - - </actionmenu> - - <actiontriggers snapshot="true" copypaste="true"> - - <action> - <name>cp</name> - <type>copypaste</type> - </action> - - <action> - <name>edit</name> - <type>entry</type> - <image>geticon.php?context=actions&icon=document-edit&size=16</image> - <label>Edit host</label> - </action> - - <action> - <name>snapshot</name> - <type>snapshot</type> - </action> - - <action> - <name>remove</name> - <type>entry</type> - <image>geticon.php?context=actions&icon=edit-delete&size=16</image> - <acl>apache/serviceApacheVhostEdit[d]</acl> - <label>Remove host</label> - </action> - - </actiontriggers> - -</list> diff --git a/apache2/admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl b/apache2/admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl deleted file mode 100644 index 2938d8e5e8..0000000000 --- a/apache2/admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div style="text-align:right;" align="right"> - <p class="plugbottom"> - <input type="submit" name="SaveVhostChanges" value="{t}Save{/t}"/> - <input type="submit" name="CancelVhostChanges" value="{t}Cancel{/t}"/> - </p> -</div> diff --git a/apache2/admin/systems/services/apache2/tabs_serviceApacheVhostEdit.inc b/apache2/admin/systems/services/apache2/tabs_serviceApacheVhostEdit.inc deleted file mode 100644 index 2af278bea8..0000000000 --- a/apache2/admin/systems/services/apache2/tabs_serviceApacheVhostEdit.inc +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -/* - This code is part of FusionDirectory (http://www.fusiondirectory.org/) - Copyright (C) 2003-2010 Cajus Pollmeier - Copyright (C) 2011-2016 FusionDirectory - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -class apachevhosttabs extends simpleTabs_noSpecial -{ -} -?> diff --git a/apache2/contrib/openldap/mod_vhost_ldap.schema b/apache2/contrib/openldap/mod_vhost_ldap.schema deleted file mode 100644 index f84db29ef2..0000000000 --- a/apache2/contrib/openldap/mod_vhost_ldap.schema +++ /dev/null @@ -1,68 +0,0 @@ -## -## OIDs are owned by Globe Internet -## -## 1.3.6.1.4.1.14287.1.x - mod_vhost_ldap -## 1.3.6.1.4.1.14287.1.1.x - attributetypes -## 1.3.6.1.4.1.14287.1.2.x - objectclasses -## - -attributetype ( 1.3.6.1.4.1.8387.1.1.2 NAME 'apacheServerName' - SUP name - DESC 'mod_vhost_ldap: Apache ServerName' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.8387.1.1.3 NAME 'apacheServerAlias' - SUP name - DESC 'mod_vhost_ldap: Apache ServerAlias' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} ) - -attributetype ( 1.3.6.1.4.1.8387.1.1.4 NAME 'apacheDocumentRoot' - SUP name - DESC 'mod_vhost_ldap: Apache DocumentRoot' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.8387.1.1.5 NAME 'apacheServerAdmin' - SUP name - DESC 'mod_vhost_ldap: Apache ServerAdmin' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.14287.1.1.6 NAME 'apacheScriptAlias' - SUP name - DESC 'mod_cfg_ldap: Apache ScriptAlias' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.8387.1.1.7 NAME 'apacheSuexecUid' - SUP name - DESC 'mod_vhost_ldap: Apache SuexecUid' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.8387.1.1.8 NAME 'apacheSuexecGid' - SUP name - DESC 'mod_vhost_ldap: Apache SuexecGid' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} - SINGLE-VALUE ) - -objectclass ( 1.3.6.1.4.1.8387.1.2.1 NAME 'apacheConfig' - SUP 'top' - MUST ( apacheServerName $ apacheDocumentRoot ) - MAY ( apacheServerAlias $ apacheServerAdmin $ apacheScriptAlias $ - apacheSuexecUid $ apacheSuexecGid ) ) diff --git a/apache2/html/themes/breezy/icons/16/apps/apache.png b/apache2/html/themes/breezy/icons/16/apps/apache.png deleted file mode 100644 index 49071a81aadd16b9f7a3288903fa46eb490a37cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 571 zcmV-B0>u4^P)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV00004b3#c}2nYxW zd<bNS00009a7bBm000fw000fw0YWI7cmMzZ8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H10k}y-K~y-6rI0^pQ&AMgzjOb*yi!XHR!TcGf=Ztvl$sI>T{_gE zQ0O2c7%)n~EmJ{=F3-VH=v3^W1+kb#_b%<w4vL|aP%6@h2K+n3DCx6l?|t{Ws5F{r zTEFpde&0FYM>wGDy}pi$R*d!wzQ1`Y9_`js%rTRCoARPnaC7WL#OZNvV9QMDZLByF z!Wg^DTY;aS9vpBE(*h%QmKZidg;7<dj|7wXr$PRBGQ&bUBV79i95Ij`03qO<t{uI- zxzIGi(#VK#OFMUsF_T0*SNn`k7hxGdfjDKmX4hW;K*JLAiG=)Gj^-Tb34z^*oJ@)c zf|0F=_Hd%Vu)6$nmo+l@Q0|#kaK=N32O9FSwPdZqqSlny3j;u11Rp*-+50M`@a+-- zk9L5o5&*3IB&A9Z6`#HR{aD=xk-p%3RUW#iAm<fiT0ufXJgsqexDi~}LDtJ2iGc3Q zP`!(qARaT-B7<6f`PzHp!#9oKx(J%Lc{bFmhO<nC@gNA>=B^j-JSM<4gMWQ+<(ThA zJKQAkT48$4|MFx0S8$JfcHzveb1g3a8Nu^PLs;KhJgC8c>pLfFphNn;oh<+W002ov JPDHLkV1k(i`_upc diff --git a/apache2/html/themes/breezy/icons/48/apps/apache.png b/apache2/html/themes/breezy/icons/48/apps/apache.png deleted file mode 100644 index 1a845e4890fa7079e701a896588a6a85b6f7db8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1959 zcmV;Y2Uz%tP)<h;3K|Lk000e1NJLTq001xm001xu1^@s6R|5Hm00004b3#c}2nYxW zd<bNS00009a7bBm001e5001e50V3?*i~s-t8FWQhbW?9;ba!ELWdL_~cP?peYja~^ zaAhuUa%Y?FJQ@H12P8>EK~!jg?U-wfl;su2fB*B&?1gm;7O|kDE)=<lu2H07wT%I- zNE2(cq#s(FG+InGpcJXsrW>UaP!g1S!%(#-*u*cIsI_9mmJ(6adZAogF5+6NTcHB( zvODvh(+}^=vepaix-fq5pG+os-kJCO&U4QBKkp2DrOHZ`2Iz_Q-aY(SOp{aRNNdk8 zshzoD+m}9pXu{fujJObDhQt{FkwRL~+wDp9abMa5q6ynmKjOmVFm8kx4WJUO7r_g{ zi(Hgc67sY3-Zdl7`lvAQk<@9ds*h93>k=uDMoJQ?h%{Pq73BPc-oA9qu}O_D^a4{X zAE>C+rAwU>tw4X^Faih&)c&PN;O(iW)kgh?HxMx^imC<(fhS%gcq5=6FdQg@XE}I0 zU-1@do;r4-l8z@r`k^3)O4cY^AfEFM<t-s+RSW_w0<!kuz5dm@ykZsDaNel;gz5zp z;}Ta$#UL{JaAH}K)6tRIv|@Wu+$(@qt72oW&Xuduv4PLgjLjVtN#M2bobWw9vIo2> z8Z3kh3~=K8L|TmLaxZYW1=+P+fEeVR4C?GOI$_n3HJk4SIHU<Yd*+$BueG$@5WCVz zQI$4OgdjlRXocmp#oe#BqJ#nmOv>K#k=-QND$h?<6GebSHUqCTOlZjO>U=`PPk{HW zHjXO!dJuM}C2<VI`Pm4l%kxzl2nl3ta@pB~=dW)m-}jJI;KkvmPD$~lz}EwCrz(mN zVn-y*Nr>4|)DQ##punZ9tprBk;zi~C2Ses=YVCgSgIa+AO&R{}CIxpR`emCcQ0z>q z`9KK^6>+n~;Q%Uad)MxlEJ?xAq_%46kooKX`~NWxS_NMHMq}NY+S)%_a6u3#GH(~4 z(5sR1Ruou37@@4cU4gN0s6(*_i_3;CS-<qN;vAF;ywEUya3No_Ld3+Zg}e41DQ+Wl zMB1UBMXJ{j%}S^e)OR}r3POLfu&E8p);;%mvHJXB?%8jhIU=7HpE7*7;V5%=5NTLk zXU+wPQ_J&PZWpWZP5C<CNZ!{O+T6A`S$4`xFSYG2UY}NA#jr_@Iro*Iq2;v_Ut3Ph z@L)R7SV}1Cak2tMQ3Io>QBkln!nOURmtTJDKw|b;1y&53)ToFRMhr3n!^tY(JMyxb z9))>=!6^0xEw@a$5`rWbi%#6I_DX>tvIPG8&2z?@SZVSjR07Xl@ecCqa^bfN@2{?w z`P3xZL|i{^%i4uKiT#CL=<#7wj`83rh$Eon9)P1a9sgY};x0%13?YJu%r3JhpZJ&1 z8V|jZBe&$_t*hVaX?*)4@Q;o<uihi~SYSs7${GgY*m}us5nAk6zwR{wi0rf?&`}Yb zZ5FL3ZC$;+Hw?Y5K!6_Y%-!dBV|mRoxV5fyNzu8}q?}>p-ydB~ZTL2VZ4yr>N#Wj; zn_p@Dv=|4XUb|3Z!;h{6W@fWj>gdo~f~Asfmp*xK?fYauMeK|MGsnO6(tmo(0KH7$ z!Qnq1Z(+;3e_!xd!ygLMZIoKGWGtVMV22{kpV0C`uiB=&4rm4fG;h?e>jCZ=H!a_; z{<8zC>N3mFs#JO;RkA3M?VE>^7j=6%)*A5r3ES8F^NYeCZ~}q|k4ph|@2;D%SNW0U zfsII3Aw5JS3mwzPp}P;Z@UUiC{*2SNt^P+}z#nh|03l7BJ95@|5BqIkwb^d!Z>ibR zl;jRC?R<1|9RK*vuk1+kr+#<KGn@JfzDEfZrQJdDxXbDb%GEjcyrVx5-07I@gI4KZ zgRT~8583RU+XkF9x#g)HeF+aeu+dPGchW%wq}X;3es4<dcOoetUfrz{*p(<AObc=I zl$Iyo>1*(^J~x4@8n3FW>8u$)XTzM84nx5}=^O2qU(ixLcwSA~`TRh3{X3uT9Z1NL z_L!1&BG&AP0Z;#Y>-~EV7I<0veHOZY%x^BUU~+;_R>U@>S%fb)qRt{Pq67S4^LWP0 z-_1o-ix_I*%V#t%+EtMRrj5HN-@pC62?=qoMVu~tf<?5Z=;B=X!=@OZD2-^8Ml=Eu zyDYf3=((G&*)s3LgAM<g33S)=5w};@<v&<yVNEE#&xj%2p&>TpA|6oqn`ZjU)f?yU zJ_Oud+K&r`YN~eL7N*&$X&mArqy>&PI+l9&5I@YZiD_c*9%}gg>Q~3jxn<VzH(dZQ zYs{Qut{r{jY2|B84NW!Ij=pwa<>>aK=_ky+`ikRkzIfkCsA+7|VU;85fqr@XEkB*! zIB#~PIeMjEoN(*8mp0xyztS8Bs*fFH=ZwAj#1EtGyyIT?%PR%cQ+3(sm@(6a^rvS2 z;f1*5$>v2Jm4xbv5`b|>P3za0FD^{0bj9B{+_9(9P(6{s)TFJhuqa7&)9bI_wX@Pd tJ(Z0fSwCB_c-`hD&6S4vN?)l0`X8)R7@1_Iig5q{002ovPDHLkV1g7`&}IMt diff --git a/apache2/html/themes/breezy/svg/16/apps/apache.svg b/apache2/html/themes/breezy/svg/16/apps/apache.svg deleted file mode 100644 index 842fe2e8e3..0000000000 --- a/apache2/html/themes/breezy/svg/16/apps/apache.svg +++ /dev/null @@ -1,502 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg3049" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="apache.svg" - inkscape:export-filename="apache.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3051"> - <style - type="text/css" - id="current-color-scheme"> - .ColorScheme-Text { - color:#4d4d4d; - } - .ColorScheme-Background { - color:#eff0f1; - } - .ColorScheme-Highlight { - color:#3daee9; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground { - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#93cee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground { - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#93cee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - } - </style> - <linearGradient - id="e" - y2="638.44" - gradientUnits="userSpaceOnUse" - x2="-6797.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="638.44" - x1="-9035.5"> - <stop - style="stop-color:#282662" - offset="0" - id="stop41" /> - <stop - style="stop-color:#662E8D" - offset=".095484" - id="stop43" /> - <stop - style="stop-color:#9F2064" - offset=".7882" - id="stop45" /> - <stop - style="stop-color:#CD2032" - offset=".9487" - id="stop47" /> - </linearGradient> - <linearGradient - id="i" - y2="1395.6" - gradientUnits="userSpaceOnUse" - x2="-4570.1001" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="697.54999" - x1="-5167.1001"> - <stop - style="stop-color:#F69923" - offset="0" - id="stop7" /> - <stop - style="stop-color:#F79A23" - offset=".3123" - id="stop9" /> - <stop - style="stop-color:#E97826" - offset=".8383" - id="stop11" /> - </linearGradient> - <linearGradient - id="h" - y2="620.5" - gradientUnits="userSpaceOnUse" - x2="-5326.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="620.5" - x1="-9585.2998"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop14" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop16" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop18" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop20" /> - </linearGradient> - <linearGradient - id="f" - y2="580.82001" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="580.82001" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop32" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop34" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop36" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop38" /> - </linearGradient> - <linearGradient - id="d" - y2="1021.6" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1021.6" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop50" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop52" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop54" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop56" /> - </linearGradient> - <linearGradient - id="c" - y2="999.72998" - gradientUnits="userSpaceOnUse" - x2="-5351.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="999.72998" - x1="-9610.2998"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop59" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop61" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop63" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop65" /> - </linearGradient> - <linearGradient - id="b" - y2="1152.7" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1152.7" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop68" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop70" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop72" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop74" /> - </linearGradient> - <linearGradient - id="a" - y2="1137.7" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1137.7" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop77" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop79" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop81" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop83" /> - </linearGradient> - <linearGradient - id="j" - y2="1134.7" - gradientUnits="userSpaceOnUse" - x2="-6012" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1134.7" - x1="-6953.3999"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop86" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop88" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop90" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop92" /> - </linearGradient> - <linearGradient - id="g" - y2="1047.7" - gradientUnits="userSpaceOnUse" - x2="-6533.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1047.7" - x1="-9071.2002"> - <stop - style="stop-color:#282662" - offset="0" - id="stop23" /> - <stop - style="stop-color:#662E8D" - offset=".095484" - id="stop25" /> - <stop - style="stop-color:#9F2064" - offset=".7882" - id="stop27" /> - <stop - style="stop-color:#CD2032" - offset=".9487" - id="stop29" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="24.411306" - inkscape:cx="-0.89468282" - inkscape:cy="11.199215" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1878" - inkscape:window-height="1051" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:object-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid4085" /> - <sodipodi:guide - position="2.0000044,14.00003" - orientation="12,0" - id="guide4075" /> - <sodipodi:guide - position="2.0000044,2.0000296" - orientation="0,12" - id="guide4077" /> - <sodipodi:guide - position="14.000004,2.0000296" - orientation="-12,0" - id="guide4079" /> - <sodipodi:guide - position="14.000004,14.00003" - orientation="0,-12" - id="guide4081" /> - </sodipodi:namedview> - <metadata - id="metadata3054"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Capa 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-421.71429,-531.79074)" - style="opacity:1"> - <g - style="enable-background:new" - transform="matrix(-0.01773253,0.01023788,-0.01023788,-0.01773253,437.80873,533.55033)" - id="g94"> - <path - inkscape:connector-curvature="0" - style="fill:url(#e)" - d="m 656.71,-7.0909 c 20.267,-9.5939 39.714,-20.144 58.137,-31.855 0.64586,-0.42398 1.3003,-0.79943 1.9461,-1.2234 -7.5146,19.097 -3.8382,52.585 -3.7537,52.44 11.85,-34.711 26.515,-65.255 48.744,-84.672 8.4826,7.5928 14.923,21.83 20.214,39.882 2.6186,-24.849 -1.858,-38.732 -4.0514,-43.799 10.917,12.948 30.734,20.176 52.045,26.46 -23.946,-14.536 -39.792,-28.878 -46.004,-42.955 68.312,-21.018 142.29,-46.157 219.96,-74.026 -6.0925,-4.5911 -12.639,-5.1694 -19.442,-3.1706 -14.023,5.1017 -106.22,38.312 -231.64,76.244 -3.5629,1.0778 -7.1567,2.1511 -10.768,3.2375 -1.0067,0.30738 -2.0264,0.59708 -3.0153,0.89135 -13.174,3.9515 -26.666,7.9189 -40.462,11.92 -3.1433,0.90384 -6.2865,1.8077 -9.4475,2.7247 -0.0663,0.02188 -0.13246,0.04334 -0.18106,0.052 l -34.514,68.935 c 0.7115,-0.33546 1.4939,-0.72358 2.2408,-1.0853 z" - id="path96" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#i)" - d="m 23.148,66.817 c 19.071,7.1961 39.608,9.0845 59.733,11.274 11.854,1.1234 23.738,1.9142 35.63,2.4926 8.1692,-17.104 16.338,-34.207 24.508,-51.311 -31.491,0.85648 -63.087,0.17618 -94.393,-3.5401 30.943,3.103 62.137,1.8494 93.129,0.17007 -22.37,-26.669 -46.909,-51.428 -71.93,-75.588 -23.519,11.839 -46.291,28.35 -58.634,52.244 -6.3001,14.546 -9.9508,31.534 -4.821,46.981 2.7562,7.894 9.065,14.16 16.773,17.277 z" - id="path98" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 280.24,-67.689 c -0.15352,-0.13308 -0.28936,-0.27929 -0.4429,-0.41235 l 2.6202,2.831 c 0.23288,0.12909 0.43954,0.22281 0.65472,0.36504 -0.94684,-0.94406 -1.8983,-1.8573 -2.832,-2.7836 z" - id="path100" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 368.72,-99.465 c 1.6889,1.4638 3.3155,3.0287 4.9198,4.6376 -1.6043,-1.6088 -3.2487,-3.1606 -4.9198,-4.6376 z" - id="path102" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 640.89,-71.354 c -0.77256,0.21613 -1.5451,0.43223 -2.3045,0.66606 -15.919,4.505 -31.444,8.8006 -46.643,12.908 -17.052,4.6045 -33.627,8.9648 -49.773,13.089 -17.016,4.3579 -33.536,8.4584 -49.579,12.315 -16.829,4.0548 -33.127,7.826 -48.887,11.362 -12.825,2.8692 -25.296,5.586 -37.426,8.1328 -4.0333,0.85047 -8.0489,1.6878 -12.029,2.4989 -7.881,1.6182 -15.643,3.1754 -23.223,4.6806 -7.0114,1.385 -13.886,2.6958 -20.659,3.9587 -2.2547,0.43715 -4.4872,0.83034 -6.7242,1.2544 -0.3574,0.072954 -0.72796,0.12822 -1.0854,0.20118 l 2.2258,2.4101 -2.5583,5.1341 c 0.55154,-0.10716 1.0985,-0.18347 1.6632,-0.27291 10.236,-1.7727 20.516,-3.6333 30.84,-5.5819 5.9654,-1.1307 11.949,-2.2746 17.936,-3.4492 16.6,-3.2538 33.24,-6.675 49.89,-10.268 16.826,-3.614 33.632,-7.4045 50.376,-11.314 16.449,-3.8277 32.823,-7.7924 49.096,-11.819 16.242,-4.0316 32.358,-8.1608 48.306,-12.331 16.654,-4.3643 33.08,-8.7783 49.245,-13.247 3.6463,-1.0025 7.2925,-2.0049 10.926,-3.0251 13.032,-3.6261 25.843,-7.2535 38.464,-10.878 l 4.0558,-8.1098 -2.4975,-2.7025 c -0.37966,0.11693 -0.7594,0.23382 -1.1214,0.3376 -16.542,4.885 -32.709,9.5737 -48.514,14.048 z" - id="path104" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 374.86,-93.622 c -0.012,-0.01769 -0.0309,-0.0044 -0.0441,-0.02219 0,0 0.012,0.01769 0.0441,0.02219 z" - id="path106" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" - id="path108" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" - id="path110" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" - id="path112" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" - id="path114" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#h)" - d="m 294.05,14.992 c -16.961,2.5069 -33.723,4.7285 -50.218,6.643 -17.122,1.9948 -33.955,3.6385 -50.416,4.8964 -0.9569,0.07847 -1.9446,0.15235 -2.9192,0.24395 -16.218,1.2152 -32.064,2.0446 -47.489,2.4796 l -24.508,51.311 c 3.1595,0.15406 6.3543,0.2819 9.6108,0.41887 12.251,0.46429 25.27,0.74328 38.902,0.81409 15.365,0.07595 31.56,-0.1344 48.36,-0.60148 15.522,-0.45209 31.601,-1.1524 48.051,-2.1282 14.003,-0.83512 28.316,-1.8448 42.838,-3.0914 0.5424,-0.0455 1.068,-0.07818 1.6104,-0.12365 13.32,-22.17 22.89,-45.722 34.335,-68.583 -16.183,2.7801 -32.241,5.3583 -48.157,7.7211 z" - id="path116" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#f)" - d="m 639.56,-61.012 c -16.179,4.4506 -32.604,8.8647 -49.245,13.247 -15.935,4.1875 -32.046,8.2859 -48.306,12.331 -16.26,4.0447 -32.63,7.9786 -49.096,11.819 -16.744,3.9098 -33.563,7.6825 -50.376,11.314 -16.632,3.5798 -33.29,7.0141 -49.89,10.268 -5.9877,1.1747 -11.971,2.3185 -17.936,3.4492 -10.325,1.9485 -20.605,3.8091 -30.84,5.5819 -0.55156,0.10715 -1.0985,0.18346 -1.6632,0.2729 l -34.33,68.583 c 1.0848,-0.091 2.1565,-0.19968 3.2413,-0.29065 15.39,-1.3696 31.015,-2.9407 46.779,-4.8063 15.922,-1.8736 31.965,-4.0286 48.062,-6.4433 13.582,-2.0319 27.162,-4.2534 40.724,-6.6821 2.7532,-0.50491 5.4578,-1.0013 8.1802,-1.5108 16.983,-3.1812 33.094,-6.6493 48.365,-10.29 17.296,-4.1271 33.51,-8.4938 48.609,-12.995 9.938,-2.9512 19.414,-5.9711 28.431,-8.9803 7.6399,-2.6465 15.232,-5.3947 22.71,-8.2228 17.654,-6.6419 34.84,-13.842 51.5,-21.64 11.64,-22.613 23.669,-45.588 34.514,-68.935 -12.622,3.624 -25.468,7.2775 -38.5,10.904 -3.6155,1.007 -7.2794,2.0226 -10.926,3.0251 z" - id="path118" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#d)" - d="m 343.66,-0.50096 c 2.2193,-0.41089 4.4564,-0.83491 6.7242,-1.2543 6.7596,-1.2806 13.634,-2.5914 20.659,-3.9587 7.5938,-1.4876 15.325,-3.0493 23.223,-4.6806 3.9802,-0.81109 7.965,-1.653 12.029,-2.4989 12.131,-2.5468 24.602,-5.2637 37.426,-8.1328 15.759,-3.5362 32.058,-7.3074 48.887,-11.362 16.043,-3.8564 32.564,-7.9569 49.579,-12.315 16.146,-4.1247 32.739,-8.4981 49.773,-13.089 15.198,-4.1078 30.724,-8.4034 46.643,-12.908 0.77254,-0.21613 1.5451,-0.43223 2.3045,-0.66606 15.804,-4.4748 31.971,-9.1635 48.483,-14.053 0.3797,-0.1169 0.7594,-0.23382 1.1214,-0.33761 l -19.143,-20.676 c 0.2395,0.5082 0.5278,1.0079 0.7674,1.5161 -23.296,-24.428 -69.92,-45.278 -111.88,-49.997 -19.338,-2.1783 -39.994,-1.8427 -62.413,0.92504 -16.69,2.0589 -34.353,5.4699 -53.191,10.219 -16.464,4.1405 -33.814,9.2679 -52.184,15.425 7.8381,3.7633 15.478,9.0727 22.931,15.646 1.2939,1.1531 2.614,2.3417 3.9119,3.5742 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -0.012,-0.0177 -0.0441,-0.0222 -0.0569,-0.04 -28.247,-17.932 -58.622,-19.938 -89.973,-14.526 9.3924,3.2694 23.242,9.6268 35.603,20.379 1.6889,1.4639 3.3155,3.0287 4.9198,4.6376 0.41208,0.40779 0.81102,0.79786 1.1923,1.2011 -0.012,-0.01769 -0.0309,-0.0045 -0.0441,-0.02217 0,0 -0.012,-0.01769 -0.0309,-0.0045 -10.105,-6.0061 -19.623,-10.334 -29.164,-13.137 -2.0374,-0.60186 -4.084,-1.1421 -6.1444,-1.5898 -3.1256,-0.70044 -6.2609,-1.229 -9.4323,-1.6212 -2.0262,-0.25361 -4.0614,-0.44555 -6.1236,-0.56271 -4.8248,-0.29107 -9.7616,-0.2522 -14.877,0.1383 -1.5609,0.1148 -3.1265,0.26044 -4.7274,0.43231 -2.2279,0.36236 -4.3941,0.73388 -6.5295,1.11 -9.6447,1.7187 -18.003,3.5811 -25.18,5.4456 -3.5886,0.93227 -6.8597,1.8486 -9.8489,2.7754 -1.1876,0.35928 -2.3445,0.72314 -3.4528,1.0785 -3.3117,1.0836 -6.2044,2.1035 -8.6957,3.0727 -3.7281,1.4472 -6.5694,2.7582 -8.5675,3.8006 1.3027,0.35098 2.6974,0.8259 4.1661,1.4378 10.15,4.2169 23.891,14.166 33.591,23.215 l -17.583,-18.98 17.583,18.98 c 0.15354,0.13308 0.28938,0.2793 0.44292,0.41237 0.95142,0.91323 1.8983,1.8573 2.8628,2.7882 -0.23288,-0.1291 -0.43954,-0.17283 -0.65472,-0.31504 l 60.164,64.89 c 0.33972,-0.059824 0.67944,-0.11965 1.05,-0.17492 z" - id="path120" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#c)" - d="m 141.76,25.871 c 14.308,-0.86871 30.359,-2.1245 48.242,-3.9432 0.92606,-0.08306 1.8876,-0.19234 2.8313,-0.2885 15.471,-1.594 32.288,-3.5552 50.488,-6.02 15.721,-2.1083 32.439,-4.5725 50.245,-7.4582 15.511,-2.5017 31.888,-5.3162 49.043,-8.4876 l -59.49,-64.569 c -24.736,-13.567 -40.821,-16.794 -59.841,-16.547 -5.1755,0.16099 -10.523,0.42238 -15.982,0.79335 -16.711,1.142 -34.469,3.2787 -51.604,6.1064 -16.54,2.7429 -32.435,6.1328 -46.23,9.9134 -8.7714,2.4155 -16.684,4.99 -23.332,7.642 -5.8619,2.3434 -11.266,4.7863 -16.287,7.3018 25.101,24.05 54.589,54.423 71.931,75.557 z" - id="path122" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path124" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path126" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#b)" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path128" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path130" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path132" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#a)" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path134" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path136" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path138" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#j)" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path140" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#g)" - d="m 697.74,-87.882 c 12.856,-3.8255 25.903,-7.7645 39.192,-11.856 0.1987,-0.06501 0.3797,-0.1169 0.5784,-0.18193 1.8809,-0.57144 3.7485,-1.1606 5.6293,-1.732 8.9497,-2.7671 16.955,-5.3279 35.178,-11.129 -2.3417,-10.966 2.6186,-24.849 9.1692,-39.363 -11.075,9.2259 -18.387,22.082 -20.063,37.399 -28.142,-41.768 -64.174,-69.017 -107.07,-65.115 -3.8322,0.34468 -7.6833,0.92288 -11.624,1.7871 16.438,0.48738 28.367,7.3631 41.449,27.265 0.0441,0.0223 0.101,0.0623 0.1451,0.0846 -0.0441,-0.0223 -0.101,-0.0623 -0.1451,-0.0846 -33.43,-18.78 -55.964,-23.938 -85.227,-21.557 -6.9364,0.56118 -14.25,1.539 -22.182,2.866 43.476,5.8729 71.791,29.037 88.586,63.086 l 0.7758,1.4939 18.367,19.182 c 2.4192,-0.69629 4.8254,-1.4103 7.2492,-2.1374 z" - id="path144" /> - </g> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="Calque 1" /> -</svg> diff --git a/apache2/html/themes/breezy/svg/48/apps/apache.svg b/apache2/html/themes/breezy/svg/48/apps/apache.svg deleted file mode 100644 index 423c3d7c9d..0000000000 --- a/apache2/html/themes/breezy/svg/48/apps/apache.svg +++ /dev/null @@ -1,502 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg3049" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="apache.svg" - inkscape:export-filename="apache.png" - inkscape:export-xdpi="270" - inkscape:export-ydpi="270"> - <defs - id="defs3051"> - <style - type="text/css" - id="current-color-scheme"> - .ColorScheme-Text { - color:#4d4d4d; - } - .ColorScheme-Background { - color:#eff0f1; - } - .ColorScheme-Highlight { - color:#3daee9; - } - .ColorScheme-ViewText { - color:#31363b; - } - .ColorScheme-ViewBackground { - color:#fcfcfc; - } - .ColorScheme-ViewHover { - color:#93cee9; - } - .ColorScheme-ViewFocus{ - color:#3daee9; - } - .ColorScheme-ButtonText { - color:#31363b; - } - .ColorScheme-ButtonBackground { - color:#eff0f1; - } - .ColorScheme-ButtonHover { - color:#93cee9; - } - .ColorScheme-ButtonFocus{ - color:#3daee9; - } - </style> - <linearGradient - id="e" - y2="638.44" - gradientUnits="userSpaceOnUse" - x2="-6797.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="638.44" - x1="-9035.5"> - <stop - style="stop-color:#282662" - offset="0" - id="stop41" /> - <stop - style="stop-color:#662E8D" - offset=".095484" - id="stop43" /> - <stop - style="stop-color:#9F2064" - offset=".7882" - id="stop45" /> - <stop - style="stop-color:#CD2032" - offset=".9487" - id="stop47" /> - </linearGradient> - <linearGradient - id="i" - y2="1395.6" - gradientUnits="userSpaceOnUse" - x2="-4570.1001" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="697.54999" - x1="-5167.1001"> - <stop - style="stop-color:#F69923" - offset="0" - id="stop7" /> - <stop - style="stop-color:#F79A23" - offset=".3123" - id="stop9" /> - <stop - style="stop-color:#E97826" - offset=".8383" - id="stop11" /> - </linearGradient> - <linearGradient - id="h" - y2="620.5" - gradientUnits="userSpaceOnUse" - x2="-5326.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="620.5" - x1="-9585.2998"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop14" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop16" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop18" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop20" /> - </linearGradient> - <linearGradient - id="f" - y2="580.82001" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="580.82001" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop32" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop34" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop36" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop38" /> - </linearGradient> - <linearGradient - id="d" - y2="1021.6" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1021.6" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop50" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop52" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop54" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop56" /> - </linearGradient> - <linearGradient - id="c" - y2="999.72998" - gradientUnits="userSpaceOnUse" - x2="-5351.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="999.72998" - x1="-9610.2998"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop59" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop61" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop63" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop65" /> - </linearGradient> - <linearGradient - id="b" - y2="1152.7" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1152.7" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop68" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop70" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop72" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop74" /> - </linearGradient> - <linearGradient - id="a" - y2="1137.7" - gradientUnits="userSpaceOnUse" - x2="-5087" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1137.7" - x1="-9346.0996"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop77" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop79" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop81" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop83" /> - </linearGradient> - <linearGradient - id="j" - y2="1134.7" - gradientUnits="userSpaceOnUse" - x2="-6012" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1134.7" - x1="-6953.3999"> - <stop - style="stop-color:#9E2064" - offset=".3233" - id="stop86" /> - <stop - style="stop-color:#C92037" - offset=".6302" - id="stop88" /> - <stop - style="stop-color:#CD2335" - offset=".7514" - id="stop90" /> - <stop - style="stop-color:#E97826" - offset="1" - id="stop92" /> - </linearGradient> - <linearGradient - id="g" - y2="1047.7" - gradientUnits="userSpaceOnUse" - x2="-6533.2002" - gradientTransform="matrix(-0.21591,0.044142,-0.044142,-0.21591,-974.83,437.49)" - y1="1047.7" - x1="-9071.2002"> - <stop - style="stop-color:#282662" - offset="0" - id="stop23" /> - <stop - style="stop-color:#662E8D" - offset=".095484" - id="stop25" /> - <stop - style="stop-color:#9F2064" - offset=".7882" - id="stop27" /> - <stop - style="stop-color:#CD2032" - offset=".9487" - id="stop29" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="24.411306" - inkscape:cx="-8.7394085" - inkscape:cy="11.199215" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1880" - inkscape:window-height="1051" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:showpageshadow="false" - borderlayer="true" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:object-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid4085" /> - <sodipodi:guide - position="2.0000044,14.00003" - orientation="12,0" - id="guide4075" /> - <sodipodi:guide - position="2.0000044,2.0000296" - orientation="0,12" - id="guide4077" /> - <sodipodi:guide - position="14.000004,2.0000296" - orientation="-12,0" - id="guide4079" /> - <sodipodi:guide - position="14.000004,14.00003" - orientation="0,-12" - id="guide4081" /> - </sodipodi:namedview> - <metadata - id="metadata3054"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Capa 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-421.71429,-531.79074)" - style="opacity:1"> - <g - style="enable-background:new" - transform="matrix(-0.01773253,0.01023788,-0.01023788,-0.01773253,437.80873,533.55033)" - id="g94"> - <path - inkscape:connector-curvature="0" - style="fill:url(#e)" - d="m 656.71,-7.0909 c 20.267,-9.5939 39.714,-20.144 58.137,-31.855 0.64586,-0.42398 1.3003,-0.79943 1.9461,-1.2234 -7.5146,19.097 -3.8382,52.585 -3.7537,52.44 11.85,-34.711 26.515,-65.255 48.744,-84.672 8.4826,7.5928 14.923,21.83 20.214,39.882 2.6186,-24.849 -1.858,-38.732 -4.0514,-43.799 10.917,12.948 30.734,20.176 52.045,26.46 -23.946,-14.536 -39.792,-28.878 -46.004,-42.955 68.312,-21.018 142.29,-46.157 219.96,-74.026 -6.0925,-4.5911 -12.639,-5.1694 -19.442,-3.1706 -14.023,5.1017 -106.22,38.312 -231.64,76.244 -3.5629,1.0778 -7.1567,2.1511 -10.768,3.2375 -1.0067,0.30738 -2.0264,0.59708 -3.0153,0.89135 -13.174,3.9515 -26.666,7.9189 -40.462,11.92 -3.1433,0.90384 -6.2865,1.8077 -9.4475,2.7247 -0.0663,0.02188 -0.13246,0.04334 -0.18106,0.052 l -34.514,68.935 c 0.7115,-0.33546 1.4939,-0.72358 2.2408,-1.0853 z" - id="path96" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#i)" - d="m 23.148,66.817 c 19.071,7.1961 39.608,9.0845 59.733,11.274 11.854,1.1234 23.738,1.9142 35.63,2.4926 8.1692,-17.104 16.338,-34.207 24.508,-51.311 -31.491,0.85648 -63.087,0.17618 -94.393,-3.5401 30.943,3.103 62.137,1.8494 93.129,0.17007 -22.37,-26.669 -46.909,-51.428 -71.93,-75.588 -23.519,11.839 -46.291,28.35 -58.634,52.244 -6.3001,14.546 -9.9508,31.534 -4.821,46.981 2.7562,7.894 9.065,14.16 16.773,17.277 z" - id="path98" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 280.24,-67.689 c -0.15352,-0.13308 -0.28936,-0.27929 -0.4429,-0.41235 l 2.6202,2.831 c 0.23288,0.12909 0.43954,0.22281 0.65472,0.36504 -0.94684,-0.94406 -1.8983,-1.8573 -2.832,-2.7836 z" - id="path100" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 368.72,-99.465 c 1.6889,1.4638 3.3155,3.0287 4.9198,4.6376 -1.6043,-1.6088 -3.2487,-3.1606 -4.9198,-4.6376 z" - id="path102" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 640.89,-71.354 c -0.77256,0.21613 -1.5451,0.43223 -2.3045,0.66606 -15.919,4.505 -31.444,8.8006 -46.643,12.908 -17.052,4.6045 -33.627,8.9648 -49.773,13.089 -17.016,4.3579 -33.536,8.4584 -49.579,12.315 -16.829,4.0548 -33.127,7.826 -48.887,11.362 -12.825,2.8692 -25.296,5.586 -37.426,8.1328 -4.0333,0.85047 -8.0489,1.6878 -12.029,2.4989 -7.881,1.6182 -15.643,3.1754 -23.223,4.6806 -7.0114,1.385 -13.886,2.6958 -20.659,3.9587 -2.2547,0.43715 -4.4872,0.83034 -6.7242,1.2544 -0.3574,0.072954 -0.72796,0.12822 -1.0854,0.20118 l 2.2258,2.4101 -2.5583,5.1341 c 0.55154,-0.10716 1.0985,-0.18347 1.6632,-0.27291 10.236,-1.7727 20.516,-3.6333 30.84,-5.5819 5.9654,-1.1307 11.949,-2.2746 17.936,-3.4492 16.6,-3.2538 33.24,-6.675 49.89,-10.268 16.826,-3.614 33.632,-7.4045 50.376,-11.314 16.449,-3.8277 32.823,-7.7924 49.096,-11.819 16.242,-4.0316 32.358,-8.1608 48.306,-12.331 16.654,-4.3643 33.08,-8.7783 49.245,-13.247 3.6463,-1.0025 7.2925,-2.0049 10.926,-3.0251 13.032,-3.6261 25.843,-7.2535 38.464,-10.878 l 4.0558,-8.1098 -2.4975,-2.7025 c -0.37966,0.11693 -0.7594,0.23382 -1.1214,0.3376 -16.542,4.885 -32.709,9.5737 -48.514,14.048 z" - id="path104" /> - <path - inkscape:connector-curvature="0" - style="fill:none" - d="m 374.86,-93.622 c -0.012,-0.01769 -0.0309,-0.0044 -0.0441,-0.02219 0,0 0.012,0.01769 0.0441,0.02219 z" - id="path106" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" - id="path108" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 415.36,-112.67 c 2.517,2.3588 5.0819,4.8192 7.717,7.3373 0.012,0.0177 0.0441,0.0222 0.057,0.04 -1.2887,-1.2942 -2.5643,-2.5706 -3.8622,-3.8031 -1.2979,-1.2325 -2.5872,-2.4165 -3.9119,-3.5742 z" - id="path110" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" - id="path112" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.77,-93.666 c 0,0 0.012,0.01768 0.0309,0.0046 0.012,0.01769 0.0309,0.0044 0.0441,0.02219 -0.39436,-0.42092 -0.81102,-0.79786 -1.1923,-1.2011 -1.6175,-1.6266 -3.2618,-3.1783 -4.9198,-4.6376 1.9685,1.915 3.9986,3.8391 6.0373,5.8118 z" - id="path114" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#h)" - d="m 294.05,14.992 c -16.961,2.5069 -33.723,4.7285 -50.218,6.643 -17.122,1.9948 -33.955,3.6385 -50.416,4.8964 -0.9569,0.07847 -1.9446,0.15235 -2.9192,0.24395 -16.218,1.2152 -32.064,2.0446 -47.489,2.4796 l -24.508,51.311 c 3.1595,0.15406 6.3543,0.2819 9.6108,0.41887 12.251,0.46429 25.27,0.74328 38.902,0.81409 15.365,0.07595 31.56,-0.1344 48.36,-0.60148 15.522,-0.45209 31.601,-1.1524 48.051,-2.1282 14.003,-0.83512 28.316,-1.8448 42.838,-3.0914 0.5424,-0.0455 1.068,-0.07818 1.6104,-0.12365 13.32,-22.17 22.89,-45.722 34.335,-68.583 -16.183,2.7801 -32.241,5.3583 -48.157,7.7211 z" - id="path116" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#f)" - d="m 639.56,-61.012 c -16.179,4.4506 -32.604,8.8647 -49.245,13.247 -15.935,4.1875 -32.046,8.2859 -48.306,12.331 -16.26,4.0447 -32.63,7.9786 -49.096,11.819 -16.744,3.9098 -33.563,7.6825 -50.376,11.314 -16.632,3.5798 -33.29,7.0141 -49.89,10.268 -5.9877,1.1747 -11.971,2.3185 -17.936,3.4492 -10.325,1.9485 -20.605,3.8091 -30.84,5.5819 -0.55156,0.10715 -1.0985,0.18346 -1.6632,0.2729 l -34.33,68.583 c 1.0848,-0.091 2.1565,-0.19968 3.2413,-0.29065 15.39,-1.3696 31.015,-2.9407 46.779,-4.8063 15.922,-1.8736 31.965,-4.0286 48.062,-6.4433 13.582,-2.0319 27.162,-4.2534 40.724,-6.6821 2.7532,-0.50491 5.4578,-1.0013 8.1802,-1.5108 16.983,-3.1812 33.094,-6.6493 48.365,-10.29 17.296,-4.1271 33.51,-8.4938 48.609,-12.995 9.938,-2.9512 19.414,-5.9711 28.431,-8.9803 7.6399,-2.6465 15.232,-5.3947 22.71,-8.2228 17.654,-6.6419 34.84,-13.842 51.5,-21.64 11.64,-22.613 23.669,-45.588 34.514,-68.935 -12.622,3.624 -25.468,7.2775 -38.5,10.904 -3.6155,1.007 -7.2794,2.0226 -10.926,3.0251 z" - id="path118" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#d)" - d="m 343.66,-0.50096 c 2.2193,-0.41089 4.4564,-0.83491 6.7242,-1.2543 6.7596,-1.2806 13.634,-2.5914 20.659,-3.9587 7.5938,-1.4876 15.325,-3.0493 23.223,-4.6806 3.9802,-0.81109 7.965,-1.653 12.029,-2.4989 12.131,-2.5468 24.602,-5.2637 37.426,-8.1328 15.759,-3.5362 32.058,-7.3074 48.887,-11.362 16.043,-3.8564 32.564,-7.9569 49.579,-12.315 16.146,-4.1247 32.739,-8.4981 49.773,-13.089 15.198,-4.1078 30.724,-8.4034 46.643,-12.908 0.77254,-0.21613 1.5451,-0.43223 2.3045,-0.66606 15.804,-4.4748 31.971,-9.1635 48.483,-14.053 0.3797,-0.1169 0.7594,-0.23382 1.1214,-0.33761 l -19.143,-20.676 c 0.2395,0.5082 0.5278,1.0079 0.7674,1.5161 -23.296,-24.428 -69.92,-45.278 -111.88,-49.997 -19.338,-2.1783 -39.994,-1.8427 -62.413,0.92504 -16.69,2.0589 -34.353,5.4699 -53.191,10.219 -16.464,4.1405 -33.814,9.2679 -52.184,15.425 7.8381,3.7633 15.478,9.0727 22.931,15.646 1.2939,1.1531 2.614,2.3417 3.9119,3.5742 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -0.012,-0.0177 -0.0441,-0.0222 -0.0569,-0.04 -28.247,-17.932 -58.622,-19.938 -89.973,-14.526 9.3924,3.2694 23.242,9.6268 35.603,20.379 1.6889,1.4639 3.3155,3.0287 4.9198,4.6376 0.41208,0.40779 0.81102,0.79786 1.1923,1.2011 -0.012,-0.01769 -0.0309,-0.0045 -0.0441,-0.02217 0,0 -0.012,-0.01769 -0.0309,-0.0045 -10.105,-6.0061 -19.623,-10.334 -29.164,-13.137 -2.0374,-0.60186 -4.084,-1.1421 -6.1444,-1.5898 -3.1256,-0.70044 -6.2609,-1.229 -9.4323,-1.6212 -2.0262,-0.25361 -4.0614,-0.44555 -6.1236,-0.56271 -4.8248,-0.29107 -9.7616,-0.2522 -14.877,0.1383 -1.5609,0.1148 -3.1265,0.26044 -4.7274,0.43231 -2.2279,0.36236 -4.3941,0.73388 -6.5295,1.11 -9.6447,1.7187 -18.003,3.5811 -25.18,5.4456 -3.5886,0.93227 -6.8597,1.8486 -9.8489,2.7754 -1.1876,0.35928 -2.3445,0.72314 -3.4528,1.0785 -3.3117,1.0836 -6.2044,2.1035 -8.6957,3.0727 -3.7281,1.4472 -6.5694,2.7582 -8.5675,3.8006 1.3027,0.35098 2.6974,0.8259 4.1661,1.4378 10.15,4.2169 23.891,14.166 33.591,23.215 l -17.583,-18.98 17.583,18.98 c 0.15354,0.13308 0.28938,0.2793 0.44292,0.41237 0.95142,0.91323 1.8983,1.8573 2.8628,2.7882 -0.23288,-0.1291 -0.43954,-0.17283 -0.65472,-0.31504 l 60.164,64.89 c 0.33972,-0.059824 0.67944,-0.11965 1.05,-0.17492 z" - id="path120" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#c)" - d="m 141.76,25.871 c 14.308,-0.86871 30.359,-2.1245 48.242,-3.9432 0.92606,-0.08306 1.8876,-0.19234 2.8313,-0.2885 15.471,-1.594 32.288,-3.5552 50.488,-6.02 15.721,-2.1083 32.439,-4.5725 50.245,-7.4582 15.511,-2.5017 31.888,-5.3162 49.043,-8.4876 l -59.49,-64.569 c -24.736,-13.567 -40.821,-16.794 -59.841,-16.547 -5.1755,0.16099 -10.523,0.42238 -15.982,0.79335 -16.711,1.142 -34.469,3.2787 -51.604,6.1064 -16.54,2.7429 -32.435,6.1328 -46.23,9.9134 -8.7714,2.4155 -16.684,4.99 -23.332,7.642 -5.8619,2.3434 -11.266,4.7863 -16.287,7.3018 25.101,24.05 54.589,54.423 71.931,75.557 z" - id="path122" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path124" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path126" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#b)" - d="m 419.27,-109.1 c 1.2979,1.2325 2.5912,2.4958 3.8622,3.8031 -1.271,-1.3073 -2.5643,-2.5706 -3.8622,-3.8031 z" - id="path128" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path130" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path132" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#a)" - d="m 374.86,-93.622 c -0.39438,-0.42091 -0.81102,-0.79787 -1.1923,-1.2011 0.38126,0.4032 0.7802,0.79328 1.1923,1.2011 z" - id="path134" /> - <path - inkscape:connector-curvature="0" - style="fill:#be202e" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path136" /> - <path - inkscape:connector-curvature="0" - style="opacity:0.35;fill:#be202e" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path138" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#j)" - d="m 374.81,-93.662 c 0,0 -0.012,-0.01769 -0.0309,-0.0045 0,0 0.012,0.01769 0.0309,0.0045 z" - id="path140" /> - <path - inkscape:connector-curvature="0" - style="fill:url(#g)" - d="m 697.74,-87.882 c 12.856,-3.8255 25.903,-7.7645 39.192,-11.856 0.1987,-0.06501 0.3797,-0.1169 0.5784,-0.18193 1.8809,-0.57144 3.7485,-1.1606 5.6293,-1.732 8.9497,-2.7671 16.955,-5.3279 35.178,-11.129 -2.3417,-10.966 2.6186,-24.849 9.1692,-39.363 -11.075,9.2259 -18.387,22.082 -20.063,37.399 -28.142,-41.768 -64.174,-69.017 -107.07,-65.115 -3.8322,0.34468 -7.6833,0.92288 -11.624,1.7871 16.438,0.48738 28.367,7.3631 41.449,27.265 0.0441,0.0223 0.101,0.0623 0.1451,0.0846 -0.0441,-0.0223 -0.101,-0.0623 -0.1451,-0.0846 -33.43,-18.78 -55.964,-23.938 -85.227,-21.557 -6.9364,0.56118 -14.25,1.539 -22.182,2.866 43.476,5.8729 71.791,29.037 88.586,63.086 l 0.7758,1.4939 18.367,19.182 c 2.4192,-0.69629 4.8254,-1.4103 7.2492,-2.1374 z" - id="path144" /> - </g> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="Calque 1" /> -</svg> diff --git a/apache2/html/themes/legacy/icons/16/apache.png b/apache2/html/themes/legacy/icons/16/apache.png deleted file mode 100644 index 7f46633e8f9badd0edf713f6dbcea25090452000..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 556 zcmV+{0@MA8P)<h;3K|Lk000e1NJLTq000gE000mO0ssI2srK1z00001b5ch_0Itp) z=>Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RX3KtCz5zD5o9RL6UzDYzuR4C6~ zl0A!4K@^7H_sm^x<OVj~x<R%S#DI&1t6&pIBmM#*b^*c4!ootfvhgoiSXkJl)5bzv zY(roP8(|B}cq37kc)#|}ojDfy+TEu*Fwc28b7rWjxQGJu>ItYPL5LCrp@PdO0VSmL zqCzzar7i-N>N=W$ha*DRzxn(GS`b_uE>#lhQF%BAWnjnOe|~-=S_4A>1ObJv$i1&B zwXRA&ydOMm|M~h+)v2ngUkDqus=Ph7v$yY#o44baFKn54@AU#3)%xn})6t-I=k&o7 z`zyAp-n*;nqT3bj=w9zj<6$=X@lVfvrFuD40FYF`#`ACE)4f;Euid&CsR6x`tNkc| zU{NXH8nXB7akKX*uSy|A#HfL+vQ)W#t@->c{yn|Ev*VmIV!|*K2}p_vNs{p1_xt_f zaJbsba=y{%csxE?59*u?(li|m2D91h@bGo3)oL^v)9EzJG7%F+b&_!$ce~wArz1sC zh{$9z+1d*C_wOc22FUL2je~>xy<V><iYSU|wHg4HWm%RbfPTN<ZnuLV0AP$s)3n)a uCP|X#`S$j9y<Xp3%UWxU5xM%;*8B%83r}qa-~K!R0000<MNUMnLSTY)p#Z4> diff --git a/apache2/html/themes/legacy/icons/48/apache.png b/apache2/html/themes/legacy/icons/48/apache.png deleted file mode 100644 index eda64f44f58392bf2a2edaab5c2b92e8b1ca1be6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4507 zcmZ8l2T)U6w+_;xAVrWOC{@a(C5Ti3L5d(vKzi>zG(m!N=|wuyRKS2-2%#85O{fCW zR3M>)QUX#1La5=z_h#PA|DTz4_RL=UJF9+c_MBuR1MTbAZe0Ta0M~UMYZ#MP&|d*w zA-|^_{JxQwtNxEIg8%@Ap1(rT5BccwcQeFa&HeAm|CQ05G;;ueDP2cH&D5f&)Iuli zw)rG!v<3CAT}OlaZ0Vgj+0V&QdRy`h_Z(PQfM8W-AR8|~UrZ*`7Sj+fUxPze0yXd| zA0J;?w8av2O8kIBEK5b&_Ec#|iGh;m?0kqJq}Ci!89s&)2@QWN*d29vXc|$opuDI| zR9XzJ5oPPr5&;14QAteS*Cd!5GGBe9ZHz7`^C+wBtc;GA=KL{1ohAD)MP3(b^>Ib9 zPJcQH$@C*7^}~bCoBTj=2MWGuUJ%ulTDMNW*kg_?S55%XIx}`9M-6C|<5JzLCGAw* zoDo~EZ=GIQ^J$qicR3cwe}#F@MvNkG=)4F(BMX7>v$S4MWa2f#LLcWEOM+87{n1)6 z4O#<@`KAJsK0wPGG~2vsEY5T{v2SZw!HX6EznG>hIUXzzMi%f88}HFbPiaK+BxS0b z!$S-!cn8K?oG^kU^o0aTd>tM*_JiBvBr*f#zJnfZ-8NZ_{;=^#2VxuD;c5h66BBZD zdQu1$>}61(VY3{j8uubXC5k_rn<H$ji-d)_rey6T@}{Lc`ze8JSd02^+7kH`(S(t6 zo|B10brvyxrmNO)nI8W1CO^8Tb5=GUHrBvcq*?e~HJOGWpZ?wuTglWTK6(r1USJc_ z=}j`AzVpW8{VjTn>(kNvD91(=ix`6GmF1a(as4nSU);!th94b)$OwX0I01TbYAoy{ zKiR#WkvzEFb~qsN$?$_FRes_9hg9hJak&~bxqpJiSWl7^R|N$qsIGiYU<JyS$x!kK zTYq0|`4S#v?(Y69`-`K4qxWn=RprsKb(Mo{J)I-}6|jYvk)#wqFI^dz=8Rsg>Wx>_ z<syN$I7jNvTNM_}Pg!9dpv~QbEJcq=X1RQKyAJ6Kt46eqYwLcOx}Fy?g19>u73JtZ z(d~|6T#1pTGN3wX1@M1$r9`D>pey_v)m$)3cnqs|li)MS7>?=<;)O$lb;#B3k*0gN z(YMbClfhx0${TsMh$w#x_7vrzNY7}m3Zv1HRb5G`%Q83tzB;XuV=gfyjV(%6#!+*y zQE&5UT5{LoHt}|)VSg0bBBztBa0oQYH8^!q)#5hSCQtEUq84n*{bzsqH5b1_=qOi9 z#T6c!PYQbVs0WZ*K4x^lYe@afjaHhcjYq$W5h@3Ac9`FHOOb?{yO^zlM7a6)3+sfC zDC6xZ*XN>oT@2Qm*Em;}f0r(31StiJm<|7?$q-3saEJ$~iCLWYS5LFs%M`F{b64SH zJmZ8zc5G21jA`tsDC2a4ZmHyENp4uDx;nj6XSR<qE7xdCgMb`G@&L{A6}G#k#jC?< z_Y;tG0_!wz+-Um|ilu!<oT%5<@{4^gX5TiQt)xw;U*+Q4I*Hb&dT!?^S3ncTmlKpA z*BoB;AWGh1z0!ADzoR9_nm2YB<SpWBz3truc^9^(aZKu?$eBVyL*Y+BFk?rtFzcf` zr0%JzJDqzk*7McH3c)_oI!>`ZLQGC&vqXa(mplU?Ps=L}Y1-kF@%(Sebz|sI()9Qf zNC}SzF;|rT9_58~Ylfew;(5GwB7-U~B@EQ`C8!3e)^E|Ms~{J$v`kBzc_$Na#p%gc zK&;*?ozQX-7GBEQxOil!A(~as{x?K%IsQ8mmQQ%{=kcY}O_qKh4(JNt^QmPYSQo(e zD8s`dminQd!?(4>$IQM=Njv9zZtht=^w)s((aZ8hoV5+@As2)o@1}y8gH(Zd64LuQ z%9JjNt^CL~QKjQ-ijspX8j((E<`8qEbLn&C#Z;N?LrSanR6Y=HEJxD#lymxox=1V3 z_h<ywTJzlCgELfui;>{ll##Z@p-c{{v{Y&7%t*J1zaE%%lhX0$B_pr)dw_4&cs#Yb z5gWr4U%s72nJsDQYj>Z*wdL65&vAZbkb1r^^U^Pmhx$tmcjK=-pzWpCEZ5k7)L=nf z&N#asRhvmcDK0mbeUg7t_lOM?tL42BHza1B|Fu-+8Wd>^-al;B-<?N=t}iKzup0$D z6@Mcr<elfg@HU^1>f_~|%+Dz6j)y>gCOT<A^^sMC>z|^LM)9F+@qmHdBA4T+ki|=k zeQ&Q>K)lzaNHXhVOA0EDUJa@WNHzfj2p-?Q3ZNGt-YIrXG8uDnbadSL@zPB~p(p|q z<KxkPMEmwQ8;v(vmvX6N*3#J1QONfzsi5ixEzNaKMA3STr(Ml=0Q4}$IOWA>jSio$ zGD;4Q<*7e1HDU-r1{1&2R^3r?`C+H~Rer&%3T(WgogKqzCW{=6Tp3(brG9izri;(f zBEj_rQ<Ak>)r7elZn`0KOn7&8vHp(}0;x4vm7yHG=-dxd@H$JW#%n}NvN>76uG0HQ z-jcz(u@#O)^m90;%>%QpFD%|@WL6Y@4U|@=0Y}F(8P%9BmKMJ@FD`W35xXx6_v2LA zTZ$v9M(XLOcMH__q)>Mc-zu3l#YaeH<L<gM9wf|BDrB68A4nWx)c}g2*fa-THYeT| ztUG^BPR>F`DV@7JmnT9RP3UybP&sTFOMmbJuo^oEwNztv$a2x?ed`WK*6YbJi0iFH zQ<yaqs5wF>)_Pz+Lg`m9&)DEv&h^HWWjEtzL-du8R;41=$`Yra|IBi66i&@G@&9R@ zKO?eHwtcnAfwr5MFEjoIaPYRmMhNG7#_CwN*t|I#NP9uj!>d|}2|hl&kNZruXlN_H zWM_|WQj0sl#B0+9M4CY~xgl*IZa*oJzLylAoRl8(OV0wR(K~!X)D8?|DP*H$dMryC z=cQtz>@bsK2!D&eujJd@DnGYNZ^ms}CnfP>1uy{Zkl%U{+3^0Ek6_*e2%qNYDDfe= zP{HJyo&qb3HJW?;wq7f2JN+)N>dlRGezhg`Cy@=gAw3}anz)Nup?=C7yAEiJnJ9-h zYZ9N3PSPinea&jqw9J)kHEc?>I5U+?x<eBPJ97?Y(TxmfQvbq{dDB?KsVjxbD0-w@ zLp1Q8zASjpw%x=vD<kO3Uv={IjUVx%+lqFT#{7YK*gBTVY7aIcHW514uJSjQwbWTj zE7uJ*uvRlk`g(E*{i23SF>^Lr+A|7CHagD|QT^=Xz~>bUTT~LbgH%_Hk$7CKP;Y=w z<M3q0W^?`L`Ro5q{{H&=bZL)?B{bFmY2%5qVi3caHafLAT2z|?YU}D47#VS!&lib> z(+BM$DQ^_?$7S@-PEP?w+{A9sVZ`Oubkoq#(4$9>5*co%EL(`KhS}x2W-J4emgO-a z+`>cB%!3M9m7d)FVQ7(*Yw_w#RI7oUoij5tsZ!|Xh_j=PaAHW?ychC!t7NntqM%X~ zFm{jzM(<LBzIednc)!(c%HB#BNr@yKypxiY+?hq~cE(V~tE-9L><{2b(5((^(bM?C z0W)ozuQUB;cy5#MOWtjbI~^>PxFer|{5<c6Io}_`oK7O{gl{#((K7x63zQ*1J8UHJ zyc&YE1%g-adBY<XaRJ-~x-fIQu+_tjaio<m6na`3x^U7ftnyRdfV&?%1EO!6_d|D0 zdLfNOTr9CZvgYRI%41@z*U-DD+3mm<ZYnh<su8!K-GvUMl|)K83<eu2kRq#ifob4~ zh=@F0P0`8i5Uz9@W>0uxVq%`LBgfkHkLh5~A`$@+MeTpM{ypkq(_Yx{?RghtWPM}f z{^=$HQCoWm?RYRgF)@Kc6W}5#Z^L(5Ha0fw5OVVJ>t`e!hD5M!3+XuhT@!VAwn+9# zb7diXSNY{}Jw7ae8v%!3kcb$28ymgsmE%9luT@FM!^6YXCRJ|k?oVJp1_lNyUaLU& zmb!Fd*-E97Y^m&0b`K&>50!~?2fZwYB}$<?s|EI?1tOYV^ZPr}VO3#aA-P}~X=&{T zqe_VOeO)xVzz!;!u?)9HNlHkRszkKfNWM->JKrzBloS>!1g<>J79=}~u#dVRkgFZ< z*xc9{xbXu<AP~rL_@Oq>NOV%|AZ2A`Ma9<E*3%hp1UVqMk;v9UhqWjSX{LHIXcBcY zWItM}L>v%!{qm^kU1?!q*yRP0xHWB3ZE8>=UzU5i6N))2-F?|lydZy7s{(xg{%Y7l zmVovh=sKVC-+=$g)8+0rRJ}MPZ$_SuzauviVtm82W>Ocne>4j*)Yp$Vn_YZcRMhJK zQ@w4Tp=WQn@Lt_!<f@oGCl^<n|IhBp8uQTYnfod#Z+G9LBQH)5##HSQICpn<@+G3s zt;rIB8!J&*K11Wf$YdZ7OlN23@T0Ab-Cf4m_g3)Hk&)5|Vbb(Hn>Yk&*0(=^jg4() z`zVHzcBgf-&baz;nded-7;92xp!rk=4F0p%!-yeZt?M>Z27dke)tAaHEG&F^+^@Pb z-Q@1-dY8UOJ|nfS9D6Ie4!1d`a<-LmTWJlC?*aM976)*TjgI;)qC3oLB&4JYbngOm zvR^r_hb_FjJjas@2zj~8bw=D(jUt_sA2JhHR$OW(e{XIIl#8USt*w!JqoAN5wa<wo zVR)-`hunLIho6?^<Kp6$mzV7?ew%A+YgbiPrh#c0xCf|n3JH*?Gi&ed97C0`#R%fF zfAUUFPFREu+R5&d6EN7g)j?c1>)|1R<m6EG^-TSLcIMlpY+G|tvwM5>*w*hJ@)<$o z?k`meC9TO}Ha0h{EiF&xcOy|j_|cw3#{Pgg9Il|!vuZrK+{3}a;gWRm7Ei7AKKFDf zj#1LCeF}%eZ3HWp8k8A*v#KGHRK^Y>k9&CTC_{s1Kl=&@2mlsdET{MN^^r&Pq!-*Q zoOFUWe5cakI+VXlCJnh*K|w(f%*D~k0lpwV|5o~!vPX&Jbjm(>@N#Xqu*rSQz|auq zg+xSbd!u*BEW0FkiDKmWi<(L3&v^D+V?&jbmCnviGW_ynEDC+HRtz`WT<VHrR5@Py z_AL`zRJhTCCoxlX;Z-kBjH`29EhP)cG!N#+vty2_qj@gYwOeY_U%xig)04TC9=aGI zH`J(J29lR={`5&kMJ19rA8Owk>`AUV`<vwC<l9OiE6^;#!3*Nzq901irkP3eJ2}JF z2pqzu<%f@Kj^Lk&s6}){Pft$(H@;h+Ur6T$^I*K{P@{1*tLFEutt}HnWimU)B9EFH z8o*-*WbPwn%_qf&Zl!BASfnjCo7J44dHNf`LcmxODH3M7Q&4Ik99k@+PZzJws;QA% zwN8NQWOF$03*G-R;dLLNnBk0jPM*K`u$Hjrilw@+AB&5ZBap}-UtbCR@t7D2z=+#; z0QVv>Nca{f=U@jvj%0^0hnoda4k}k+FsdjzvW*+q8RO~|d4o~DMIszooJ2vT_VCFQ z^MlABTe){)I@wMQZv>N#{~g}|9qjG-b0oCLAP@+aEaQ~I3X!kGIx9Ghno-T9nVDIj zaHuV6e1kPrbL@Z|QBft*Y9ydUt0Id%t}tjQ$ktpm4`QG1db&~d&LI1Pk;qC18JF}C zx4CMta~4SoE~>2CwDJy87-R&Wh+}7XfwHJsj;8kZ2ePtQ4;fvUaohYIZf?PH0^vCv zi4Qx;5Z1{Kf8sYufGWH9T~g>paa3yWo{@i00PY5BS_Hc|2D>Uc2fC6MfHVkvPXZ(( z0lH@j1}TE26~Xt#K+=jJ(5``c<$nNtAugV7VgCgH-B-M)@P7dLUXy>x0Or3Iy!>6= z6`dhIkiZ~+M`yAX@#oLpk(IpvuMBeZ_4o1gbC+;)bPk3D0;FF^i-TW)|BB9O<tOr4 OfR3htMxDAt?Ee5aU(hN5 diff --git a/apache2/locale/ar/fusiondirectory.po b/apache2/locale/ar/fusiondirectory.po deleted file mode 100644 index 7e5cdd7f3d..0000000000 --- a/apache2/locale/ar/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ar/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "خدمات" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "إزالة" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "ØªØØ°ÙŠØ±" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "الإسم" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/ca/fusiondirectory.po b/apache2/locale/ca/fusiondirectory.po deleted file mode 100644 index 8b9806d3d7..0000000000 --- a/apache2/locale/ca/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "AvÃs" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nom" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Desa" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "CanceÅ€la" diff --git a/apache2/locale/cs_CZ/fusiondirectory.po b/apache2/locale/cs_CZ/fusiondirectory.po deleted file mode 100644 index ed075bad83..0000000000 --- a/apache2/locale/cs_CZ/fusiondirectory.po +++ /dev/null @@ -1,190 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Pavel Borecki <pavel.borecki@gmail.com>, 2015 -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/cs_CZ/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs_CZ\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Služba Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Služba virtuálnÃch hostitelů Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Služby" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtuálnà hostitelé" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Seznam virtuálnÃch hostitelů Apache" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Položka Å¡ablony" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Název serveru" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "KoÅ™enová složka dokumentu" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Akce" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "VytvoÅ™it" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Odstranit" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "Upravit záznam stroje" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "Odebrat stroj" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Virtuálnà hostitelé" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "Správa virtuálnÃch hostitelů Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Tento zásuvný modul je urÄený pro server Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Virtuálnà hostitel Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informace" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "název virtuálnÃho stroje" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "Název virtuálnÃho hostitele" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "KoÅ™enová složka pro webový server Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "E-mailová adresa správce" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "E-mail správce služby apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "alternativnà název (alias) skriptu" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "alternativnà název (alias)" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "složka alternativnÃch názvů (alias)" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Skript" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Složka se skripty" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "alternativnà název (alias) serveru" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "Alternativnà URL adresa" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "UmÃstÄ›nà složky" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "VarovánÃ" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Toto se týká vÅ¡ech dat úÄtu, pravidel pro pÅ™Ãstupy k systému, nastavenà IMAP a dalÅ¡Ãch nastavenà tohoto uživatele. DobÅ™e si rozmyslete, zda to opravdu chcete udÄ›lat, protože pak již nebude možné vzÃt provedené zmÄ›ny zpÄ›t." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Tedy – pokud jste si jisti, kliknÄ›te na Smazat. V opaÄném pÅ™ÃpadÄ› operaci zruÅ¡te kliknutÃm na ZruÅ¡it." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtr" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Název" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Základ" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Uložit" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Storno" diff --git a/apache2/locale/de/fusiondirectory.po b/apache2/locale/de/fusiondirectory.po deleted file mode 100644 index 934584fbcf..0000000000 --- a/apache2/locale/de/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Apache Dienst" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Apache Virtual Host Dienst" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Dienste" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtuelle Hosts" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Liste von Apache Vhost" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Vorlagen-Eintrag" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Servername" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Document-Root" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Aktionen" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Anlegen" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "serviceApacheVhostEdit" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Entfernen" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "Host editieren" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "Host entfernen" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Vhosts" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "Apache vhosts Verwaltung" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Dieses Plugin ist für den Apache-Server" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Apache Vhost" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informationen" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Vorname" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "Der Virtuelle Host-Name" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "Document Root für den Apache Webserver" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Administrator Mail-Adresse" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "Apache Admin Mailadresse" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Skript-Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Verzeichnis" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Skript" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Verzeichnis" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Server-Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "URL-Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Pfad" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Warnung" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Dies beinhaltet alle Kontendaten, Systemzugangsregeln, Imap-Einstellungen etc. für diesen Benutzer. Bitte überprüfen Sie nochmals ob Sie dies tun wollen, da es keinen Weg für FusionDirectory gibt Ihre Daten zurück zu bekommen." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Wenn Sie sicher sind, drücken Sie 'Entfernen' um fortzufahren oder 'Abbrechen' zum Abbruch." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filter" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Name" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Basis" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Speichern" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Abbrechen" diff --git a/apache2/locale/el_GR/fusiondirectory.po b/apache2/locale/el_GR/fusiondirectory.po deleted file mode 100644 index 0779e11675..0000000000 --- a/apache2/locale/el_GR/fusiondirectory.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Nikos Charonitakis <charosn@her.forthnet.gr>, 2005 -# Î ÎÏ„Ïος Κουσουνάδης <1983.blackmore@gmail.com>, 2015 -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/el_GR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el_GR\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "ΥπηÏεσία Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "ΥπηÏεσία Apache virtual host " - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "ΥπηÏεσίες" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtual hosts" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Λίστα από Apache Vhost" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "ΚαταχώÏιση Ï€ÏοτÏπου" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Όνομα διακομιστή" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Ρίζα εγγÏάφου" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "ΕνÎÏγειες" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "ΔημιουÏγία" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "serviceApacheVhostEdit" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "ΑφαίÏεση" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "ΕπεξεÏγασία συστήματος" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "ΑπομάκÏυνση συστήματος" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Vhosts" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "ΔιαχείÏιση Apache vhosts " - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache 2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Αυτό το Ï€Ïόσθετο είναι για τον εξυπηÏετητή Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Apache Vhost" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "ΠληÏοφοÏίες" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Εικονικό όνομα συστήματος" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "Το εικονικό όνομα συστήματος" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "Ρίζα εγγÏάφου για το apache web server" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "ΔιεÏθυνση ταχυδÏομείου διαχειÏιστή" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "ΔιεÏθυνση ταχυδÏομείου διαχειÏιστή Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Alias σεναÏίου ενεÏγειών" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Κατάλογος alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "ΔÎσμη ενεÏγειών" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Kατάλογος σεναÏίβν ενεÏγειών" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Server Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "URL Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "ΔιαδÏομή καταλόγου" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Î Ïοειδοποίηση" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Το παÏόν πεÏιλαμβάνει όλα τα δεδομÎνα λογαÏιασμοÏ, τους κανόνες Ï€Ïόσβασης συστήματος, τις Ïυθμίσεις imap κτλ. για τον συγκεκÏιμÎνο χÏήστη. ΠαÏακαλείστε να ελÎγξετε αν όντως θÎλετε να Ï€ÏοχωÏήσετε, δεδομÎνου ότι το FusionDirectory δεν θα μποÏεί να ανακτήσει πλÎον τα δεδομÎνα σας." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Αν είστε σίγουÏοι, πατήστε \"ΔιαγÏαφή\" για να συνεχίσετε ή \"ΑκÏÏωση\" για να εγκαταλείψετε. " - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "ΦίλτÏο" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Όνομα" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Αποθήκευση" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "ΑκÏÏωση" diff --git a/apache2/locale/en/fusiondirectory.po b/apache2/locale/en/fusiondirectory.po deleted file mode 100644 index a17c8de614..0000000000 --- a/apache2/locale/en/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory VERSION\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: English\n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for " -"this user. Please double check if your really want to do this since there is " -"no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/es/fusiondirectory.po b/apache2/locale/es/fusiondirectory.po deleted file mode 100644 index 1f703612fc..0000000000 --- a/apache2/locale/es/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 17:04+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Servicio apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Servicio de Virtual Host de Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Servicios" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtual hosts" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Entrada de plantilla" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nombre del servidor" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "RaÃz de documento" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Acciones" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Crear" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Eliminar" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Nombre Virtual Host" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Dirección correo electrónico del administrador" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Alias de script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Alias de directorio" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Directorio de script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Alias de servidor" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "Alias de URL" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Ruta al directorio" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Aviso" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Esto incluye toda la data de la cuenta, las reglas de acceso de sistema, opciones de imap, etc. Para este usuario. Por favor verifique bien si quiere hacer esto ya que no hay forma para que FusionDirectory recupere la data." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtro" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nombre" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Guardar" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Cancelar" diff --git a/apache2/locale/es_CO/fusiondirectory.po b/apache2/locale/es_CO/fusiondirectory.po deleted file mode 100644 index e834a22e3b..0000000000 --- a/apache2/locale/es_CO/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_CO/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_CO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Acciones" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Crear" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Borrar" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Datos" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Precacuión" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Si está seguro presione 'Eliminar' para continuar o 'Cancelar' para abortar." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtro" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nombre" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Salvar" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Cancelar" diff --git a/apache2/locale/es_VE/fusiondirectory.po b/apache2/locale/es_VE/fusiondirectory.po deleted file mode 100644 index 26d993743f..0000000000 --- a/apache2/locale/es_VE/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/es_VE/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_VE\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Servicio apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Servicio de Virtual Host de Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Servicios" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtual hosts" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Entrada de plantilla" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nombre del servidor" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "RaÃz de documento" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Acciones" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Crear" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Eliminar" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Nombre Virtual Host" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Dirección correo electrónico del administrador" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Alias de script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Alias de directorio" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Directorio de script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Alias de servidor" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "Alias de URL" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Ruta al directorio" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Aviso" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Esto incluye toda la data de la cuenta, reglas de acceso de sistema, opciones imap, etc. para este usuario. Por favor verifique que realmente desea hacer esto ya que FusionDirectory no tiene forma de recuperar la data" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Entonces, si esta seguro, presione <i>Eliminar</i> para continuar o <i>Cancelar</i> para Abortar." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtro" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nombre" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Guardar" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Cancelar" diff --git a/apache2/locale/fa_IR/fusiondirectory.po b/apache2/locale/fa_IR/fusiondirectory.po deleted file mode 100644 index f2f5b54d85..0000000000 --- a/apache2/locale/fa_IR/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fa_IR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa_IR\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/fi_FI/fusiondirectory.po b/apache2/locale/fi_FI/fusiondirectory.po deleted file mode 100644 index e46ecd2d43..0000000000 --- a/apache2/locale/fi_FI/fusiondirectory.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Dina Solveig Jalkanen, 2016 -# Dina Solveig Jalkanen, 2016 -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-08-03 09:33+0000\n" -"Last-Translator: Dina Solveig Jalkanen\n" -"Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi_FI\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Apache palvelu" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Palvelimen nimi" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Toiminnot" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Luo" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Poista" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Apache Vhost" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Skripti" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Skriptihakemisto" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Varoitus" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nimi" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Talenna" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Peruta" diff --git a/apache2/locale/fr/fusiondirectory.po b/apache2/locale/fr/fusiondirectory.po deleted file mode 100644 index afbd2b8359..0000000000 --- a/apache2/locale/fr/fusiondirectory.po +++ /dev/null @@ -1,190 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# MCMic, 2015 -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Service Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Service d'hôte virtuel Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Services" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Hôtes virtuels" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Listes des hôtes virtuels Apache" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Modèle" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nom du serveur" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Page racine" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Actions" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Créer" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "Service d’édition des hôtes virtuels apache" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Supprimer" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "Éditer l'hôte" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "Supprimer l'hôte" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Hôtes virtuels" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "Gestion des hôtes virtuels Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Ce plugin est pour le serveur Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Hôte virtuel Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informations" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Nom de l'hôte virtuel" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "Nom de l'hôte virtuel" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "Page racine du serveur web apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Adresse de courriel de l'administrateur" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "Adresse de courriel de l'administrateur Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Alias script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Alias répertoire" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Répertoire des scripts" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Alias serveur" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "Alias URL" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Chemin du répertoire" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Avertissement" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Cela inclut toutes les données des comptes, les droits d'accès, la configuration imap, etc. pour cet utilisateur. Veuillez vous assurer que vous voulez effectuer cette opération étant donné qu'il sera impossible pour FusionDirectory de récupérer vos données." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Donc - si vous êtes sûr - cliquez sur 'Supprimer' pour continuer ou sur 'Annuler' pour abandonner." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtre" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nom" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Sauver" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Annuler" diff --git a/apache2/locale/hu_HU/fusiondirectory.po b/apache2/locale/hu_HU/fusiondirectory.po deleted file mode 100644 index 3e481b6622..0000000000 --- a/apache2/locale/hu_HU/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: Hungarian (Hungary) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/hu_HU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu_HU\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Név" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/id/fusiondirectory.po b/apache2/locale/id/fusiondirectory.po deleted file mode 100644 index 1aa3e83d55..0000000000 --- a/apache2/locale/id/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/id/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/it_IT/fusiondirectory.po b/apache2/locale/it_IT/fusiondirectory.po deleted file mode 100644 index 3fd66669e3..0000000000 --- a/apache2/locale/it_IT/fusiondirectory.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Paola Penati <penati@avaya.com>, 2015 -# Paola Penati <penati@avaya.com>, 2015 -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-08-10 16:51+0000\n" -"Last-Translator: Paola Penati <penati@avaya.com>\n" -"Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/it_IT/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Servizio Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Servizio di host virtuale Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Servizi" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Host virtuali" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Elenco degli host virtuali di Apache" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Modello" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nome del server" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Documento radice" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Azioni" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Crea" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "Modifica servizio ApacheVhost" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Elimina" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "Modifica l'host" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "Rimuovi l'host" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Host virtuali" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "Gestione degli host virtuali di Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Questo plugin é per un server Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Host virtuale Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informazioni" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Nome dell'host virtuale" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "Il nome dell'host virtuale" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "Document root per il server web Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Indirizzo mail dell'amministratore" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "Indirizzo mail dell'amministratore Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Alias dello script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias dell'utente" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Alias della directory" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Cartella degli script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Alias del server" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "URL alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Path della cartella" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Avvertimento" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Questo include tutti i dati degli account, i permessi di accesso al sistema, la configurazione imap, etc. di questo utente. Accertati che vuoi davvero eseguire questa azione visto che poi sarà impossibile per FusionDirectory recuperare i tuoi dati." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Quindi - se sei sicuro - premi 'Rimuovi' per continuare oppure 'Annulla' per interrompere." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtro" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nome" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Registra" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Annulla" diff --git a/apache2/locale/lv/fusiondirectory.po b/apache2/locale/lv/fusiondirectory.po deleted file mode 100644 index 5cde36c3e0..0000000000 --- a/apache2/locale/lv/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/lv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "DarbÄ«bas" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Izveidot" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Noņemt" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "BrÄ«dinÄjums" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Ja esat pÄrliecinÄts, spiediet \"izdzÄ“st\", lai turpinÄtu, vai \"Atcelt\", lai pÄrtrauktu. " - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtrs" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "VÄrds " - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/nb/fusiondirectory.po b/apache2/locale/nb/fusiondirectory.po deleted file mode 100644 index 0163b79eab..0000000000 --- a/apache2/locale/nb/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Norwegian BokmÃ¥l (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nb/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Opprett" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Fjern" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filter" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Navn" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/nl/fusiondirectory.po b/apache2/locale/nl/fusiondirectory.po deleted file mode 100644 index 2dc883d752..0000000000 --- a/apache2/locale/nl/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/nl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Apache dienst" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Apache virtuele host dienst" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Services" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Virtuele hosts" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Sjabloon invoer" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Servernaam" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Document root" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Acties" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Aanmaken" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Verwijderen" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informatie" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Virtuele host naam" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Admin email adres" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Script Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Alias Directory" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Script Directory" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Server Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "URL Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Directory Path" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Waarschuwing" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Inclusief alle account data,system access rules,imap opties,etc. Voor deze gebruiker. Gelieve dubbel na te kijken of je dit echt wenst te doen want er is geen andere manier voor FusionDirectory om je data terug te krijgen." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren' om te annuleren." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filter" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Naam" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Basis" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Opslaan" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Annuleren" diff --git a/apache2/locale/pl/fusiondirectory.po b/apache2/locale/pl/fusiondirectory.po deleted file mode 100644 index c5f384feed..0000000000 --- a/apache2/locale/pl/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "UsÅ‚ugi" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nazwa serwera" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Akcje" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Utwórz" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "UsuÅ„" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Skrypt" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Ostrzeżenie" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "JeÅ›li jesteÅ› pewien - naciÅ›nij 'UsuÅ„' aby kontynuować lub 'Anuluj' aby anulować." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtr" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "ImiÄ™" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Kontener" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Zapisz" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Anuluj" diff --git a/apache2/locale/pt/fusiondirectory.po b/apache2/locale/pt/fusiondirectory.po deleted file mode 100644 index 33205807f3..0000000000 --- a/apache2/locale/pt/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Ações" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Criar" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Remover" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Atenção" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Então, se você tem certeza, pressione 'Deletar' para continuar ou 'Cancelar' para abortar." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nome" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Salvar" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Cancelar" diff --git a/apache2/locale/pt_BR/fusiondirectory.po b/apache2/locale/pt_BR/fusiondirectory.po deleted file mode 100644 index f6b1b7f06b..0000000000 --- a/apache2/locale/pt_BR/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:04+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "Serviço Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "Serviço de hospedagem virtual Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Serviços" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "Hospedagem virtual" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "Lista de Hospedagens virtuais do Apache" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Entrada de Template" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Nome do Servidor" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "Raiz do documento" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Ações" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Criar" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "serviceApacheVhostEdit" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Remover" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "Editar hospedagem" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "Remover hospedagem" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "Hospedagens virtuais" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "Gerenciamento de hospedagem virtual do Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "Apache2" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "Este plugin é do servidor Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "Hospedagem Virtual do Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "Informações" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "Nome da Hospedagem Virtual" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "O nome da hospedagem virtual" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "Documentação raiz para o servidores web Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "Endereço de email do administrador" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "Endereço de e-mail do administrador do Apache" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "Script Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "Diretório Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "Diretório de Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "Servidor Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "URL Alias" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "Diretório de Pacote" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Aviso" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Isto inclui todos os dados da conta, regras de acesso ao sistema, configurações do imap, etc. para este usuário. Por favor, tenha certeza que você quer fazer isso porque não tem como recuperar seus dados do FusionDirectory de volta." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Se você tem certeza, pressione 'Delete' para continuar ou 'Cancel' para desistir." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filtro" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Nome" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Base" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Salvar" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Cancelar" diff --git a/apache2/locale/ru/fusiondirectory.po b/apache2/locale/ru/fusiondirectory.po deleted file mode 100644 index 5f933275b7..0000000000 --- a/apache2/locale/ru/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-04-08 19:09+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "СервиÑÑ‹" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "Ð˜Ð¼Ñ Ñервера" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "ДейÑтвиÑ" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Создать" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Удалить" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "ИнформациÑ" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "ПÑеводоним" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Предупреждение" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Итак - еÑли вы уверены - нажмите 'Удалить', чтобы продолжить или 'Отмена' чтобы прервать." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Фильтр" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Ðазвание" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "СуффикÑ" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Сохранить" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Отмена" diff --git a/apache2/locale/ru@petr1708/fusiondirectory.po b/apache2/locale/ru@petr1708/fusiondirectory.po deleted file mode 100644 index f30b6510ff..0000000000 --- a/apache2/locale/ru@petr1708/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru@petr1708/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru@petr1708\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/sv/fusiondirectory.po b/apache2/locale/sv/fusiondirectory.po deleted file mode 100644 index 7c77f98cc3..0000000000 --- a/apache2/locale/sv/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:06+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "Tjänster" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "Mall-post" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Ã…tgärder" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Skapa" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Ta bort" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "Script" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Varning" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "Detta inkluderar alla kontodata, systemrättighetsregler, imapinställningar, etc. för den här användaren. Vänligen dubbelkolla att du verkligen vill göra detta eftersom det inte finns nÃ¥got sätt för FusionDirectory att fÃ¥ tillbaka informationen." - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "SÃ¥ - om du är säker - tryck 'Ta bort' för att fortsätta och 'Avbryt' för att avbryta." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "Filter" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Namn" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "Bas" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Spara" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Avbryt" diff --git a/apache2/locale/ug/fusiondirectory.po b/apache2/locale/ug/fusiondirectory.po deleted file mode 100644 index a24d5aae12..0000000000 --- a/apache2/locale/ug/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:31+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" -"Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ug/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ug\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "" diff --git a/apache2/locale/vi_VN/fusiondirectory.po b/apache2/locale/vi_VN/fusiondirectory.po deleted file mode 100644 index 45fa14e88d..0000000000 --- a/apache2/locale/vi_VN/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "Các thao tác" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "Tạo " - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "Xóa bá»" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "Cảnh báo" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "Vì thế nếu bạn chắc chắn hãy nhấn \"Xóa bá»\" để tiếp tục hoặc'Há»§y bá»' để dừng lại." - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "Tên" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "CÆ¡ sở" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "Lưu lại" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "Há»§y bá»" diff --git a/apache2/locale/zh/fusiondirectory.po b/apache2/locale/zh/fusiondirectory.po deleted file mode 100644 index 468a89edff..0000000000 --- a/apache2/locale/zh/fusiondirectory.po +++ /dev/null @@ -1,189 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR FusionDirectory Project -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: FusionDirectory-110\n" -"Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" -"POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 16:05+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" -"Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/zh/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:80 -msgid "Apache service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Apache virtual host service" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:81 -msgid "Services" -msgstr "æœåŠ¡" - -#: admin/systems/services/apache2/class_serviceApacheVhost.inc:85 -msgid "Virtual hosts" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:11 -msgid "List of Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:15 -msgid "Template entry" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:32 -msgid "Server name" -msgstr "æœåС噍åç§°" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:40 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:79 -msgid "Document root" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:48 -msgid "Actions" -msgstr "动作" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:59 -msgid "Create" -msgstr "创建" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:65 -msgid "serviceApacheVhostEdit" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:77 -msgid "Remove" -msgstr "åˆ é™¤" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:109 -msgid "Edit host" -msgstr "" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.xml:122 -msgid "Remove host" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:24 -msgid "Vhosts" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostManagement.inc:25 -msgid "Apache vhosts management" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:48 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:49 -msgid "Apache2" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:50 -msgid "This Plugin is for Apache server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:52 -msgid "Apache Vhost" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:69 -msgid "Informations" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:73 -msgid "Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:74 -msgid "The Virtual host name" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:80 -msgid "Document root for the apache web server" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:85 -msgid "Admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:86 -msgid "Apache admin mail address" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:91 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:100 -msgid "Script Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias" -msgstr "别å" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:94 -msgid "Alias Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script" -msgstr "脚本" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:95 -msgid "Script Directory" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:104 -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:113 -msgid "Server Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:107 -msgid "URL Alias" -msgstr "" - -#: admin/systems/services/apache2/class_serviceApacheVhostEdit.inc:108 -msgid "Directory Path" -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:2 -msgid "Warning" -msgstr "è¦å‘Š" - -#: admin/systems/services/apache2/remove.tpl.c:5 -msgid "" -"This includes all account data, system access rules, imap settings, etc. for" -" this user. Please double check if your really want to do this since there " -"is no way for FusionDirectory to get your data back." -msgstr "" - -#: admin/systems/services/apache2/remove.tpl.c:8 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "æ‰€ä»¥ï¼Œå¦‚æžœæ‚¨ç¡®å®šï¼Œè¯·æŒ‰â€œåˆ é™¤â€ç»§ç»ï¼Œå¦åˆ™æŒ‰â€œå–消â€é€€å‡ºã€‚" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:2 -msgid "Filter" -msgstr "过滤器" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-filter.tpl.c:5 -msgid "Name" -msgstr "åç§°" - -#: admin/systems/services/apache2/serviceApacheVhostEdit-list.tpl.c:2 -msgid "Base" -msgstr "ä½ç½®" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:2 -msgid "Save" -msgstr "ä¿å˜" - -#: admin/systems/services/apache2/serviceApacheVhostEditFooter.tpl.c:5 -msgid "Cancel" -msgstr "å–æ¶ˆ" -- GitLab From 46be7b8dba21c1acd3e73db4098db996028e1aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 17 Aug 2016 10:03:25 +0200 Subject: [PATCH 21/25] Fixes #5075 htmlIds should be public --- dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc | 2 +- ejbca/admin/ejbca/class_ejbcaCertSelect.inc | 2 +- fai/admin/fai/class_faiPackage.inc | 2 +- gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc | 2 +- sudo/admin/sudo/class_sudoGeneric.inc | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc index 232cc849c3..3feb2258c9 100644 --- a/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc +++ b/dhcp/admin/systems/services/dhcp/class_serviceDHCP.inc @@ -383,7 +383,7 @@ class DhcpSectionsAttribute extends DialogOrderedArrayAttribute return ''; } - protected function htmlIds() + public function htmlIds() { $ids = parent::htmlIds(); unset($ids[0]); diff --git a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc index 18c7e5185a..3f4fd8ccba 100644 --- a/ejbca/admin/ejbca/class_ejbcaCertSelect.inc +++ b/ejbca/admin/ejbca/class_ejbcaCertSelect.inc @@ -104,7 +104,7 @@ class EjbcaUserCertsAttribute extends GenericDialogAttribute return '{$div_'.$id.'}'."\n"; } - protected function htmlIds() + public function htmlIds() { $id = $this->getHtmlId(); $ids = array('add'.$id.'_dialog'); diff --git a/fai/admin/fai/class_faiPackage.inc b/fai/admin/fai/class_faiPackage.inc index ec1fec0fd2..7d38ca4671 100644 --- a/fai/admin/fai/class_faiPackage.inc +++ b/fai/admin/fai/class_faiPackage.inc @@ -135,7 +135,7 @@ class PackagesAttribute extends DialogOrderedArrayAttribute return $buttons; } - protected function htmlIds() + public function htmlIds() { $id = $this->getHtmlId(); return array_merge(array('add'.$id), parent::htmlIds()); diff --git a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc index 63c3bcf045..f1d88c1b81 100644 --- a/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc +++ b/gpg/personal/gpg/pgpKeySelect/class_pgpKeySelect.inc @@ -228,7 +228,7 @@ class PgpKeyAttribute extends GenericDialogAttribute return '{$div_'.$id.'}'."\n"; } - protected function htmlIds() + public function htmlIds() { $id = $this->getHtmlId(); $ids = array('add'.$id.'_dialog'); diff --git a/sudo/admin/sudo/class_sudoGeneric.inc b/sudo/admin/sudo/class_sudoGeneric.inc index d3ab3a8a12..f59028300c 100644 --- a/sudo/admin/sudo/class_sudoGeneric.inc +++ b/sudo/admin/sudo/class_sudoGeneric.inc @@ -62,7 +62,7 @@ class SudoSystemsAttribute extends SystemsAttribute return $buttons.parent::renderButtons(); } - protected function htmlIds() + public function htmlIds() { $id = $this->getHtmlId(); $ids = parent::htmlIds(); -- GitLab From ba70e41bb43ed002ab3de23289f8c175bad420a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Wed, 17 Aug 2016 15:34:34 +0200 Subject: [PATCH 22/25] Fixes #5088 Added samba shares actions to argonaut actions list --- .../samba/class_argonautEventSambaShares.inc | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 samba/admin/systems/samba/class_argonautEventSambaShares.inc diff --git a/samba/admin/systems/samba/class_argonautEventSambaShares.inc b/samba/admin/systems/samba/class_argonautEventSambaShares.inc new file mode 100644 index 0000000000..c538d065c8 --- /dev/null +++ b/samba/admin/systems/samba/class_argonautEventSambaShares.inc @@ -0,0 +1,32 @@ +<?php +/* + This code is part of FusionDirectory (http://www.fusiondirectory.org/) + Copyright (C) 2015-2016 FusionDirectory + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +class argonautEventSambaShares extends argonautEventTypes +{ + static protected function get_event_types_list() + { + return array( + 'SambaShares.start' => array( + 'name' => _('Update Samba Shares'), + 'img' => 'geticon.php?context=applications&icon=samba&size=16' + ), + ); + } +} -- GitLab From 9ea1b76593784320dbe07a01221c9a81038fda02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Thu, 18 Aug 2016 15:36:25 +0200 Subject: [PATCH 23/25] Fixes #5090 Moved personal attributes to personal schema --- personal/contrib/openldap/personal-fd.schema | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/personal/contrib/openldap/personal-fd.schema b/personal/contrib/openldap/personal-fd.schema index 3e268de217..7fc2ba0f91 100644 --- a/personal/contrib/openldap/personal-fd.schema +++ b/personal/contrib/openldap/personal-fd.schema @@ -38,7 +38,21 @@ attributetype ( 1.3.6.1.4.1.38414.48.1.6 NAME 'fdBadge' EQUALITY caseExactIA5Match SUBSTR caseExactIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26) - + +# GOsa stuff + +attributetype ( 1.3.6.1.4.1.15305.2.1 NAME ( 'gender' 'sex' ) + DESC 'Gender: M for male, F for female' + EQUALITY caseIgnoreIA5Match + SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{1} + SINGLE-VALUE ) + +attributetype ( 1.3.6.1.4.1.15305.2.2 NAME ( 'dateOfBirth' 'dob' ) + DESC 'Date of birth in ISO 8601 format' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{10} + SINGLE-VALUE ) + # Objectclasses objectclass (1.3.6.1.4.1.38414.48.2.1 NAME 'fdPersonalInfo' SUP top AUXILIARY DESC 'FusionDirectory - User personal tab' -- GitLab From e87064f0a8dd09653701adc544a65816749bed7a Mon Sep 17 00:00:00 2001 From: Mortier Benoit <benoit.mortier@opensides.be> Date: Sun, 21 Aug 2016 11:14:36 +0200 Subject: [PATCH 24/25] Update locales for 1.0.15 Signed-off-by: Mortier Benoit <benoit.mortier@opensides.be> --- audit/locale/ru/fusiondirectory.po | 4 +- debconf/locale/fi_FI/fusiondirectory.po | 2 +- dhcp/locale/fi_FI/fusiondirectory.po | 2 +- dns/locale/fi_FI/fusiondirectory.po | 4 +- fai/locale/fi_FI/fusiondirectory.po | 21 ++++----- gpg/locale/fi_FI/fusiondirectory.po | 2 +- gpg/locale/ru/fusiondirectory.po | 2 +- kolab2/locale/fi_FI/fusiondirectory.po | 2 +- ldapmanager/locale/fi_FI/fusiondirectory.po | 2 +- ldapmanager/locale/ru/fusiondirectory.po | 49 +++++++++++---------- mixedgroups/locale/fi_FI/fusiondirectory.po | 2 +- opsi/locale/ru/fusiondirectory.po | 2 +- samba/locale/fi_FI/fusiondirectory.po | 2 +- supann/locale/fi_FI/fusiondirectory.po | 4 +- sympa/locale/ru/fusiondirectory.po | 2 +- systems/locale/fi_FI/fusiondirectory.po | 6 +-- user-reminder/locale/ru/fusiondirectory.po | 2 +- 17 files changed, 56 insertions(+), 54 deletions(-) diff --git a/audit/locale/ru/fusiondirectory.po b/audit/locale/ru/fusiondirectory.po index 29a0f30754..fe04834226 100644 --- a/audit/locale/ru/fusiondirectory.po +++ b/audit/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-06-28 11:05+0000\n" +"PO-Revision-Date: 2016-08-12 06:41+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" #: admin/audit/class_auditEvent.inc:81 msgid "Object type" -msgstr "" +msgstr "Тип объекта" #: admin/audit/class_auditEvent.inc:82 msgid "Object" diff --git a/debconf/locale/fi_FI/fusiondirectory.po b/debconf/locale/fi_FI/fusiondirectory.po index c3042b22e6..6b1a1d0e42 100644 --- a/debconf/locale/fi_FI/fusiondirectory.po +++ b/debconf/locale/fi_FI/fusiondirectory.po @@ -42,7 +42,7 @@ msgstr "" #: admin/debconfProfile/class_debconfProfileGeneric.inc:137 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/debconfProfile/class_debconfProfileGeneric.inc:140 msgid "LDIF error" diff --git a/dhcp/locale/fi_FI/fusiondirectory.po b/dhcp/locale/fi_FI/fusiondirectory.po index b210729554..b8e899e627 100644 --- a/dhcp/locale/fi_FI/fusiondirectory.po +++ b/dhcp/locale/fi_FI/fusiondirectory.po @@ -258,7 +258,7 @@ msgstr "" #: admin/systems/services/dhcp/class_serviceDHCP.inc:585 #: admin/systems/services/dhcp/class_serviceDHCP.inc:590 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/systems/services/dhcp/class_dhcpNetwork.inc:197 #: admin/systems/services/dhcp/dhcp_network.tpl.c:14 diff --git a/dns/locale/fi_FI/fusiondirectory.po b/dns/locale/fi_FI/fusiondirectory.po index 59544038f4..3a514aa6a4 100644 --- a/dns/locale/fi_FI/fusiondirectory.po +++ b/dns/locale/fi_FI/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-07-05 12:22+0000\n" +"PO-Revision-Date: 2016-08-15 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -433,7 +433,7 @@ msgstr "" #: admin/dns/class_dnsZone.inc:309 admin/dns/class_dnsZone.inc:352 #: admin/dns/class_dnsZone.inc:377 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/dns/class_dnsZone.inc:459 #, php-format diff --git a/fai/locale/fi_FI/fusiondirectory.po b/fai/locale/fi_FI/fusiondirectory.po index 2ed9919fc0..4e654a3a37 100644 --- a/fai/locale/fi_FI/fusiondirectory.po +++ b/fai/locale/fi_FI/fusiondirectory.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Dina Solveig Jalkanen, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-01-22 15:42+0000\n" -"Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n" +"PO-Revision-Date: 2016-08-15 15:34+0000\n" +"Last-Translator: Dina Solveig Jalkanen\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,15 +38,15 @@ msgstr "" #: admin/fai/class_faiPackage.inc:166 msgid "Mark for installation" -msgstr "" +msgstr "Merkitse asennettavaksi" #: admin/fai/class_faiPackage.inc:170 msgid "Mark for removal" -msgstr "" +msgstr "Merkitse poistettavaksi" #: admin/fai/class_faiPackage.inc:175 msgid "Edit configuration" -msgstr "" +msgstr "Muokkaa asetuksia" #: admin/fai/class_faiPackage.inc:256 #: admin/fai/class_faiPartitionTable.inc:209 @@ -55,7 +56,7 @@ msgstr "" #: admin/systems/services/repository/class_serviceRepository.inc:248 #: admin/systems/services/repository/class_serviceRepository.inc:252 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/fai/class_faiPackage.inc:288 #: admin/fai/packageSelect/class_filterFAIPackages.inc:41 @@ -86,14 +87,14 @@ msgstr "" #: admin/fai/class_faiScript.inc:50 admin/fai/class_faiTemplate.inc:171 #: admin/fai/class_faiHook.inc:48 admin/fai/class_faiVariable.inc:48 msgid "Properties" -msgstr "" +msgstr "Ominaisuudet" #: admin/fai/class_faiPackage.inc:399 #: admin/fai/class_faiPartitionTable.inc:306 admin/fai/class_faiProfile.inc:52 #: admin/fai/class_faiScript.inc:53 admin/fai/class_faiTemplate.inc:174 #: admin/fai/class_faiHook.inc:51 admin/fai/class_faiVariable.inc:51 msgid "Class name" -msgstr "" +msgstr "Luokan nimi" #: admin/fai/class_faiPackage.inc:399 admin/fai/class_faiScript.inc:53 #: admin/fai/class_faiHook.inc:51 admin/fai/class_faiVariable.inc:51 @@ -116,7 +117,7 @@ msgstr "Kuvaus" #: admin/fai/class_faiScript.inc:57 admin/fai/class_faiTemplate.inc:178 #: admin/fai/class_faiHook.inc:55 admin/fai/class_faiVariable.inc:55 msgid "Short description of the class" -msgstr "" +msgstr "Luokan lyhyt kuvaus" #: admin/fai/class_faiPackage.inc:409 admin/systems/class_faiStartup.inc:88 msgid "Repository" @@ -142,7 +143,7 @@ msgstr "" #: admin/fai/class_faiPackage.inc:420 msgid "Install method" -msgstr "" +msgstr "Asennustapa" #: admin/fai/class_faiPackage.inc:420 msgid "Install method to use for this package list" diff --git a/gpg/locale/fi_FI/fusiondirectory.po b/gpg/locale/fi_FI/fusiondirectory.po index 30284bc9e3..679a7f1a74 100644 --- a/gpg/locale/fi_FI/fusiondirectory.po +++ b/gpg/locale/fi_FI/fusiondirectory.po @@ -52,7 +52,7 @@ msgstr "" #: addons/gpg/class_pgpServerInfo.inc:100 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: personal/gpg/pgpKeySelect/pgpKeySelect-list.xml:11 msgid "Please select the desired entries" diff --git a/gpg/locale/ru/fusiondirectory.po b/gpg/locale/ru/fusiondirectory.po index 11f80221ab..b08f150619 100644 --- a/gpg/locale/ru/fusiondirectory.po +++ b/gpg/locale/ru/fusiondirectory.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-08-10 06:51+0000\n" +"PO-Revision-Date: 2016-08-12 05:51+0000\n" "Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/kolab2/locale/fi_FI/fusiondirectory.po b/kolab2/locale/fi_FI/fusiondirectory.po index d4d6fa6144..d8d8b27219 100644 --- a/kolab2/locale/fi_FI/fusiondirectory.po +++ b/kolab2/locale/fi_FI/fusiondirectory.po @@ -204,7 +204,7 @@ msgstr "" #: admin/systems/services/kolab2/class_serviceKolab.inc:284 #: admin/systems/services/kolab2/class_serviceKolab.inc:295 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: personal/mail/kolab2/class_mail-methods-kolab.inc:146 #: personal/mail/kolab2/class_mail-methods-kolab.inc:154 diff --git a/ldapmanager/locale/fi_FI/fusiondirectory.po b/ldapmanager/locale/fi_FI/fusiondirectory.po index 8cad668fe6..974b51f96f 100644 --- a/ldapmanager/locale/fi_FI/fusiondirectory.po +++ b/ldapmanager/locale/fi_FI/fusiondirectory.po @@ -96,7 +96,7 @@ msgstr "" #: addons/ldapmanager/class_ldapmanager.inc:153 #: addons/ldapmanager/class_ldapmanager.inc:197 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: addons/ldapmanager/class_ldapmanager.inc:154 #, php-format diff --git a/ldapmanager/locale/ru/fusiondirectory.po b/ldapmanager/locale/ru/fusiondirectory.po index 66adcef23d..202c06454e 100644 --- a/ldapmanager/locale/ru/fusiondirectory.po +++ b/ldapmanager/locale/ru/fusiondirectory.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexey Matveev, 2016 msgid "" msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-04-05 12:25+0000\n" -"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" +"PO-Revision-Date: 2016-08-12 06:45+0000\n" +"Last-Translator: Alexey Matveev\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,11 +20,11 @@ msgstr "" #: addons/ldapmanager/class_ldapmanager.inc:45 msgid "LDIF" -msgstr "" +msgstr "LDIF" #: addons/ldapmanager/class_ldapmanager.inc:46 msgid "Export/Import the ldap tree to/from LDIF format" -msgstr "" +msgstr "ÐкÑпорт/Импорт дерева ldap в/из LDIF формат" #: addons/ldapmanager/class_ldapmanager.inc:48 msgid "LDAP Manager" @@ -59,15 +60,15 @@ msgstr "" #: addons/ldapmanager/class_ldapmanager.inc:98 msgid "Export complete LDIF for" -msgstr "" +msgstr "ÐкÑпортировать полноÑтью LDIF длÑ" #: addons/ldapmanager/class_ldapmanager.inc:103 msgid "Import LDIF" -msgstr "" +msgstr "Импорт LDIF" #: addons/ldapmanager/class_ldapmanager.inc:106 msgid "Overwrite existing entries" -msgstr "" +msgstr "ПерепиÑать ÑущеÑтвующие запиÑи" #: addons/ldapmanager/class_ldapmanager.inc:106 msgid "" @@ -79,7 +80,7 @@ msgstr "" msgid "" "Import an LDIF file into your LDAP. Remember that FusionDirectory will not " "check your LDIFs for FusionDirectory conformance." -msgstr "" +msgstr "Импорт файла LDIF в ваш LDAP. Помните, что FusionDirectory не будет проверÑть ваши LDIF на ÑовмеÑтимоÑть Ñ FusionDirectory. " #: addons/ldapmanager/class_ldapmanager.inc:121 #: addons/ldapmanager/class_csvimport.inc:71 @@ -91,7 +92,7 @@ msgstr "Импортировать" #: addons/ldapmanager/class_ldapmanager.inc:125 msgid "Import LDIF file" -msgstr "" +msgstr "Импорт, LDIF файл" #: addons/ldapmanager/class_ldapmanager.inc:153 #: addons/ldapmanager/class_ldapmanager.inc:197 @@ -123,11 +124,11 @@ msgstr "" #: addons/ldapmanager/tabs_ldif.inc:31 msgid "LDAP import/export" -msgstr "" +msgstr "LDAP импорт/ÑкÑпорт" #: addons/ldapmanager/tabs_ldif.inc:32 msgid "Allows the import or export of the ldap tree" -msgstr "" +msgstr "Разрешить импорт или ÑкÑпорт ldap деревьев" #: addons/ldapmanager/tabs_ldif.inc:36 msgid "Ldap manager" @@ -135,23 +136,23 @@ msgstr "" #: addons/ldapmanager/class_csvimport.inc:29 msgid "CSV import" -msgstr "" +msgstr "Импорт CSV" #: addons/ldapmanager/class_csvimport.inc:30 msgid "Import of csv data into the ldap tree" -msgstr "" +msgstr "Импорт данных csv в дерево ldap" #: addons/ldapmanager/class_csvimport.inc:43 msgid "Import CSV" -msgstr "" +msgstr "Импорт CSV" #: addons/ldapmanager/class_csvimport.inc:46 msgid "Object type" -msgstr "" +msgstr "Тип объекта" #: addons/ldapmanager/class_csvimport.inc:46 msgid "Type of objects you wish to import" -msgstr "" +msgstr "Тип объекта, который вы хотите импортировать" #: addons/ldapmanager/class_csvimport.inc:50 msgid "Template" @@ -159,23 +160,23 @@ msgstr "Шаблон" #: addons/ldapmanager/class_csvimport.inc:50 msgid "Select a template to apply to imported entries" -msgstr "" +msgstr "Выберите шаблон, который будет применен к импортированным запиÑÑм" #: addons/ldapmanager/class_csvimport.inc:54 msgid "CSV file" -msgstr "" +msgstr "CSV файл" #: addons/ldapmanager/class_csvimport.inc:54 msgid "Import a CSV file into your LDAP" -msgstr "" +msgstr "Импорт CSV фала в ваш LDAP" #: addons/ldapmanager/class_csvimport.inc:58 msgid "Separator" -msgstr "" +msgstr "Разделитель" #: addons/ldapmanager/class_csvimport.inc:58 msgid "Character used as separator in the CSV file" -msgstr "" +msgstr "Символ иÑпользуемый как разделитель в CSV файле" #: addons/ldapmanager/class_csvimport.inc:64 msgid "Fixed values" @@ -206,7 +207,7 @@ msgstr "УÑпешно" #: addons/ldapmanager/class_csvimport.inc:244 #, php-format msgid "Successfully imported %d entries" -msgstr "" +msgstr "Импорт удачно завершен Ð´Ð»Ñ %d запиÑей" #: addons/ldapmanager/contentcsv.tpl.c:2 msgid "" @@ -218,7 +219,7 @@ msgstr "" #: addons/ldapmanager/contentcsv.tpl.c:5 msgid "Select CSV file to import" -msgstr "" +msgstr "Выберите CSV файл Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°" #: addons/ldapmanager/contentcsv.tpl.c:8 msgid "Browse" @@ -226,7 +227,7 @@ msgstr "ПроÑмотр" #: addons/ldapmanager/contentcsv.tpl.c:11 msgid "Select template" -msgstr "" +msgstr "Выберите шаблон" #: addons/ldapmanager/contentcsv.tpl.c:14 msgid "All entries have been written to the LDAP database successfully." diff --git a/mixedgroups/locale/fi_FI/fusiondirectory.po b/mixedgroups/locale/fi_FI/fusiondirectory.po index eb8a1a730f..afba796cd3 100644 --- a/mixedgroups/locale/fi_FI/fusiondirectory.po +++ b/mixedgroups/locale/fi_FI/fusiondirectory.po @@ -27,7 +27,7 @@ msgstr "" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:46 msgid "Properties" -msgstr "" +msgstr "Ominaisuudet" #: admin/ogroups/mixedgroups/class_mixedGroup.inc:49 msgid "Force GID" diff --git a/opsi/locale/ru/fusiondirectory.po b/opsi/locale/ru/fusiondirectory.po index bf4ff9caf0..433c5c4ce1 100644 --- a/opsi/locale/ru/fusiondirectory.po +++ b/opsi/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-04-08 19:09+0000\n" +"PO-Revision-Date: 2016-08-12 05:51+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/samba/locale/fi_FI/fusiondirectory.po b/samba/locale/fi_FI/fusiondirectory.po index 3985b0e9ad..8c7afee544 100644 --- a/samba/locale/fi_FI/fusiondirectory.po +++ b/samba/locale/fi_FI/fusiondirectory.po @@ -115,7 +115,7 @@ msgstr "" #: admin/samba/class_sambaDomain.inc:51 #: admin/systems/samba/class_winstationGeneric.inc:61 msgid "Properties" -msgstr "" +msgstr "Ominaisuudet" #: admin/samba/class_sambaDomain.inc:54 msgid "Domain name" diff --git a/supann/locale/fi_FI/fusiondirectory.po b/supann/locale/fi_FI/fusiondirectory.po index 8b79c66568..5ba5009aa0 100644 --- a/supann/locale/fi_FI/fusiondirectory.po +++ b/supann/locale/fi_FI/fusiondirectory.po @@ -138,7 +138,7 @@ msgstr "" #: admin/supannStructures/class_etablissement.inc:52 msgid "Properties" -msgstr "" +msgstr "Ominaisuudet" #: admin/supannStructures/class_etablissement.inc:55 msgid "Root Establishment" @@ -237,7 +237,7 @@ msgstr "" #: admin/supannStructures/class_etablissement.inc:200 #: admin/supannStructures/class_etablissement.inc:214 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/supannStructures/class_supann.inc:53 msgid "File error" diff --git a/sympa/locale/ru/fusiondirectory.po b/sympa/locale/ru/fusiondirectory.po index 85bc7ec845..e3cae99f2c 100644 --- a/sympa/locale/ru/fusiondirectory.po +++ b/sympa/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-04-08 19:09+0000\n" +"PO-Revision-Date: 2016-08-12 05:51+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/systems/locale/fi_FI/fusiondirectory.po b/systems/locale/fi_FI/fusiondirectory.po index 486b6b1189..1f1a68d6da 100644 --- a/systems/locale/fi_FI/fusiondirectory.po +++ b/systems/locale/fi_FI/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-08-02 16:38+0000\n" +"PO-Revision-Date: 2016-08-15 15:34+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -94,7 +94,7 @@ msgstr "" #: admin/systems/class_networkSettings.inc:531 #: admin/systems/class_networkSettings.inc:549 msgid "LDAP error" -msgstr "" +msgstr "LDAP virhe" #: admin/ogroups/goto/class_termgroup.inc:301 msgid "System" @@ -328,7 +328,7 @@ msgstr "" #: admin/systems/class_componentGeneric.inc:60 #: admin/systems/class_mobilePhoneGeneric.inc:60 msgid "Properties" -msgstr "" +msgstr "Ominaisuudet" #: admin/systems/class_workstationGeneric.inc:152 #, php-format diff --git a/user-reminder/locale/ru/fusiondirectory.po b/user-reminder/locale/ru/fusiondirectory.po index 70e1f506df..eb977d1d9a 100644 --- a/user-reminder/locale/ru/fusiondirectory.po +++ b/user-reminder/locale/ru/fusiondirectory.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: FusionDirectory-110\n" "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n" "POT-Creation-Date: 2016-08-11 21:08+0200\n" -"PO-Revision-Date: 2016-08-08 19:04+0000\n" +"PO-Revision-Date: 2016-08-12 05:51+0000\n" "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n" "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-110/language/ru/)\n" "MIME-Version: 1.0\n" -- GitLab From e402294e1de3231f2fac0cece5350b93d746ebec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Mon, 22 Aug 2016 11:37:23 +0200 Subject: [PATCH 25/25] Fixes #5094 gosaPrinter should not be obsolete to ease migration --- systems/contrib/openldap/systems-fd.schema | 1 - 1 file changed, 1 deletion(-) diff --git a/systems/contrib/openldap/systems-fd.schema b/systems/contrib/openldap/systems-fd.schema index 2acda9ab82..d372861873 100644 --- a/systems/contrib/openldap/systems-fd.schema +++ b/systems/contrib/openldap/systems-fd.schema @@ -544,7 +544,6 @@ objectclass (1.3.6.1.4.1.10098.1.2.1.30 NAME 'gotoWorkstation' objectclass (1.3.6.1.4.1.10098.1.2.1.31 NAME 'gotoPrinter' DESC 'GOto - Gonicus Terminal Concept, objectclass' SUP top STRUCTURAL - OBSOLETE MUST ( cn ) MAY ( labeledURI $ description $ l $ gotoPrinterPPD $ macAddress $ ipHostNumber $ gotoUserPrinter $ gotoUserAdminPrinter $ gotoGroupPrinter $ gotoGroupAdminPrinter $ -- GitLab